From: Arne Fitzenreiter Date: Tue, 22 Feb 2022 11:40:44 +0000 (+0000) Subject: Merge branch 'master' into next X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=72718c896c2bf3cfcbe466a89c0437e1b4ab421f;hp=ad9d6bf585c91e4696bdffbb3bf63ff741b09c81;p=people%2Fmfischer%2Fipfire-2.x.git Merge branch 'master' into next --- diff --git a/config/cfgroot/ids-functions.pl b/config/cfgroot/ids-functions.pl index 74d55def6c..bf02bcbaa5 100644 --- a/config/cfgroot/ids-functions.pl +++ b/config/cfgroot/ids-functions.pl @@ -281,7 +281,15 @@ sub downloadruleset ($) { use LWP::UserAgent; # Init the download module. - my $downloader = LWP::UserAgent->new; + # + # Request SSL hostname verification and specify path + # to the CA file. + my $downloader = LWP::UserAgent->new( + ssl_opts => { + SSL_ca_file => '/etc/ssl/cert.pem', + verify_hostname => 1, + } + ); # Set timeout to 10 seconds. $downloader->timeout(10); diff --git a/config/cfgroot/location-functions.pl b/config/cfgroot/location-functions.pl index 4d44ce24d3..46e27c04a6 100644 --- a/config/cfgroot/location-functions.pl +++ b/config/cfgroot/location-functions.pl @@ -44,7 +44,7 @@ my %network_flags = ( my @special_locations = ( "A1", "A2", "A3", "XD" ); # Directory where the libloc database and keyfile lives. -our $location_dir = "/var/lib/location/"; +our $location_dir = "/var/lib/location"; # Libloc database file. our $database = "$location_dir/database.db"; @@ -53,7 +53,7 @@ our $database = "$location_dir/database.db"; our $keyfile = "$location_dir/signing-key.pem"; # Directory which contains the exported databases. -our $xt_geoip_db_directory = "/usr/share/xt_geoip/"; +our $ipset_db_directory = "$location_dir/ipset"; # Create libloc database handle. my $db_handle = &init(); diff --git a/config/cfgroot/manualpages b/config/cfgroot/manualpages index 97246e6f07..6c2e54b552 100644 --- a/config/cfgroot/manualpages +++ b/config/cfgroot/manualpages @@ -25,6 +25,7 @@ netinternal=configuration/status/network_int netother=configuration/status/network_int netovpnrw=configuration/status/network_ovpnrw #netovpnsrv= +wio=addons/wio hardwaregraphs=configuration/status/hardware_diagrams entropy=configuration/status/entropy connections=configuration/status/connections @@ -52,6 +53,7 @@ ovpnmain=configuration/services/openvpn ddns=configuration/services/dyndns time=configuration/services/ntp qos=configuration/services/qos +guardian=addons/guardian extrahd=configuration/services/extrahd # Firewall menu @@ -59,19 +61,23 @@ firewall=configuration/firewall fwhosts=configuration/firewall/fwgroups optionsfw=configuration/firewall/options ids=configuration/firewall/ips -p2p-block=configuration/firewall/p2p-block location-block=configuration/firewall/geoip-block wireless=configuration/firewall/accesstoblue iptables=configuration/firewall/iptables # IPfire menu pakfire=configuration/ipfire/pakfire +wlanap=addons/wireless +tor=addons/tor +mpfire=addons/mpfire +samba=addons/samba # Logs menu summary=configuration/logs/summary config=configuration/logs/logsettings proxylog=configuration/logs/proxy calamaris=configuration/logs/proxyreports +accounting=addons/squid-accounting firewalllog=configuration/logs/firewall firewalllogip=configuration/logs/firewall-ip firewalllogport=configuration/logs/firewall-port diff --git a/config/firewall/firewall-lib.pl b/config/firewall/firewall-lib.pl index bc0b30ca5c..f4089a3a00 100644 --- a/config/firewall/firewall-lib.pl +++ b/config/firewall/firewall-lib.pl @@ -2,7 +2,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2013 Alexander Marx # +# Copyright (C) 2021 Alexander Marx # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -315,7 +315,7 @@ sub get_addresses foreach my $grp (sort {$a <=> $b} keys %customgrp) { if ($customgrp{$grp}[0] eq $value) { my @address = &get_address($customgrp{$grp}[3], $customgrp{$grp}[2], $type); - + next if ($address[0][0] eq 'none'); if (@address) { push(@addresses, @address); } @@ -466,7 +466,7 @@ sub get_address # Get external interface. my $external_interface = &get_external_interface(); - push(@ret, ["-m geoip --src-cc $value", "$external_interface"]); + push(@ret, ["-m set --match-set CC_$value src", "$external_interface"]); } # Handle rule options with a location as target. @@ -476,7 +476,7 @@ sub get_address # Get external interface. my $external_interface = &get_external_interface(); - push(@ret, ["-m geoip --dst-cc $value", "$external_interface"]); + push(@ret, ["-m set --match-set CC_$value dst", "$external_interface"]); } # If nothing was selected, we assume "any". diff --git a/config/firewall/p2protocols b/config/firewall/p2protocols deleted file mode 100644 index d8998095c1..0000000000 --- a/config/firewall/p2protocols +++ /dev/null @@ -1,9 +0,0 @@ -Applejuice;apple;on; -Ares;ares;on; -Bittorrent;bit;on; -DirectConnect;dc;on; -Edonkey;edk;on; -Gnutella;gnu;on; -KaZaA;kazaa;on; -SoulSeek;soul;on; -WinMX;winmx;on; diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl index 9d280045ad..927c1f2ba0 100644 --- a/config/firewall/rules.pl +++ b/config/firewall/rules.pl @@ -31,6 +31,7 @@ require "${General::swroot}/location-functions.pl"; my $DEBUG = 0; my $IPTABLES = "iptables --wait"; +my $IPSET = "ipset"; # iptables chains my $CHAIN_INPUT = "INPUTFW"; @@ -69,13 +70,11 @@ my %confignatfw=(); my %locationsettings = ( "LOCATIONBLOCK_ENABLED" => "off" ); - -my @p2ps=(); +my %loaded_ipset_lists=(); my $configfwdfw = "${General::swroot}/firewall/config"; my $configinput = "${General::swroot}/firewall/input"; my $configoutgoing = "${General::swroot}/firewall/outgoing"; -my $p2pfile = "${General::swroot}/firewall/p2protocols"; my $locationfile = "${General::swroot}/firewall/locationblock"; my $configgrp = "${General::swroot}/fwhosts/customgroups"; my $netsettings = "${General::swroot}/ethernet/settings"; @@ -107,6 +106,10 @@ my $POLICY_INPUT_ACTION = $fwoptions{"FWPOLICY2"}; my $POLICY_FORWARD_ACTION = $fwoptions{"FWPOLICY"}; my $POLICY_OUTPUT_ACTION = $fwoptions{"FWPOLICY1"}; +#workaround to suppress a warning when a variable is used only once +my @dummy = ( $Location::Functions::ipset_db_directory ); +undef (@dummy); + # MAIN &main(); @@ -114,6 +117,9 @@ sub main { # Flush all chains. &flush(); + # Destroy all existing ipsets. + run("$IPSET destroy"); + # Prepare firewall rules. if (! -z "${General::swroot}/firewall/input"){ &buildrules(\%configinputfw); @@ -125,9 +131,6 @@ sub main { &buildrules(\%configfwdfw); } - # Load P2P block rules. - &p2pblock(); - # Load Location block rules. &locationblock(); @@ -186,6 +189,9 @@ sub flush { run("$IPTABLES -t nat -F $CHAIN_NAT_SOURCE"); run("$IPTABLES -t nat -F $CHAIN_NAT_DESTINATION"); run("$IPTABLES -t mangle -F $CHAIN_MANGLE_NAT_DESTINATION_FIX"); + + # Flush LOCATIONBLOCK chain. + run("$IPTABLES -F LOCATIONBLOCK"); } sub buildrules { @@ -394,7 +400,13 @@ sub buildrules { my @source_options = (); if ($source =~ /mac/) { push(@source_options, $source); - } elsif ($source =~ /-m geoip/) { + } elsif ($source =~ /-m set/) { + # Grab location code from hash. + my $loc_src = $$hash{$key}[4]; + + # Call function to load the networks list for this country. + &ipset_restore($loc_src); + push(@source_options, $source); } elsif($source) { push(@source_options, ("-s", $source)); @@ -402,7 +414,13 @@ sub buildrules { # Prepare destination options. my @destination_options = (); - if ($destination =~ /-m geoip/) { + if ($destination =~ /-m set/) { + # Grab location code from hash. + my $loc_dst = $$hash{$key}[6]; + + # Call function to load the networks list for this country. + &ipset_restore($loc_dst); + push(@destination_options, $destination); } elsif ($destination) { push(@destination_options, ("-d", $destination)); @@ -620,26 +638,8 @@ sub time_convert_to_minutes { return ($hrs * 60) + $min; } -sub p2pblock { - open(FILE, "<$p2pfile") or die "Unable to read $p2pfile"; - my @protocols = (); - foreach my $p2pentry () { - my @p2pline = split(/\;/, $p2pentry); - next unless ($p2pline[2] eq "off"); - - push(@protocols, "--$p2pline[1]"); - } - close(FILE); - - run("$IPTABLES -F P2PBLOCK"); - if (@protocols) { - run("$IPTABLES -A P2PBLOCK -m ipp2p @protocols -j DROP"); - } -} - sub locationblock { - # Flush iptables chain. - run("$IPTABLES -F LOCATIONBLOCK"); + # The LOCATIONBLOCK chain now gets flushed by the flush() function. # If location blocking is not enabled, we are finished here. if ($locationsettings{'LOCATIONBLOCK_ENABLED'} ne "on") { @@ -665,7 +665,11 @@ sub locationblock { # is enabled. foreach my $location (@locations) { if(exists $locationsettings{$location} && $locationsettings{$location} eq "on") { - run("$IPTABLES -A LOCATIONBLOCK -m geoip --src-cc $location -j DROP"); + # Call function to load the networks list for this country. + &ipset_restore($location); + + # Call iptables and create rule to use the loaded ipset list. + run("$IPTABLES -A LOCATIONBLOCK -m set --match-set CC_$location src -j DROP"); } } } @@ -882,3 +886,25 @@ sub firewall_is_in_subnet { return 0; } + +sub ipset_restore ($) { + my ($list) = @_; + + my $file_prefix = "ipset4"; + my $db_file = "$Location::Functions::ipset_db_directory/$list.$file_prefix"; + + # Check if the network list already has been loaded. + if($loaded_ipset_lists{$list}) { + # It already has been loaded - so there is nothing to do. + return; + } + + # Check if the generated file exists. + if (-f $db_file) { + # Run ipset and restore the list of the given country code. + run("$IPSET restore < $db_file"); + + # Store the restored list name to the hash to prevent from loading it again. + $loaded_ipset_lists{$list} = "1"; + } +} diff --git a/config/lua/lua.pc b/config/lua/lua.pc index f6d25ec33d..5244acc17f 100644 --- a/config/lua/lua.pc +++ b/config/lua/lua.pc @@ -1,5 +1,5 @@ V=5.4 -R=5.4.3 +R=5.4.4 prefix=/usr INSTALL_BIN=${prefix}/bin diff --git a/config/menu/50-firewall.menu b/config/menu/50-firewall.menu index 6ae9687dc4..aa67d90072 100644 --- a/config/menu/50-firewall.menu +++ b/config/menu/50-firewall.menu @@ -21,12 +21,6 @@ 'title' => "$Lang::tr{'intrusion detection system'}", 'enabled' => 1, }; - $subfirewall->{'50.p2p'} = { - 'caption' => $Lang::tr{'p2p block'}, - 'uri' => '/cgi-bin/p2p-block.cgi', - 'title' => "P2P-Block", - 'enabled' => 1, - }; $subfirewall->{'60.locationblock'} = { 'caption' => $Lang::tr{'locationblock'}, 'uri' => '/cgi-bin/location-block.cgi', diff --git a/config/rootfiles/common/aarch64/binutils b/config/rootfiles/common/aarch64/binutils index b6099c3f75..cae233bce7 100644 --- a/config/rootfiles/common/aarch64/binutils +++ b/config/rootfiles/common/aarch64/binutils @@ -16,7 +16,6 @@ usr/bin/strings #usr/bin/strip #usr/include/ansidecl.h #usr/include/bfd.h -#usr/include/bfd_stdint.h #usr/include/bfdlink.h #usr/include/ctf-api.h #usr/include/ctf.h @@ -292,7 +291,7 @@ usr/lib/bfd-plugins/libdep.so #usr/lib/ldscripts/armelfb_linux_eabi.xu #usr/lib/ldscripts/armelfb_linux_eabi.xw #usr/lib/ldscripts/armelfb_linux_eabi.xwe -usr/lib/libbfd-2.36.1.so +usr/lib/libbfd-2.37.so #usr/lib/libbfd.a #usr/lib/libbfd.la #usr/lib/libbfd.so @@ -306,7 +305,7 @@ usr/lib/libctf-nobfd.so.0.0.0 #usr/lib/libctf.so usr/lib/libctf.so.0 usr/lib/libctf.so.0.0.0 -usr/lib/libopcodes-2.36.1.so +usr/lib/libopcodes-2.37.so #usr/lib/libopcodes.a #usr/lib/libopcodes.la #usr/lib/libopcodes.so diff --git a/config/rootfiles/common/aarch64/dtc b/config/rootfiles/common/aarch64/dtc index 01a6127994..993495032d 100644 --- a/config/rootfiles/common/aarch64/dtc +++ b/config/rootfiles/common/aarch64/dtc @@ -13,8 +13,8 @@ #lib/libfdt.a #lib/libfdt.so #lib/libfdt.so.1 -#lib/python3.8 -#lib/python3.8/site-packages -#lib/python3.8/site-packages/_libfdt.cpython-38-aarch64-linux-gnu.so -#lib/python3.8/site-packages/libfdt-1.6.1-py3.8.egg-info -#lib/python3.8/site-packages/libfdt.py +#lib/python3.10 +#lib/python3.10/site-packages +#lib/python3.10/site-packages/_libfdt.cpython-310-aarch64-linux-gnu.so +#lib/python3.10/site-packages/libfdt-1.6.1-py3.10.egg-info +#lib/python3.10/site-packages/libfdt.py diff --git a/config/rootfiles/common/aarch64/glibc b/config/rootfiles/common/aarch64/glibc index 0849703f99..f98c94aab5 100644 --- a/config/rootfiles/common/aarch64/glibc +++ b/config/rootfiles/common/aarch64/glibc @@ -1,49 +1,32 @@ #etc/ld.so.cache etc/rpc -lib/ld-2.33.so lib/ld-linux-aarch64.so.1 -lib/libBrokenLocale-2.33.so lib/libBrokenLocale.so.1 -#lib/libSegFault.so -lib/libanl-2.33.so lib/libanl.so.1 -lib/libc-2.33.so lib/libc.so.6 -lib/libdl-2.33.so +#lib/libc_malloc_debug.so.0 lib/libdl.so.2 -lib/libm-2.33.so lib/libm.so.6 #lib/libmemusage.so -lib/libnsl-2.33.so lib/libnsl.so.1 -lib/libnss_compat-2.33.so lib/libnss_compat.so.2 -lib/libnss_db-2.33.so lib/libnss_db.so.2 -lib/libnss_dns-2.33.so lib/libnss_dns.so.2 -lib/libnss_files-2.33.so lib/libnss_files.so.2 -lib/libnss_hesiod-2.33.so lib/libnss_hesiod.so.2 #lib/libpcprofile.so -lib/libpthread-2.33.so lib/libpthread.so.0 -lib/libresolv-2.33.so lib/libresolv.so.2 -lib/librt-2.33.so lib/librt.so.1 -lib/libthread_db-1.0.so lib/libthread_db.so.1 -lib/libutil-2.33.so lib/libutil.so.1 sbin/ldconfig #sbin/sln -#usr/bin/catchsegv #usr/bin/gencat usr/bin/getconf usr/bin/getent #usr/bin/iconv +usr/bin/ld.so usr/bin/ldd usr/bin/locale #usr/bin/localedef @@ -74,12 +57,14 @@ usr/bin/locale #usr/include/bits #usr/include/bits/a.out.h #usr/include/bits/argp-ldbl.h +#usr/include/bits/atomic_wide_counter.h #usr/include/bits/byteswap.h #usr/include/bits/cmathcalls.h #usr/include/bits/confname.h #usr/include/bits/cpu-set.h #usr/include/bits/dirent.h #usr/include/bits/dirent_ext.h +#usr/include/bits/dl_find_object.h #usr/include/bits/dlfcn.h #usr/include/bits/elfclass.h #usr/include/bits/endian.h @@ -117,6 +102,7 @@ usr/bin/locale #usr/include/bits/libc-header-start.h #usr/include/bits/libm-simd-decl-stubs.h #usr/include/bits/link.h +#usr/include/bits/link_lavcurrent.h #usr/include/bits/local_lim.h #usr/include/bits/locale.h #usr/include/bits/long-double.h @@ -145,10 +131,13 @@ usr/bin/locale #usr/include/bits/procfs-id.h #usr/include/bits/procfs-prregset.h #usr/include/bits/procfs.h +#usr/include/bits/pthread_stack_min-dynamic.h +#usr/include/bits/pthread_stack_min.h #usr/include/bits/pthreadtypes-arch.h #usr/include/bits/pthreadtypes.h #usr/include/bits/ptrace-shared.h #usr/include/bits/resource.h +#usr/include/bits/rseq.h #usr/include/bits/sched.h #usr/include/bits/select.h #usr/include/bits/select2.h @@ -169,6 +158,7 @@ usr/bin/locale #usr/include/bits/signum-arch.h #usr/include/bits/signum-generic.h #usr/include/bits/sigstack.h +#usr/include/bits/sigstksz.h #usr/include/bits/sigthread.h #usr/include/bits/sockaddr.h #usr/include/bits/socket-constants.h @@ -197,6 +187,7 @@ usr/bin/locale #usr/include/bits/struct_mutex.h #usr/include/bits/struct_rwlock.h #usr/include/bits/struct_stat.h +#usr/include/bits/struct_stat_time64_helper.h #usr/include/bits/syscall.h #usr/include/bits/syslog-ldbl.h #usr/include/bits/syslog-path.h @@ -245,11 +236,17 @@ usr/bin/locale #usr/include/bits/types/struct___jmp_buf_tag.h #usr/include/bits/types/struct_iovec.h #usr/include/bits/types/struct_itimerspec.h +#usr/include/bits/types/struct_msqid64_ds.h +#usr/include/bits/types/struct_msqid64_ds_helper.h #usr/include/bits/types/struct_msqid_ds.h #usr/include/bits/types/struct_osockaddr.h #usr/include/bits/types/struct_rusage.h #usr/include/bits/types/struct_sched_param.h +#usr/include/bits/types/struct_semid64_ds.h +#usr/include/bits/types/struct_semid64_ds_helper.h #usr/include/bits/types/struct_semid_ds.h +#usr/include/bits/types/struct_shmid64_ds.h +#usr/include/bits/types/struct_shmid64_ds_helper.h #usr/include/bits/types/struct_shmid_ds.h #usr/include/bits/types/struct_sigstack.h #usr/include/bits/types/struct_statx.h @@ -292,6 +289,7 @@ usr/bin/locale #usr/include/error.h #usr/include/execinfo.h #usr/include/fcntl.h +#usr/include/features-time64.h #usr/include/features.h #usr/include/fenv.h #usr/include/finclude @@ -458,6 +456,7 @@ usr/bin/locale #usr/include/sys/raw.h #usr/include/sys/reboot.h #usr/include/sys/resource.h +#usr/include/sys/rseq.h #usr/include/sys/select.h #usr/include/sys/sem.h #usr/include/sys/sendfile.h @@ -775,6 +774,8 @@ usr/lib/gconv #usr/lib/gconv/UTF-7.so #usr/lib/gconv/VISCII.so #usr/lib/gconv/gconv-modules +#usr/lib/gconv/gconv-modules.d +#usr/lib/gconv/gconv-modules.d/gconv-modules-extra.conf #usr/lib/gconv/libCNS.so #usr/lib/gconv/libGB.so #usr/lib/gconv/libISOIR165.so @@ -787,34 +788,44 @@ usr/lib/gconv #usr/lib/glibc/getconf/POSIX_V6_LP64_OFF64 #usr/lib/glibc/getconf/POSIX_V7_LP64_OFF64 #usr/lib/glibc/getconf/XBS5_LP64_OFF64 +#usr/lib/grcrt1.o #usr/lib/libBrokenLocale.a #usr/lib/libBrokenLocale.so #usr/lib/libanl.a #usr/lib/libanl.so #usr/lib/libc.a #usr/lib/libc.so +#usr/lib/libc_malloc_debug.so #usr/lib/libc_nonshared.a #usr/lib/libdl.a -#usr/lib/libdl.so #usr/lib/libg.a #usr/lib/libm.a #usr/lib/libm.so #usr/lib/libmcheck.a #usr/lib/libnss_compat.so #usr/lib/libnss_db.so -#usr/lib/libnss_dns.so -#usr/lib/libnss_files.so #usr/lib/libnss_hesiod.so #usr/lib/libpthread.a -#usr/lib/libpthread.so #usr/lib/libresolv.a #usr/lib/libresolv.so #usr/lib/librt.a -#usr/lib/librt.so #usr/lib/libthread_db.so #usr/lib/libutil.a -#usr/lib/libutil.so usr/lib/locale +#usr/lib/locale/C.utf8 +#usr/lib/locale/C.utf8/LC_ADDRESS +#usr/lib/locale/C.utf8/LC_COLLATE +#usr/lib/locale/C.utf8/LC_CTYPE +#usr/lib/locale/C.utf8/LC_IDENTIFICATION +#usr/lib/locale/C.utf8/LC_MEASUREMENT +#usr/lib/locale/C.utf8/LC_MESSAGES +#usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES +#usr/lib/locale/C.utf8/LC_MONETARY +#usr/lib/locale/C.utf8/LC_NAME +#usr/lib/locale/C.utf8/LC_NUMERIC +#usr/lib/locale/C.utf8/LC_PAPER +#usr/lib/locale/C.utf8/LC_TELEPHONE +#usr/lib/locale/C.utf8/LC_TIME #usr/lib/locale/aa_DJ #usr/lib/locale/aa_DJ.utf8 #usr/lib/locale/aa_DJ.utf8/LC_ADDRESS @@ -7647,6 +7658,7 @@ usr/lib/locale #usr/lib/locale/zu_ZA/LC_PAPER #usr/lib/locale/zu_ZA/LC_TELEPHONE #usr/lib/locale/zu_ZA/LC_TIME +#usr/lib/rcrt1.o #usr/sbin/iconvconfig #usr/sbin/nscd #usr/sbin/zic @@ -7886,11 +7898,13 @@ usr/lib/locale #usr/share/i18n/charmaps/VISCII.gz #usr/share/i18n/charmaps/WINDOWS-31J.gz #usr/share/i18n/locales +#usr/share/i18n/locales/C #usr/share/i18n/locales/POSIX #usr/share/i18n/locales/aa_DJ #usr/share/i18n/locales/aa_ER #usr/share/i18n/locales/aa_ER@saaho #usr/share/i18n/locales/aa_ET +#usr/share/i18n/locales/ab_GE #usr/share/i18n/locales/af_ZA #usr/share/i18n/locales/agr_PE #usr/share/i18n/locales/ak_GH @@ -8252,6 +8266,7 @@ usr/lib/locale #usr/share/info/libc.info-15 #usr/share/info/libc.info-16 #usr/share/info/libc.info-17 +#usr/share/info/libc.info-18 #usr/share/info/libc.info-2 #usr/share/info/libc.info-3 #usr/share/info/libc.info-4 @@ -8372,7 +8387,5 @@ usr/lib/locale #usr/share/locale/zh_TW #usr/share/locale/zh_TW/LC_MESSAGES #usr/share/locale/zh_TW/LC_MESSAGES/libc.mo -#var/cache/ldconfig -#var/cache/ldconfig/aux-cache #var/db #var/db/Makefile diff --git a/config/rootfiles/common/aarch64/stage2 b/config/rootfiles/common/aarch64/stage2 index 521c815c0e..801c964cd5 100644 --- a/config/rootfiles/common/aarch64/stage2 +++ b/config/rootfiles/common/aarch64/stage2 @@ -133,7 +133,6 @@ usr/local/bin/update-location-database #usr/sbin usr/sbin/openvpn-metrics usr/sbin/ovpn-ccd-convert -usr/sbin/ovpn-collectd-convert #usr/share #usr/share/doc #usr/share/doc/licenses diff --git a/config/rootfiles/common/armv6l/binutils b/config/rootfiles/common/armv6l/binutils index 06f33f27af..7733152120 100644 --- a/config/rootfiles/common/armv6l/binutils +++ b/config/rootfiles/common/armv6l/binutils @@ -16,7 +16,6 @@ usr/bin/strings #usr/bin/strip #usr/include/ansidecl.h #usr/include/bfd.h -#usr/include/bfd_stdint.h #usr/include/bfdlink.h #usr/include/ctf-api.h #usr/include/ctf.h @@ -72,7 +71,7 @@ usr/lib/bfd-plugins/libdep.so #usr/lib/ldscripts/armelfb_linux_eabi.xu #usr/lib/ldscripts/armelfb_linux_eabi.xw #usr/lib/ldscripts/armelfb_linux_eabi.xwe -usr/lib/libbfd-2.36.1.so +usr/lib/libbfd-2.37.so #usr/lib/libbfd.a #usr/lib/libbfd.la #usr/lib/libbfd.so @@ -86,7 +85,7 @@ usr/lib/libctf-nobfd.so.0.0.0 #usr/lib/libctf.so usr/lib/libctf.so.0 usr/lib/libctf.so.0.0.0 -usr/lib/libopcodes-2.36.1.so +usr/lib/libopcodes-2.37.so #usr/lib/libopcodes.a #usr/lib/libopcodes.la #usr/lib/libopcodes.so diff --git a/config/rootfiles/common/armv6l/glibc b/config/rootfiles/common/armv6l/glibc index de1a6519c8..d6be0f39a0 100644 --- a/config/rootfiles/common/armv6l/glibc +++ b/config/rootfiles/common/armv6l/glibc @@ -1,49 +1,32 @@ #etc/ld.so.cache etc/rpc -lib/ld-2.33.so lib/ld-linux.so.3 -lib/libBrokenLocale-2.33.so lib/libBrokenLocale.so.1 -#lib/libSegFault.so -lib/libanl-2.33.so lib/libanl.so.1 -lib/libc-2.33.so lib/libc.so.6 -lib/libdl-2.33.so +#lib/libc_malloc_debug.so.0 lib/libdl.so.2 -lib/libm-2.33.so lib/libm.so.6 #lib/libmemusage.so -lib/libnsl-2.33.so lib/libnsl.so.1 -lib/libnss_compat-2.33.so lib/libnss_compat.so.2 -lib/libnss_db-2.33.so lib/libnss_db.so.2 -lib/libnss_dns-2.33.so lib/libnss_dns.so.2 -lib/libnss_files-2.33.so lib/libnss_files.so.2 -lib/libnss_hesiod-2.33.so lib/libnss_hesiod.so.2 #lib/libpcprofile.so -lib/libpthread-2.33.so lib/libpthread.so.0 -lib/libresolv-2.33.so lib/libresolv.so.2 -lib/librt-2.33.so lib/librt.so.1 -lib/libthread_db-1.0.so lib/libthread_db.so.1 -lib/libutil-2.33.so lib/libutil.so.1 sbin/ldconfig #sbin/sln -#usr/bin/catchsegv #usr/bin/gencat usr/bin/getconf usr/bin/getent #usr/bin/iconv +usr/bin/ld.so usr/bin/ldd usr/bin/locale #usr/bin/localedef @@ -74,12 +57,14 @@ usr/bin/locale #usr/include/bits #usr/include/bits/a.out.h #usr/include/bits/argp-ldbl.h +#usr/include/bits/atomic_wide_counter.h #usr/include/bits/byteswap.h #usr/include/bits/cmathcalls.h #usr/include/bits/confname.h #usr/include/bits/cpu-set.h #usr/include/bits/dirent.h #usr/include/bits/dirent_ext.h +#usr/include/bits/dl_find_object.h #usr/include/bits/dlfcn.h #usr/include/bits/elfclass.h #usr/include/bits/endian.h @@ -117,6 +102,7 @@ usr/bin/locale #usr/include/bits/libc-header-start.h #usr/include/bits/libm-simd-decl-stubs.h #usr/include/bits/link.h +#usr/include/bits/link_lavcurrent.h #usr/include/bits/local_lim.h #usr/include/bits/locale.h #usr/include/bits/long-double.h @@ -145,10 +131,13 @@ usr/bin/locale #usr/include/bits/procfs-id.h #usr/include/bits/procfs-prregset.h #usr/include/bits/procfs.h +#usr/include/bits/pthread_stack_min-dynamic.h +#usr/include/bits/pthread_stack_min.h #usr/include/bits/pthreadtypes-arch.h #usr/include/bits/pthreadtypes.h #usr/include/bits/ptrace-shared.h #usr/include/bits/resource.h +#usr/include/bits/rseq.h #usr/include/bits/sched.h #usr/include/bits/select.h #usr/include/bits/select2.h @@ -169,6 +158,7 @@ usr/bin/locale #usr/include/bits/signum-arch.h #usr/include/bits/signum-generic.h #usr/include/bits/sigstack.h +#usr/include/bits/sigstksz.h #usr/include/bits/sigthread.h #usr/include/bits/sockaddr.h #usr/include/bits/socket-constants.h @@ -197,6 +187,7 @@ usr/bin/locale #usr/include/bits/struct_mutex.h #usr/include/bits/struct_rwlock.h #usr/include/bits/struct_stat.h +#usr/include/bits/struct_stat_time64_helper.h #usr/include/bits/syscall.h #usr/include/bits/syslog-ldbl.h #usr/include/bits/syslog-path.h @@ -245,11 +236,17 @@ usr/bin/locale #usr/include/bits/types/struct___jmp_buf_tag.h #usr/include/bits/types/struct_iovec.h #usr/include/bits/types/struct_itimerspec.h +#usr/include/bits/types/struct_msqid64_ds.h +#usr/include/bits/types/struct_msqid64_ds_helper.h #usr/include/bits/types/struct_msqid_ds.h #usr/include/bits/types/struct_osockaddr.h #usr/include/bits/types/struct_rusage.h #usr/include/bits/types/struct_sched_param.h +#usr/include/bits/types/struct_semid64_ds.h +#usr/include/bits/types/struct_semid64_ds_helper.h #usr/include/bits/types/struct_semid_ds.h +#usr/include/bits/types/struct_shmid64_ds.h +#usr/include/bits/types/struct_shmid64_ds_helper.h #usr/include/bits/types/struct_shmid_ds.h #usr/include/bits/types/struct_sigstack.h #usr/include/bits/types/struct_statx.h @@ -292,6 +289,7 @@ usr/bin/locale #usr/include/error.h #usr/include/execinfo.h #usr/include/fcntl.h +#usr/include/features-time64.h #usr/include/features.h #usr/include/fenv.h #usr/include/finclude @@ -457,6 +455,7 @@ usr/bin/locale #usr/include/sys/raw.h #usr/include/sys/reboot.h #usr/include/sys/resource.h +#usr/include/sys/rseq.h #usr/include/sys/select.h #usr/include/sys/sem.h #usr/include/sys/sendfile.h @@ -774,6 +773,8 @@ usr/lib/gconv #usr/lib/gconv/UTF-7.so #usr/lib/gconv/VISCII.so #usr/lib/gconv/gconv-modules +#usr/lib/gconv/gconv-modules.d +#usr/lib/gconv/gconv-modules.d/gconv-modules-extra.conf #usr/lib/gconv/libCNS.so #usr/lib/gconv/libGB.so #usr/lib/gconv/libISOIR165.so @@ -795,28 +796,37 @@ usr/lib/gconv #usr/lib/libanl.so #usr/lib/libc.a #usr/lib/libc.so +#usr/lib/libc_malloc_debug.so #usr/lib/libc_nonshared.a #usr/lib/libdl.a -#usr/lib/libdl.so #usr/lib/libg.a #usr/lib/libm.a #usr/lib/libm.so #usr/lib/libmcheck.a #usr/lib/libnss_compat.so #usr/lib/libnss_db.so -#usr/lib/libnss_dns.so -#usr/lib/libnss_files.so #usr/lib/libnss_hesiod.so #usr/lib/libpthread.a -#usr/lib/libpthread.so #usr/lib/libresolv.a #usr/lib/libresolv.so #usr/lib/librt.a -#usr/lib/librt.so #usr/lib/libthread_db.so #usr/lib/libutil.a -#usr/lib/libutil.so usr/lib/locale +#usr/lib/locale/C.utf8 +#usr/lib/locale/C.utf8/LC_ADDRESS +#usr/lib/locale/C.utf8/LC_COLLATE +#usr/lib/locale/C.utf8/LC_CTYPE +#usr/lib/locale/C.utf8/LC_IDENTIFICATION +#usr/lib/locale/C.utf8/LC_MEASUREMENT +#usr/lib/locale/C.utf8/LC_MESSAGES +#usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES +#usr/lib/locale/C.utf8/LC_MONETARY +#usr/lib/locale/C.utf8/LC_NAME +#usr/lib/locale/C.utf8/LC_NUMERIC +#usr/lib/locale/C.utf8/LC_PAPER +#usr/lib/locale/C.utf8/LC_TELEPHONE +#usr/lib/locale/C.utf8/LC_TIME #usr/lib/locale/aa_DJ #usr/lib/locale/aa_DJ.utf8 #usr/lib/locale/aa_DJ.utf8/LC_ADDRESS @@ -7888,11 +7898,13 @@ usr/lib/locale #usr/share/i18n/charmaps/VISCII.gz #usr/share/i18n/charmaps/WINDOWS-31J.gz #usr/share/i18n/locales +#usr/share/i18n/locales/C #usr/share/i18n/locales/POSIX #usr/share/i18n/locales/aa_DJ #usr/share/i18n/locales/aa_ER #usr/share/i18n/locales/aa_ER@saaho #usr/share/i18n/locales/aa_ET +#usr/share/i18n/locales/ab_GE #usr/share/i18n/locales/af_ZA #usr/share/i18n/locales/agr_PE #usr/share/i18n/locales/ak_GH @@ -8254,6 +8266,7 @@ usr/lib/locale #usr/share/info/libc.info-15 #usr/share/info/libc.info-16 #usr/share/info/libc.info-17 +#usr/share/info/libc.info-18 #usr/share/info/libc.info-2 #usr/share/info/libc.info-3 #usr/share/info/libc.info-4 @@ -8374,7 +8387,5 @@ usr/lib/locale #usr/share/locale/zh_TW #usr/share/locale/zh_TW/LC_MESSAGES #usr/share/locale/zh_TW/LC_MESSAGES/libc.mo -#var/cache/ldconfig -#var/cache/ldconfig/aux-cache #var/db #var/db/Makefile diff --git a/config/rootfiles/common/armv6l/python3 b/config/rootfiles/common/armv6l/python3 index fc9d029823..4e590393b7 100644 --- a/config/rootfiles/common/armv6l/python3 +++ b/config/rootfiles/common/armv6l/python3 @@ -1,1804 +1,1872 @@ usr/bin/2to3 -usr/bin/2to3-3.8 -usr/bin/easy_install-3.8 +usr/bin/2to3-3.10 usr/bin/idle3 -usr/bin/idle3.8 +usr/bin/idle3.10 usr/bin/pip3 -usr/bin/pip3.8 +usr/bin/pip3.10 usr/bin/pydoc3 -usr/bin/pydoc3.8 +usr/bin/pydoc3.10 usr/bin/python3 usr/bin/python3-config -usr/bin/python3.8 -usr/bin/python3.8-config -#usr/include/python3.8 -#usr/include/python3.8/Python-ast.h -#usr/include/python3.8/Python.h -#usr/include/python3.8/abstract.h -#usr/include/python3.8/asdl.h -#usr/include/python3.8/ast.h -#usr/include/python3.8/bitset.h -#usr/include/python3.8/bltinmodule.h -#usr/include/python3.8/boolobject.h -#usr/include/python3.8/bytearrayobject.h -#usr/include/python3.8/bytes_methods.h -#usr/include/python3.8/bytesobject.h -#usr/include/python3.8/cellobject.h -#usr/include/python3.8/ceval.h -#usr/include/python3.8/classobject.h -#usr/include/python3.8/code.h -#usr/include/python3.8/codecs.h -#usr/include/python3.8/compile.h -#usr/include/python3.8/complexobject.h -#usr/include/python3.8/context.h -#usr/include/python3.8/cpython -#usr/include/python3.8/cpython/abstract.h -#usr/include/python3.8/cpython/dictobject.h -#usr/include/python3.8/cpython/fileobject.h -#usr/include/python3.8/cpython/initconfig.h -#usr/include/python3.8/cpython/interpreteridobject.h -#usr/include/python3.8/cpython/object.h -#usr/include/python3.8/cpython/objimpl.h -#usr/include/python3.8/cpython/pyerrors.h -#usr/include/python3.8/cpython/pylifecycle.h -#usr/include/python3.8/cpython/pymem.h -#usr/include/python3.8/cpython/pystate.h -#usr/include/python3.8/cpython/sysmodule.h -#usr/include/python3.8/cpython/traceback.h -#usr/include/python3.8/cpython/tupleobject.h -#usr/include/python3.8/cpython/unicodeobject.h -#usr/include/python3.8/datetime.h -#usr/include/python3.8/descrobject.h -#usr/include/python3.8/dictobject.h -#usr/include/python3.8/dtoa.h -#usr/include/python3.8/dynamic_annotations.h -#usr/include/python3.8/enumobject.h -#usr/include/python3.8/errcode.h -#usr/include/python3.8/eval.h -#usr/include/python3.8/fileobject.h -#usr/include/python3.8/fileutils.h -#usr/include/python3.8/floatobject.h -#usr/include/python3.8/frameobject.h -#usr/include/python3.8/funcobject.h -#usr/include/python3.8/genobject.h -#usr/include/python3.8/graminit.h -#usr/include/python3.8/grammar.h -#usr/include/python3.8/import.h -#usr/include/python3.8/internal -#usr/include/python3.8/internal/pycore_accu.h -#usr/include/python3.8/internal/pycore_atomic.h -#usr/include/python3.8/internal/pycore_ceval.h -#usr/include/python3.8/internal/pycore_code.h -#usr/include/python3.8/internal/pycore_condvar.h -#usr/include/python3.8/internal/pycore_context.h -#usr/include/python3.8/internal/pycore_fileutils.h -#usr/include/python3.8/internal/pycore_getopt.h -#usr/include/python3.8/internal/pycore_gil.h -#usr/include/python3.8/internal/pycore_hamt.h -#usr/include/python3.8/internal/pycore_initconfig.h -#usr/include/python3.8/internal/pycore_object.h -#usr/include/python3.8/internal/pycore_pathconfig.h -#usr/include/python3.8/internal/pycore_pyerrors.h -#usr/include/python3.8/internal/pycore_pyhash.h -#usr/include/python3.8/internal/pycore_pylifecycle.h -#usr/include/python3.8/internal/pycore_pymem.h -#usr/include/python3.8/internal/pycore_pystate.h -#usr/include/python3.8/internal/pycore_traceback.h -#usr/include/python3.8/internal/pycore_tupleobject.h -#usr/include/python3.8/internal/pycore_warnings.h -#usr/include/python3.8/interpreteridobject.h -#usr/include/python3.8/intrcheck.h -#usr/include/python3.8/iterobject.h -#usr/include/python3.8/listobject.h -#usr/include/python3.8/longintrepr.h -#usr/include/python3.8/longobject.h -#usr/include/python3.8/marshal.h -#usr/include/python3.8/memoryobject.h -#usr/include/python3.8/methodobject.h -#usr/include/python3.8/modsupport.h -#usr/include/python3.8/moduleobject.h -#usr/include/python3.8/namespaceobject.h -#usr/include/python3.8/node.h -#usr/include/python3.8/object.h -#usr/include/python3.8/objimpl.h -#usr/include/python3.8/odictobject.h -#usr/include/python3.8/opcode.h -#usr/include/python3.8/osdefs.h -#usr/include/python3.8/osmodule.h -#usr/include/python3.8/parsetok.h -#usr/include/python3.8/patchlevel.h -#usr/include/python3.8/picklebufobject.h -#usr/include/python3.8/py_curses.h -#usr/include/python3.8/pyarena.h -#usr/include/python3.8/pycapsule.h -#usr/include/python3.8/pyconfig.h -#usr/include/python3.8/pyctype.h -#usr/include/python3.8/pydebug.h -#usr/include/python3.8/pydtrace.h -#usr/include/python3.8/pyerrors.h -#usr/include/python3.8/pyexpat.h -#usr/include/python3.8/pyfpe.h -#usr/include/python3.8/pyhash.h -#usr/include/python3.8/pylifecycle.h -#usr/include/python3.8/pymacconfig.h -#usr/include/python3.8/pymacro.h -#usr/include/python3.8/pymath.h -#usr/include/python3.8/pymem.h -#usr/include/python3.8/pyport.h -#usr/include/python3.8/pystate.h -#usr/include/python3.8/pystrcmp.h -#usr/include/python3.8/pystrhex.h -#usr/include/python3.8/pystrtod.h -#usr/include/python3.8/pythonrun.h -#usr/include/python3.8/pythread.h -#usr/include/python3.8/pytime.h -#usr/include/python3.8/rangeobject.h -#usr/include/python3.8/setobject.h -#usr/include/python3.8/sliceobject.h -#usr/include/python3.8/structmember.h -#usr/include/python3.8/structseq.h -#usr/include/python3.8/symtable.h -#usr/include/python3.8/sysmodule.h -#usr/include/python3.8/token.h -#usr/include/python3.8/traceback.h -#usr/include/python3.8/tracemalloc.h -#usr/include/python3.8/tupleobject.h -#usr/include/python3.8/typeslots.h -#usr/include/python3.8/ucnhash.h -#usr/include/python3.8/unicodeobject.h -#usr/include/python3.8/warnings.h -#usr/include/python3.8/weakrefobject.h -usr/lib/libpython3.8.so -usr/lib/libpython3.8.so.1.0 +usr/bin/python3.10 +usr/bin/python3.10-config +#usr/include/python3.10 +#usr/include/python3.10/Python.h +#usr/include/python3.10/abstract.h +#usr/include/python3.10/bltinmodule.h +#usr/include/python3.10/boolobject.h +#usr/include/python3.10/bytearrayobject.h +#usr/include/python3.10/bytesobject.h +#usr/include/python3.10/cellobject.h +#usr/include/python3.10/ceval.h +#usr/include/python3.10/classobject.h +#usr/include/python3.10/code.h +#usr/include/python3.10/codecs.h +#usr/include/python3.10/compile.h +#usr/include/python3.10/complexobject.h +#usr/include/python3.10/context.h +#usr/include/python3.10/cpython +#usr/include/python3.10/cpython/abstract.h +#usr/include/python3.10/cpython/bytearrayobject.h +#usr/include/python3.10/cpython/bytesobject.h +#usr/include/python3.10/cpython/ceval.h +#usr/include/python3.10/cpython/code.h +#usr/include/python3.10/cpython/compile.h +#usr/include/python3.10/cpython/dictobject.h +#usr/include/python3.10/cpython/fileobject.h +#usr/include/python3.10/cpython/fileutils.h +#usr/include/python3.10/cpython/frameobject.h +#usr/include/python3.10/cpython/import.h +#usr/include/python3.10/cpython/initconfig.h +#usr/include/python3.10/cpython/interpreteridobject.h +#usr/include/python3.10/cpython/listobject.h +#usr/include/python3.10/cpython/methodobject.h +#usr/include/python3.10/cpython/object.h +#usr/include/python3.10/cpython/objimpl.h +#usr/include/python3.10/cpython/odictobject.h +#usr/include/python3.10/cpython/picklebufobject.h +#usr/include/python3.10/cpython/pyctype.h +#usr/include/python3.10/cpython/pydebug.h +#usr/include/python3.10/cpython/pyerrors.h +#usr/include/python3.10/cpython/pyfpe.h +#usr/include/python3.10/cpython/pylifecycle.h +#usr/include/python3.10/cpython/pymem.h +#usr/include/python3.10/cpython/pystate.h +#usr/include/python3.10/cpython/pythonrun.h +#usr/include/python3.10/cpython/pytime.h +#usr/include/python3.10/cpython/sysmodule.h +#usr/include/python3.10/cpython/traceback.h +#usr/include/python3.10/cpython/tupleobject.h +#usr/include/python3.10/cpython/unicodeobject.h +#usr/include/python3.10/datetime.h +#usr/include/python3.10/descrobject.h +#usr/include/python3.10/dictobject.h +#usr/include/python3.10/dynamic_annotations.h +#usr/include/python3.10/enumobject.h +#usr/include/python3.10/errcode.h +#usr/include/python3.10/eval.h +#usr/include/python3.10/exports.h +#usr/include/python3.10/fileobject.h +#usr/include/python3.10/fileutils.h +#usr/include/python3.10/floatobject.h +#usr/include/python3.10/frameobject.h +#usr/include/python3.10/funcobject.h +#usr/include/python3.10/genericaliasobject.h +#usr/include/python3.10/genobject.h +#usr/include/python3.10/import.h +#usr/include/python3.10/internal +#usr/include/python3.10/internal/pycore_abstract.h +#usr/include/python3.10/internal/pycore_accu.h +#usr/include/python3.10/internal/pycore_asdl.h +#usr/include/python3.10/internal/pycore_ast.h +#usr/include/python3.10/internal/pycore_ast_state.h +#usr/include/python3.10/internal/pycore_atomic.h +#usr/include/python3.10/internal/pycore_atomic_funcs.h +#usr/include/python3.10/internal/pycore_bitutils.h +#usr/include/python3.10/internal/pycore_blocks_output_buffer.h +#usr/include/python3.10/internal/pycore_bytes_methods.h +#usr/include/python3.10/internal/pycore_call.h +#usr/include/python3.10/internal/pycore_ceval.h +#usr/include/python3.10/internal/pycore_code.h +#usr/include/python3.10/internal/pycore_compile.h +#usr/include/python3.10/internal/pycore_condvar.h +#usr/include/python3.10/internal/pycore_context.h +#usr/include/python3.10/internal/pycore_dtoa.h +#usr/include/python3.10/internal/pycore_fileutils.h +#usr/include/python3.10/internal/pycore_format.h +#usr/include/python3.10/internal/pycore_gc.h +#usr/include/python3.10/internal/pycore_getopt.h +#usr/include/python3.10/internal/pycore_gil.h +#usr/include/python3.10/internal/pycore_hamt.h +#usr/include/python3.10/internal/pycore_hashtable.h +#usr/include/python3.10/internal/pycore_import.h +#usr/include/python3.10/internal/pycore_initconfig.h +#usr/include/python3.10/internal/pycore_interp.h +#usr/include/python3.10/internal/pycore_list.h +#usr/include/python3.10/internal/pycore_long.h +#usr/include/python3.10/internal/pycore_moduleobject.h +#usr/include/python3.10/internal/pycore_object.h +#usr/include/python3.10/internal/pycore_parser.h +#usr/include/python3.10/internal/pycore_pathconfig.h +#usr/include/python3.10/internal/pycore_pyarena.h +#usr/include/python3.10/internal/pycore_pyerrors.h +#usr/include/python3.10/internal/pycore_pyhash.h +#usr/include/python3.10/internal/pycore_pylifecycle.h +#usr/include/python3.10/internal/pycore_pymem.h +#usr/include/python3.10/internal/pycore_pystate.h +#usr/include/python3.10/internal/pycore_runtime.h +#usr/include/python3.10/internal/pycore_structseq.h +#usr/include/python3.10/internal/pycore_symtable.h +#usr/include/python3.10/internal/pycore_sysmodule.h +#usr/include/python3.10/internal/pycore_traceback.h +#usr/include/python3.10/internal/pycore_tuple.h +#usr/include/python3.10/internal/pycore_ucnhash.h +#usr/include/python3.10/internal/pycore_unionobject.h +#usr/include/python3.10/internal/pycore_warnings.h +#usr/include/python3.10/interpreteridobject.h +#usr/include/python3.10/intrcheck.h +#usr/include/python3.10/iterobject.h +#usr/include/python3.10/listobject.h +#usr/include/python3.10/longintrepr.h +#usr/include/python3.10/longobject.h +#usr/include/python3.10/marshal.h +#usr/include/python3.10/memoryobject.h +#usr/include/python3.10/methodobject.h +#usr/include/python3.10/modsupport.h +#usr/include/python3.10/moduleobject.h +#usr/include/python3.10/namespaceobject.h +#usr/include/python3.10/object.h +#usr/include/python3.10/objimpl.h +#usr/include/python3.10/opcode.h +#usr/include/python3.10/osdefs.h +#usr/include/python3.10/osmodule.h +#usr/include/python3.10/patchlevel.h +#usr/include/python3.10/py_curses.h +#usr/include/python3.10/pycapsule.h +#usr/include/python3.10/pyconfig.h +#usr/include/python3.10/pydtrace.h +#usr/include/python3.10/pyerrors.h +#usr/include/python3.10/pyexpat.h +#usr/include/python3.10/pyframe.h +#usr/include/python3.10/pyhash.h +#usr/include/python3.10/pylifecycle.h +#usr/include/python3.10/pymacconfig.h +#usr/include/python3.10/pymacro.h +#usr/include/python3.10/pymath.h +#usr/include/python3.10/pymem.h +#usr/include/python3.10/pyport.h +#usr/include/python3.10/pystate.h +#usr/include/python3.10/pystrcmp.h +#usr/include/python3.10/pystrhex.h +#usr/include/python3.10/pystrtod.h +#usr/include/python3.10/pythonrun.h +#usr/include/python3.10/pythread.h +#usr/include/python3.10/rangeobject.h +#usr/include/python3.10/setobject.h +#usr/include/python3.10/sliceobject.h +#usr/include/python3.10/structmember.h +#usr/include/python3.10/structseq.h +#usr/include/python3.10/sysmodule.h +#usr/include/python3.10/token.h +#usr/include/python3.10/traceback.h +#usr/include/python3.10/tracemalloc.h +#usr/include/python3.10/tupleobject.h +#usr/include/python3.10/typeslots.h +#usr/include/python3.10/unicodeobject.h +#usr/include/python3.10/warnings.h +#usr/include/python3.10/weakrefobject.h +usr/lib/libpython3.10.so +usr/lib/libpython3.10.so.1.0 #usr/lib/libpython3.so -#usr/lib/pkgconfig/python-3.8-embed.pc -#usr/lib/pkgconfig/python-3.8.pc +#usr/lib/pkgconfig/python-3.10-embed.pc +#usr/lib/pkgconfig/python-3.10.pc #usr/lib/pkgconfig/python3-embed.pc #usr/lib/pkgconfig/python3.pc -#usr/lib/python3.8 -#usr/lib/python3.8/LICENSE.txt -usr/lib/python3.8/__future__.py -usr/lib/python3.8/__phello__.foo.py -usr/lib/python3.8/_bootlocale.py -usr/lib/python3.8/_collections_abc.py -usr/lib/python3.8/_compat_pickle.py -usr/lib/python3.8/_compression.py -usr/lib/python3.8/_dummy_thread.py -usr/lib/python3.8/_markupbase.py -usr/lib/python3.8/_osx_support.py -usr/lib/python3.8/_py_abc.py -usr/lib/python3.8/_pydecimal.py -usr/lib/python3.8/_pyio.py -usr/lib/python3.8/_sitebuiltins.py -usr/lib/python3.8/_strptime.py -usr/lib/python3.8/_sysconfigdata__linux_arm-linux-gnueabi.py -usr/lib/python3.8/_threading_local.py -usr/lib/python3.8/_weakrefset.py -usr/lib/python3.8/abc.py -usr/lib/python3.8/aifc.py -usr/lib/python3.8/antigravity.py -usr/lib/python3.8/argparse.py -usr/lib/python3.8/ast.py -usr/lib/python3.8/asynchat.py -#usr/lib/python3.8/asyncio -usr/lib/python3.8/asyncio/__init__.py -usr/lib/python3.8/asyncio/__main__.py -usr/lib/python3.8/asyncio/base_events.py -usr/lib/python3.8/asyncio/base_futures.py -usr/lib/python3.8/asyncio/base_subprocess.py -usr/lib/python3.8/asyncio/base_tasks.py -usr/lib/python3.8/asyncio/constants.py -usr/lib/python3.8/asyncio/coroutines.py -usr/lib/python3.8/asyncio/events.py -usr/lib/python3.8/asyncio/exceptions.py -usr/lib/python3.8/asyncio/format_helpers.py -usr/lib/python3.8/asyncio/futures.py -usr/lib/python3.8/asyncio/locks.py -usr/lib/python3.8/asyncio/log.py -usr/lib/python3.8/asyncio/proactor_events.py -usr/lib/python3.8/asyncio/protocols.py -usr/lib/python3.8/asyncio/queues.py -usr/lib/python3.8/asyncio/runners.py -usr/lib/python3.8/asyncio/selector_events.py -usr/lib/python3.8/asyncio/sslproto.py -usr/lib/python3.8/asyncio/staggered.py -usr/lib/python3.8/asyncio/streams.py -usr/lib/python3.8/asyncio/subprocess.py -usr/lib/python3.8/asyncio/tasks.py -usr/lib/python3.8/asyncio/transports.py -usr/lib/python3.8/asyncio/trsock.py -usr/lib/python3.8/asyncio/unix_events.py -usr/lib/python3.8/asyncio/windows_events.py -usr/lib/python3.8/asyncio/windows_utils.py -usr/lib/python3.8/asyncore.py -usr/lib/python3.8/base64.py -usr/lib/python3.8/bdb.py -usr/lib/python3.8/binhex.py -usr/lib/python3.8/bisect.py -usr/lib/python3.8/bz2.py -usr/lib/python3.8/cProfile.py -usr/lib/python3.8/calendar.py -usr/lib/python3.8/cgi.py -usr/lib/python3.8/cgitb.py -usr/lib/python3.8/chunk.py -usr/lib/python3.8/cmd.py -usr/lib/python3.8/code.py -usr/lib/python3.8/codecs.py -usr/lib/python3.8/codeop.py -#usr/lib/python3.8/collections -usr/lib/python3.8/collections/__init__.py -usr/lib/python3.8/collections/abc.py -usr/lib/python3.8/colorsys.py -usr/lib/python3.8/compileall.py -#usr/lib/python3.8/concurrent -usr/lib/python3.8/concurrent/__init__.py -#usr/lib/python3.8/concurrent/futures -usr/lib/python3.8/concurrent/futures/__init__.py -usr/lib/python3.8/concurrent/futures/_base.py -usr/lib/python3.8/concurrent/futures/process.py -usr/lib/python3.8/concurrent/futures/thread.py -#usr/lib/python3.8/config-3.8-arm-linux-gnueabi -usr/lib/python3.8/config-3.8-arm-linux-gnueabi/Makefile -usr/lib/python3.8/config-3.8-arm-linux-gnueabi/Setup -usr/lib/python3.8/config-3.8-arm-linux-gnueabi/Setup.local -usr/lib/python3.8/config-3.8-arm-linux-gnueabi/config.c -usr/lib/python3.8/config-3.8-arm-linux-gnueabi/config.c.in -usr/lib/python3.8/config-3.8-arm-linux-gnueabi/install-sh -usr/lib/python3.8/config-3.8-arm-linux-gnueabi/libpython3.8.a -usr/lib/python3.8/config-3.8-arm-linux-gnueabi/makesetup -usr/lib/python3.8/config-3.8-arm-linux-gnueabi/python-config.py -usr/lib/python3.8/config-3.8-arm-linux-gnueabi/python.o -usr/lib/python3.8/configparser.py -usr/lib/python3.8/contextlib.py -usr/lib/python3.8/contextvars.py -usr/lib/python3.8/copy.py -usr/lib/python3.8/copyreg.py -usr/lib/python3.8/crypt.py -usr/lib/python3.8/csv.py -#usr/lib/python3.8/ctypes -usr/lib/python3.8/ctypes/__init__.py -usr/lib/python3.8/ctypes/_aix.py -usr/lib/python3.8/ctypes/_endian.py -#usr/lib/python3.8/ctypes/macholib -usr/lib/python3.8/ctypes/macholib/README.ctypes -usr/lib/python3.8/ctypes/macholib/__init__.py -usr/lib/python3.8/ctypes/macholib/dyld.py -usr/lib/python3.8/ctypes/macholib/dylib.py -usr/lib/python3.8/ctypes/macholib/fetch_macholib -usr/lib/python3.8/ctypes/macholib/fetch_macholib.bat -usr/lib/python3.8/ctypes/macholib/framework.py -#usr/lib/python3.8/ctypes/test -usr/lib/python3.8/ctypes/util.py -usr/lib/python3.8/ctypes/wintypes.py -#usr/lib/python3.8/curses -usr/lib/python3.8/curses/__init__.py -usr/lib/python3.8/curses/ascii.py -usr/lib/python3.8/curses/has_key.py -usr/lib/python3.8/curses/panel.py -usr/lib/python3.8/curses/textpad.py -usr/lib/python3.8/dataclasses.py -usr/lib/python3.8/datetime.py -#usr/lib/python3.8/dbm -usr/lib/python3.8/dbm/__init__.py -usr/lib/python3.8/dbm/dumb.py -usr/lib/python3.8/dbm/gnu.py -usr/lib/python3.8/dbm/ndbm.py -usr/lib/python3.8/decimal.py -usr/lib/python3.8/difflib.py -usr/lib/python3.8/dis.py -#usr/lib/python3.8/distutils -#usr/lib/python3.8/distutils/README -usr/lib/python3.8/distutils/__init__.py -usr/lib/python3.8/distutils/_msvccompiler.py -usr/lib/python3.8/distutils/archive_util.py -usr/lib/python3.8/distutils/bcppcompiler.py -usr/lib/python3.8/distutils/ccompiler.py -usr/lib/python3.8/distutils/cmd.py -#usr/lib/python3.8/distutils/command -usr/lib/python3.8/distutils/command/__init__.py -usr/lib/python3.8/distutils/command/bdist.py -usr/lib/python3.8/distutils/command/bdist_dumb.py -usr/lib/python3.8/distutils/command/bdist_msi.py -usr/lib/python3.8/distutils/command/bdist_rpm.py -usr/lib/python3.8/distutils/command/bdist_wininst.py -usr/lib/python3.8/distutils/command/build.py -usr/lib/python3.8/distutils/command/build_clib.py -usr/lib/python3.8/distutils/command/build_ext.py -usr/lib/python3.8/distutils/command/build_py.py -usr/lib/python3.8/distutils/command/build_scripts.py -usr/lib/python3.8/distutils/command/check.py -usr/lib/python3.8/distutils/command/clean.py -usr/lib/python3.8/distutils/command/command_template -usr/lib/python3.8/distutils/command/config.py -usr/lib/python3.8/distutils/command/install.py -usr/lib/python3.8/distutils/command/install_data.py -usr/lib/python3.8/distutils/command/install_egg_info.py -usr/lib/python3.8/distutils/command/install_headers.py -usr/lib/python3.8/distutils/command/install_lib.py -usr/lib/python3.8/distutils/command/install_scripts.py -usr/lib/python3.8/distutils/command/register.py -usr/lib/python3.8/distutils/command/sdist.py -usr/lib/python3.8/distutils/command/upload.py -usr/lib/python3.8/distutils/command/wininst-10.0-amd64.exe -usr/lib/python3.8/distutils/command/wininst-10.0.exe -usr/lib/python3.8/distutils/command/wininst-14.0-amd64.exe -usr/lib/python3.8/distutils/command/wininst-14.0.exe -usr/lib/python3.8/distutils/command/wininst-6.0.exe -usr/lib/python3.8/distutils/command/wininst-7.1.exe -usr/lib/python3.8/distutils/command/wininst-8.0.exe -usr/lib/python3.8/distutils/command/wininst-9.0-amd64.exe -usr/lib/python3.8/distutils/command/wininst-9.0.exe -usr/lib/python3.8/distutils/config.py -usr/lib/python3.8/distutils/core.py -usr/lib/python3.8/distutils/cygwinccompiler.py -usr/lib/python3.8/distutils/debug.py -usr/lib/python3.8/distutils/dep_util.py -usr/lib/python3.8/distutils/dir_util.py -usr/lib/python3.8/distutils/dist.py -usr/lib/python3.8/distutils/errors.py -usr/lib/python3.8/distutils/extension.py -usr/lib/python3.8/distutils/fancy_getopt.py -usr/lib/python3.8/distutils/file_util.py -usr/lib/python3.8/distutils/filelist.py -usr/lib/python3.8/distutils/log.py -usr/lib/python3.8/distutils/msvc9compiler.py -usr/lib/python3.8/distutils/msvccompiler.py -usr/lib/python3.8/distutils/spawn.py -usr/lib/python3.8/distutils/sysconfig.py -#usr/lib/python3.8/distutils/tests -usr/lib/python3.8/distutils/tests/Setup.sample -usr/lib/python3.8/distutils/tests/__init__.py -usr/lib/python3.8/distutils/tests/includetest.rst -usr/lib/python3.8/distutils/tests/support.py -usr/lib/python3.8/distutils/tests/test_archive_util.py -usr/lib/python3.8/distutils/tests/test_bdist.py -usr/lib/python3.8/distutils/tests/test_bdist_dumb.py -usr/lib/python3.8/distutils/tests/test_bdist_msi.py -usr/lib/python3.8/distutils/tests/test_bdist_rpm.py -usr/lib/python3.8/distutils/tests/test_bdist_wininst.py -usr/lib/python3.8/distutils/tests/test_build.py -usr/lib/python3.8/distutils/tests/test_build_clib.py -usr/lib/python3.8/distutils/tests/test_build_ext.py -usr/lib/python3.8/distutils/tests/test_build_py.py -usr/lib/python3.8/distutils/tests/test_build_scripts.py -usr/lib/python3.8/distutils/tests/test_check.py -usr/lib/python3.8/distutils/tests/test_clean.py -usr/lib/python3.8/distutils/tests/test_cmd.py -usr/lib/python3.8/distutils/tests/test_config.py -usr/lib/python3.8/distutils/tests/test_config_cmd.py -usr/lib/python3.8/distutils/tests/test_core.py -usr/lib/python3.8/distutils/tests/test_cygwinccompiler.py -usr/lib/python3.8/distutils/tests/test_dep_util.py -usr/lib/python3.8/distutils/tests/test_dir_util.py -usr/lib/python3.8/distutils/tests/test_dist.py -usr/lib/python3.8/distutils/tests/test_extension.py -usr/lib/python3.8/distutils/tests/test_file_util.py -usr/lib/python3.8/distutils/tests/test_filelist.py -usr/lib/python3.8/distutils/tests/test_install.py -usr/lib/python3.8/distutils/tests/test_install_data.py -usr/lib/python3.8/distutils/tests/test_install_headers.py -usr/lib/python3.8/distutils/tests/test_install_lib.py -usr/lib/python3.8/distutils/tests/test_install_scripts.py -usr/lib/python3.8/distutils/tests/test_log.py -usr/lib/python3.8/distutils/tests/test_msvc9compiler.py -usr/lib/python3.8/distutils/tests/test_msvccompiler.py -usr/lib/python3.8/distutils/tests/test_register.py -usr/lib/python3.8/distutils/tests/test_sdist.py -usr/lib/python3.8/distutils/tests/test_spawn.py -usr/lib/python3.8/distutils/tests/test_sysconfig.py -usr/lib/python3.8/distutils/tests/test_text_file.py -usr/lib/python3.8/distutils/tests/test_unixccompiler.py -usr/lib/python3.8/distutils/tests/test_upload.py -usr/lib/python3.8/distutils/tests/test_util.py -usr/lib/python3.8/distutils/tests/test_version.py -usr/lib/python3.8/distutils/tests/test_versionpredicate.py -usr/lib/python3.8/distutils/tests/xxmodule.c -usr/lib/python3.8/distutils/text_file.py -usr/lib/python3.8/distutils/unixccompiler.py -usr/lib/python3.8/distutils/util.py -usr/lib/python3.8/distutils/version.py -usr/lib/python3.8/distutils/versionpredicate.py -usr/lib/python3.8/doctest.py -usr/lib/python3.8/dummy_threading.py -#usr/lib/python3.8/email -usr/lib/python3.8/email/__init__.py -usr/lib/python3.8/email/_encoded_words.py -usr/lib/python3.8/email/_header_value_parser.py -usr/lib/python3.8/email/_parseaddr.py -usr/lib/python3.8/email/_policybase.py -usr/lib/python3.8/email/architecture.rst -usr/lib/python3.8/email/base64mime.py -usr/lib/python3.8/email/charset.py -usr/lib/python3.8/email/contentmanager.py -usr/lib/python3.8/email/encoders.py -usr/lib/python3.8/email/errors.py -usr/lib/python3.8/email/feedparser.py -usr/lib/python3.8/email/generator.py -usr/lib/python3.8/email/header.py -usr/lib/python3.8/email/headerregistry.py -usr/lib/python3.8/email/iterators.py -usr/lib/python3.8/email/message.py -#usr/lib/python3.8/email/mime -usr/lib/python3.8/email/mime/__init__.py -usr/lib/python3.8/email/mime/application.py -usr/lib/python3.8/email/mime/audio.py -usr/lib/python3.8/email/mime/base.py -usr/lib/python3.8/email/mime/image.py -usr/lib/python3.8/email/mime/message.py -usr/lib/python3.8/email/mime/multipart.py -usr/lib/python3.8/email/mime/nonmultipart.py -usr/lib/python3.8/email/mime/text.py -usr/lib/python3.8/email/parser.py -usr/lib/python3.8/email/policy.py -usr/lib/python3.8/email/quoprimime.py -usr/lib/python3.8/email/utils.py -#usr/lib/python3.8/encodings -usr/lib/python3.8/encodings/__init__.py -usr/lib/python3.8/encodings/aliases.py -usr/lib/python3.8/encodings/ascii.py -usr/lib/python3.8/encodings/base64_codec.py -usr/lib/python3.8/encodings/big5.py -usr/lib/python3.8/encodings/big5hkscs.py -usr/lib/python3.8/encodings/bz2_codec.py -usr/lib/python3.8/encodings/charmap.py -usr/lib/python3.8/encodings/cp037.py -usr/lib/python3.8/encodings/cp1006.py -usr/lib/python3.8/encodings/cp1026.py -usr/lib/python3.8/encodings/cp1125.py -usr/lib/python3.8/encodings/cp1140.py -usr/lib/python3.8/encodings/cp1250.py -usr/lib/python3.8/encodings/cp1251.py -usr/lib/python3.8/encodings/cp1252.py -usr/lib/python3.8/encodings/cp1253.py -usr/lib/python3.8/encodings/cp1254.py -usr/lib/python3.8/encodings/cp1255.py -usr/lib/python3.8/encodings/cp1256.py -usr/lib/python3.8/encodings/cp1257.py -usr/lib/python3.8/encodings/cp1258.py -usr/lib/python3.8/encodings/cp273.py -usr/lib/python3.8/encodings/cp424.py -usr/lib/python3.8/encodings/cp437.py -usr/lib/python3.8/encodings/cp500.py -usr/lib/python3.8/encodings/cp720.py -usr/lib/python3.8/encodings/cp737.py -usr/lib/python3.8/encodings/cp775.py -usr/lib/python3.8/encodings/cp850.py -usr/lib/python3.8/encodings/cp852.py -usr/lib/python3.8/encodings/cp855.py -usr/lib/python3.8/encodings/cp856.py -usr/lib/python3.8/encodings/cp857.py -usr/lib/python3.8/encodings/cp858.py -usr/lib/python3.8/encodings/cp860.py -usr/lib/python3.8/encodings/cp861.py -usr/lib/python3.8/encodings/cp862.py -usr/lib/python3.8/encodings/cp863.py -usr/lib/python3.8/encodings/cp864.py -usr/lib/python3.8/encodings/cp865.py -usr/lib/python3.8/encodings/cp866.py -usr/lib/python3.8/encodings/cp869.py -usr/lib/python3.8/encodings/cp874.py -usr/lib/python3.8/encodings/cp875.py -usr/lib/python3.8/encodings/cp932.py -usr/lib/python3.8/encodings/cp949.py -usr/lib/python3.8/encodings/cp950.py -usr/lib/python3.8/encodings/euc_jis_2004.py -usr/lib/python3.8/encodings/euc_jisx0213.py -usr/lib/python3.8/encodings/euc_jp.py -usr/lib/python3.8/encodings/euc_kr.py -usr/lib/python3.8/encodings/gb18030.py -usr/lib/python3.8/encodings/gb2312.py -usr/lib/python3.8/encodings/gbk.py -usr/lib/python3.8/encodings/hex_codec.py -usr/lib/python3.8/encodings/hp_roman8.py -usr/lib/python3.8/encodings/hz.py -usr/lib/python3.8/encodings/idna.py -usr/lib/python3.8/encodings/iso2022_jp.py -usr/lib/python3.8/encodings/iso2022_jp_1.py -usr/lib/python3.8/encodings/iso2022_jp_2.py -usr/lib/python3.8/encodings/iso2022_jp_2004.py -usr/lib/python3.8/encodings/iso2022_jp_3.py -usr/lib/python3.8/encodings/iso2022_jp_ext.py -usr/lib/python3.8/encodings/iso2022_kr.py -usr/lib/python3.8/encodings/iso8859_1.py -usr/lib/python3.8/encodings/iso8859_10.py -usr/lib/python3.8/encodings/iso8859_11.py -usr/lib/python3.8/encodings/iso8859_13.py -usr/lib/python3.8/encodings/iso8859_14.py -usr/lib/python3.8/encodings/iso8859_15.py -usr/lib/python3.8/encodings/iso8859_16.py -usr/lib/python3.8/encodings/iso8859_2.py -usr/lib/python3.8/encodings/iso8859_3.py -usr/lib/python3.8/encodings/iso8859_4.py -usr/lib/python3.8/encodings/iso8859_5.py -usr/lib/python3.8/encodings/iso8859_6.py -usr/lib/python3.8/encodings/iso8859_7.py -usr/lib/python3.8/encodings/iso8859_8.py -usr/lib/python3.8/encodings/iso8859_9.py -usr/lib/python3.8/encodings/johab.py -usr/lib/python3.8/encodings/koi8_r.py -usr/lib/python3.8/encodings/koi8_t.py -usr/lib/python3.8/encodings/koi8_u.py -usr/lib/python3.8/encodings/kz1048.py -usr/lib/python3.8/encodings/latin_1.py -usr/lib/python3.8/encodings/mac_arabic.py -usr/lib/python3.8/encodings/mac_centeuro.py -usr/lib/python3.8/encodings/mac_croatian.py -usr/lib/python3.8/encodings/mac_cyrillic.py -usr/lib/python3.8/encodings/mac_farsi.py -usr/lib/python3.8/encodings/mac_greek.py -usr/lib/python3.8/encodings/mac_iceland.py -usr/lib/python3.8/encodings/mac_latin2.py -usr/lib/python3.8/encodings/mac_roman.py -usr/lib/python3.8/encodings/mac_romanian.py -usr/lib/python3.8/encodings/mac_turkish.py -usr/lib/python3.8/encodings/mbcs.py -usr/lib/python3.8/encodings/oem.py -usr/lib/python3.8/encodings/palmos.py -usr/lib/python3.8/encodings/ptcp154.py -usr/lib/python3.8/encodings/punycode.py -usr/lib/python3.8/encodings/quopri_codec.py -usr/lib/python3.8/encodings/raw_unicode_escape.py -usr/lib/python3.8/encodings/rot_13.py -usr/lib/python3.8/encodings/shift_jis.py -usr/lib/python3.8/encodings/shift_jis_2004.py -usr/lib/python3.8/encodings/shift_jisx0213.py -usr/lib/python3.8/encodings/tis_620.py -usr/lib/python3.8/encodings/undefined.py -usr/lib/python3.8/encodings/unicode_escape.py -usr/lib/python3.8/encodings/utf_16.py -usr/lib/python3.8/encodings/utf_16_be.py -usr/lib/python3.8/encodings/utf_16_le.py -usr/lib/python3.8/encodings/utf_32.py -usr/lib/python3.8/encodings/utf_32_be.py -usr/lib/python3.8/encodings/utf_32_le.py -usr/lib/python3.8/encodings/utf_7.py -usr/lib/python3.8/encodings/utf_8.py -usr/lib/python3.8/encodings/utf_8_sig.py -usr/lib/python3.8/encodings/uu_codec.py -usr/lib/python3.8/encodings/zlib_codec.py -usr/lib/python3.8/ensurepip -usr/lib/python3.8/ensurepip/__init__.py -usr/lib/python3.8/ensurepip/__main__.py -usr/lib/python3.8/ensurepip/_bundled -usr/lib/python3.8/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl -usr/lib/python3.8/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl -usr/lib/python3.8/ensurepip/_uninstall.py -usr/lib/python3.8/enum.py -usr/lib/python3.8/filecmp.py -usr/lib/python3.8/fileinput.py -usr/lib/python3.8/fnmatch.py -usr/lib/python3.8/formatter.py -usr/lib/python3.8/fractions.py -usr/lib/python3.8/ftplib.py -usr/lib/python3.8/functools.py -usr/lib/python3.8/genericpath.py -usr/lib/python3.8/getopt.py -usr/lib/python3.8/getpass.py -usr/lib/python3.8/gettext.py -usr/lib/python3.8/glob.py -usr/lib/python3.8/gzip.py -usr/lib/python3.8/hashlib.py -usr/lib/python3.8/heapq.py -usr/lib/python3.8/hmac.py -#usr/lib/python3.8/html -usr/lib/python3.8/html/__init__.py -usr/lib/python3.8/html/entities.py -usr/lib/python3.8/html/parser.py -#usr/lib/python3.8/http -usr/lib/python3.8/http/__init__.py -usr/lib/python3.8/http/client.py -usr/lib/python3.8/http/cookiejar.py -usr/lib/python3.8/http/cookies.py -usr/lib/python3.8/http/server.py -#usr/lib/python3.8/idlelib -usr/lib/python3.8/idlelib/CREDITS.txt -usr/lib/python3.8/idlelib/ChangeLog -usr/lib/python3.8/idlelib/HISTORY.txt -usr/lib/python3.8/idlelib/Icons -usr/lib/python3.8/idlelib/Icons/README.txt -usr/lib/python3.8/idlelib/Icons/folder.gif -usr/lib/python3.8/idlelib/Icons/idle.ico -usr/lib/python3.8/idlelib/Icons/idle_16.gif -usr/lib/python3.8/idlelib/Icons/idle_16.png -usr/lib/python3.8/idlelib/Icons/idle_256.png -usr/lib/python3.8/idlelib/Icons/idle_32.gif -usr/lib/python3.8/idlelib/Icons/idle_32.png -usr/lib/python3.8/idlelib/Icons/idle_48.gif -usr/lib/python3.8/idlelib/Icons/idle_48.png -usr/lib/python3.8/idlelib/Icons/minusnode.gif -usr/lib/python3.8/idlelib/Icons/openfolder.gif -usr/lib/python3.8/idlelib/Icons/plusnode.gif -usr/lib/python3.8/idlelib/Icons/python.gif -usr/lib/python3.8/idlelib/Icons/tk.gif -usr/lib/python3.8/idlelib/NEWS.txt -usr/lib/python3.8/idlelib/NEWS2x.txt -usr/lib/python3.8/idlelib/README.txt -usr/lib/python3.8/idlelib/TODO.txt -usr/lib/python3.8/idlelib/__init__.py -usr/lib/python3.8/idlelib/__main__.py -usr/lib/python3.8/idlelib/autocomplete.py -usr/lib/python3.8/idlelib/autocomplete_w.py -usr/lib/python3.8/idlelib/autoexpand.py -usr/lib/python3.8/idlelib/browser.py -usr/lib/python3.8/idlelib/calltip.py -usr/lib/python3.8/idlelib/calltip_w.py -usr/lib/python3.8/idlelib/codecontext.py -usr/lib/python3.8/idlelib/colorizer.py -usr/lib/python3.8/idlelib/config-extensions.def -usr/lib/python3.8/idlelib/config-highlight.def -usr/lib/python3.8/idlelib/config-keys.def -usr/lib/python3.8/idlelib/config-main.def -usr/lib/python3.8/idlelib/config.py -usr/lib/python3.8/idlelib/config_key.py -usr/lib/python3.8/idlelib/configdialog.py -usr/lib/python3.8/idlelib/debugger.py -usr/lib/python3.8/idlelib/debugger_r.py -usr/lib/python3.8/idlelib/debugobj.py -usr/lib/python3.8/idlelib/debugobj_r.py -usr/lib/python3.8/idlelib/delegator.py -usr/lib/python3.8/idlelib/dynoption.py -usr/lib/python3.8/idlelib/editor.py -usr/lib/python3.8/idlelib/extend.txt -usr/lib/python3.8/idlelib/filelist.py -usr/lib/python3.8/idlelib/format.py -usr/lib/python3.8/idlelib/grep.py -usr/lib/python3.8/idlelib/help.html -usr/lib/python3.8/idlelib/help.py -usr/lib/python3.8/idlelib/help_about.py -usr/lib/python3.8/idlelib/history.py -usr/lib/python3.8/idlelib/hyperparser.py -usr/lib/python3.8/idlelib/idle.bat -usr/lib/python3.8/idlelib/idle.py -usr/lib/python3.8/idlelib/idle.pyw -usr/lib/python3.8/idlelib/idle_test -usr/lib/python3.8/idlelib/idle_test/README.txt -usr/lib/python3.8/idlelib/idle_test/__init__.py -usr/lib/python3.8/idlelib/idle_test/htest.py -usr/lib/python3.8/idlelib/idle_test/mock_idle.py -usr/lib/python3.8/idlelib/idle_test/mock_tk.py -usr/lib/python3.8/idlelib/idle_test/template.py -usr/lib/python3.8/idlelib/idle_test/test_autocomplete.py -usr/lib/python3.8/idlelib/idle_test/test_autocomplete_w.py -usr/lib/python3.8/idlelib/idle_test/test_autoexpand.py -usr/lib/python3.8/idlelib/idle_test/test_browser.py -usr/lib/python3.8/idlelib/idle_test/test_calltip.py -usr/lib/python3.8/idlelib/idle_test/test_calltip_w.py -usr/lib/python3.8/idlelib/idle_test/test_codecontext.py -usr/lib/python3.8/idlelib/idle_test/test_colorizer.py -usr/lib/python3.8/idlelib/idle_test/test_config.py -usr/lib/python3.8/idlelib/idle_test/test_config_key.py -usr/lib/python3.8/idlelib/idle_test/test_configdialog.py -usr/lib/python3.8/idlelib/idle_test/test_debugger.py -usr/lib/python3.8/idlelib/idle_test/test_debugger_r.py -usr/lib/python3.8/idlelib/idle_test/test_debugobj.py -usr/lib/python3.8/idlelib/idle_test/test_debugobj_r.py -usr/lib/python3.8/idlelib/idle_test/test_delegator.py -usr/lib/python3.8/idlelib/idle_test/test_editmenu.py -usr/lib/python3.8/idlelib/idle_test/test_editor.py -usr/lib/python3.8/idlelib/idle_test/test_filelist.py -usr/lib/python3.8/idlelib/idle_test/test_format.py -usr/lib/python3.8/idlelib/idle_test/test_grep.py -usr/lib/python3.8/idlelib/idle_test/test_help.py -usr/lib/python3.8/idlelib/idle_test/test_help_about.py -usr/lib/python3.8/idlelib/idle_test/test_history.py -usr/lib/python3.8/idlelib/idle_test/test_hyperparser.py -usr/lib/python3.8/idlelib/idle_test/test_iomenu.py -usr/lib/python3.8/idlelib/idle_test/test_macosx.py -usr/lib/python3.8/idlelib/idle_test/test_mainmenu.py -usr/lib/python3.8/idlelib/idle_test/test_multicall.py -usr/lib/python3.8/idlelib/idle_test/test_outwin.py -usr/lib/python3.8/idlelib/idle_test/test_parenmatch.py -usr/lib/python3.8/idlelib/idle_test/test_pathbrowser.py -usr/lib/python3.8/idlelib/idle_test/test_percolator.py -usr/lib/python3.8/idlelib/idle_test/test_pyparse.py -usr/lib/python3.8/idlelib/idle_test/test_pyshell.py -usr/lib/python3.8/idlelib/idle_test/test_query.py -usr/lib/python3.8/idlelib/idle_test/test_redirector.py -usr/lib/python3.8/idlelib/idle_test/test_replace.py -usr/lib/python3.8/idlelib/idle_test/test_rpc.py -usr/lib/python3.8/idlelib/idle_test/test_run.py -usr/lib/python3.8/idlelib/idle_test/test_runscript.py -usr/lib/python3.8/idlelib/idle_test/test_scrolledlist.py -usr/lib/python3.8/idlelib/idle_test/test_search.py -usr/lib/python3.8/idlelib/idle_test/test_searchbase.py -usr/lib/python3.8/idlelib/idle_test/test_searchengine.py -usr/lib/python3.8/idlelib/idle_test/test_sidebar.py -usr/lib/python3.8/idlelib/idle_test/test_squeezer.py -usr/lib/python3.8/idlelib/idle_test/test_stackviewer.py -usr/lib/python3.8/idlelib/idle_test/test_statusbar.py -usr/lib/python3.8/idlelib/idle_test/test_text.py -usr/lib/python3.8/idlelib/idle_test/test_textview.py -usr/lib/python3.8/idlelib/idle_test/test_tooltip.py -usr/lib/python3.8/idlelib/idle_test/test_tree.py -usr/lib/python3.8/idlelib/idle_test/test_undo.py -usr/lib/python3.8/idlelib/idle_test/test_warning.py -usr/lib/python3.8/idlelib/idle_test/test_window.py -usr/lib/python3.8/idlelib/idle_test/test_zoomheight.py -usr/lib/python3.8/idlelib/iomenu.py -usr/lib/python3.8/idlelib/macosx.py -usr/lib/python3.8/idlelib/mainmenu.py -usr/lib/python3.8/idlelib/multicall.py -usr/lib/python3.8/idlelib/outwin.py -usr/lib/python3.8/idlelib/parenmatch.py -usr/lib/python3.8/idlelib/pathbrowser.py -usr/lib/python3.8/idlelib/percolator.py -usr/lib/python3.8/idlelib/pyparse.py -usr/lib/python3.8/idlelib/pyshell.py -usr/lib/python3.8/idlelib/query.py -usr/lib/python3.8/idlelib/redirector.py -usr/lib/python3.8/idlelib/replace.py -usr/lib/python3.8/idlelib/rpc.py -usr/lib/python3.8/idlelib/run.py -usr/lib/python3.8/idlelib/runscript.py -usr/lib/python3.8/idlelib/scrolledlist.py -usr/lib/python3.8/idlelib/search.py -usr/lib/python3.8/idlelib/searchbase.py -usr/lib/python3.8/idlelib/searchengine.py -usr/lib/python3.8/idlelib/sidebar.py -usr/lib/python3.8/idlelib/squeezer.py -usr/lib/python3.8/idlelib/stackviewer.py -usr/lib/python3.8/idlelib/statusbar.py -usr/lib/python3.8/idlelib/textview.py -usr/lib/python3.8/idlelib/tooltip.py -usr/lib/python3.8/idlelib/tree.py -usr/lib/python3.8/idlelib/undo.py -usr/lib/python3.8/idlelib/window.py -usr/lib/python3.8/idlelib/zoomheight.py -usr/lib/python3.8/idlelib/zzdummy.py -usr/lib/python3.8/imaplib.py -usr/lib/python3.8/imghdr.py -usr/lib/python3.8/imp.py -#usr/lib/python3.8/importlib -usr/lib/python3.8/importlib/__init__.py -usr/lib/python3.8/importlib/_bootstrap.py -usr/lib/python3.8/importlib/_bootstrap_external.py -usr/lib/python3.8/importlib/abc.py -usr/lib/python3.8/importlib/machinery.py -usr/lib/python3.8/importlib/metadata.py -usr/lib/python3.8/importlib/resources.py -usr/lib/python3.8/importlib/util.py -usr/lib/python3.8/inspect.py -usr/lib/python3.8/io.py -usr/lib/python3.8/ipaddress.py -#usr/lib/python3.8/json -usr/lib/python3.8/json/__init__.py -usr/lib/python3.8/json/decoder.py -usr/lib/python3.8/json/encoder.py -usr/lib/python3.8/json/scanner.py -usr/lib/python3.8/json/tool.py -usr/lib/python3.8/keyword.py -#usr/lib/python3.8/lib-dynload -usr/lib/python3.8/lib-dynload/_asyncio.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_bisect.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_blake2.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_bz2.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_codecs_cn.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_codecs_hk.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_codecs_iso2022.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_codecs_jp.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_codecs_kr.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_codecs_tw.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_contextvars.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_crypt.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_csv.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_ctypes.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_ctypes_test.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_curses.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_curses_panel.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_datetime.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_dbm.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_decimal.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_elementtree.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_gdbm.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_hashlib.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_heapq.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_json.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_lsprof.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_lzma.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_md5.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_multibytecodec.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_multiprocessing.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_opcode.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_pickle.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_posixshmem.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_posixsubprocess.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_queue.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_random.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_sha1.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_sha256.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_sha3.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_sha512.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_socket.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_sqlite3.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_ssl.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_statistics.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_struct.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_testbuffer.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_testcapi.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_testimportmultiple.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_testinternalcapi.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_testmultiphase.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_uuid.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_xxsubinterpreters.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/_xxtestfuzz.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/array.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/audioop.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/binascii.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/cmath.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/fcntl.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/grp.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/math.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/mmap.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/ossaudiodev.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/parser.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/pyexpat.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/readline.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/resource.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/select.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/spwd.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/syslog.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/termios.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/unicodedata.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/xxlimited.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/lib-dynload/zlib.cpython-38-arm-linux-gnueabi.so -#usr/lib/python3.8/lib2to3 -usr/lib/python3.8/lib2to3/Grammar.txt -usr/lib/python3.8/lib2to3/Grammar3.8.7.final.0.pickle -usr/lib/python3.8/lib2to3/PatternGrammar.txt -usr/lib/python3.8/lib2to3/PatternGrammar3.8.7.final.0.pickle -usr/lib/python3.8/lib2to3/__init__.py -usr/lib/python3.8/lib2to3/__main__.py -usr/lib/python3.8/lib2to3/btm_matcher.py -usr/lib/python3.8/lib2to3/btm_utils.py -usr/lib/python3.8/lib2to3/fixer_base.py -usr/lib/python3.8/lib2to3/fixer_util.py -#usr/lib/python3.8/lib2to3/fixes -usr/lib/python3.8/lib2to3/fixes/__init__.py -usr/lib/python3.8/lib2to3/fixes/fix_apply.py -usr/lib/python3.8/lib2to3/fixes/fix_asserts.py -usr/lib/python3.8/lib2to3/fixes/fix_basestring.py -usr/lib/python3.8/lib2to3/fixes/fix_buffer.py -usr/lib/python3.8/lib2to3/fixes/fix_dict.py -usr/lib/python3.8/lib2to3/fixes/fix_except.py -usr/lib/python3.8/lib2to3/fixes/fix_exec.py -usr/lib/python3.8/lib2to3/fixes/fix_execfile.py -usr/lib/python3.8/lib2to3/fixes/fix_exitfunc.py -usr/lib/python3.8/lib2to3/fixes/fix_filter.py -usr/lib/python3.8/lib2to3/fixes/fix_funcattrs.py -usr/lib/python3.8/lib2to3/fixes/fix_future.py -usr/lib/python3.8/lib2to3/fixes/fix_getcwdu.py -usr/lib/python3.8/lib2to3/fixes/fix_has_key.py -usr/lib/python3.8/lib2to3/fixes/fix_idioms.py -usr/lib/python3.8/lib2to3/fixes/fix_import.py -usr/lib/python3.8/lib2to3/fixes/fix_imports.py -usr/lib/python3.8/lib2to3/fixes/fix_imports2.py -usr/lib/python3.8/lib2to3/fixes/fix_input.py -usr/lib/python3.8/lib2to3/fixes/fix_intern.py -usr/lib/python3.8/lib2to3/fixes/fix_isinstance.py -usr/lib/python3.8/lib2to3/fixes/fix_itertools.py -usr/lib/python3.8/lib2to3/fixes/fix_itertools_imports.py -usr/lib/python3.8/lib2to3/fixes/fix_long.py -usr/lib/python3.8/lib2to3/fixes/fix_map.py -usr/lib/python3.8/lib2to3/fixes/fix_metaclass.py -usr/lib/python3.8/lib2to3/fixes/fix_methodattrs.py -usr/lib/python3.8/lib2to3/fixes/fix_ne.py -usr/lib/python3.8/lib2to3/fixes/fix_next.py -usr/lib/python3.8/lib2to3/fixes/fix_nonzero.py -usr/lib/python3.8/lib2to3/fixes/fix_numliterals.py -usr/lib/python3.8/lib2to3/fixes/fix_operator.py -usr/lib/python3.8/lib2to3/fixes/fix_paren.py -usr/lib/python3.8/lib2to3/fixes/fix_print.py -usr/lib/python3.8/lib2to3/fixes/fix_raise.py -usr/lib/python3.8/lib2to3/fixes/fix_raw_input.py -usr/lib/python3.8/lib2to3/fixes/fix_reduce.py -usr/lib/python3.8/lib2to3/fixes/fix_reload.py -usr/lib/python3.8/lib2to3/fixes/fix_renames.py -usr/lib/python3.8/lib2to3/fixes/fix_repr.py -usr/lib/python3.8/lib2to3/fixes/fix_set_literal.py -usr/lib/python3.8/lib2to3/fixes/fix_standarderror.py -usr/lib/python3.8/lib2to3/fixes/fix_sys_exc.py -usr/lib/python3.8/lib2to3/fixes/fix_throw.py -usr/lib/python3.8/lib2to3/fixes/fix_tuple_params.py -usr/lib/python3.8/lib2to3/fixes/fix_types.py -usr/lib/python3.8/lib2to3/fixes/fix_unicode.py -usr/lib/python3.8/lib2to3/fixes/fix_urllib.py -usr/lib/python3.8/lib2to3/fixes/fix_ws_comma.py -usr/lib/python3.8/lib2to3/fixes/fix_xrange.py -usr/lib/python3.8/lib2to3/fixes/fix_xreadlines.py -usr/lib/python3.8/lib2to3/fixes/fix_zip.py -usr/lib/python3.8/lib2to3/main.py -usr/lib/python3.8/lib2to3/patcomp.py -#usr/lib/python3.8/lib2to3/pgen2 -usr/lib/python3.8/lib2to3/pgen2/__init__.py -usr/lib/python3.8/lib2to3/pgen2/conv.py -usr/lib/python3.8/lib2to3/pgen2/driver.py -usr/lib/python3.8/lib2to3/pgen2/grammar.py -usr/lib/python3.8/lib2to3/pgen2/literals.py -usr/lib/python3.8/lib2to3/pgen2/parse.py -usr/lib/python3.8/lib2to3/pgen2/pgen.py -usr/lib/python3.8/lib2to3/pgen2/token.py -usr/lib/python3.8/lib2to3/pgen2/tokenize.py -usr/lib/python3.8/lib2to3/pygram.py -usr/lib/python3.8/lib2to3/pytree.py -usr/lib/python3.8/lib2to3/refactor.py -usr/lib/python3.8/lib2to3/tests -usr/lib/python3.8/lib2to3/tests/__init__.py -usr/lib/python3.8/lib2to3/tests/__main__.py -usr/lib/python3.8/lib2to3/tests/data -usr/lib/python3.8/lib2to3/tests/data/README -usr/lib/python3.8/lib2to3/tests/data/bom.py -usr/lib/python3.8/lib2to3/tests/data/crlf.py -usr/lib/python3.8/lib2to3/tests/data/different_encoding.py -usr/lib/python3.8/lib2to3/tests/data/false_encoding.py -usr/lib/python3.8/lib2to3/tests/data/fixers -usr/lib/python3.8/lib2to3/tests/data/fixers/bad_order.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/__init__.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/fix_explicit.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/fix_first.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/fix_last.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/fix_parrot.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/fix_preorder.py -usr/lib/python3.8/lib2to3/tests/data/fixers/no_fixer_cls.py -usr/lib/python3.8/lib2to3/tests/data/fixers/parrot_example.py -usr/lib/python3.8/lib2to3/tests/data/infinite_recursion.py -usr/lib/python3.8/lib2to3/tests/data/py2_test_grammar.py -usr/lib/python3.8/lib2to3/tests/data/py3_test_grammar.py -usr/lib/python3.8/lib2to3/tests/pytree_idempotency.py -usr/lib/python3.8/lib2to3/tests/support.py -usr/lib/python3.8/lib2to3/tests/test_all_fixers.py -usr/lib/python3.8/lib2to3/tests/test_fixers.py -usr/lib/python3.8/lib2to3/tests/test_main.py -usr/lib/python3.8/lib2to3/tests/test_parser.py -usr/lib/python3.8/lib2to3/tests/test_pytree.py -usr/lib/python3.8/lib2to3/tests/test_refactor.py -usr/lib/python3.8/lib2to3/tests/test_util.py -usr/lib/python3.8/linecache.py -usr/lib/python3.8/locale.py -#usr/lib/python3.8/logging -usr/lib/python3.8/logging/__init__.py -usr/lib/python3.8/logging/config.py -usr/lib/python3.8/logging/handlers.py -usr/lib/python3.8/lzma.py -usr/lib/python3.8/mailbox.py -usr/lib/python3.8/mailcap.py -usr/lib/python3.8/mimetypes.py -usr/lib/python3.8/modulefinder.py -#usr/lib/python3.8/multiprocessing -usr/lib/python3.8/multiprocessing/__init__.py -usr/lib/python3.8/multiprocessing/connection.py -usr/lib/python3.8/multiprocessing/context.py -#usr/lib/python3.8/multiprocessing/dummy -usr/lib/python3.8/multiprocessing/dummy/__init__.py -usr/lib/python3.8/multiprocessing/dummy/connection.py -usr/lib/python3.8/multiprocessing/forkserver.py -usr/lib/python3.8/multiprocessing/heap.py -usr/lib/python3.8/multiprocessing/managers.py -usr/lib/python3.8/multiprocessing/pool.py -usr/lib/python3.8/multiprocessing/popen_fork.py -usr/lib/python3.8/multiprocessing/popen_forkserver.py -usr/lib/python3.8/multiprocessing/popen_spawn_posix.py -usr/lib/python3.8/multiprocessing/popen_spawn_win32.py -usr/lib/python3.8/multiprocessing/process.py -usr/lib/python3.8/multiprocessing/queues.py -usr/lib/python3.8/multiprocessing/reduction.py -usr/lib/python3.8/multiprocessing/resource_sharer.py -usr/lib/python3.8/multiprocessing/resource_tracker.py -usr/lib/python3.8/multiprocessing/shared_memory.py -usr/lib/python3.8/multiprocessing/sharedctypes.py -usr/lib/python3.8/multiprocessing/spawn.py -usr/lib/python3.8/multiprocessing/synchronize.py -usr/lib/python3.8/multiprocessing/util.py -usr/lib/python3.8/netrc.py -usr/lib/python3.8/nntplib.py -usr/lib/python3.8/ntpath.py -usr/lib/python3.8/nturl2path.py -usr/lib/python3.8/numbers.py -usr/lib/python3.8/opcode.py -usr/lib/python3.8/operator.py -usr/lib/python3.8/optparse.py -usr/lib/python3.8/os.py -usr/lib/python3.8/pathlib.py -usr/lib/python3.8/pdb.py -usr/lib/python3.8/pickle.py -usr/lib/python3.8/pickletools.py -usr/lib/python3.8/pipes.py -usr/lib/python3.8/pkgutil.py -usr/lib/python3.8/platform.py -usr/lib/python3.8/plistlib.py -usr/lib/python3.8/poplib.py -usr/lib/python3.8/posixpath.py -usr/lib/python3.8/pprint.py -usr/lib/python3.8/profile.py -usr/lib/python3.8/pstats.py -usr/lib/python3.8/pty.py -usr/lib/python3.8/py_compile.py -usr/lib/python3.8/pyclbr.py -usr/lib/python3.8/pydoc.py -#usr/lib/python3.8/pydoc_data -usr/lib/python3.8/pydoc_data/__init__.py -usr/lib/python3.8/pydoc_data/_pydoc.css -usr/lib/python3.8/pydoc_data/topics.py -usr/lib/python3.8/queue.py -usr/lib/python3.8/quopri.py -usr/lib/python3.8/random.py -usr/lib/python3.8/re.py -usr/lib/python3.8/reprlib.py -usr/lib/python3.8/rlcompleter.py -usr/lib/python3.8/runpy.py -usr/lib/python3.8/sched.py -usr/lib/python3.8/secrets.py -usr/lib/python3.8/selectors.py -usr/lib/python3.8/shelve.py -usr/lib/python3.8/shlex.py -usr/lib/python3.8/shutil.py -usr/lib/python3.8/signal.py -#usr/lib/python3.8/site-packages -usr/lib/python3.8/site-packages/README.txt -usr/lib/python3.8/site-packages/easy_install.py -#usr/lib/python3.8/site-packages/pip -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/INSTALLER -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/LICENSE.txt -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/METADATA -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/RECORD -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/REQUESTED -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/WHEEL -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/entry_points.txt -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/top_level.txt -usr/lib/python3.8/site-packages/pip/__init__.py -usr/lib/python3.8/site-packages/pip/__main__.py -#usr/lib/python3.8/site-packages/pip/_internal -usr/lib/python3.8/site-packages/pip/_internal/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/build_env.py -usr/lib/python3.8/site-packages/pip/_internal/cache.py -#usr/lib/python3.8/site-packages/pip/_internal/cli -usr/lib/python3.8/site-packages/pip/_internal/cli/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py -usr/lib/python3.8/site-packages/pip/_internal/cli/base_command.py -usr/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py -usr/lib/python3.8/site-packages/pip/_internal/cli/command_context.py -usr/lib/python3.8/site-packages/pip/_internal/cli/main.py -usr/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py -usr/lib/python3.8/site-packages/pip/_internal/cli/parser.py -usr/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py -usr/lib/python3.8/site-packages/pip/_internal/cli/req_command.py -usr/lib/python3.8/site-packages/pip/_internal/cli/spinners.py -usr/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py -#usr/lib/python3.8/site-packages/pip/_internal/commands -usr/lib/python3.8/site-packages/pip/_internal/commands/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/commands/cache.py -usr/lib/python3.8/site-packages/pip/_internal/commands/check.py -usr/lib/python3.8/site-packages/pip/_internal/commands/completion.py -usr/lib/python3.8/site-packages/pip/_internal/commands/configuration.py -usr/lib/python3.8/site-packages/pip/_internal/commands/debug.py -usr/lib/python3.8/site-packages/pip/_internal/commands/download.py -usr/lib/python3.8/site-packages/pip/_internal/commands/freeze.py -usr/lib/python3.8/site-packages/pip/_internal/commands/hash.py -usr/lib/python3.8/site-packages/pip/_internal/commands/help.py -usr/lib/python3.8/site-packages/pip/_internal/commands/install.py -usr/lib/python3.8/site-packages/pip/_internal/commands/list.py -usr/lib/python3.8/site-packages/pip/_internal/commands/search.py -usr/lib/python3.8/site-packages/pip/_internal/commands/show.py -usr/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py -usr/lib/python3.8/site-packages/pip/_internal/commands/wheel.py -usr/lib/python3.8/site-packages/pip/_internal/configuration.py -#usr/lib/python3.8/site-packages/pip/_internal/distributions -usr/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/distributions/base.py -usr/lib/python3.8/site-packages/pip/_internal/distributions/installed.py -usr/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py -usr/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py -usr/lib/python3.8/site-packages/pip/_internal/exceptions.py -usr/lib/python3.8/site-packages/pip/_internal/index -usr/lib/python3.8/site-packages/pip/_internal/index/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/index/collector.py -usr/lib/python3.8/site-packages/pip/_internal/index/package_finder.py -usr/lib/python3.8/site-packages/pip/_internal/locations.py -usr/lib/python3.8/site-packages/pip/_internal/main.py -#usr/lib/python3.8/site-packages/pip/_internal/models -usr/lib/python3.8/site-packages/pip/_internal/models/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/models/candidate.py -usr/lib/python3.8/site-packages/pip/_internal/models/direct_url.py -usr/lib/python3.8/site-packages/pip/_internal/models/format_control.py -usr/lib/python3.8/site-packages/pip/_internal/models/index.py -usr/lib/python3.8/site-packages/pip/_internal/models/link.py -usr/lib/python3.8/site-packages/pip/_internal/models/scheme.py -usr/lib/python3.8/site-packages/pip/_internal/models/search_scope.py -usr/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py -usr/lib/python3.8/site-packages/pip/_internal/models/target_python.py -usr/lib/python3.8/site-packages/pip/_internal/models/wheel.py -usr/lib/python3.8/site-packages/pip/_internal/network -usr/lib/python3.8/site-packages/pip/_internal/network/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/network/auth.py -usr/lib/python3.8/site-packages/pip/_internal/network/cache.py -usr/lib/python3.8/site-packages/pip/_internal/network/download.py -usr/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py -usr/lib/python3.8/site-packages/pip/_internal/network/session.py -usr/lib/python3.8/site-packages/pip/_internal/network/utils.py -usr/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py -#usr/lib/python3.8/site-packages/pip/_internal/operations -usr/lib/python3.8/site-packages/pip/_internal/operations/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/operations/build -usr/lib/python3.8/site-packages/pip/_internal/operations/build/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/operations/build/metadata.py -usr/lib/python3.8/site-packages/pip/_internal/operations/build/metadata_legacy.py -usr/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py -usr/lib/python3.8/site-packages/pip/_internal/operations/build/wheel_legacy.py -usr/lib/python3.8/site-packages/pip/_internal/operations/check.py -usr/lib/python3.8/site-packages/pip/_internal/operations/freeze.py -usr/lib/python3.8/site-packages/pip/_internal/operations/install -usr/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/operations/install/editable_legacy.py -usr/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py -usr/lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py -usr/lib/python3.8/site-packages/pip/_internal/operations/prepare.py -usr/lib/python3.8/site-packages/pip/_internal/pyproject.py -#usr/lib/python3.8/site-packages/pip/_internal/req -usr/lib/python3.8/site-packages/pip/_internal/req/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/req/constructors.py -usr/lib/python3.8/site-packages/pip/_internal/req/req_file.py -usr/lib/python3.8/site-packages/pip/_internal/req/req_install.py -usr/lib/python3.8/site-packages/pip/_internal/req/req_set.py -usr/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py -usr/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py -usr/lib/python3.8/site-packages/pip/_internal/resolution -usr/lib/python3.8/site-packages/pip/_internal/resolution/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/base.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/legacy -usr/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/provider.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/requirements.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py -usr/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py -#usr/lib/python3.8/site-packages/pip/_internal/utils -usr/lib/python3.8/site-packages/pip/_internal/utils/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/utils/appdirs.py -usr/lib/python3.8/site-packages/pip/_internal/utils/compat.py -usr/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py -usr/lib/python3.8/site-packages/pip/_internal/utils/datetime.py -usr/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py -usr/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py -usr/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py -usr/lib/python3.8/site-packages/pip/_internal/utils/encoding.py -usr/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py -usr/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py -usr/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py -usr/lib/python3.8/site-packages/pip/_internal/utils/glibc.py -usr/lib/python3.8/site-packages/pip/_internal/utils/hashes.py -usr/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py -usr/lib/python3.8/site-packages/pip/_internal/utils/logging.py -usr/lib/python3.8/site-packages/pip/_internal/utils/misc.py -usr/lib/python3.8/site-packages/pip/_internal/utils/models.py -usr/lib/python3.8/site-packages/pip/_internal/utils/packaging.py -usr/lib/python3.8/site-packages/pip/_internal/utils/parallel.py -usr/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py -usr/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py -usr/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py -usr/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py -usr/lib/python3.8/site-packages/pip/_internal/utils/typing.py -usr/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py -usr/lib/python3.8/site-packages/pip/_internal/utils/urls.py -usr/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py -usr/lib/python3.8/site-packages/pip/_internal/utils/wheel.py -#usr/lib/python3.8/site-packages/pip/_internal/vcs -usr/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py -usr/lib/python3.8/site-packages/pip/_internal/vcs/git.py -usr/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py -usr/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py -usr/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py -usr/lib/python3.8/site-packages/pip/_internal/wheel_builder.py -usr/lib/python3.8/site-packages/pip/_vendor -usr/lib/python3.8/site-packages/pip/_vendor/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/appdirs.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py -#usr/lib/python3.8/site-packages/pip/_vendor/certifi -usr/lib/python3.8/site-packages/pip/_vendor/certifi/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py -usr/lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem -usr/lib/python3.8/site-packages/pip/_vendor/certifi/core.py -#usr/lib/python3.8/site-packages/pip/_vendor/chardet -usr/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py -#usr/lib/python3.8/site-packages/pip/_vendor/chardet/cli -usr/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langcyrillicmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/sbcharsetprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/version.py -#usr/lib/python3.8/site-packages/pip/_vendor/colorama -usr/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py -usr/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py -usr/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py -usr/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py -usr/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py -usr/lib/python3.8/site-packages/pip/_vendor/contextlib2.py -#usr/lib/python3.8/site-packages/pip/_vendor/distlib -usr/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/database.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/index.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/markers.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe -usr/lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe -usr/lib/python3.8/site-packages/pip/_vendor/distlib/util.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/version.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe -usr/lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe -usr/lib/python3.8/site-packages/pip/_vendor/distlib/wheel.py -usr/lib/python3.8/site-packages/pip/_vendor/distro.py -#usr/lib/python3.8/site-packages/pip/_vendor/html5lib -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py -#usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/base.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/serializer.py -#usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/sax.py -#usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/base.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/dom.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py -#usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/base.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/dom.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py -#usr/lib/python3.8/site-packages/pip/_vendor/idna -usr/lib/python3.8/site-packages/pip/_vendor/idna/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/codec.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/core.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/idnadata.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/intranges.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/package_data.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/uts46data.py -usr/lib/python3.8/site-packages/pip/_vendor/ipaddress.py -#usr/lib/python3.8/site-packages/pip/_vendor/msgpack -usr/lib/python3.8/site-packages/pip/_vendor/msgpack/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/msgpack/_version.py -usr/lib/python3.8/site-packages/pip/_vendor/msgpack/exceptions.py -usr/lib/python3.8/site-packages/pip/_vendor/msgpack/ext.py -usr/lib/python3.8/site-packages/pip/_vendor/msgpack/fallback.py -#usr/lib/python3.8/site-packages/pip/_vendor/packaging -usr/lib/python3.8/site-packages/pip/_vendor/packaging/__about__.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/_compat.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/_structures.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/_typing.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/markers.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/requirements.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/specifiers.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/tags.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/utils.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/version.py -#usr/lib/python3.8/site-packages/pip/_vendor/pep517 -usr/lib/python3.8/site-packages/pip/_vendor/pep517/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/build.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/check.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/colorlog.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/dirtools.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/envbuild.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/meta.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/wrappers.py -#usr/lib/python3.8/site-packages/pip/_vendor/pkg_resources -usr/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/pkg_resources/py31compat.py -#usr/lib/python3.8/site-packages/pip/_vendor/progress -usr/lib/python3.8/site-packages/pip/_vendor/progress/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/progress/bar.py -usr/lib/python3.8/site-packages/pip/_vendor/progress/counter.py -usr/lib/python3.8/site-packages/pip/_vendor/progress/spinner.py -usr/lib/python3.8/site-packages/pip/_vendor/pyparsing.py -#usr/lib/python3.8/site-packages/pip/_vendor/requests -usr/lib/python3.8/site-packages/pip/_vendor/requests/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/__version__.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/_internal_utils.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/adapters.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/api.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/auth.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/certs.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/cookies.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/exceptions.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/help.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/hooks.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/models.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/packages.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/sessions.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/status_codes.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/structures.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/utils.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/providers.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/reporters.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/structs.py -usr/lib/python3.8/site-packages/pip/_vendor/retrying.py -usr/lib/python3.8/site-packages/pip/_vendor/six.py -usr/lib/python3.8/site-packages/pip/_vendor/toml -usr/lib/python3.8/site-packages/pip/_vendor/toml/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/toml/common.py -usr/lib/python3.8/site-packages/pip/_vendor/toml/decoder.py -usr/lib/python3.8/site-packages/pip/_vendor/toml/encoder.py -usr/lib/python3.8/site-packages/pip/_vendor/toml/ordered.py -usr/lib/python3.8/site-packages/pip/_vendor/toml/tz.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3 -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/_collections.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/connection.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/connectionpool.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/appengine.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/securetransport.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/socks.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/exceptions.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/fields.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/filepost.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/six.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/poolmanager.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/request.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/connection.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/queue.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/request.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/response.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/retry.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssl_.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/timeout.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/url.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/wait.py -usr/lib/python3.8/site-packages/pip/_vendor/vendor.txt -#usr/lib/python3.8/site-packages/pip/_vendor/webencodings -usr/lib/python3.8/site-packages/pip/_vendor/webencodings/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/webencodings/labels.py -usr/lib/python3.8/site-packages/pip/_vendor/webencodings/mklabels.py -usr/lib/python3.8/site-packages/pip/_vendor/webencodings/tests.py -usr/lib/python3.8/site-packages/pip/_vendor/webencodings/x_user_defined.py -#usr/lib/python3.8/site-packages/pkg_resources -usr/lib/python3.8/site-packages/pkg_resources/__init__.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor -usr/lib/python3.8/site-packages/pkg_resources/_vendor/__init__.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/appdirs.py -#usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__about__.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__init__.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_compat.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_structures.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/markers.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/requirements.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/specifiers.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/tags.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/utils.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/version.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/pyparsing.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/six.py -usr/lib/python3.8/site-packages/pkg_resources/extern -usr/lib/python3.8/site-packages/pkg_resources/extern/__init__.py -#usr/lib/python3.8/site-packages/setuptools -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/INSTALLER -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/LICENSE -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/METADATA -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/RECORD -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/REQUESTED -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/WHEEL -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/dependency_links.txt -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/entry_points.txt -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/top_level.txt -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/zip-safe -usr/lib/python3.8/site-packages/setuptools/__init__.py -usr/lib/python3.8/site-packages/setuptools/_deprecation_warning.py -usr/lib/python3.8/site-packages/setuptools/_distutils -usr/lib/python3.8/site-packages/setuptools/_distutils/__init__.py -usr/lib/python3.8/site-packages/setuptools/_distutils/_msvccompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/archive_util.py -usr/lib/python3.8/site-packages/setuptools/_distutils/bcppcompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/ccompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/cmd.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command -usr/lib/python3.8/site-packages/setuptools/_distutils/command/__init__.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/bdist.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_dumb.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_msi.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_rpm.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_wininst.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/build.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/build_clib.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/build_ext.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/build_py.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/build_scripts.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/check.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/clean.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/config.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install_data.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install_egg_info.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install_headers.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install_lib.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install_scripts.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/register.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/sdist.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/upload.py -usr/lib/python3.8/site-packages/setuptools/_distutils/config.py -usr/lib/python3.8/site-packages/setuptools/_distutils/core.py -usr/lib/python3.8/site-packages/setuptools/_distutils/cygwinccompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/debug.py -usr/lib/python3.8/site-packages/setuptools/_distutils/dep_util.py -usr/lib/python3.8/site-packages/setuptools/_distutils/dir_util.py -usr/lib/python3.8/site-packages/setuptools/_distutils/dist.py -usr/lib/python3.8/site-packages/setuptools/_distutils/errors.py -usr/lib/python3.8/site-packages/setuptools/_distutils/extension.py -usr/lib/python3.8/site-packages/setuptools/_distutils/fancy_getopt.py -usr/lib/python3.8/site-packages/setuptools/_distutils/file_util.py -usr/lib/python3.8/site-packages/setuptools/_distutils/filelist.py -usr/lib/python3.8/site-packages/setuptools/_distutils/log.py -usr/lib/python3.8/site-packages/setuptools/_distutils/msvc9compiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/msvccompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/spawn.py -usr/lib/python3.8/site-packages/setuptools/_distutils/sysconfig.py -usr/lib/python3.8/site-packages/setuptools/_distutils/text_file.py -usr/lib/python3.8/site-packages/setuptools/_distutils/unixccompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/util.py -usr/lib/python3.8/site-packages/setuptools/_distutils/version.py -usr/lib/python3.8/site-packages/setuptools/_distutils/versionpredicate.py -usr/lib/python3.8/site-packages/setuptools/_imp.py -#usr/lib/python3.8/site-packages/setuptools/_vendor -usr/lib/python3.8/site-packages/setuptools/_vendor/__init__.py -usr/lib/python3.8/site-packages/setuptools/_vendor/ordered_set.py -#usr/lib/python3.8/site-packages/setuptools/_vendor/packaging -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/__about__.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/__init__.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/_compat.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/_structures.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/markers.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/requirements.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/specifiers.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/tags.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/utils.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/version.py -usr/lib/python3.8/site-packages/setuptools/_vendor/pyparsing.py -usr/lib/python3.8/site-packages/setuptools/_vendor/six.py -usr/lib/python3.8/site-packages/setuptools/archive_util.py -usr/lib/python3.8/site-packages/setuptools/build_meta.py -usr/lib/python3.8/site-packages/setuptools/cli-32.exe -usr/lib/python3.8/site-packages/setuptools/cli-64.exe -usr/lib/python3.8/site-packages/setuptools/cli.exe -#usr/lib/python3.8/site-packages/setuptools/command -usr/lib/python3.8/site-packages/setuptools/command/__init__.py -usr/lib/python3.8/site-packages/setuptools/command/alias.py -usr/lib/python3.8/site-packages/setuptools/command/bdist_egg.py -usr/lib/python3.8/site-packages/setuptools/command/bdist_rpm.py -usr/lib/python3.8/site-packages/setuptools/command/bdist_wininst.py -usr/lib/python3.8/site-packages/setuptools/command/build_clib.py -usr/lib/python3.8/site-packages/setuptools/command/build_ext.py -usr/lib/python3.8/site-packages/setuptools/command/build_py.py -usr/lib/python3.8/site-packages/setuptools/command/develop.py -usr/lib/python3.8/site-packages/setuptools/command/dist_info.py -usr/lib/python3.8/site-packages/setuptools/command/easy_install.py -usr/lib/python3.8/site-packages/setuptools/command/egg_info.py -usr/lib/python3.8/site-packages/setuptools/command/install.py -usr/lib/python3.8/site-packages/setuptools/command/install_egg_info.py -usr/lib/python3.8/site-packages/setuptools/command/install_lib.py -usr/lib/python3.8/site-packages/setuptools/command/install_scripts.py -#usr/lib/python3.8/site-packages/setuptools/command/launcher +#usr/lib/python3.10 +#usr/lib/python3.10/LICENSE.txt +usr/lib/python3.10/__future__.py +usr/lib/python3.10/__phello__.foo.py +usr/lib/python3.10/_aix_support.py +usr/lib/python3.10/_bootsubprocess.py +usr/lib/python3.10/_collections_abc.py +usr/lib/python3.10/_compat_pickle.py +usr/lib/python3.10/_compression.py +usr/lib/python3.10/_markupbase.py +usr/lib/python3.10/_osx_support.py +usr/lib/python3.10/_py_abc.py +usr/lib/python3.10/_pydecimal.py +usr/lib/python3.10/_pyio.py +usr/lib/python3.10/_sitebuiltins.py +usr/lib/python3.10/_strptime.py +usr/lib/python3.10/_sysconfigdata__linux_arm-linux-gnu.py +usr/lib/python3.10/_threading_local.py +usr/lib/python3.10/_weakrefset.py +usr/lib/python3.10/abc.py +usr/lib/python3.10/aifc.py +usr/lib/python3.10/antigravity.py +usr/lib/python3.10/argparse.py +usr/lib/python3.10/ast.py +usr/lib/python3.10/asynchat.py +#usr/lib/python3.10/asyncio +usr/lib/python3.10/asyncio/__init__.py +usr/lib/python3.10/asyncio/__main__.py +usr/lib/python3.10/asyncio/base_events.py +usr/lib/python3.10/asyncio/base_futures.py +usr/lib/python3.10/asyncio/base_subprocess.py +usr/lib/python3.10/asyncio/base_tasks.py +usr/lib/python3.10/asyncio/constants.py +usr/lib/python3.10/asyncio/coroutines.py +usr/lib/python3.10/asyncio/events.py +usr/lib/python3.10/asyncio/exceptions.py +usr/lib/python3.10/asyncio/format_helpers.py +usr/lib/python3.10/asyncio/futures.py +usr/lib/python3.10/asyncio/locks.py +usr/lib/python3.10/asyncio/log.py +usr/lib/python3.10/asyncio/mixins.py +usr/lib/python3.10/asyncio/proactor_events.py +usr/lib/python3.10/asyncio/protocols.py +usr/lib/python3.10/asyncio/queues.py +usr/lib/python3.10/asyncio/runners.py +usr/lib/python3.10/asyncio/selector_events.py +usr/lib/python3.10/asyncio/sslproto.py +usr/lib/python3.10/asyncio/staggered.py +usr/lib/python3.10/asyncio/streams.py +usr/lib/python3.10/asyncio/subprocess.py +usr/lib/python3.10/asyncio/tasks.py +usr/lib/python3.10/asyncio/threads.py +usr/lib/python3.10/asyncio/transports.py +usr/lib/python3.10/asyncio/trsock.py +usr/lib/python3.10/asyncio/unix_events.py +usr/lib/python3.10/asyncio/windows_events.py +usr/lib/python3.10/asyncio/windows_utils.py +usr/lib/python3.10/asyncore.py +usr/lib/python3.10/base64.py +usr/lib/python3.10/bdb.py +usr/lib/python3.10/binhex.py +usr/lib/python3.10/bisect.py +usr/lib/python3.10/bz2.py +usr/lib/python3.10/cProfile.py +usr/lib/python3.10/calendar.py +usr/lib/python3.10/cgi.py +usr/lib/python3.10/cgitb.py +usr/lib/python3.10/chunk.py +usr/lib/python3.10/cmd.py +usr/lib/python3.10/code.py +usr/lib/python3.10/codecs.py +usr/lib/python3.10/codeop.py +#usr/lib/python3.10/collections +usr/lib/python3.10/collections/__init__.py +usr/lib/python3.10/collections/abc.py +usr/lib/python3.10/colorsys.py +usr/lib/python3.10/compileall.py +#usr/lib/python3.10/concurrent +usr/lib/python3.10/concurrent/__init__.py +#usr/lib/python3.10/concurrent/futures +usr/lib/python3.10/concurrent/futures/__init__.py +usr/lib/python3.10/concurrent/futures/_base.py +usr/lib/python3.10/concurrent/futures/process.py +usr/lib/python3.10/concurrent/futures/thread.py +#usr/lib/python3.10/config-3.10-arm-linux-gnu +usr/lib/python3.10/config-3.10-arm-linux-gnu/Makefile +usr/lib/python3.10/config-3.10-arm-linux-gnu/Setup +usr/lib/python3.10/config-3.10-arm-linux-gnu/Setup.local +usr/lib/python3.10/config-3.10-arm-linux-gnu/config.c +usr/lib/python3.10/config-3.10-arm-linux-gnu/config.c.in +usr/lib/python3.10/config-3.10-arm-linux-gnu/install-sh +usr/lib/python3.10/config-3.10-arm-linux-gnu/libpython3.10.a +usr/lib/python3.10/config-3.10-arm-linux-gnu/makesetup +usr/lib/python3.10/config-3.10-arm-linux-gnu/python-config.py +usr/lib/python3.10/config-3.10-arm-linux-gnu/python.o +usr/lib/python3.10/configparser.py +usr/lib/python3.10/contextlib.py +usr/lib/python3.10/contextvars.py +usr/lib/python3.10/copy.py +usr/lib/python3.10/copyreg.py +usr/lib/python3.10/crypt.py +usr/lib/python3.10/csv.py +#usr/lib/python3.10/ctypes +usr/lib/python3.10/ctypes/__init__.py +usr/lib/python3.10/ctypes/_aix.py +usr/lib/python3.10/ctypes/_endian.py +#usr/lib/python3.10/ctypes/macholib +usr/lib/python3.10/ctypes/macholib/README.ctypes +usr/lib/python3.10/ctypes/macholib/__init__.py +usr/lib/python3.10/ctypes/macholib/dyld.py +usr/lib/python3.10/ctypes/macholib/dylib.py +usr/lib/python3.10/ctypes/macholib/fetch_macholib +usr/lib/python3.10/ctypes/macholib/fetch_macholib.bat +usr/lib/python3.10/ctypes/macholib/framework.py +#usr/lib/python3.10/ctypes/test +usr/lib/python3.10/ctypes/util.py +usr/lib/python3.10/ctypes/wintypes.py +#usr/lib/python3.10/curses +usr/lib/python3.10/curses/__init__.py +usr/lib/python3.10/curses/ascii.py +usr/lib/python3.10/curses/has_key.py +usr/lib/python3.10/curses/panel.py +usr/lib/python3.10/curses/textpad.py +usr/lib/python3.10/dataclasses.py +usr/lib/python3.10/datetime.py +#usr/lib/python3.10/dbm +usr/lib/python3.10/dbm/__init__.py +usr/lib/python3.10/dbm/dumb.py +usr/lib/python3.10/dbm/gnu.py +usr/lib/python3.10/dbm/ndbm.py +usr/lib/python3.10/decimal.py +usr/lib/python3.10/difflib.py +usr/lib/python3.10/dis.py +#usr/lib/python3.10/distutils +#usr/lib/python3.10/distutils/README +usr/lib/python3.10/distutils/__init__.py +usr/lib/python3.10/distutils/_msvccompiler.py +usr/lib/python3.10/distutils/archive_util.py +usr/lib/python3.10/distutils/bcppcompiler.py +usr/lib/python3.10/distutils/ccompiler.py +usr/lib/python3.10/distutils/cmd.py +#usr/lib/python3.10/distutils/command +usr/lib/python3.10/distutils/command/__init__.py +usr/lib/python3.10/distutils/command/bdist.py +usr/lib/python3.10/distutils/command/bdist_dumb.py +usr/lib/python3.10/distutils/command/bdist_msi.py +usr/lib/python3.10/distutils/command/bdist_rpm.py +usr/lib/python3.10/distutils/command/build.py +usr/lib/python3.10/distutils/command/build_clib.py +usr/lib/python3.10/distutils/command/build_ext.py +usr/lib/python3.10/distutils/command/build_py.py +usr/lib/python3.10/distutils/command/build_scripts.py +usr/lib/python3.10/distutils/command/check.py +usr/lib/python3.10/distutils/command/clean.py +usr/lib/python3.10/distutils/command/command_template +usr/lib/python3.10/distutils/command/config.py +usr/lib/python3.10/distutils/command/install.py +usr/lib/python3.10/distutils/command/install_data.py +usr/lib/python3.10/distutils/command/install_egg_info.py +usr/lib/python3.10/distutils/command/install_headers.py +usr/lib/python3.10/distutils/command/install_lib.py +usr/lib/python3.10/distutils/command/install_scripts.py +usr/lib/python3.10/distutils/command/register.py +usr/lib/python3.10/distutils/command/sdist.py +usr/lib/python3.10/distutils/command/upload.py +usr/lib/python3.10/distutils/config.py +usr/lib/python3.10/distutils/core.py +usr/lib/python3.10/distutils/cygwinccompiler.py +usr/lib/python3.10/distutils/debug.py +usr/lib/python3.10/distutils/dep_util.py +usr/lib/python3.10/distutils/dir_util.py +usr/lib/python3.10/distutils/dist.py +usr/lib/python3.10/distutils/errors.py +usr/lib/python3.10/distutils/extension.py +usr/lib/python3.10/distutils/fancy_getopt.py +usr/lib/python3.10/distutils/file_util.py +usr/lib/python3.10/distutils/filelist.py +usr/lib/python3.10/distutils/log.py +usr/lib/python3.10/distutils/msvc9compiler.py +usr/lib/python3.10/distutils/msvccompiler.py +usr/lib/python3.10/distutils/spawn.py +usr/lib/python3.10/distutils/sysconfig.py +#usr/lib/python3.10/distutils/tests +usr/lib/python3.10/distutils/tests/Setup.sample +usr/lib/python3.10/distutils/tests/__init__.py +usr/lib/python3.10/distutils/tests/includetest.rst +usr/lib/python3.10/distutils/tests/support.py +usr/lib/python3.10/distutils/tests/test_archive_util.py +usr/lib/python3.10/distutils/tests/test_bdist.py +usr/lib/python3.10/distutils/tests/test_bdist_dumb.py +usr/lib/python3.10/distutils/tests/test_bdist_msi.py +usr/lib/python3.10/distutils/tests/test_bdist_rpm.py +usr/lib/python3.10/distutils/tests/test_build.py +usr/lib/python3.10/distutils/tests/test_build_clib.py +usr/lib/python3.10/distutils/tests/test_build_ext.py +usr/lib/python3.10/distutils/tests/test_build_py.py +usr/lib/python3.10/distutils/tests/test_build_scripts.py +usr/lib/python3.10/distutils/tests/test_check.py +usr/lib/python3.10/distutils/tests/test_clean.py +usr/lib/python3.10/distutils/tests/test_cmd.py +usr/lib/python3.10/distutils/tests/test_config.py +usr/lib/python3.10/distutils/tests/test_config_cmd.py +usr/lib/python3.10/distutils/tests/test_core.py +usr/lib/python3.10/distutils/tests/test_cygwinccompiler.py +usr/lib/python3.10/distutils/tests/test_dep_util.py +usr/lib/python3.10/distutils/tests/test_dir_util.py +usr/lib/python3.10/distutils/tests/test_dist.py +usr/lib/python3.10/distutils/tests/test_extension.py +usr/lib/python3.10/distutils/tests/test_file_util.py +usr/lib/python3.10/distutils/tests/test_filelist.py +usr/lib/python3.10/distutils/tests/test_install.py +usr/lib/python3.10/distutils/tests/test_install_data.py +usr/lib/python3.10/distutils/tests/test_install_headers.py +usr/lib/python3.10/distutils/tests/test_install_lib.py +usr/lib/python3.10/distutils/tests/test_install_scripts.py +usr/lib/python3.10/distutils/tests/test_log.py +usr/lib/python3.10/distutils/tests/test_msvc9compiler.py +usr/lib/python3.10/distutils/tests/test_msvccompiler.py +usr/lib/python3.10/distutils/tests/test_register.py +usr/lib/python3.10/distutils/tests/test_sdist.py +usr/lib/python3.10/distutils/tests/test_spawn.py +usr/lib/python3.10/distutils/tests/test_sysconfig.py +usr/lib/python3.10/distutils/tests/test_text_file.py +usr/lib/python3.10/distutils/tests/test_unixccompiler.py +usr/lib/python3.10/distutils/tests/test_upload.py +usr/lib/python3.10/distutils/tests/test_util.py +usr/lib/python3.10/distutils/tests/test_version.py +usr/lib/python3.10/distutils/tests/test_versionpredicate.py +usr/lib/python3.10/distutils/tests/xxmodule.c +usr/lib/python3.10/distutils/text_file.py +usr/lib/python3.10/distutils/unixccompiler.py +usr/lib/python3.10/distutils/util.py +usr/lib/python3.10/distutils/version.py +usr/lib/python3.10/distutils/versionpredicate.py +usr/lib/python3.10/doctest.py +#usr/lib/python3.10/email +usr/lib/python3.10/email/__init__.py +usr/lib/python3.10/email/_encoded_words.py +usr/lib/python3.10/email/_header_value_parser.py +usr/lib/python3.10/email/_parseaddr.py +usr/lib/python3.10/email/_policybase.py +usr/lib/python3.10/email/architecture.rst +usr/lib/python3.10/email/base64mime.py +usr/lib/python3.10/email/charset.py +usr/lib/python3.10/email/contentmanager.py +usr/lib/python3.10/email/encoders.py +usr/lib/python3.10/email/errors.py +usr/lib/python3.10/email/feedparser.py +usr/lib/python3.10/email/generator.py +usr/lib/python3.10/email/header.py +usr/lib/python3.10/email/headerregistry.py +usr/lib/python3.10/email/iterators.py +usr/lib/python3.10/email/message.py +#usr/lib/python3.10/email/mime +usr/lib/python3.10/email/mime/__init__.py +usr/lib/python3.10/email/mime/application.py +usr/lib/python3.10/email/mime/audio.py +usr/lib/python3.10/email/mime/base.py +usr/lib/python3.10/email/mime/image.py +usr/lib/python3.10/email/mime/message.py +usr/lib/python3.10/email/mime/multipart.py +usr/lib/python3.10/email/mime/nonmultipart.py +usr/lib/python3.10/email/mime/text.py +usr/lib/python3.10/email/parser.py +usr/lib/python3.10/email/policy.py +usr/lib/python3.10/email/quoprimime.py +usr/lib/python3.10/email/utils.py +#usr/lib/python3.10/encodings +usr/lib/python3.10/encodings/__init__.py +usr/lib/python3.10/encodings/aliases.py +usr/lib/python3.10/encodings/ascii.py +usr/lib/python3.10/encodings/base64_codec.py +usr/lib/python3.10/encodings/big5.py +usr/lib/python3.10/encodings/big5hkscs.py +usr/lib/python3.10/encodings/bz2_codec.py +usr/lib/python3.10/encodings/charmap.py +usr/lib/python3.10/encodings/cp037.py +usr/lib/python3.10/encodings/cp1006.py +usr/lib/python3.10/encodings/cp1026.py +usr/lib/python3.10/encodings/cp1125.py +usr/lib/python3.10/encodings/cp1140.py +usr/lib/python3.10/encodings/cp1250.py +usr/lib/python3.10/encodings/cp1251.py +usr/lib/python3.10/encodings/cp1252.py +usr/lib/python3.10/encodings/cp1253.py +usr/lib/python3.10/encodings/cp1254.py +usr/lib/python3.10/encodings/cp1255.py +usr/lib/python3.10/encodings/cp1256.py +usr/lib/python3.10/encodings/cp1257.py +usr/lib/python3.10/encodings/cp1258.py +usr/lib/python3.10/encodings/cp273.py +usr/lib/python3.10/encodings/cp424.py +usr/lib/python3.10/encodings/cp437.py +usr/lib/python3.10/encodings/cp500.py +usr/lib/python3.10/encodings/cp720.py +usr/lib/python3.10/encodings/cp737.py +usr/lib/python3.10/encodings/cp775.py +usr/lib/python3.10/encodings/cp850.py +usr/lib/python3.10/encodings/cp852.py +usr/lib/python3.10/encodings/cp855.py +usr/lib/python3.10/encodings/cp856.py +usr/lib/python3.10/encodings/cp857.py +usr/lib/python3.10/encodings/cp858.py +usr/lib/python3.10/encodings/cp860.py +usr/lib/python3.10/encodings/cp861.py +usr/lib/python3.10/encodings/cp862.py +usr/lib/python3.10/encodings/cp863.py +usr/lib/python3.10/encodings/cp864.py +usr/lib/python3.10/encodings/cp865.py +usr/lib/python3.10/encodings/cp866.py +usr/lib/python3.10/encodings/cp869.py +usr/lib/python3.10/encodings/cp874.py +usr/lib/python3.10/encodings/cp875.py +usr/lib/python3.10/encodings/cp932.py +usr/lib/python3.10/encodings/cp949.py +usr/lib/python3.10/encodings/cp950.py +usr/lib/python3.10/encodings/euc_jis_2004.py +usr/lib/python3.10/encodings/euc_jisx0213.py +usr/lib/python3.10/encodings/euc_jp.py +usr/lib/python3.10/encodings/euc_kr.py +usr/lib/python3.10/encodings/gb18030.py +usr/lib/python3.10/encodings/gb2312.py +usr/lib/python3.10/encodings/gbk.py +usr/lib/python3.10/encodings/hex_codec.py +usr/lib/python3.10/encodings/hp_roman8.py +usr/lib/python3.10/encodings/hz.py +usr/lib/python3.10/encodings/idna.py +usr/lib/python3.10/encodings/iso2022_jp.py +usr/lib/python3.10/encodings/iso2022_jp_1.py +usr/lib/python3.10/encodings/iso2022_jp_2.py +usr/lib/python3.10/encodings/iso2022_jp_2004.py +usr/lib/python3.10/encodings/iso2022_jp_3.py +usr/lib/python3.10/encodings/iso2022_jp_ext.py +usr/lib/python3.10/encodings/iso2022_kr.py +usr/lib/python3.10/encodings/iso8859_1.py +usr/lib/python3.10/encodings/iso8859_10.py +usr/lib/python3.10/encodings/iso8859_11.py +usr/lib/python3.10/encodings/iso8859_13.py +usr/lib/python3.10/encodings/iso8859_14.py +usr/lib/python3.10/encodings/iso8859_15.py +usr/lib/python3.10/encodings/iso8859_16.py +usr/lib/python3.10/encodings/iso8859_2.py +usr/lib/python3.10/encodings/iso8859_3.py +usr/lib/python3.10/encodings/iso8859_4.py +usr/lib/python3.10/encodings/iso8859_5.py +usr/lib/python3.10/encodings/iso8859_6.py +usr/lib/python3.10/encodings/iso8859_7.py +usr/lib/python3.10/encodings/iso8859_8.py +usr/lib/python3.10/encodings/iso8859_9.py +usr/lib/python3.10/encodings/johab.py +usr/lib/python3.10/encodings/koi8_r.py +usr/lib/python3.10/encodings/koi8_t.py +usr/lib/python3.10/encodings/koi8_u.py +usr/lib/python3.10/encodings/kz1048.py +usr/lib/python3.10/encodings/latin_1.py +usr/lib/python3.10/encodings/mac_arabic.py +usr/lib/python3.10/encodings/mac_croatian.py +usr/lib/python3.10/encodings/mac_cyrillic.py +usr/lib/python3.10/encodings/mac_farsi.py +usr/lib/python3.10/encodings/mac_greek.py +usr/lib/python3.10/encodings/mac_iceland.py +usr/lib/python3.10/encodings/mac_latin2.py +usr/lib/python3.10/encodings/mac_roman.py +usr/lib/python3.10/encodings/mac_romanian.py +usr/lib/python3.10/encodings/mac_turkish.py +usr/lib/python3.10/encodings/mbcs.py +usr/lib/python3.10/encodings/oem.py +usr/lib/python3.10/encodings/palmos.py +usr/lib/python3.10/encodings/ptcp154.py +usr/lib/python3.10/encodings/punycode.py +usr/lib/python3.10/encodings/quopri_codec.py +usr/lib/python3.10/encodings/raw_unicode_escape.py +usr/lib/python3.10/encodings/rot_13.py +usr/lib/python3.10/encodings/shift_jis.py +usr/lib/python3.10/encodings/shift_jis_2004.py +usr/lib/python3.10/encodings/shift_jisx0213.py +usr/lib/python3.10/encodings/tis_620.py +usr/lib/python3.10/encodings/undefined.py +usr/lib/python3.10/encodings/unicode_escape.py +usr/lib/python3.10/encodings/utf_16.py +usr/lib/python3.10/encodings/utf_16_be.py +usr/lib/python3.10/encodings/utf_16_le.py +usr/lib/python3.10/encodings/utf_32.py +usr/lib/python3.10/encodings/utf_32_be.py +usr/lib/python3.10/encodings/utf_32_le.py +usr/lib/python3.10/encodings/utf_7.py +usr/lib/python3.10/encodings/utf_8.py +usr/lib/python3.10/encodings/utf_8_sig.py +usr/lib/python3.10/encodings/uu_codec.py +usr/lib/python3.10/encodings/zlib_codec.py +usr/lib/python3.10/ensurepip +usr/lib/python3.10/ensurepip/__init__.py +usr/lib/python3.10/ensurepip/__main__.py +usr/lib/python3.10/ensurepip/_bundled +usr/lib/python3.10/ensurepip/_bundled/__init__.py +usr/lib/python3.10/ensurepip/_bundled/pip-21.2.4-py3-none-any.whl +usr/lib/python3.10/ensurepip/_bundled/setuptools-58.1.0-py3-none-any.whl +usr/lib/python3.10/ensurepip/_uninstall.py +usr/lib/python3.10/enum.py +usr/lib/python3.10/filecmp.py +usr/lib/python3.10/fileinput.py +usr/lib/python3.10/fnmatch.py +usr/lib/python3.10/fractions.py +usr/lib/python3.10/ftplib.py +usr/lib/python3.10/functools.py +usr/lib/python3.10/genericpath.py +usr/lib/python3.10/getopt.py +usr/lib/python3.10/getpass.py +usr/lib/python3.10/gettext.py +usr/lib/python3.10/glob.py +usr/lib/python3.10/graphlib.py +usr/lib/python3.10/gzip.py +usr/lib/python3.10/hashlib.py +usr/lib/python3.10/heapq.py +usr/lib/python3.10/hmac.py +#usr/lib/python3.10/html +usr/lib/python3.10/html/__init__.py +usr/lib/python3.10/html/entities.py +usr/lib/python3.10/html/parser.py +#usr/lib/python3.10/http +usr/lib/python3.10/http/__init__.py +usr/lib/python3.10/http/client.py +usr/lib/python3.10/http/cookiejar.py +usr/lib/python3.10/http/cookies.py +usr/lib/python3.10/http/server.py +#usr/lib/python3.10/idlelib +usr/lib/python3.10/idlelib/CREDITS.txt +usr/lib/python3.10/idlelib/ChangeLog +usr/lib/python3.10/idlelib/HISTORY.txt +usr/lib/python3.10/idlelib/Icons +usr/lib/python3.10/idlelib/Icons/README.txt +usr/lib/python3.10/idlelib/Icons/folder.gif +usr/lib/python3.10/idlelib/Icons/idle.ico +usr/lib/python3.10/idlelib/Icons/idle_16.gif +usr/lib/python3.10/idlelib/Icons/idle_16.png +usr/lib/python3.10/idlelib/Icons/idle_256.png +usr/lib/python3.10/idlelib/Icons/idle_32.gif +usr/lib/python3.10/idlelib/Icons/idle_32.png +usr/lib/python3.10/idlelib/Icons/idle_48.gif +usr/lib/python3.10/idlelib/Icons/idle_48.png +usr/lib/python3.10/idlelib/Icons/minusnode.gif +usr/lib/python3.10/idlelib/Icons/openfolder.gif +usr/lib/python3.10/idlelib/Icons/plusnode.gif +usr/lib/python3.10/idlelib/Icons/python.gif +usr/lib/python3.10/idlelib/Icons/tk.gif +usr/lib/python3.10/idlelib/NEWS.txt +usr/lib/python3.10/idlelib/NEWS2x.txt +usr/lib/python3.10/idlelib/README.txt +usr/lib/python3.10/idlelib/TODO.txt +usr/lib/python3.10/idlelib/__init__.py +usr/lib/python3.10/idlelib/__main__.py +usr/lib/python3.10/idlelib/autocomplete.py +usr/lib/python3.10/idlelib/autocomplete_w.py +usr/lib/python3.10/idlelib/autoexpand.py +usr/lib/python3.10/idlelib/browser.py +usr/lib/python3.10/idlelib/calltip.py +usr/lib/python3.10/idlelib/calltip_w.py +usr/lib/python3.10/idlelib/codecontext.py +usr/lib/python3.10/idlelib/colorizer.py +usr/lib/python3.10/idlelib/config-extensions.def +usr/lib/python3.10/idlelib/config-highlight.def +usr/lib/python3.10/idlelib/config-keys.def +usr/lib/python3.10/idlelib/config-main.def +usr/lib/python3.10/idlelib/config.py +usr/lib/python3.10/idlelib/config_key.py +usr/lib/python3.10/idlelib/configdialog.py +usr/lib/python3.10/idlelib/debugger.py +usr/lib/python3.10/idlelib/debugger_r.py +usr/lib/python3.10/idlelib/debugobj.py +usr/lib/python3.10/idlelib/debugobj_r.py +usr/lib/python3.10/idlelib/delegator.py +usr/lib/python3.10/idlelib/dynoption.py +usr/lib/python3.10/idlelib/editor.py +usr/lib/python3.10/idlelib/extend.txt +usr/lib/python3.10/idlelib/filelist.py +usr/lib/python3.10/idlelib/format.py +usr/lib/python3.10/idlelib/grep.py +usr/lib/python3.10/idlelib/help.html +usr/lib/python3.10/idlelib/help.py +usr/lib/python3.10/idlelib/help_about.py +usr/lib/python3.10/idlelib/history.py +usr/lib/python3.10/idlelib/hyperparser.py +usr/lib/python3.10/idlelib/idle.bat +usr/lib/python3.10/idlelib/idle.py +usr/lib/python3.10/idlelib/idle.pyw +usr/lib/python3.10/idlelib/idle_test +usr/lib/python3.10/idlelib/idle_test/README.txt +usr/lib/python3.10/idlelib/idle_test/__init__.py +usr/lib/python3.10/idlelib/idle_test/htest.py +usr/lib/python3.10/idlelib/idle_test/mock_idle.py +usr/lib/python3.10/idlelib/idle_test/mock_tk.py +usr/lib/python3.10/idlelib/idle_test/template.py +usr/lib/python3.10/idlelib/idle_test/test_autocomplete.py +usr/lib/python3.10/idlelib/idle_test/test_autocomplete_w.py +usr/lib/python3.10/idlelib/idle_test/test_autoexpand.py +usr/lib/python3.10/idlelib/idle_test/test_browser.py +usr/lib/python3.10/idlelib/idle_test/test_calltip.py +usr/lib/python3.10/idlelib/idle_test/test_calltip_w.py +usr/lib/python3.10/idlelib/idle_test/test_codecontext.py +usr/lib/python3.10/idlelib/idle_test/test_colorizer.py +usr/lib/python3.10/idlelib/idle_test/test_config.py +usr/lib/python3.10/idlelib/idle_test/test_config_key.py +usr/lib/python3.10/idlelib/idle_test/test_configdialog.py +usr/lib/python3.10/idlelib/idle_test/test_debugger.py +usr/lib/python3.10/idlelib/idle_test/test_debugger_r.py +usr/lib/python3.10/idlelib/idle_test/test_debugobj.py +usr/lib/python3.10/idlelib/idle_test/test_debugobj_r.py +usr/lib/python3.10/idlelib/idle_test/test_delegator.py +usr/lib/python3.10/idlelib/idle_test/test_editmenu.py +usr/lib/python3.10/idlelib/idle_test/test_editor.py +usr/lib/python3.10/idlelib/idle_test/test_filelist.py +usr/lib/python3.10/idlelib/idle_test/test_format.py +usr/lib/python3.10/idlelib/idle_test/test_grep.py +usr/lib/python3.10/idlelib/idle_test/test_help.py +usr/lib/python3.10/idlelib/idle_test/test_help_about.py +usr/lib/python3.10/idlelib/idle_test/test_history.py +usr/lib/python3.10/idlelib/idle_test/test_hyperparser.py +usr/lib/python3.10/idlelib/idle_test/test_iomenu.py +usr/lib/python3.10/idlelib/idle_test/test_macosx.py +usr/lib/python3.10/idlelib/idle_test/test_mainmenu.py +usr/lib/python3.10/idlelib/idle_test/test_multicall.py +usr/lib/python3.10/idlelib/idle_test/test_outwin.py +usr/lib/python3.10/idlelib/idle_test/test_parenmatch.py +usr/lib/python3.10/idlelib/idle_test/test_pathbrowser.py +usr/lib/python3.10/idlelib/idle_test/test_percolator.py +usr/lib/python3.10/idlelib/idle_test/test_pyparse.py +usr/lib/python3.10/idlelib/idle_test/test_pyshell.py +usr/lib/python3.10/idlelib/idle_test/test_query.py +usr/lib/python3.10/idlelib/idle_test/test_redirector.py +usr/lib/python3.10/idlelib/idle_test/test_replace.py +usr/lib/python3.10/idlelib/idle_test/test_rpc.py +usr/lib/python3.10/idlelib/idle_test/test_run.py +usr/lib/python3.10/idlelib/idle_test/test_runscript.py +usr/lib/python3.10/idlelib/idle_test/test_scrolledlist.py +usr/lib/python3.10/idlelib/idle_test/test_search.py +usr/lib/python3.10/idlelib/idle_test/test_searchbase.py +usr/lib/python3.10/idlelib/idle_test/test_searchengine.py +usr/lib/python3.10/idlelib/idle_test/test_sidebar.py +usr/lib/python3.10/idlelib/idle_test/test_squeezer.py +usr/lib/python3.10/idlelib/idle_test/test_stackviewer.py +usr/lib/python3.10/idlelib/idle_test/test_statusbar.py +usr/lib/python3.10/idlelib/idle_test/test_text.py +usr/lib/python3.10/idlelib/idle_test/test_textview.py +usr/lib/python3.10/idlelib/idle_test/test_tooltip.py +usr/lib/python3.10/idlelib/idle_test/test_tree.py +usr/lib/python3.10/idlelib/idle_test/test_undo.py +usr/lib/python3.10/idlelib/idle_test/test_warning.py +usr/lib/python3.10/idlelib/idle_test/test_window.py +usr/lib/python3.10/idlelib/idle_test/test_zoomheight.py +usr/lib/python3.10/idlelib/idle_test/test_zzdummy.py +usr/lib/python3.10/idlelib/idle_test/tkinter_testing_utils.py +usr/lib/python3.10/idlelib/iomenu.py +usr/lib/python3.10/idlelib/macosx.py +usr/lib/python3.10/idlelib/mainmenu.py +usr/lib/python3.10/idlelib/multicall.py +usr/lib/python3.10/idlelib/outwin.py +usr/lib/python3.10/idlelib/parenmatch.py +usr/lib/python3.10/idlelib/pathbrowser.py +usr/lib/python3.10/idlelib/percolator.py +usr/lib/python3.10/idlelib/pyparse.py +usr/lib/python3.10/idlelib/pyshell.py +usr/lib/python3.10/idlelib/query.py +usr/lib/python3.10/idlelib/redirector.py +usr/lib/python3.10/idlelib/replace.py +usr/lib/python3.10/idlelib/rpc.py +usr/lib/python3.10/idlelib/run.py +usr/lib/python3.10/idlelib/runscript.py +usr/lib/python3.10/idlelib/scrolledlist.py +usr/lib/python3.10/idlelib/search.py +usr/lib/python3.10/idlelib/searchbase.py +usr/lib/python3.10/idlelib/searchengine.py +usr/lib/python3.10/idlelib/sidebar.py +usr/lib/python3.10/idlelib/squeezer.py +usr/lib/python3.10/idlelib/stackviewer.py +usr/lib/python3.10/idlelib/statusbar.py +usr/lib/python3.10/idlelib/textview.py +usr/lib/python3.10/idlelib/tooltip.py +usr/lib/python3.10/idlelib/tree.py +usr/lib/python3.10/idlelib/undo.py +usr/lib/python3.10/idlelib/window.py +usr/lib/python3.10/idlelib/zoomheight.py +usr/lib/python3.10/idlelib/zzdummy.py +usr/lib/python3.10/imaplib.py +usr/lib/python3.10/imghdr.py +usr/lib/python3.10/imp.py +#usr/lib/python3.10/importlib +usr/lib/python3.10/importlib/__init__.py +usr/lib/python3.10/importlib/_abc.py +usr/lib/python3.10/importlib/_adapters.py +usr/lib/python3.10/importlib/_bootstrap.py +usr/lib/python3.10/importlib/_bootstrap_external.py +usr/lib/python3.10/importlib/_common.py +usr/lib/python3.10/importlib/abc.py +usr/lib/python3.10/importlib/machinery.py +#usr/lib/python3.10/importlib/metadata +usr/lib/python3.10/importlib/metadata/__init__.py +usr/lib/python3.10/importlib/metadata/_adapters.py +usr/lib/python3.10/importlib/metadata/_collections.py +usr/lib/python3.10/importlib/metadata/_functools.py +usr/lib/python3.10/importlib/metadata/_itertools.py +usr/lib/python3.10/importlib/metadata/_meta.py +usr/lib/python3.10/importlib/metadata/_text.py +usr/lib/python3.10/importlib/readers.py +usr/lib/python3.10/importlib/resources.py +usr/lib/python3.10/importlib/util.py +usr/lib/python3.10/inspect.py +usr/lib/python3.10/io.py +usr/lib/python3.10/ipaddress.py +#usr/lib/python3.10/json +usr/lib/python3.10/json/__init__.py +usr/lib/python3.10/json/decoder.py +usr/lib/python3.10/json/encoder.py +usr/lib/python3.10/json/scanner.py +usr/lib/python3.10/json/tool.py +usr/lib/python3.10/keyword.py +#usr/lib/python3.10/lib-dynload +usr/lib/python3.10/lib-dynload/_asyncio.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_bisect.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_blake2.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_bz2.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_cn.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_hk.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_iso2022.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_jp.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_kr.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_tw.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_contextvars.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_crypt.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_csv.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_ctypes.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_ctypes_test.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_curses.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_curses_panel.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_datetime.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_dbm.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_decimal.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_elementtree.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_gdbm.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_hashlib.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_heapq.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_json.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_lsprof.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_lzma.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_md5.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_multibytecodec.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_multiprocessing.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_opcode.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_pickle.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_posixshmem.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_posixsubprocess.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_queue.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_random.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_sha1.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_sha256.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_sha3.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_sha512.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_socket.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_sqlite3.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_ssl.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_statistics.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_struct.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_testbuffer.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_testcapi.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_testimportmultiple.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_testinternalcapi.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_testmultiphase.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_uuid.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_xxsubinterpreters.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_xxtestfuzz.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/_zoneinfo.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/array.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/audioop.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/binascii.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/cmath.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/fcntl.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/grp.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/math.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/mmap.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/ossaudiodev.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/pyexpat.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/readline.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/resource.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/select.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/spwd.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/syslog.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/termios.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/unicodedata.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/xxlimited.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/xxlimited_35.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/lib-dynload/zlib.cpython-310-arm-linux-gnu.so +#usr/lib/python3.10/lib2to3 +usr/lib/python3.10/lib2to3/Grammar.txt +usr/lib/python3.10/lib2to3/Grammar3.10.1.final.0.pickle +usr/lib/python3.10/lib2to3/PatternGrammar.txt +usr/lib/python3.10/lib2to3/PatternGrammar3.10.1.final.0.pickle +usr/lib/python3.10/lib2to3/__init__.py +usr/lib/python3.10/lib2to3/__main__.py +usr/lib/python3.10/lib2to3/btm_matcher.py +usr/lib/python3.10/lib2to3/btm_utils.py +usr/lib/python3.10/lib2to3/fixer_base.py +usr/lib/python3.10/lib2to3/fixer_util.py +#usr/lib/python3.10/lib2to3/fixes +usr/lib/python3.10/lib2to3/fixes/__init__.py +usr/lib/python3.10/lib2to3/fixes/fix_apply.py +usr/lib/python3.10/lib2to3/fixes/fix_asserts.py +usr/lib/python3.10/lib2to3/fixes/fix_basestring.py +usr/lib/python3.10/lib2to3/fixes/fix_buffer.py +usr/lib/python3.10/lib2to3/fixes/fix_dict.py +usr/lib/python3.10/lib2to3/fixes/fix_except.py +usr/lib/python3.10/lib2to3/fixes/fix_exec.py +usr/lib/python3.10/lib2to3/fixes/fix_execfile.py +usr/lib/python3.10/lib2to3/fixes/fix_exitfunc.py +usr/lib/python3.10/lib2to3/fixes/fix_filter.py +usr/lib/python3.10/lib2to3/fixes/fix_funcattrs.py +usr/lib/python3.10/lib2to3/fixes/fix_future.py +usr/lib/python3.10/lib2to3/fixes/fix_getcwdu.py +usr/lib/python3.10/lib2to3/fixes/fix_has_key.py +usr/lib/python3.10/lib2to3/fixes/fix_idioms.py +usr/lib/python3.10/lib2to3/fixes/fix_import.py +usr/lib/python3.10/lib2to3/fixes/fix_imports.py +usr/lib/python3.10/lib2to3/fixes/fix_imports2.py +usr/lib/python3.10/lib2to3/fixes/fix_input.py +usr/lib/python3.10/lib2to3/fixes/fix_intern.py +usr/lib/python3.10/lib2to3/fixes/fix_isinstance.py +usr/lib/python3.10/lib2to3/fixes/fix_itertools.py +usr/lib/python3.10/lib2to3/fixes/fix_itertools_imports.py +usr/lib/python3.10/lib2to3/fixes/fix_long.py +usr/lib/python3.10/lib2to3/fixes/fix_map.py +usr/lib/python3.10/lib2to3/fixes/fix_metaclass.py +usr/lib/python3.10/lib2to3/fixes/fix_methodattrs.py +usr/lib/python3.10/lib2to3/fixes/fix_ne.py +usr/lib/python3.10/lib2to3/fixes/fix_next.py +usr/lib/python3.10/lib2to3/fixes/fix_nonzero.py +usr/lib/python3.10/lib2to3/fixes/fix_numliterals.py +usr/lib/python3.10/lib2to3/fixes/fix_operator.py +usr/lib/python3.10/lib2to3/fixes/fix_paren.py +usr/lib/python3.10/lib2to3/fixes/fix_print.py +usr/lib/python3.10/lib2to3/fixes/fix_raise.py +usr/lib/python3.10/lib2to3/fixes/fix_raw_input.py +usr/lib/python3.10/lib2to3/fixes/fix_reduce.py +usr/lib/python3.10/lib2to3/fixes/fix_reload.py +usr/lib/python3.10/lib2to3/fixes/fix_renames.py +usr/lib/python3.10/lib2to3/fixes/fix_repr.py +usr/lib/python3.10/lib2to3/fixes/fix_set_literal.py +usr/lib/python3.10/lib2to3/fixes/fix_standarderror.py +usr/lib/python3.10/lib2to3/fixes/fix_sys_exc.py +usr/lib/python3.10/lib2to3/fixes/fix_throw.py +usr/lib/python3.10/lib2to3/fixes/fix_tuple_params.py +usr/lib/python3.10/lib2to3/fixes/fix_types.py +usr/lib/python3.10/lib2to3/fixes/fix_unicode.py +usr/lib/python3.10/lib2to3/fixes/fix_urllib.py +usr/lib/python3.10/lib2to3/fixes/fix_ws_comma.py +usr/lib/python3.10/lib2to3/fixes/fix_xrange.py +usr/lib/python3.10/lib2to3/fixes/fix_xreadlines.py +usr/lib/python3.10/lib2to3/fixes/fix_zip.py +usr/lib/python3.10/lib2to3/main.py +usr/lib/python3.10/lib2to3/patcomp.py +#usr/lib/python3.10/lib2to3/pgen2 +usr/lib/python3.10/lib2to3/pgen2/__init__.py +usr/lib/python3.10/lib2to3/pgen2/conv.py +usr/lib/python3.10/lib2to3/pgen2/driver.py +usr/lib/python3.10/lib2to3/pgen2/grammar.py +usr/lib/python3.10/lib2to3/pgen2/literals.py +usr/lib/python3.10/lib2to3/pgen2/parse.py +usr/lib/python3.10/lib2to3/pgen2/pgen.py +usr/lib/python3.10/lib2to3/pgen2/token.py +usr/lib/python3.10/lib2to3/pgen2/tokenize.py +usr/lib/python3.10/lib2to3/pygram.py +usr/lib/python3.10/lib2to3/pytree.py +usr/lib/python3.10/lib2to3/refactor.py +usr/lib/python3.10/lib2to3/tests +usr/lib/python3.10/lib2to3/tests/__init__.py +usr/lib/python3.10/lib2to3/tests/__main__.py +usr/lib/python3.10/lib2to3/tests/data +usr/lib/python3.10/lib2to3/tests/data/README +usr/lib/python3.10/lib2to3/tests/data/bom.py +usr/lib/python3.10/lib2to3/tests/data/crlf.py +usr/lib/python3.10/lib2to3/tests/data/different_encoding.py +usr/lib/python3.10/lib2to3/tests/data/false_encoding.py +usr/lib/python3.10/lib2to3/tests/data/fixers +usr/lib/python3.10/lib2to3/tests/data/fixers/bad_order.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/__init__.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/fix_explicit.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/fix_first.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/fix_last.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/fix_parrot.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/fix_preorder.py +usr/lib/python3.10/lib2to3/tests/data/fixers/no_fixer_cls.py +usr/lib/python3.10/lib2to3/tests/data/fixers/parrot_example.py +usr/lib/python3.10/lib2to3/tests/data/infinite_recursion.py +usr/lib/python3.10/lib2to3/tests/data/py2_test_grammar.py +usr/lib/python3.10/lib2to3/tests/data/py3_test_grammar.py +usr/lib/python3.10/lib2to3/tests/pytree_idempotency.py +usr/lib/python3.10/lib2to3/tests/support.py +usr/lib/python3.10/lib2to3/tests/test_all_fixers.py +usr/lib/python3.10/lib2to3/tests/test_fixers.py +usr/lib/python3.10/lib2to3/tests/test_main.py +usr/lib/python3.10/lib2to3/tests/test_parser.py +usr/lib/python3.10/lib2to3/tests/test_pytree.py +usr/lib/python3.10/lib2to3/tests/test_refactor.py +usr/lib/python3.10/lib2to3/tests/test_util.py +usr/lib/python3.10/linecache.py +usr/lib/python3.10/locale.py +#usr/lib/python3.10/logging +usr/lib/python3.10/logging/__init__.py +usr/lib/python3.10/logging/config.py +usr/lib/python3.10/logging/handlers.py +usr/lib/python3.10/lzma.py +usr/lib/python3.10/mailbox.py +usr/lib/python3.10/mailcap.py +usr/lib/python3.10/mimetypes.py +usr/lib/python3.10/modulefinder.py +#usr/lib/python3.10/multiprocessing +usr/lib/python3.10/multiprocessing/__init__.py +usr/lib/python3.10/multiprocessing/connection.py +usr/lib/python3.10/multiprocessing/context.py +#usr/lib/python3.10/multiprocessing/dummy +usr/lib/python3.10/multiprocessing/dummy/__init__.py +usr/lib/python3.10/multiprocessing/dummy/connection.py +usr/lib/python3.10/multiprocessing/forkserver.py +usr/lib/python3.10/multiprocessing/heap.py +usr/lib/python3.10/multiprocessing/managers.py +usr/lib/python3.10/multiprocessing/pool.py +usr/lib/python3.10/multiprocessing/popen_fork.py +usr/lib/python3.10/multiprocessing/popen_forkserver.py +usr/lib/python3.10/multiprocessing/popen_spawn_posix.py +usr/lib/python3.10/multiprocessing/popen_spawn_win32.py +usr/lib/python3.10/multiprocessing/process.py +usr/lib/python3.10/multiprocessing/queues.py +usr/lib/python3.10/multiprocessing/reduction.py +usr/lib/python3.10/multiprocessing/resource_sharer.py +usr/lib/python3.10/multiprocessing/resource_tracker.py +usr/lib/python3.10/multiprocessing/shared_memory.py +usr/lib/python3.10/multiprocessing/sharedctypes.py +usr/lib/python3.10/multiprocessing/spawn.py +usr/lib/python3.10/multiprocessing/synchronize.py +usr/lib/python3.10/multiprocessing/util.py +usr/lib/python3.10/netrc.py +usr/lib/python3.10/nntplib.py +usr/lib/python3.10/ntpath.py +usr/lib/python3.10/nturl2path.py +usr/lib/python3.10/numbers.py +usr/lib/python3.10/opcode.py +usr/lib/python3.10/operator.py +usr/lib/python3.10/optparse.py +usr/lib/python3.10/os.py +usr/lib/python3.10/pathlib.py +usr/lib/python3.10/pdb.py +usr/lib/python3.10/pickle.py +usr/lib/python3.10/pickletools.py +usr/lib/python3.10/pipes.py +usr/lib/python3.10/pkgutil.py +usr/lib/python3.10/platform.py +usr/lib/python3.10/plistlib.py +usr/lib/python3.10/poplib.py +usr/lib/python3.10/posixpath.py +usr/lib/python3.10/pprint.py +usr/lib/python3.10/profile.py +usr/lib/python3.10/pstats.py +usr/lib/python3.10/pty.py +usr/lib/python3.10/py_compile.py +usr/lib/python3.10/pyclbr.py +usr/lib/python3.10/pydoc.py +#usr/lib/python3.10/pydoc_data +usr/lib/python3.10/pydoc_data/__init__.py +usr/lib/python3.10/pydoc_data/_pydoc.css +usr/lib/python3.10/pydoc_data/topics.py +usr/lib/python3.10/queue.py +usr/lib/python3.10/quopri.py +usr/lib/python3.10/random.py +usr/lib/python3.10/re.py +usr/lib/python3.10/reprlib.py +usr/lib/python3.10/rlcompleter.py +usr/lib/python3.10/runpy.py +usr/lib/python3.10/sched.py +usr/lib/python3.10/secrets.py +usr/lib/python3.10/selectors.py +usr/lib/python3.10/shelve.py +usr/lib/python3.10/shlex.py +usr/lib/python3.10/shutil.py +usr/lib/python3.10/signal.py +#usr/lib/python3.10/site-packages +usr/lib/python3.10/site-packages/README.txt +#usr/lib/python3.10/site-packages/_distutils_hack +usr/lib/python3.10/site-packages/_distutils_hack/__init__.py +usr/lib/python3.10/site-packages/_distutils_hack/override.py +usr/lib/python3.10/site-packages/distutils-precedence.pth +#usr/lib/python3.10/site-packages/pip +#usr/lib/python3.10/site-packages/pip-21.2.4.dist-info +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/INSTALLER +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/LICENSE.txt +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/METADATA +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/RECORD +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/REQUESTED +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/WHEEL +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/entry_points.txt +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/top_level.txt +usr/lib/python3.10/site-packages/pip/__init__.py +usr/lib/python3.10/site-packages/pip/__main__.py +#usr/lib/python3.10/site-packages/pip/_internal +usr/lib/python3.10/site-packages/pip/_internal/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/build_env.py +usr/lib/python3.10/site-packages/pip/_internal/cache.py +#usr/lib/python3.10/site-packages/pip/_internal/cli +usr/lib/python3.10/site-packages/pip/_internal/cli/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py +usr/lib/python3.10/site-packages/pip/_internal/cli/base_command.py +usr/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py +usr/lib/python3.10/site-packages/pip/_internal/cli/command_context.py +usr/lib/python3.10/site-packages/pip/_internal/cli/main.py +usr/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py +usr/lib/python3.10/site-packages/pip/_internal/cli/parser.py +usr/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py +usr/lib/python3.10/site-packages/pip/_internal/cli/req_command.py +usr/lib/python3.10/site-packages/pip/_internal/cli/spinners.py +usr/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py +#usr/lib/python3.10/site-packages/pip/_internal/commands +usr/lib/python3.10/site-packages/pip/_internal/commands/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/commands/cache.py +usr/lib/python3.10/site-packages/pip/_internal/commands/check.py +usr/lib/python3.10/site-packages/pip/_internal/commands/completion.py +usr/lib/python3.10/site-packages/pip/_internal/commands/configuration.py +usr/lib/python3.10/site-packages/pip/_internal/commands/debug.py +usr/lib/python3.10/site-packages/pip/_internal/commands/download.py +usr/lib/python3.10/site-packages/pip/_internal/commands/freeze.py +usr/lib/python3.10/site-packages/pip/_internal/commands/hash.py +usr/lib/python3.10/site-packages/pip/_internal/commands/help.py +usr/lib/python3.10/site-packages/pip/_internal/commands/index.py +usr/lib/python3.10/site-packages/pip/_internal/commands/install.py +usr/lib/python3.10/site-packages/pip/_internal/commands/list.py +usr/lib/python3.10/site-packages/pip/_internal/commands/search.py +usr/lib/python3.10/site-packages/pip/_internal/commands/show.py +usr/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py +usr/lib/python3.10/site-packages/pip/_internal/commands/wheel.py +usr/lib/python3.10/site-packages/pip/_internal/configuration.py +#usr/lib/python3.10/site-packages/pip/_internal/distributions +usr/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/distributions/base.py +usr/lib/python3.10/site-packages/pip/_internal/distributions/installed.py +usr/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py +usr/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py +usr/lib/python3.10/site-packages/pip/_internal/exceptions.py +usr/lib/python3.10/site-packages/pip/_internal/index +usr/lib/python3.10/site-packages/pip/_internal/index/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/index/collector.py +usr/lib/python3.10/site-packages/pip/_internal/index/package_finder.py +usr/lib/python3.10/site-packages/pip/_internal/index/sources.py +#usr/lib/python3.10/site-packages/pip/_internal/locations +usr/lib/python3.10/site-packages/pip/_internal/locations/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py +usr/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py +usr/lib/python3.10/site-packages/pip/_internal/locations/base.py +usr/lib/python3.10/site-packages/pip/_internal/main.py +#usr/lib/python3.10/site-packages/pip/_internal/metadata +usr/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/metadata/base.py +usr/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py +#usr/lib/python3.10/site-packages/pip/_internal/models +usr/lib/python3.10/site-packages/pip/_internal/models/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/models/candidate.py +usr/lib/python3.10/site-packages/pip/_internal/models/direct_url.py +usr/lib/python3.10/site-packages/pip/_internal/models/format_control.py +usr/lib/python3.10/site-packages/pip/_internal/models/index.py +usr/lib/python3.10/site-packages/pip/_internal/models/link.py +usr/lib/python3.10/site-packages/pip/_internal/models/scheme.py +usr/lib/python3.10/site-packages/pip/_internal/models/search_scope.py +usr/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py +usr/lib/python3.10/site-packages/pip/_internal/models/target_python.py +usr/lib/python3.10/site-packages/pip/_internal/models/wheel.py +usr/lib/python3.10/site-packages/pip/_internal/network +usr/lib/python3.10/site-packages/pip/_internal/network/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/network/auth.py +usr/lib/python3.10/site-packages/pip/_internal/network/cache.py +usr/lib/python3.10/site-packages/pip/_internal/network/download.py +usr/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py +usr/lib/python3.10/site-packages/pip/_internal/network/session.py +usr/lib/python3.10/site-packages/pip/_internal/network/utils.py +usr/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py +#usr/lib/python3.10/site-packages/pip/_internal/operations +usr/lib/python3.10/site-packages/pip/_internal/operations/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/operations/build +usr/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py +usr/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py +usr/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py +usr/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py +usr/lib/python3.10/site-packages/pip/_internal/operations/check.py +usr/lib/python3.10/site-packages/pip/_internal/operations/freeze.py +usr/lib/python3.10/site-packages/pip/_internal/operations/install +usr/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py +usr/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py +usr/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py +usr/lib/python3.10/site-packages/pip/_internal/operations/prepare.py +usr/lib/python3.10/site-packages/pip/_internal/pyproject.py +#usr/lib/python3.10/site-packages/pip/_internal/req +usr/lib/python3.10/site-packages/pip/_internal/req/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/req/constructors.py +usr/lib/python3.10/site-packages/pip/_internal/req/req_file.py +usr/lib/python3.10/site-packages/pip/_internal/req/req_install.py +usr/lib/python3.10/site-packages/pip/_internal/req/req_set.py +usr/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py +usr/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py +usr/lib/python3.10/site-packages/pip/_internal/resolution +usr/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/base.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/legacy +usr/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py +usr/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py +#usr/lib/python3.10/site-packages/pip/_internal/utils +usr/lib/python3.10/site-packages/pip/_internal/utils/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/utils/_log.py +usr/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py +usr/lib/python3.10/site-packages/pip/_internal/utils/compat.py +usr/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py +usr/lib/python3.10/site-packages/pip/_internal/utils/datetime.py +usr/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py +usr/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py +usr/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py +usr/lib/python3.10/site-packages/pip/_internal/utils/encoding.py +usr/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py +usr/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py +usr/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py +usr/lib/python3.10/site-packages/pip/_internal/utils/glibc.py +usr/lib/python3.10/site-packages/pip/_internal/utils/hashes.py +usr/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py +usr/lib/python3.10/site-packages/pip/_internal/utils/logging.py +usr/lib/python3.10/site-packages/pip/_internal/utils/misc.py +usr/lib/python3.10/site-packages/pip/_internal/utils/models.py +usr/lib/python3.10/site-packages/pip/_internal/utils/packaging.py +usr/lib/python3.10/site-packages/pip/_internal/utils/parallel.py +usr/lib/python3.10/site-packages/pip/_internal/utils/pkg_resources.py +usr/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py +usr/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py +usr/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py +usr/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py +usr/lib/python3.10/site-packages/pip/_internal/utils/urls.py +usr/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py +usr/lib/python3.10/site-packages/pip/_internal/utils/wheel.py +#usr/lib/python3.10/site-packages/pip/_internal/vcs +usr/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py +usr/lib/python3.10/site-packages/pip/_internal/vcs/git.py +usr/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py +usr/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py +usr/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py +usr/lib/python3.10/site-packages/pip/_internal/wheel_builder.py +usr/lib/python3.10/site-packages/pip/_vendor +usr/lib/python3.10/site-packages/pip/_vendor/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/appdirs.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py +#usr/lib/python3.10/site-packages/pip/_vendor/certifi +usr/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py +usr/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem +usr/lib/python3.10/site-packages/pip/_vendor/certifi/core.py +#usr/lib/python3.10/site-packages/pip/_vendor/chardet +usr/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py +#usr/lib/python3.10/site-packages/pip/_vendor/chardet/cli +usr/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/cli/chardetect.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/codingstatemachine.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/cp949prober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/eucjpprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py +#usr/lib/python3.10/site-packages/pip/_vendor/chardet/metadata +usr/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/version.py +#usr/lib/python3.10/site-packages/pip/_vendor/colorama +usr/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py +usr/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py +usr/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py +usr/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py +usr/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py +#usr/lib/python3.10/site-packages/pip/_vendor/distlib +usr/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/misc.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/shutil.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/tarfile.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/database.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/index.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/t32.exe +usr/lib/python3.10/site-packages/pip/_vendor/distlib/t64.exe +usr/lib/python3.10/site-packages/pip/_vendor/distlib/util.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/version.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/w32.exe +usr/lib/python3.10/site-packages/pip/_vendor/distlib/w64.exe +usr/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py +usr/lib/python3.10/site-packages/pip/_vendor/distro.py +#usr/lib/python3.10/site-packages/pip/_vendor/html5lib +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_ihatexml.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py +#usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/serializer.py +#usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/sax.py +#usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/base.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/dom.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py +#usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/base.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/dom.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py +#usr/lib/python3.10/site-packages/pip/_vendor/idna +usr/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/codec.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/core.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py +#usr/lib/python3.10/site-packages/pip/_vendor/msgpack +usr/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/msgpack/_version.py +usr/lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py +usr/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py +usr/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py +#usr/lib/python3.10/site-packages/pip/_vendor/packaging +usr/lib/python3.10/site-packages/pip/_vendor/packaging/__about__.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/markers.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/version.py +#usr/lib/python3.10/site-packages/pip/_vendor/pep517 +usr/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/build.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/check.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/colorlog.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/dirtools.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/envbuild.py +#usr/lib/python3.10/site-packages/pip/_vendor/pep517/in_process +usr/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/meta.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/wrappers.py +#usr/lib/python3.10/site-packages/pip/_vendor/pkg_resources +usr/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/pkg_resources/py31compat.py +#usr/lib/python3.10/site-packages/pip/_vendor/progress +usr/lib/python3.10/site-packages/pip/_vendor/progress/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/progress/bar.py +usr/lib/python3.10/site-packages/pip/_vendor/progress/counter.py +usr/lib/python3.10/site-packages/pip/_vendor/progress/spinner.py +usr/lib/python3.10/site-packages/pip/_vendor/pyparsing.py +#usr/lib/python3.10/site-packages/pip/_vendor/requests +usr/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/api.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/auth.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/certs.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/help.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/models.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/packages.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/structures.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/utils.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py +usr/lib/python3.10/site-packages/pip/_vendor/six.py +#usr/lib/python3.10/site-packages/pip/_vendor/tenacity +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/_asyncio.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/before_sleep.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/nap.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/tornadoweb.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py +#usr/lib/python3.10/site-packages/pip/_vendor/tomli +usr/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py +usr/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3 +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/queue.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py +usr/lib/python3.10/site-packages/pip/_vendor/vendor.txt +#usr/lib/python3.10/site-packages/pip/_vendor/webencodings +usr/lib/python3.10/site-packages/pip/_vendor/webencodings/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/webencodings/labels.py +usr/lib/python3.10/site-packages/pip/_vendor/webencodings/mklabels.py +usr/lib/python3.10/site-packages/pip/_vendor/webencodings/tests.py +usr/lib/python3.10/site-packages/pip/_vendor/webencodings/x_user_defined.py +usr/lib/python3.10/site-packages/pip/py.typed +#usr/lib/python3.10/site-packages/pkg_resources +usr/lib/python3.10/site-packages/pkg_resources/__init__.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor +usr/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py +#usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_compat.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_typing.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing.py +usr/lib/python3.10/site-packages/pkg_resources/extern +usr/lib/python3.10/site-packages/pkg_resources/extern/__init__.py +#usr/lib/python3.10/site-packages/pkg_resources/tests +usr/lib/python3.10/site-packages/pkg_resources/tests/data +usr/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source +usr/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +#usr/lib/python3.10/site-packages/setuptools +#usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/INSTALLER +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/LICENSE +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/METADATA +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/RECORD +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/REQUESTED +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/WHEEL +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/entry_points.txt +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/top_level.txt +usr/lib/python3.10/site-packages/setuptools/__init__.py +usr/lib/python3.10/site-packages/setuptools/_deprecation_warning.py +usr/lib/python3.10/site-packages/setuptools/_distutils +usr/lib/python3.10/site-packages/setuptools/_distutils/__init__.py +usr/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py +usr/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/cmd.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command +usr/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_msi.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_wininst.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/build.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/check.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/config.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/register.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py +usr/lib/python3.10/site-packages/setuptools/_distutils/config.py +usr/lib/python3.10/site-packages/setuptools/_distutils/core.py +usr/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/debug.py +usr/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py +usr/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py +usr/lib/python3.10/site-packages/setuptools/_distutils/dist.py +usr/lib/python3.10/site-packages/setuptools/_distutils/errors.py +usr/lib/python3.10/site-packages/setuptools/_distutils/extension.py +usr/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py +usr/lib/python3.10/site-packages/setuptools/_distutils/file_util.py +usr/lib/python3.10/site-packages/setuptools/_distutils/filelist.py +usr/lib/python3.10/site-packages/setuptools/_distutils/log.py +usr/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/py35compat.py +usr/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py +usr/lib/python3.10/site-packages/setuptools/_distutils/spawn.py +usr/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py +usr/lib/python3.10/site-packages/setuptools/_distutils/text_file.py +usr/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/util.py +usr/lib/python3.10/site-packages/setuptools/_distutils/version.py +usr/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py +usr/lib/python3.10/site-packages/setuptools/_imp.py +#usr/lib/python3.10/site-packages/setuptools/_vendor +usr/lib/python3.10/site-packages/setuptools/_vendor/__init__.py +#usr/lib/python3.10/site-packages/setuptools/_vendor/more_itertools +usr/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py +usr/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py +usr/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py +usr/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py +#usr/lib/python3.10/site-packages/setuptools/_vendor/packaging +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/_compat.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/_typing.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py +usr/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py +usr/lib/python3.10/site-packages/setuptools/archive_util.py +usr/lib/python3.10/site-packages/setuptools/build_meta.py +usr/lib/python3.10/site-packages/setuptools/cli-32.exe +usr/lib/python3.10/site-packages/setuptools/cli-64.exe +usr/lib/python3.10/site-packages/setuptools/cli.exe +#usr/lib/python3.10/site-packages/setuptools/command +usr/lib/python3.10/site-packages/setuptools/command/__init__.py +usr/lib/python3.10/site-packages/setuptools/command/alias.py +usr/lib/python3.10/site-packages/setuptools/command/bdist_egg.py +usr/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py +usr/lib/python3.10/site-packages/setuptools/command/build_clib.py +usr/lib/python3.10/site-packages/setuptools/command/build_ext.py +usr/lib/python3.10/site-packages/setuptools/command/build_py.py +usr/lib/python3.10/site-packages/setuptools/command/develop.py +usr/lib/python3.10/site-packages/setuptools/command/dist_info.py +usr/lib/python3.10/site-packages/setuptools/command/easy_install.py +usr/lib/python3.10/site-packages/setuptools/command/egg_info.py +usr/lib/python3.10/site-packages/setuptools/command/install.py +usr/lib/python3.10/site-packages/setuptools/command/install_egg_info.py +usr/lib/python3.10/site-packages/setuptools/command/install_lib.py +usr/lib/python3.10/site-packages/setuptools/command/install_scripts.py +#usr/lib/python3.10/site-packages/setuptools/command/launcher #manifest.xml -usr/lib/python3.8/site-packages/setuptools/command/py36compat.py -usr/lib/python3.8/site-packages/setuptools/command/register.py -usr/lib/python3.8/site-packages/setuptools/command/rotate.py -usr/lib/python3.8/site-packages/setuptools/command/saveopts.py -usr/lib/python3.8/site-packages/setuptools/command/sdist.py -usr/lib/python3.8/site-packages/setuptools/command/setopt.py -usr/lib/python3.8/site-packages/setuptools/command/test.py -usr/lib/python3.8/site-packages/setuptools/command/upload.py -usr/lib/python3.8/site-packages/setuptools/command/upload_docs.py -usr/lib/python3.8/site-packages/setuptools/config.py -usr/lib/python3.8/site-packages/setuptools/dep_util.py -usr/lib/python3.8/site-packages/setuptools/depends.py -usr/lib/python3.8/site-packages/setuptools/dist.py -usr/lib/python3.8/site-packages/setuptools/distutils_patch.py -usr/lib/python3.8/site-packages/setuptools/errors.py -usr/lib/python3.8/site-packages/setuptools/extension.py -usr/lib/python3.8/site-packages/setuptools/extern -usr/lib/python3.8/site-packages/setuptools/extern/__init__.py -usr/lib/python3.8/site-packages/setuptools/glob.py -usr/lib/python3.8/site-packages/setuptools/gui-32.exe -usr/lib/python3.8/site-packages/setuptools/gui-64.exe -usr/lib/python3.8/site-packages/setuptools/gui.exe -usr/lib/python3.8/site-packages/setuptools/installer.py -usr/lib/python3.8/site-packages/setuptools/launch.py -usr/lib/python3.8/site-packages/setuptools/lib2to3_ex.py -usr/lib/python3.8/site-packages/setuptools/monkey.py -usr/lib/python3.8/site-packages/setuptools/msvc.py -usr/lib/python3.8/site-packages/setuptools/namespaces.py -usr/lib/python3.8/site-packages/setuptools/package_index.py -usr/lib/python3.8/site-packages/setuptools/py27compat.py -usr/lib/python3.8/site-packages/setuptools/py31compat.py -usr/lib/python3.8/site-packages/setuptools/py33compat.py -usr/lib/python3.8/site-packages/setuptools/py34compat.py -usr/lib/python3.8/site-packages/setuptools/sandbox.py -#usr/lib/python3.8/site-packages/setuptools/script +usr/lib/python3.10/site-packages/setuptools/command/py36compat.py +usr/lib/python3.10/site-packages/setuptools/command/register.py +usr/lib/python3.10/site-packages/setuptools/command/rotate.py +usr/lib/python3.10/site-packages/setuptools/command/saveopts.py +usr/lib/python3.10/site-packages/setuptools/command/sdist.py +usr/lib/python3.10/site-packages/setuptools/command/setopt.py +usr/lib/python3.10/site-packages/setuptools/command/test.py +usr/lib/python3.10/site-packages/setuptools/command/upload.py +usr/lib/python3.10/site-packages/setuptools/command/upload_docs.py +usr/lib/python3.10/site-packages/setuptools/config.py +usr/lib/python3.10/site-packages/setuptools/dep_util.py +usr/lib/python3.10/site-packages/setuptools/depends.py +usr/lib/python3.10/site-packages/setuptools/dist.py +usr/lib/python3.10/site-packages/setuptools/errors.py +usr/lib/python3.10/site-packages/setuptools/extension.py +usr/lib/python3.10/site-packages/setuptools/extern +usr/lib/python3.10/site-packages/setuptools/extern/__init__.py +usr/lib/python3.10/site-packages/setuptools/glob.py +usr/lib/python3.10/site-packages/setuptools/gui-32.exe +usr/lib/python3.10/site-packages/setuptools/gui-64.exe +usr/lib/python3.10/site-packages/setuptools/gui.exe +usr/lib/python3.10/site-packages/setuptools/installer.py +usr/lib/python3.10/site-packages/setuptools/launch.py +usr/lib/python3.10/site-packages/setuptools/monkey.py +usr/lib/python3.10/site-packages/setuptools/msvc.py +usr/lib/python3.10/site-packages/setuptools/namespaces.py +usr/lib/python3.10/site-packages/setuptools/package_index.py +usr/lib/python3.10/site-packages/setuptools/py34compat.py +usr/lib/python3.10/site-packages/setuptools/sandbox.py +#usr/lib/python3.10/site-packages/setuptools/script #(dev).tmpl -usr/lib/python3.8/site-packages/setuptools/script.tmpl -usr/lib/python3.8/site-packages/setuptools/ssl_support.py -usr/lib/python3.8/site-packages/setuptools/unicode_utils.py -usr/lib/python3.8/site-packages/setuptools/version.py -usr/lib/python3.8/site-packages/setuptools/wheel.py -usr/lib/python3.8/site-packages/setuptools/windows_support.py -usr/lib/python3.8/site.py -usr/lib/python3.8/smtpd.py -usr/lib/python3.8/smtplib.py -usr/lib/python3.8/sndhdr.py -usr/lib/python3.8/socket.py -usr/lib/python3.8/socketserver.py -usr/lib/python3.8/sqlite3 -usr/lib/python3.8/sqlite3/__init__.py -usr/lib/python3.8/sqlite3/dbapi2.py -usr/lib/python3.8/sqlite3/dump.py -usr/lib/python3.8/sqlite3/test -usr/lib/python3.8/sre_compile.py -usr/lib/python3.8/sre_constants.py -usr/lib/python3.8/sre_parse.py -usr/lib/python3.8/ssl.py -usr/lib/python3.8/stat.py -usr/lib/python3.8/statistics.py -usr/lib/python3.8/string.py -usr/lib/python3.8/stringprep.py -usr/lib/python3.8/struct.py -usr/lib/python3.8/subprocess.py -usr/lib/python3.8/sunau.py -usr/lib/python3.8/symbol.py -usr/lib/python3.8/symtable.py -usr/lib/python3.8/sysconfig.py -usr/lib/python3.8/tabnanny.py -usr/lib/python3.8/tarfile.py -usr/lib/python3.8/telnetlib.py -usr/lib/python3.8/tempfile.py -usr/lib/python3.8/test -usr/lib/python3.8/textwrap.py -usr/lib/python3.8/this.py -usr/lib/python3.8/threading.py -usr/lib/python3.8/timeit.py -#usr/lib/python3.8/tkinter -usr/lib/python3.8/tkinter/__init__.py -usr/lib/python3.8/tkinter/__main__.py -usr/lib/python3.8/tkinter/colorchooser.py -usr/lib/python3.8/tkinter/commondialog.py -usr/lib/python3.8/tkinter/constants.py -usr/lib/python3.8/tkinter/dialog.py -usr/lib/python3.8/tkinter/dnd.py -usr/lib/python3.8/tkinter/filedialog.py -usr/lib/python3.8/tkinter/font.py -usr/lib/python3.8/tkinter/messagebox.py -usr/lib/python3.8/tkinter/scrolledtext.py -usr/lib/python3.8/tkinter/simpledialog.py -#usr/lib/python3.8/tkinter/test -usr/lib/python3.8/tkinter/tix.py -usr/lib/python3.8/tkinter/ttk.py -usr/lib/python3.8/token.py -usr/lib/python3.8/tokenize.py -usr/lib/python3.8/trace.py -usr/lib/python3.8/traceback.py -usr/lib/python3.8/tracemalloc.py -usr/lib/python3.8/tty.py -usr/lib/python3.8/turtle.py -#usr/lib/python3.8/turtledemo -usr/lib/python3.8/turtledemo/__init__.py -usr/lib/python3.8/turtledemo/__main__.py -usr/lib/python3.8/turtledemo/bytedesign.py -usr/lib/python3.8/turtledemo/chaos.py -usr/lib/python3.8/turtledemo/clock.py -usr/lib/python3.8/turtledemo/colormixer.py -usr/lib/python3.8/turtledemo/forest.py -usr/lib/python3.8/turtledemo/fractalcurves.py -usr/lib/python3.8/turtledemo/lindenmayer.py -usr/lib/python3.8/turtledemo/minimal_hanoi.py -usr/lib/python3.8/turtledemo/nim.py -usr/lib/python3.8/turtledemo/paint.py -usr/lib/python3.8/turtledemo/peace.py -usr/lib/python3.8/turtledemo/penrose.py -usr/lib/python3.8/turtledemo/planet_and_moon.py -usr/lib/python3.8/turtledemo/rosette.py -usr/lib/python3.8/turtledemo/round_dance.py -usr/lib/python3.8/turtledemo/sorting_animate.py -usr/lib/python3.8/turtledemo/tree.py -usr/lib/python3.8/turtledemo/turtle.cfg -usr/lib/python3.8/turtledemo/two_canvases.py -usr/lib/python3.8/turtledemo/yinyang.py -usr/lib/python3.8/types.py -usr/lib/python3.8/typing.py -usr/lib/python3.8/unittest -usr/lib/python3.8/unittest/__init__.py -usr/lib/python3.8/unittest/__main__.py -usr/lib/python3.8/unittest/async_case.py -usr/lib/python3.8/unittest/case.py -usr/lib/python3.8/unittest/loader.py -usr/lib/python3.8/unittest/main.py -usr/lib/python3.8/unittest/mock.py -usr/lib/python3.8/unittest/result.py -usr/lib/python3.8/unittest/runner.py -usr/lib/python3.8/unittest/signals.py -usr/lib/python3.8/unittest/suite.py -usr/lib/python3.8/unittest/test -usr/lib/python3.8/unittest/util.py -#usr/lib/python3.8/urllib -usr/lib/python3.8/urllib/__init__.py -usr/lib/python3.8/urllib/error.py -usr/lib/python3.8/urllib/parse.py -usr/lib/python3.8/urllib/request.py -usr/lib/python3.8/urllib/response.py -usr/lib/python3.8/urllib/robotparser.py -usr/lib/python3.8/uu.py -usr/lib/python3.8/uuid.py -#usr/lib/python3.8/venv -usr/lib/python3.8/venv/__init__.py -usr/lib/python3.8/venv/__main__.py -usr/lib/python3.8/venv/scripts -usr/lib/python3.8/venv/scripts/common -usr/lib/python3.8/venv/scripts/common/Activate.ps1 -usr/lib/python3.8/venv/scripts/common/activate -usr/lib/python3.8/venv/scripts/posix -usr/lib/python3.8/venv/scripts/posix/activate.csh -usr/lib/python3.8/venv/scripts/posix/activate.fish -usr/lib/python3.8/warnings.py -usr/lib/python3.8/wave.py -usr/lib/python3.8/weakref.py -usr/lib/python3.8/webbrowser.py -#usr/lib/python3.8/wsgiref -usr/lib/python3.8/wsgiref/__init__.py -usr/lib/python3.8/wsgiref/handlers.py -usr/lib/python3.8/wsgiref/headers.py -usr/lib/python3.8/wsgiref/simple_server.py -usr/lib/python3.8/wsgiref/util.py -usr/lib/python3.8/wsgiref/validate.py -usr/lib/python3.8/xdrlib.py -#usr/lib/python3.8/xml -usr/lib/python3.8/xml/__init__.py -#usr/lib/python3.8/xml/dom -usr/lib/python3.8/xml/dom/NodeFilter.py -usr/lib/python3.8/xml/dom/__init__.py -usr/lib/python3.8/xml/dom/domreg.py -usr/lib/python3.8/xml/dom/expatbuilder.py -usr/lib/python3.8/xml/dom/minicompat.py -usr/lib/python3.8/xml/dom/minidom.py -usr/lib/python3.8/xml/dom/pulldom.py -usr/lib/python3.8/xml/dom/xmlbuilder.py -#usr/lib/python3.8/xml/etree -usr/lib/python3.8/xml/etree/ElementInclude.py -usr/lib/python3.8/xml/etree/ElementPath.py -usr/lib/python3.8/xml/etree/ElementTree.py -usr/lib/python3.8/xml/etree/__init__.py -usr/lib/python3.8/xml/etree/cElementTree.py -#usr/lib/python3.8/xml/parsers -usr/lib/python3.8/xml/parsers/__init__.py -usr/lib/python3.8/xml/parsers/expat.py -#usr/lib/python3.8/xml/sax -usr/lib/python3.8/xml/sax/__init__.py -usr/lib/python3.8/xml/sax/_exceptions.py -usr/lib/python3.8/xml/sax/expatreader.py -usr/lib/python3.8/xml/sax/handler.py -usr/lib/python3.8/xml/sax/saxutils.py -usr/lib/python3.8/xml/sax/xmlreader.py -#usr/lib/python3.8/xmlrpc -usr/lib/python3.8/xmlrpc/__init__.py -usr/lib/python3.8/xmlrpc/client.py -usr/lib/python3.8/xmlrpc/server.py -usr/lib/python3.8/zipapp.py -usr/lib/python3.8/zipfile.py -usr/lib/python3.8/zipimport.py +usr/lib/python3.10/site-packages/setuptools/script.tmpl +usr/lib/python3.10/site-packages/setuptools/unicode_utils.py +usr/lib/python3.10/site-packages/setuptools/version.py +usr/lib/python3.10/site-packages/setuptools/wheel.py +usr/lib/python3.10/site-packages/setuptools/windows_support.py +usr/lib/python3.10/site.py +usr/lib/python3.10/smtpd.py +usr/lib/python3.10/smtplib.py +usr/lib/python3.10/sndhdr.py +usr/lib/python3.10/socket.py +usr/lib/python3.10/socketserver.py +usr/lib/python3.10/sqlite3 +usr/lib/python3.10/sqlite3/__init__.py +usr/lib/python3.10/sqlite3/dbapi2.py +usr/lib/python3.10/sqlite3/dump.py +usr/lib/python3.10/sqlite3/test +usr/lib/python3.10/sre_compile.py +usr/lib/python3.10/sre_constants.py +usr/lib/python3.10/sre_parse.py +usr/lib/python3.10/ssl.py +usr/lib/python3.10/stat.py +usr/lib/python3.10/statistics.py +usr/lib/python3.10/string.py +usr/lib/python3.10/stringprep.py +usr/lib/python3.10/struct.py +usr/lib/python3.10/subprocess.py +usr/lib/python3.10/sunau.py +usr/lib/python3.10/symtable.py +usr/lib/python3.10/sysconfig.py +usr/lib/python3.10/tabnanny.py +usr/lib/python3.10/tarfile.py +usr/lib/python3.10/telnetlib.py +usr/lib/python3.10/tempfile.py +usr/lib/python3.10/test +usr/lib/python3.10/textwrap.py +usr/lib/python3.10/this.py +usr/lib/python3.10/threading.py +usr/lib/python3.10/timeit.py +#usr/lib/python3.10/tkinter +usr/lib/python3.10/tkinter/__init__.py +usr/lib/python3.10/tkinter/__main__.py +usr/lib/python3.10/tkinter/colorchooser.py +usr/lib/python3.10/tkinter/commondialog.py +usr/lib/python3.10/tkinter/constants.py +usr/lib/python3.10/tkinter/dialog.py +usr/lib/python3.10/tkinter/dnd.py +usr/lib/python3.10/tkinter/filedialog.py +usr/lib/python3.10/tkinter/font.py +usr/lib/python3.10/tkinter/messagebox.py +usr/lib/python3.10/tkinter/scrolledtext.py +usr/lib/python3.10/tkinter/simpledialog.py +#usr/lib/python3.10/tkinter/test +usr/lib/python3.10/tkinter/tix.py +usr/lib/python3.10/tkinter/ttk.py +usr/lib/python3.10/token.py +usr/lib/python3.10/tokenize.py +usr/lib/python3.10/trace.py +usr/lib/python3.10/traceback.py +usr/lib/python3.10/tracemalloc.py +usr/lib/python3.10/tty.py +usr/lib/python3.10/turtle.py +#usr/lib/python3.10/turtledemo +usr/lib/python3.10/turtledemo/__init__.py +usr/lib/python3.10/turtledemo/__main__.py +usr/lib/python3.10/turtledemo/bytedesign.py +usr/lib/python3.10/turtledemo/chaos.py +usr/lib/python3.10/turtledemo/clock.py +usr/lib/python3.10/turtledemo/colormixer.py +usr/lib/python3.10/turtledemo/forest.py +usr/lib/python3.10/turtledemo/fractalcurves.py +usr/lib/python3.10/turtledemo/lindenmayer.py +usr/lib/python3.10/turtledemo/minimal_hanoi.py +usr/lib/python3.10/turtledemo/nim.py +usr/lib/python3.10/turtledemo/paint.py +usr/lib/python3.10/turtledemo/peace.py +usr/lib/python3.10/turtledemo/penrose.py +usr/lib/python3.10/turtledemo/planet_and_moon.py +usr/lib/python3.10/turtledemo/rosette.py +usr/lib/python3.10/turtledemo/round_dance.py +usr/lib/python3.10/turtledemo/sorting_animate.py +usr/lib/python3.10/turtledemo/tree.py +usr/lib/python3.10/turtledemo/turtle.cfg +usr/lib/python3.10/turtledemo/two_canvases.py +usr/lib/python3.10/turtledemo/yinyang.py +usr/lib/python3.10/types.py +usr/lib/python3.10/typing.py +usr/lib/python3.10/unittest +usr/lib/python3.10/unittest/__init__.py +usr/lib/python3.10/unittest/__main__.py +usr/lib/python3.10/unittest/_log.py +usr/lib/python3.10/unittest/async_case.py +usr/lib/python3.10/unittest/case.py +usr/lib/python3.10/unittest/loader.py +usr/lib/python3.10/unittest/main.py +usr/lib/python3.10/unittest/mock.py +usr/lib/python3.10/unittest/result.py +usr/lib/python3.10/unittest/runner.py +usr/lib/python3.10/unittest/signals.py +usr/lib/python3.10/unittest/suite.py +usr/lib/python3.10/unittest/test +usr/lib/python3.10/unittest/util.py +#usr/lib/python3.10/urllib +usr/lib/python3.10/urllib/__init__.py +usr/lib/python3.10/urllib/error.py +usr/lib/python3.10/urllib/parse.py +usr/lib/python3.10/urllib/request.py +usr/lib/python3.10/urllib/response.py +usr/lib/python3.10/urllib/robotparser.py +usr/lib/python3.10/uu.py +usr/lib/python3.10/uuid.py +#usr/lib/python3.10/venv +usr/lib/python3.10/venv/__init__.py +usr/lib/python3.10/venv/__main__.py +usr/lib/python3.10/venv/scripts +usr/lib/python3.10/venv/scripts/common +usr/lib/python3.10/venv/scripts/common/Activate.ps1 +usr/lib/python3.10/venv/scripts/common/activate +usr/lib/python3.10/venv/scripts/posix +usr/lib/python3.10/venv/scripts/posix/activate.csh +usr/lib/python3.10/venv/scripts/posix/activate.fish +usr/lib/python3.10/warnings.py +usr/lib/python3.10/wave.py +usr/lib/python3.10/weakref.py +usr/lib/python3.10/webbrowser.py +#usr/lib/python3.10/wsgiref +usr/lib/python3.10/wsgiref/__init__.py +usr/lib/python3.10/wsgiref/handlers.py +usr/lib/python3.10/wsgiref/headers.py +usr/lib/python3.10/wsgiref/simple_server.py +usr/lib/python3.10/wsgiref/util.py +usr/lib/python3.10/wsgiref/validate.py +usr/lib/python3.10/xdrlib.py +#usr/lib/python3.10/xml +usr/lib/python3.10/xml/__init__.py +#usr/lib/python3.10/xml/dom +usr/lib/python3.10/xml/dom/NodeFilter.py +usr/lib/python3.10/xml/dom/__init__.py +usr/lib/python3.10/xml/dom/domreg.py +usr/lib/python3.10/xml/dom/expatbuilder.py +usr/lib/python3.10/xml/dom/minicompat.py +usr/lib/python3.10/xml/dom/minidom.py +usr/lib/python3.10/xml/dom/pulldom.py +usr/lib/python3.10/xml/dom/xmlbuilder.py +#usr/lib/python3.10/xml/etree +usr/lib/python3.10/xml/etree/ElementInclude.py +usr/lib/python3.10/xml/etree/ElementPath.py +usr/lib/python3.10/xml/etree/ElementTree.py +usr/lib/python3.10/xml/etree/__init__.py +usr/lib/python3.10/xml/etree/cElementTree.py +#usr/lib/python3.10/xml/parsers +usr/lib/python3.10/xml/parsers/__init__.py +usr/lib/python3.10/xml/parsers/expat.py +#usr/lib/python3.10/xml/sax +usr/lib/python3.10/xml/sax/__init__.py +usr/lib/python3.10/xml/sax/_exceptions.py +usr/lib/python3.10/xml/sax/expatreader.py +usr/lib/python3.10/xml/sax/handler.py +usr/lib/python3.10/xml/sax/saxutils.py +usr/lib/python3.10/xml/sax/xmlreader.py +#usr/lib/python3.10/xmlrpc +usr/lib/python3.10/xmlrpc/__init__.py +usr/lib/python3.10/xmlrpc/client.py +usr/lib/python3.10/xmlrpc/server.py +usr/lib/python3.10/zipapp.py +usr/lib/python3.10/zipfile.py +usr/lib/python3.10/zipimport.py +#usr/lib/python3.10/zoneinfo +usr/lib/python3.10/zoneinfo/__init__.py +usr/lib/python3.10/zoneinfo/_common.py +usr/lib/python3.10/zoneinfo/_tzpath.py +usr/lib/python3.10/zoneinfo/_zoneinfo.py #usr/share/man/man1/python3.1 -#usr/share/man/man1/python3.8.1 +#usr/share/man/man1/python3.10.1 diff --git a/config/rootfiles/common/armv6l/stage2 b/config/rootfiles/common/armv6l/stage2 index 5989bc9a95..df7c3d0f62 100644 --- a/config/rootfiles/common/armv6l/stage2 +++ b/config/rootfiles/common/armv6l/stage2 @@ -132,7 +132,6 @@ usr/local/bin/update-location-database #usr/sbin usr/sbin/openvpn-metrics usr/sbin/ovpn-ccd-convert -usr/sbin/ovpn-collectd-convert #usr/share #usr/share/doc #usr/share/doc/licenses diff --git a/config/rootfiles/common/bind b/config/rootfiles/common/bind index 4ea64dc0c0..c0e56854a3 100644 --- a/config/rootfiles/common/bind +++ b/config/rootfiles/common/bind @@ -274,24 +274,24 @@ usr/bin/nsupdate #usr/include/pk11/site.h #usr/include/pkcs11 #usr/include/pkcs11/pkcs11.h -usr/lib/libbind9-9.16.25.so +usr/lib/libbind9-9.16.26.so #usr/lib/libbind9.la #usr/lib/libbind9.so -usr/lib/libdns-9.16.25.so +usr/lib/libdns-9.16.26.so #usr/lib/libdns.la #usr/lib/libdns.so -usr/lib/libirs-9.16.25.so +usr/lib/libirs-9.16.26.so #usr/lib/libirs.la #usr/lib/libirs.so -usr/lib/libisc-9.16.25.so +usr/lib/libisc-9.16.26.so #usr/lib/libisc.la #usr/lib/libisc.so -usr/lib/libisccc-9.16.25.so +usr/lib/libisccc-9.16.26.so #usr/lib/libisccc.la #usr/lib/libisccc.so -usr/lib/libisccfg-9.16.25.so +usr/lib/libisccfg-9.16.26.so #usr/lib/libisccfg.la #usr/lib/libisccfg.so -usr/lib/libns-9.16.25.so +usr/lib/libns-9.16.26.so #usr/lib/libns.la #usr/lib/libns.so diff --git a/config/rootfiles/common/configroot b/config/rootfiles/common/configroot index 904c718c33..fef5ffbcfc 100644 --- a/config/rootfiles/common/configroot +++ b/config/rootfiles/common/configroot @@ -63,7 +63,6 @@ var/ipfire/firewall #var/ipfire/firewall/input #var/ipfire/firewall/locationblock #var/ipfire/firewall/outgoing -#var/ipfire/firewall/p2protocols #var/ipfire/firewall/settings var/ipfire/fwhosts #var/ipfire/fwhosts/customgroups diff --git a/config/rootfiles/common/curl b/config/rootfiles/common/curl index 75015b6fa0..da18e3f299 100644 --- a/config/rootfiles/common/curl +++ b/config/rootfiles/common/curl @@ -231,6 +231,7 @@ usr/lib/libcurl.so.4.7.0 #usr/share/man/man3/CURLOPT_MAX_RECV_SPEED_LARGE.3 #usr/share/man/man3/CURLOPT_MAX_SEND_SPEED_LARGE.3 #usr/share/man/man3/CURLOPT_MIMEPOST.3 +#usr/share/man/man3/CURLOPT_MIME_OPTIONS.3 #usr/share/man/man3/CURLOPT_NETRC.3 #usr/share/man/man3/CURLOPT_NETRC_FILE.3 #usr/share/man/man3/CURLOPT_NEW_DIRECTORY_PERMS.3 @@ -397,6 +398,11 @@ usr/lib/libcurl.so.4.7.0 #usr/share/man/man3/CURLOPT_XFERINFODATA.3 #usr/share/man/man3/CURLOPT_XFERINFOFUNCTION.3 #usr/share/man/man3/CURLOPT_XOAUTH2_BEARER.3 +#usr/share/man/man3/CURLSHOPT_LOCKFUNC.3 +#usr/share/man/man3/CURLSHOPT_SHARE.3 +#usr/share/man/man3/CURLSHOPT_UNLOCKFUNC.3 +#usr/share/man/man3/CURLSHOPT_UNSHARE.3 +#usr/share/man/man3/CURLSHOPT_USERDATA.3 #usr/share/man/man3/curl_easy_cleanup.3 #usr/share/man/man3/curl_easy_duphandle.3 #usr/share/man/man3/curl_easy_escape.3 diff --git a/config/rootfiles/common/ddns b/config/rootfiles/common/ddns index 899c0ba984..9757231714 100644 --- a/config/rootfiles/common/ddns +++ b/config/rootfiles/common/ddns @@ -1,12 +1,12 @@ usr/bin/ddns -#usr/lib/python3.8/site-packages/ddns -usr/lib/python3.8/site-packages/ddns/__init__.py -usr/lib/python3.8/site-packages/ddns/__version__.py -usr/lib/python3.8/site-packages/ddns/database.py -usr/lib/python3.8/site-packages/ddns/errors.py -usr/lib/python3.8/site-packages/ddns/i18n.py -usr/lib/python3.8/site-packages/ddns/providers.py -usr/lib/python3.8/site-packages/ddns/system.py +#usr/lib/python3.10/site-packages/ddns +usr/lib/python3.10/site-packages/ddns/__init__.py +usr/lib/python3.10/site-packages/ddns/__version__.py +usr/lib/python3.10/site-packages/ddns/database.py +usr/lib/python3.10/site-packages/ddns/errors.py +usr/lib/python3.10/site-packages/ddns/i18n.py +usr/lib/python3.10/site-packages/ddns/providers.py +usr/lib/python3.10/site-packages/ddns/system.py #usr/share/doc/ddns #usr/share/doc/ddns/COPYING #usr/share/locale/ar/LC_MESSAGES/ddns.mo diff --git a/config/rootfiles/common/expat b/config/rootfiles/common/expat index ea0c2ded59..9901085f26 100644 --- a/config/rootfiles/common/expat +++ b/config/rootfiles/common/expat @@ -2,22 +2,20 @@ #usr/include/expat.h #usr/include/expat_config.h #usr/include/expat_external.h -#usr/lib/cmake/expat-2.4.2 -#usr/lib/cmake/expat-2.4.2/expat-config-version.cmake -#usr/lib/cmake/expat-2.4.2/expat-config.cmake -#usr/lib/cmake/expat-2.4.2/expat-noconfig.cmake -#usr/lib/cmake/expat-2.4.2/expat.cmake -#usr/lib/libexpat.a +#usr/lib/cmake/expat-2.4.6 +#usr/lib/cmake/expat-2.4.6/expat-config-version.cmake +#usr/lib/cmake/expat-2.4.6/expat-config.cmake +#usr/lib/cmake/expat-2.4.6/expat-noconfig.cmake +#usr/lib/cmake/expat-2.4.6/expat.cmake #usr/lib/libexpat.la #usr/lib/libexpat.so usr/lib/libexpat.so.1 -usr/lib/libexpat.so.1.8.2 +usr/lib/libexpat.so.1.8.6 #usr/lib/pkgconfig/expat.pc #usr/share/doc/expat -#usr/share/doc/expat-2.4.2 -#usr/share/doc/expat-2.4.2/ok.min.css -#usr/share/doc/expat-2.4.2/reference.html -#usr/share/doc/expat-2.4.2/style.css -#usr/share/doc/expat-2.4.2/valid-xhtml10.png +#usr/share/doc/expat-2.4.6 +#usr/share/doc/expat-2.4.6/ok.min.css +#usr/share/doc/expat-2.4.6/reference.html +#usr/share/doc/expat-2.4.6/style.css #usr/share/doc/expat/AUTHORS #usr/share/doc/expat/changelog diff --git a/config/rootfiles/common/fireinfo b/config/rootfiles/common/fireinfo index 11f4729438..ed1d2792ae 100644 --- a/config/rootfiles/common/fireinfo +++ b/config/rootfiles/common/fireinfo @@ -1,13 +1,13 @@ usr/bin/sendprofile -#usr/lib/python3.8/site-packages/fireinfo -usr/lib/python3.8/site-packages/fireinfo/__init__.py -#usr/lib/python3.8/site-packages/fireinfo/_fireinfo.la -usr/lib/python3.8/site-packages/fireinfo/_fireinfo.so -usr/lib/python3.8/site-packages/fireinfo/bios.py -usr/lib/python3.8/site-packages/fireinfo/cpu.py -usr/lib/python3.8/site-packages/fireinfo/device.py -usr/lib/python3.8/site-packages/fireinfo/hypervisor.py -usr/lib/python3.8/site-packages/fireinfo/network.py -usr/lib/python3.8/site-packages/fireinfo/system.py +#usr/lib/python3.10/site-packages/fireinfo +usr/lib/python3.10/site-packages/fireinfo/__init__.py +#usr/lib/python3.10/site-packages/fireinfo/_fireinfo.la +usr/lib/python3.10/site-packages/fireinfo/_fireinfo.so +usr/lib/python3.10/site-packages/fireinfo/bios.py +usr/lib/python3.10/site-packages/fireinfo/cpu.py +usr/lib/python3.10/site-packages/fireinfo/device.py +usr/lib/python3.10/site-packages/fireinfo/hypervisor.py +usr/lib/python3.10/site-packages/fireinfo/network.py +usr/lib/python3.10/site-packages/fireinfo/system.py #usr/share/doc/fireinfo #usr/share/doc/fireinfo/COPYING diff --git a/config/rootfiles/common/glib b/config/rootfiles/common/glib index 7eab315549..0b2e4b2685 100644 --- a/config/rootfiles/common/glib +++ b/config/rootfiles/common/glib @@ -17,14 +17,11 @@ #usr/include/gio-unix-2.0/gio #usr/include/gio-unix-2.0/gio/gdesktopappinfo.h #usr/include/gio-unix-2.0/gio/gfiledescriptorbased.h -#usr/include/gio-unix-2.0/gio/gunixconnection.h -#usr/include/gio-unix-2.0/gio/gunixcredentialsmessage.h #usr/include/gio-unix-2.0/gio/gunixfdlist.h #usr/include/gio-unix-2.0/gio/gunixfdmessage.h #usr/include/gio-unix-2.0/gio/gunixinputstream.h #usr/include/gio-unix-2.0/gio/gunixmounts.h #usr/include/gio-unix-2.0/gio/gunixoutputstream.h -#usr/include/gio-unix-2.0/gio/gunixsocketaddress.h #usr/include/glib-2.0 #usr/include/glib-2.0/gio #usr/include/glib-2.0/gio/gaction.h @@ -71,6 +68,8 @@ #usr/include/glib-2.0/gio/gdbusproxy.h #usr/include/glib-2.0/gio/gdbusserver.h #usr/include/glib-2.0/gio/gdbusutils.h +usr/include/glib-2.0/gio/gdebugcontroller.h +#usr/include/glib-2.0/gio/gdebugcontrollerdbus.h #usr/include/glib-2.0/gio/gdrive.h #usr/include/glib-2.0/gio/gdtlsclientconnection.h #usr/include/glib-2.0/gio/gdtlsconnection.h @@ -173,6 +172,9 @@ #usr/include/glib-2.0/gio/gtlsinteraction.h #usr/include/glib-2.0/gio/gtlspassword.h #usr/include/glib-2.0/gio/gtlsserverconnection.h +#usr/include/glib-2.0/gio/gunixconnection.h +#usr/include/glib-2.0/gio/gunixcredentialsmessage.h +#usr/include/glib-2.0/gio/gunixsocketaddress.h #usr/include/glib-2.0/gio/gvfs.h #usr/include/glib-2.0/gio/gvolume.h #usr/include/glib-2.0/gio/gvolumemonitor.h @@ -296,19 +298,19 @@ #usr/lib/glib-2.0/include/glibconfig.h #usr/lib/libgio-2.0.so usr/lib/libgio-2.0.so.0 -usr/lib/libgio-2.0.so.0.7000.1 +usr/lib/libgio-2.0.so.0.7101.0 #usr/lib/libglib-2.0.so usr/lib/libglib-2.0.so.0 -usr/lib/libglib-2.0.so.0.7000.1 +usr/lib/libglib-2.0.so.0.7101.0 #usr/lib/libgmodule-2.0.so usr/lib/libgmodule-2.0.so.0 -usr/lib/libgmodule-2.0.so.0.7000.1 +usr/lib/libgmodule-2.0.so.0.7101.0 #usr/lib/libgobject-2.0.so usr/lib/libgobject-2.0.so.0 -usr/lib/libgobject-2.0.so.0.7000.1 +usr/lib/libgobject-2.0.so.0.7101.0 #usr/lib/libgthread-2.0.so usr/lib/libgthread-2.0.so.0 -usr/lib/libgthread-2.0.so.0.7000.1 +usr/lib/libgthread-2.0.so.0.7101.0 #usr/lib/pkgconfig/gio-2.0.pc #usr/lib/pkgconfig/gio-unix-2.0.pc #usr/lib/pkgconfig/glib-2.0.pc @@ -328,8 +330,8 @@ usr/lib/libgthread-2.0.so.0.7000.1 #usr/share/gdb/auto-load #usr/share/gdb/auto-load/usr #usr/share/gdb/auto-load/usr/lib -#usr/share/gdb/auto-load/usr/lib/libglib-2.0.so.0.7000.1-gdb.py -#usr/share/gdb/auto-load/usr/lib/libgobject-2.0.so.0.7000.1-gdb.py +#usr/share/gdb/auto-load/usr/lib/libglib-2.0.so.0.7101.0-gdb.py +#usr/share/gdb/auto-load/usr/lib/libgobject-2.0.so.0.7101.0-gdb.py #usr/share/gettext/its #usr/share/gettext/its/gschema.its #usr/share/gettext/its/gschema.loc @@ -339,6 +341,7 @@ usr/lib/libgthread-2.0.so.0.7000.1 #usr/share/glib-2.0/codegen/codegen.py #usr/share/glib-2.0/codegen/codegen_docbook.py #usr/share/glib-2.0/codegen/codegen_main.py +#usr/share/glib-2.0/codegen/codegen_rst.py #usr/share/glib-2.0/codegen/config.py #usr/share/glib-2.0/codegen/dbustypes.py #usr/share/glib-2.0/codegen/parser.py diff --git a/config/rootfiles/common/harfbuzz b/config/rootfiles/common/harfbuzz index 798eee5dc7..d45cba44b5 100644 --- a/config/rootfiles/common/harfbuzz +++ b/config/rootfiles/common/harfbuzz @@ -39,11 +39,11 @@ #usr/lib/libharfbuzz-subset.la #usr/lib/libharfbuzz-subset.so usr/lib/libharfbuzz-subset.so.0 -usr/lib/libharfbuzz-subset.so.0.30102.0 +usr/lib/libharfbuzz-subset.so.0.30302.0 #usr/lib/libharfbuzz.la #usr/lib/libharfbuzz.so usr/lib/libharfbuzz.so.0 -usr/lib/libharfbuzz.so.0.30102.0 +usr/lib/libharfbuzz.so.0.30302.0 #usr/lib/pkgconfig/harfbuzz-subset.pc #usr/lib/pkgconfig/harfbuzz.pc #usr/share/gtk-doc/html/harfbuzz @@ -107,6 +107,7 @@ usr/lib/libharfbuzz.so.0.30102.0 #usr/share/gtk-doc/html/harfbuzz/api-index-2-9-1.html #usr/share/gtk-doc/html/harfbuzz/api-index-3-0-0.html #usr/share/gtk-doc/html/harfbuzz/api-index-3-1-0.html +#usr/share/gtk-doc/html/harfbuzz/api-index-3-3-0.html #usr/share/gtk-doc/html/harfbuzz/api-index-full.html #usr/share/gtk-doc/html/harfbuzz/apple-advanced-typography-api.html #usr/share/gtk-doc/html/harfbuzz/buffers-language-script-and-direction.html diff --git a/config/rootfiles/common/iproute2 b/config/rootfiles/common/iproute2 index ebef87ef73..0247aa9769 100644 --- a/config/rootfiles/common/iproute2 +++ b/config/rootfiles/common/iproute2 @@ -13,17 +13,14 @@ sbin/ctstat sbin/dcb sbin/devlink sbin/genl -sbin/ifcfg sbin/ifstat sbin/ip sbin/lnstat sbin/nstat sbin/rdma -sbin/routef sbin/routel sbin/rtacct sbin/rtmon -sbin/rtpr sbin/rtstat sbin/ss sbin/tc @@ -65,7 +62,6 @@ usr/share/bash-completion/completions/tc #usr/share/man/man8/devlink-trap.8 #usr/share/man/man8/devlink.8 #usr/share/man/man8/genl.8 -#usr/share/man/man8/ifcfg.8 #usr/share/man/man8/ifstat.8 #usr/share/man/man8/ip-address.8 #usr/share/man/man8/ip-addrlabel.8 @@ -101,11 +97,9 @@ usr/share/bash-completion/completions/tc #usr/share/man/man8/rdma-statistic.8 #usr/share/man/man8/rdma-system.8 #usr/share/man/man8/rdma.8 -#usr/share/man/man8/routef.8 #usr/share/man/man8/routel.8 #usr/share/man/man8/rtacct.8 #usr/share/man/man8/rtmon.8 -#usr/share/man/man8/rtpr.8 #usr/share/man/man8/rtstat.8 #usr/share/man/man8/ss.8 #usr/share/man/man8/tc-actions.8 diff --git a/config/rootfiles/common/lcms2 b/config/rootfiles/common/lcms2 index 5a7d2f2766..17300a91aa 100644 --- a/config/rootfiles/common/lcms2 +++ b/config/rootfiles/common/lcms2 @@ -8,7 +8,7 @@ #usr/lib/liblcms2.la #usr/lib/liblcms2.so usr/lib/liblcms2.so.2 -usr/lib/liblcms2.so.2.0.12 +usr/lib/liblcms2.so.2.0.13 #usr/lib/pkgconfig/lcms2.pc #usr/share/man/man1/jpgicc.1 #usr/share/man/man1/linkicc.1 diff --git a/config/rootfiles/common/libarchive b/config/rootfiles/common/libarchive index e1c76269b3..c939d74f40 100644 --- a/config/rootfiles/common/libarchive +++ b/config/rootfiles/common/libarchive @@ -6,7 +6,7 @@ #usr/lib/libarchive.la #usr/lib/libarchive.so usr/lib/libarchive.so.13 -usr/lib/libarchive.so.13.5.2 +usr/lib/libarchive.so.13.6.0 #usr/lib/pkgconfig/libarchive.pc #usr/share/man/man1/bsdcat.1 #usr/share/man/man1/bsdcpio.1 diff --git a/config/rootfiles/common/libcap b/config/rootfiles/common/libcap index c33222c495..0c57c9120a 100644 --- a/config/rootfiles/common/libcap +++ b/config/rootfiles/common/libcap @@ -1,10 +1,10 @@ #lib/libcap.a lib/libcap.so.2 -lib/libcap.so.2.61 +lib/libcap.so.2.63 #lib/libpsx.a #lib/libpsx.so #lib/libpsx.so.2 -#lib/libpsx.so.2.61 +#lib/libpsx.so.2.63 #lib/pkgconfig/libcap.pc #lib/pkgconfig/libpsx.pc lib/security/pam_cap.so @@ -57,6 +57,7 @@ usr/lib/libcap.so #usr/share/man/man3/cap_launcher_set_mode.3 #usr/share/man/man3/cap_launcher_setgroups.3 #usr/share/man/man3/cap_launcher_setuid.3 +#usr/share/man/man3/cap_max_bits.3 #usr/share/man/man3/cap_mode.3 #usr/share/man/man3/cap_mode_name.3 #usr/share/man/man3/cap_new_launcher.3 @@ -75,6 +76,7 @@ usr/lib/libcap.so #usr/share/man/man3/capsetp.3 #usr/share/man/man3/libcap.3 #usr/share/man/man3/libpsx.3 +#usr/share/man/man3/psx_set_sensitivity.3 #usr/share/man/man3/psx_syscall.3 #usr/share/man/man3/psx_syscall3.3 #usr/share/man/man3/psx_syscall6.3 diff --git a/config/rootfiles/common/libgpg-error b/config/rootfiles/common/libgpg-error index 579be02fa0..1587242d72 100644 --- a/config/rootfiles/common/libgpg-error +++ b/config/rootfiles/common/libgpg-error @@ -7,7 +7,7 @@ usr/bin/gpg-error #usr/lib/libgpg-error.la #usr/lib/libgpg-error.so usr/lib/libgpg-error.so.0 -usr/lib/libgpg-error.so.0.32.1 +usr/lib/libgpg-error.so.0.32.2 #usr/lib/pkgconfig/gpg-error.pc #usr/share/aclocal/gpg-error.m4 #usr/share/aclocal/gpgrt.m4 @@ -37,6 +37,7 @@ usr/lib/libgpg-error.so.0.32.1 #usr/share/locale/ru/LC_MESSAGES/libgpg-error.mo #usr/share/locale/sr/LC_MESSAGES/libgpg-error.mo #usr/share/locale/sv/LC_MESSAGES/libgpg-error.mo +#usr/share/locale/tr/LC_MESSAGES/libgpg-error.mo #usr/share/locale/uk/LC_MESSAGES/libgpg-error.mo #usr/share/locale/vi/LC_MESSAGES/libgpg-error.mo #usr/share/locale/zh_CN/LC_MESSAGES/libgpg-error.mo diff --git a/config/rootfiles/common/libloc b/config/rootfiles/common/libloc index 43f9efd9e3..a876359127 100644 --- a/config/rootfiles/common/libloc +++ b/config/rootfiles/common/libloc @@ -24,276 +24,277 @@ usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/Location.pm #usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Location/.packlist usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Location/Location.so #usr/lib/pkgconfig/libloc.pc -#usr/lib/python3.8/site-packages/_location.la -usr/lib/python3.8/site-packages/_location.so -#usr/lib/python3.8/site-packages/location -usr/lib/python3.8/site-packages/location/__init__.py -#usr/lib/python3.8/site-packages/location/database.py -usr/lib/python3.8/site-packages/location/downloader.py -usr/lib/python3.8/site-packages/location/export.py -usr/lib/python3.8/site-packages/location/i18n.py -#usr/lib/python3.8/site-packages/location/importer.py -usr/lib/python3.8/site-packages/location/logger.py +#usr/lib/python3.10/site-packages/_location.la +usr/lib/python3.10/site-packages/_location.so +#usr/lib/python3.10/site-packages/location +usr/lib/python3.10/site-packages/location/__init__.py +#usr/lib/python3.10/site-packages/location/database.py +usr/lib/python3.10/site-packages/location/downloader.py +usr/lib/python3.10/site-packages/location/export.py +usr/lib/python3.10/site-packages/location/i18n.py +#usr/lib/python3.10/site-packages/location/importer.py +usr/lib/python3.10/site-packages/location/logger.py #usr/share/locale/de/LC_MESSAGES/libloc.mo #usr/share/man/man3/Location.3 -usr/share/xt_geoip/A1.iv4 -usr/share/xt_geoip/A2.iv4 -usr/share/xt_geoip/A3.iv4 -usr/share/xt_geoip/AD.iv4 -usr/share/xt_geoip/AE.iv4 -usr/share/xt_geoip/AF.iv4 -usr/share/xt_geoip/AG.iv4 -usr/share/xt_geoip/AI.iv4 -usr/share/xt_geoip/AL.iv4 -usr/share/xt_geoip/AM.iv4 -usr/share/xt_geoip/AN.iv4 -usr/share/xt_geoip/AO.iv4 -usr/share/xt_geoip/AP.iv4 -usr/share/xt_geoip/AQ.iv4 -usr/share/xt_geoip/AR.iv4 -usr/share/xt_geoip/AS.iv4 -usr/share/xt_geoip/AT.iv4 -usr/share/xt_geoip/AU.iv4 -usr/share/xt_geoip/AW.iv4 -usr/share/xt_geoip/AX.iv4 -usr/share/xt_geoip/AZ.iv4 -usr/share/xt_geoip/BA.iv4 -usr/share/xt_geoip/BB.iv4 -usr/share/xt_geoip/BD.iv4 -usr/share/xt_geoip/BE.iv4 -usr/share/xt_geoip/BF.iv4 -usr/share/xt_geoip/BG.iv4 -usr/share/xt_geoip/BH.iv4 -usr/share/xt_geoip/BI.iv4 -usr/share/xt_geoip/BJ.iv4 -usr/share/xt_geoip/BL.iv4 -usr/share/xt_geoip/BM.iv4 -usr/share/xt_geoip/BN.iv4 -usr/share/xt_geoip/BO.iv4 -usr/share/xt_geoip/BQ.iv4 -usr/share/xt_geoip/BR.iv4 -usr/share/xt_geoip/BS.iv4 -usr/share/xt_geoip/BT.iv4 -usr/share/xt_geoip/BV.iv4 -usr/share/xt_geoip/BW.iv4 -usr/share/xt_geoip/BY.iv4 -usr/share/xt_geoip/BZ.iv4 -usr/share/xt_geoip/CA.iv4 -usr/share/xt_geoip/CC.iv4 -usr/share/xt_geoip/CD.iv4 -usr/share/xt_geoip/CF.iv4 -usr/share/xt_geoip/CG.iv4 -usr/share/xt_geoip/CH.iv4 -usr/share/xt_geoip/CI.iv4 -usr/share/xt_geoip/CK.iv4 -usr/share/xt_geoip/CL.iv4 -usr/share/xt_geoip/CM.iv4 -usr/share/xt_geoip/CN.iv4 -usr/share/xt_geoip/CO.iv4 -usr/share/xt_geoip/CR.iv4 -usr/share/xt_geoip/CS.iv4 -usr/share/xt_geoip/CU.iv4 -usr/share/xt_geoip/CV.iv4 -usr/share/xt_geoip/CW.iv4 -usr/share/xt_geoip/CX.iv4 -usr/share/xt_geoip/CY.iv4 -usr/share/xt_geoip/CZ.iv4 -usr/share/xt_geoip/DE.iv4 -usr/share/xt_geoip/DJ.iv4 -usr/share/xt_geoip/DK.iv4 -usr/share/xt_geoip/DM.iv4 -usr/share/xt_geoip/DO.iv4 -usr/share/xt_geoip/DZ.iv4 -usr/share/xt_geoip/EC.iv4 -usr/share/xt_geoip/EE.iv4 -usr/share/xt_geoip/EG.iv4 -usr/share/xt_geoip/EH.iv4 -usr/share/xt_geoip/ER.iv4 -usr/share/xt_geoip/ES.iv4 -usr/share/xt_geoip/ET.iv4 -usr/share/xt_geoip/EU.iv4 -usr/share/xt_geoip/FI.iv4 -usr/share/xt_geoip/FJ.iv4 -usr/share/xt_geoip/FK.iv4 -usr/share/xt_geoip/FM.iv4 -usr/share/xt_geoip/FO.iv4 -usr/share/xt_geoip/FR.iv4 -usr/share/xt_geoip/FX.iv4 -usr/share/xt_geoip/GA.iv4 -usr/share/xt_geoip/GB.iv4 -usr/share/xt_geoip/GD.iv4 -usr/share/xt_geoip/GE.iv4 -usr/share/xt_geoip/GF.iv4 -usr/share/xt_geoip/GG.iv4 -usr/share/xt_geoip/GH.iv4 -usr/share/xt_geoip/GI.iv4 -usr/share/xt_geoip/GL.iv4 -usr/share/xt_geoip/GM.iv4 -usr/share/xt_geoip/GN.iv4 -usr/share/xt_geoip/GP.iv4 -usr/share/xt_geoip/GQ.iv4 -usr/share/xt_geoip/GR.iv4 -usr/share/xt_geoip/GS.iv4 -usr/share/xt_geoip/GT.iv4 -usr/share/xt_geoip/GU.iv4 -usr/share/xt_geoip/GW.iv4 -usr/share/xt_geoip/GY.iv4 -usr/share/xt_geoip/HK.iv4 -usr/share/xt_geoip/HM.iv4 -usr/share/xt_geoip/HN.iv4 -usr/share/xt_geoip/HR.iv4 -usr/share/xt_geoip/HT.iv4 -usr/share/xt_geoip/HU.iv4 -usr/share/xt_geoip/ID.iv4 -usr/share/xt_geoip/IE.iv4 -usr/share/xt_geoip/IL.iv4 -usr/share/xt_geoip/IM.iv4 -usr/share/xt_geoip/IN.iv4 -usr/share/xt_geoip/IO.iv4 -usr/share/xt_geoip/IQ.iv4 -usr/share/xt_geoip/IR.iv4 -usr/share/xt_geoip/IS.iv4 -usr/share/xt_geoip/IT.iv4 -usr/share/xt_geoip/JE.iv4 -usr/share/xt_geoip/JM.iv4 -usr/share/xt_geoip/JO.iv4 -usr/share/xt_geoip/JP.iv4 -usr/share/xt_geoip/KE.iv4 -usr/share/xt_geoip/KG.iv4 -usr/share/xt_geoip/KH.iv4 -usr/share/xt_geoip/KI.iv4 -usr/share/xt_geoip/KM.iv4 -usr/share/xt_geoip/KN.iv4 -usr/share/xt_geoip/KP.iv4 -usr/share/xt_geoip/KR.iv4 -usr/share/xt_geoip/KW.iv4 -usr/share/xt_geoip/KY.iv4 -usr/share/xt_geoip/KZ.iv4 -usr/share/xt_geoip/LA.iv4 -usr/share/xt_geoip/LB.iv4 -usr/share/xt_geoip/LC.iv4 -usr/share/xt_geoip/LI.iv4 -usr/share/xt_geoip/LK.iv4 -usr/share/xt_geoip/LR.iv4 -usr/share/xt_geoip/LS.iv4 -usr/share/xt_geoip/LT.iv4 -usr/share/xt_geoip/LU.iv4 -usr/share/xt_geoip/LV.iv4 -usr/share/xt_geoip/LY.iv4 -usr/share/xt_geoip/MA.iv4 -usr/share/xt_geoip/MC.iv4 -usr/share/xt_geoip/MD.iv4 -usr/share/xt_geoip/ME.iv4 -usr/share/xt_geoip/MF.iv4 -usr/share/xt_geoip/MG.iv4 -usr/share/xt_geoip/MH.iv4 -usr/share/xt_geoip/MK.iv4 -usr/share/xt_geoip/ML.iv4 -usr/share/xt_geoip/MM.iv4 -usr/share/xt_geoip/MN.iv4 -usr/share/xt_geoip/MO.iv4 -usr/share/xt_geoip/MP.iv4 -usr/share/xt_geoip/MQ.iv4 -usr/share/xt_geoip/MR.iv4 -usr/share/xt_geoip/MS.iv4 -usr/share/xt_geoip/MT.iv4 -usr/share/xt_geoip/MU.iv4 -usr/share/xt_geoip/MV.iv4 -usr/share/xt_geoip/MW.iv4 -usr/share/xt_geoip/MX.iv4 -usr/share/xt_geoip/MY.iv4 -usr/share/xt_geoip/MZ.iv4 -usr/share/xt_geoip/NA.iv4 -usr/share/xt_geoip/NC.iv4 -usr/share/xt_geoip/NE.iv4 -usr/share/xt_geoip/NF.iv4 -usr/share/xt_geoip/NG.iv4 -usr/share/xt_geoip/NI.iv4 -usr/share/xt_geoip/NL.iv4 -usr/share/xt_geoip/NO.iv4 -usr/share/xt_geoip/NP.iv4 -usr/share/xt_geoip/NR.iv4 -usr/share/xt_geoip/NU.iv4 -usr/share/xt_geoip/NZ.iv4 -usr/share/xt_geoip/OM.iv4 -usr/share/xt_geoip/PA.iv4 -usr/share/xt_geoip/PE.iv4 -usr/share/xt_geoip/PF.iv4 -usr/share/xt_geoip/PG.iv4 -usr/share/xt_geoip/PH.iv4 -usr/share/xt_geoip/PK.iv4 -usr/share/xt_geoip/PL.iv4 -usr/share/xt_geoip/PM.iv4 -usr/share/xt_geoip/PN.iv4 -usr/share/xt_geoip/PR.iv4 -usr/share/xt_geoip/PS.iv4 -usr/share/xt_geoip/PT.iv4 -usr/share/xt_geoip/PW.iv4 -usr/share/xt_geoip/PY.iv4 -usr/share/xt_geoip/QA.iv4 -usr/share/xt_geoip/RE.iv4 -usr/share/xt_geoip/RO.iv4 -usr/share/xt_geoip/RS.iv4 -usr/share/xt_geoip/RU.iv4 -usr/share/xt_geoip/RW.iv4 -usr/share/xt_geoip/SA.iv4 -usr/share/xt_geoip/SB.iv4 -usr/share/xt_geoip/SC.iv4 -usr/share/xt_geoip/SD.iv4 -usr/share/xt_geoip/SE.iv4 -usr/share/xt_geoip/SG.iv4 -usr/share/xt_geoip/SH.iv4 -usr/share/xt_geoip/SI.iv4 -usr/share/xt_geoip/SJ.iv4 -usr/share/xt_geoip/SK.iv4 -usr/share/xt_geoip/SL.iv4 -usr/share/xt_geoip/SM.iv4 -usr/share/xt_geoip/SN.iv4 -usr/share/xt_geoip/SO.iv4 -usr/share/xt_geoip/SR.iv4 -usr/share/xt_geoip/SS.iv4 -usr/share/xt_geoip/ST.iv4 -usr/share/xt_geoip/SV.iv4 -usr/share/xt_geoip/SX.iv4 -usr/share/xt_geoip/SY.iv4 -usr/share/xt_geoip/SZ.iv4 -usr/share/xt_geoip/TC.iv4 -usr/share/xt_geoip/TD.iv4 -usr/share/xt_geoip/TF.iv4 -usr/share/xt_geoip/TG.iv4 -usr/share/xt_geoip/TH.iv4 -usr/share/xt_geoip/TJ.iv4 -usr/share/xt_geoip/TK.iv4 -usr/share/xt_geoip/TL.iv4 -usr/share/xt_geoip/TM.iv4 -usr/share/xt_geoip/TN.iv4 -usr/share/xt_geoip/TO.iv4 -usr/share/xt_geoip/TR.iv4 -usr/share/xt_geoip/TT.iv4 -usr/share/xt_geoip/TV.iv4 -usr/share/xt_geoip/TW.iv4 -usr/share/xt_geoip/TZ.iv4 -usr/share/xt_geoip/UA.iv4 -usr/share/xt_geoip/UG.iv4 -usr/share/xt_geoip/UM.iv4 -usr/share/xt_geoip/US.iv4 -usr/share/xt_geoip/UY.iv4 -usr/share/xt_geoip/UZ.iv4 -usr/share/xt_geoip/VA.iv4 -usr/share/xt_geoip/VC.iv4 -usr/share/xt_geoip/VE.iv4 -usr/share/xt_geoip/VG.iv4 -usr/share/xt_geoip/VI.iv4 -usr/share/xt_geoip/VN.iv4 -usr/share/xt_geoip/VU.iv4 -usr/share/xt_geoip/WF.iv4 -usr/share/xt_geoip/WS.iv4 -usr/share/xt_geoip/XD.iv4 -usr/share/xt_geoip/YE.iv4 -usr/share/xt_geoip/YT.iv4 -usr/share/xt_geoip/ZA.iv4 -usr/share/xt_geoip/ZM.iv4 -usr/share/xt_geoip/ZW.iv4 #var/lib/location var/lib/location/database.db +var/lib/location/ipset +var/lib/location/ipset/A1.ipset4 +var/lib/location/ipset/A2.ipset4 +var/lib/location/ipset/A3.ipset4 +var/lib/location/ipset/AD.ipset4 +var/lib/location/ipset/AE.ipset4 +var/lib/location/ipset/AF.ipset4 +var/lib/location/ipset/AG.ipset4 +var/lib/location/ipset/AI.ipset4 +var/lib/location/ipset/AL.ipset4 +var/lib/location/ipset/AM.ipset4 +var/lib/location/ipset/AN.ipset4 +var/lib/location/ipset/AO.ipset4 +var/lib/location/ipset/AP.ipset4 +var/lib/location/ipset/AQ.ipset4 +var/lib/location/ipset/AR.ipset4 +var/lib/location/ipset/AS.ipset4 +var/lib/location/ipset/AT.ipset4 +var/lib/location/ipset/AU.ipset4 +var/lib/location/ipset/AW.ipset4 +var/lib/location/ipset/AX.ipset4 +var/lib/location/ipset/AZ.ipset4 +var/lib/location/ipset/BA.ipset4 +var/lib/location/ipset/BB.ipset4 +var/lib/location/ipset/BD.ipset4 +var/lib/location/ipset/BE.ipset4 +var/lib/location/ipset/BF.ipset4 +var/lib/location/ipset/BG.ipset4 +var/lib/location/ipset/BH.ipset4 +var/lib/location/ipset/BI.ipset4 +var/lib/location/ipset/BJ.ipset4 +var/lib/location/ipset/BL.ipset4 +var/lib/location/ipset/BM.ipset4 +var/lib/location/ipset/BN.ipset4 +var/lib/location/ipset/BO.ipset4 +var/lib/location/ipset/BQ.ipset4 +var/lib/location/ipset/BR.ipset4 +var/lib/location/ipset/BS.ipset4 +var/lib/location/ipset/BT.ipset4 +var/lib/location/ipset/BV.ipset4 +var/lib/location/ipset/BW.ipset4 +var/lib/location/ipset/BY.ipset4 +var/lib/location/ipset/BZ.ipset4 +var/lib/location/ipset/CA.ipset4 +var/lib/location/ipset/CC.ipset4 +var/lib/location/ipset/CD.ipset4 +var/lib/location/ipset/CF.ipset4 +var/lib/location/ipset/CG.ipset4 +var/lib/location/ipset/CH.ipset4 +var/lib/location/ipset/CI.ipset4 +var/lib/location/ipset/CK.ipset4 +var/lib/location/ipset/CL.ipset4 +var/lib/location/ipset/CM.ipset4 +var/lib/location/ipset/CN.ipset4 +var/lib/location/ipset/CO.ipset4 +var/lib/location/ipset/CR.ipset4 +var/lib/location/ipset/CS.ipset4 +var/lib/location/ipset/CU.ipset4 +var/lib/location/ipset/CV.ipset4 +var/lib/location/ipset/CW.ipset4 +var/lib/location/ipset/CX.ipset4 +var/lib/location/ipset/CY.ipset4 +var/lib/location/ipset/CZ.ipset4 +var/lib/location/ipset/DE.ipset4 +var/lib/location/ipset/DJ.ipset4 +var/lib/location/ipset/DK.ipset4 +var/lib/location/ipset/DM.ipset4 +var/lib/location/ipset/DO.ipset4 +var/lib/location/ipset/DZ.ipset4 +var/lib/location/ipset/EC.ipset4 +var/lib/location/ipset/EE.ipset4 +var/lib/location/ipset/EG.ipset4 +var/lib/location/ipset/EH.ipset4 +var/lib/location/ipset/ER.ipset4 +var/lib/location/ipset/ES.ipset4 +var/lib/location/ipset/ET.ipset4 +var/lib/location/ipset/EU.ipset4 +var/lib/location/ipset/FI.ipset4 +var/lib/location/ipset/FJ.ipset4 +var/lib/location/ipset/FK.ipset4 +var/lib/location/ipset/FM.ipset4 +var/lib/location/ipset/FO.ipset4 +var/lib/location/ipset/FR.ipset4 +var/lib/location/ipset/FX.ipset4 +var/lib/location/ipset/GA.ipset4 +var/lib/location/ipset/GB.ipset4 +var/lib/location/ipset/GD.ipset4 +var/lib/location/ipset/GE.ipset4 +var/lib/location/ipset/GF.ipset4 +var/lib/location/ipset/GG.ipset4 +var/lib/location/ipset/GH.ipset4 +var/lib/location/ipset/GI.ipset4 +var/lib/location/ipset/GL.ipset4 +var/lib/location/ipset/GM.ipset4 +var/lib/location/ipset/GN.ipset4 +var/lib/location/ipset/GP.ipset4 +var/lib/location/ipset/GQ.ipset4 +var/lib/location/ipset/GR.ipset4 +var/lib/location/ipset/GS.ipset4 +var/lib/location/ipset/GT.ipset4 +var/lib/location/ipset/GU.ipset4 +var/lib/location/ipset/GW.ipset4 +var/lib/location/ipset/GY.ipset4 +var/lib/location/ipset/HK.ipset4 +var/lib/location/ipset/HM.ipset4 +var/lib/location/ipset/HN.ipset4 +var/lib/location/ipset/HR.ipset4 +var/lib/location/ipset/HT.ipset4 +var/lib/location/ipset/HU.ipset4 +var/lib/location/ipset/ID.ipset4 +var/lib/location/ipset/IE.ipset4 +var/lib/location/ipset/IL.ipset4 +var/lib/location/ipset/IM.ipset4 +var/lib/location/ipset/IN.ipset4 +var/lib/location/ipset/IO.ipset4 +var/lib/location/ipset/IQ.ipset4 +var/lib/location/ipset/IR.ipset4 +var/lib/location/ipset/IS.ipset4 +var/lib/location/ipset/IT.ipset4 +var/lib/location/ipset/JE.ipset4 +var/lib/location/ipset/JM.ipset4 +var/lib/location/ipset/JO.ipset4 +var/lib/location/ipset/JP.ipset4 +var/lib/location/ipset/KE.ipset4 +var/lib/location/ipset/KG.ipset4 +var/lib/location/ipset/KH.ipset4 +var/lib/location/ipset/KI.ipset4 +var/lib/location/ipset/KM.ipset4 +var/lib/location/ipset/KN.ipset4 +var/lib/location/ipset/KP.ipset4 +var/lib/location/ipset/KR.ipset4 +var/lib/location/ipset/KW.ipset4 +var/lib/location/ipset/KY.ipset4 +var/lib/location/ipset/KZ.ipset4 +var/lib/location/ipset/LA.ipset4 +var/lib/location/ipset/LB.ipset4 +var/lib/location/ipset/LC.ipset4 +var/lib/location/ipset/LI.ipset4 +var/lib/location/ipset/LK.ipset4 +var/lib/location/ipset/LR.ipset4 +var/lib/location/ipset/LS.ipset4 +var/lib/location/ipset/LT.ipset4 +var/lib/location/ipset/LU.ipset4 +var/lib/location/ipset/LV.ipset4 +var/lib/location/ipset/LY.ipset4 +var/lib/location/ipset/MA.ipset4 +var/lib/location/ipset/MC.ipset4 +var/lib/location/ipset/MD.ipset4 +var/lib/location/ipset/ME.ipset4 +var/lib/location/ipset/MF.ipset4 +var/lib/location/ipset/MG.ipset4 +var/lib/location/ipset/MH.ipset4 +var/lib/location/ipset/MK.ipset4 +var/lib/location/ipset/ML.ipset4 +var/lib/location/ipset/MM.ipset4 +var/lib/location/ipset/MN.ipset4 +var/lib/location/ipset/MO.ipset4 +var/lib/location/ipset/MP.ipset4 +var/lib/location/ipset/MQ.ipset4 +var/lib/location/ipset/MR.ipset4 +var/lib/location/ipset/MS.ipset4 +var/lib/location/ipset/MT.ipset4 +var/lib/location/ipset/MU.ipset4 +var/lib/location/ipset/MV.ipset4 +var/lib/location/ipset/MW.ipset4 +var/lib/location/ipset/MX.ipset4 +var/lib/location/ipset/MY.ipset4 +var/lib/location/ipset/MZ.ipset4 +var/lib/location/ipset/NA.ipset4 +var/lib/location/ipset/NC.ipset4 +var/lib/location/ipset/NE.ipset4 +var/lib/location/ipset/NF.ipset4 +var/lib/location/ipset/NG.ipset4 +var/lib/location/ipset/NI.ipset4 +var/lib/location/ipset/NL.ipset4 +var/lib/location/ipset/NO.ipset4 +var/lib/location/ipset/NP.ipset4 +var/lib/location/ipset/NR.ipset4 +var/lib/location/ipset/NU.ipset4 +var/lib/location/ipset/NZ.ipset4 +var/lib/location/ipset/OM.ipset4 +var/lib/location/ipset/PA.ipset4 +var/lib/location/ipset/PE.ipset4 +var/lib/location/ipset/PF.ipset4 +var/lib/location/ipset/PG.ipset4 +var/lib/location/ipset/PH.ipset4 +var/lib/location/ipset/PK.ipset4 +var/lib/location/ipset/PL.ipset4 +var/lib/location/ipset/PM.ipset4 +var/lib/location/ipset/PN.ipset4 +var/lib/location/ipset/PR.ipset4 +var/lib/location/ipset/PS.ipset4 +var/lib/location/ipset/PT.ipset4 +var/lib/location/ipset/PW.ipset4 +var/lib/location/ipset/PY.ipset4 +var/lib/location/ipset/QA.ipset4 +var/lib/location/ipset/RE.ipset4 +var/lib/location/ipset/RO.ipset4 +var/lib/location/ipset/RS.ipset4 +var/lib/location/ipset/RU.ipset4 +var/lib/location/ipset/RW.ipset4 +var/lib/location/ipset/SA.ipset4 +var/lib/location/ipset/SB.ipset4 +var/lib/location/ipset/SC.ipset4 +var/lib/location/ipset/SD.ipset4 +var/lib/location/ipset/SE.ipset4 +var/lib/location/ipset/SG.ipset4 +var/lib/location/ipset/SH.ipset4 +var/lib/location/ipset/SI.ipset4 +var/lib/location/ipset/SJ.ipset4 +var/lib/location/ipset/SK.ipset4 +var/lib/location/ipset/SL.ipset4 +var/lib/location/ipset/SM.ipset4 +var/lib/location/ipset/SN.ipset4 +var/lib/location/ipset/SO.ipset4 +var/lib/location/ipset/SR.ipset4 +var/lib/location/ipset/SS.ipset4 +var/lib/location/ipset/ST.ipset4 +var/lib/location/ipset/SV.ipset4 +var/lib/location/ipset/SX.ipset4 +var/lib/location/ipset/SY.ipset4 +var/lib/location/ipset/SZ.ipset4 +var/lib/location/ipset/TC.ipset4 +var/lib/location/ipset/TD.ipset4 +var/lib/location/ipset/TF.ipset4 +var/lib/location/ipset/TG.ipset4 +var/lib/location/ipset/TH.ipset4 +var/lib/location/ipset/TJ.ipset4 +var/lib/location/ipset/TK.ipset4 +var/lib/location/ipset/TL.ipset4 +var/lib/location/ipset/TM.ipset4 +var/lib/location/ipset/TN.ipset4 +var/lib/location/ipset/TO.ipset4 +var/lib/location/ipset/TR.ipset4 +var/lib/location/ipset/TT.ipset4 +var/lib/location/ipset/TV.ipset4 +var/lib/location/ipset/TW.ipset4 +var/lib/location/ipset/TZ.ipset4 +var/lib/location/ipset/UA.ipset4 +var/lib/location/ipset/UG.ipset4 +var/lib/location/ipset/UM.ipset4 +var/lib/location/ipset/US.ipset4 +var/lib/location/ipset/UY.ipset4 +var/lib/location/ipset/UZ.ipset4 +var/lib/location/ipset/VA.ipset4 +var/lib/location/ipset/VC.ipset4 +var/lib/location/ipset/VE.ipset4 +var/lib/location/ipset/VG.ipset4 +var/lib/location/ipset/VI.ipset4 +var/lib/location/ipset/VN.ipset4 +var/lib/location/ipset/VU.ipset4 +var/lib/location/ipset/WF.ipset4 +var/lib/location/ipset/WS.ipset4 +var/lib/location/ipset/XD.ipset4 +var/lib/location/ipset/YE.ipset4 +var/lib/location/ipset/YT.ipset4 +var/lib/location/ipset/ZA.ipset4 +var/lib/location/ipset/ZM.ipset4 +var/lib/location/ipset/ZW.ipset4 var/lib/location/signing-key.pem diff --git a/config/rootfiles/common/libwww-perl b/config/rootfiles/common/libwww-perl deleted file mode 100644 index a3f79e4d7b..0000000000 --- a/config/rootfiles/common/libwww-perl +++ /dev/null @@ -1,102 +0,0 @@ -#usr/lib/perl5/site_perl/5.32.1/Bundle -usr/lib/perl5/site_perl/5.32.1/Bundle/LWP.pm -#usr/lib/perl5/site_perl/5.32.1/File -usr/lib/perl5/site_perl/5.32.1/File/Listing.pm -usr/lib/perl5/site_perl/5.32.1/HTML/Form.pm -#usr/lib/perl5/site_perl/5.32.1/HTTP -#usr/lib/perl5/site_perl/5.32.1/HTTP/Cookies -usr/lib/perl5/site_perl/5.32.1/HTTP/Cookies.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Cookies/Microsoft.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Cookies/Netscape.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Daemon.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Date.pm -#usr/lib/perl5/site_perl/5.32.1/HTTP/Headers -usr/lib/perl5/site_perl/5.32.1/HTTP/Headers.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Headers/Auth.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Headers/ETag.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Headers/Util.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Message.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Negotiate.pm -#usr/lib/perl5/site_perl/5.32.1/HTTP/Request -usr/lib/perl5/site_perl/5.32.1/HTTP/Request.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Request/Common.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Response.pm -usr/lib/perl5/site_perl/5.32.1/HTTP/Status.pm -#usr/lib/perl5/site_perl/5.32.1/LWP -usr/lib/perl5/site_perl/5.32.1/LWP.pm -#usr/lib/perl5/site_perl/5.32.1/LWP/Authen -usr/lib/perl5/site_perl/5.32.1/LWP/Authen/Basic.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Authen/Digest.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Authen/Ntlm.pm -usr/lib/perl5/site_perl/5.32.1/LWP/ConnCache.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Debug.pm -usr/lib/perl5/site_perl/5.32.1/LWP/DebugFile.pm -usr/lib/perl5/site_perl/5.32.1/LWP/MediaTypes.pm -usr/lib/perl5/site_perl/5.32.1/LWP/MemberMixin.pm -#usr/lib/perl5/site_perl/5.32.1/LWP/Protocol -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/GHTTP.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/cpan.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/data.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/file.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/ftp.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/gopher.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/http.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/http10.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/https.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/https10.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/loopback.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/mailto.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/nntp.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/nogo.pm -usr/lib/perl5/site_perl/5.32.1/LWP/RobotUA.pm -usr/lib/perl5/site_perl/5.32.1/LWP/Simple.pm -usr/lib/perl5/site_perl/5.32.1/LWP/UserAgent.pm -usr/lib/perl5/site_perl/5.32.1/LWP/media.types -#usr/lib/perl5/site_perl/5.32.1/Net -#usr/lib/perl5/site_perl/5.32.1/Net/HTTP -usr/lib/perl5/site_perl/5.32.1/Net/HTTP.pm -usr/lib/perl5/site_perl/5.32.1/Net/HTTP/Methods.pm -usr/lib/perl5/site_perl/5.32.1/Net/HTTP/NB.pm -usr/lib/perl5/site_perl/5.32.1/Net/HTTPS.pm -#usr/lib/perl5/site_perl/5.32.1/WWW -#usr/lib/perl5/site_perl/5.32.1/WWW/RobotRules -usr/lib/perl5/site_perl/5.32.1/WWW/RobotRules.pm -usr/lib/perl5/site_perl/5.32.1/WWW/RobotRules/AnyDBM_File.pm -#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/libwww-perl -#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/libwww-perl/.packlist -#usr/lib/perl5/site_perl/5.32.1/lwpcook.pod -#usr/lib/perl5/site_perl/5.32.1/lwptut.pod -#usr/share/man/man3/Bundle::LWP.3 -#usr/share/man/man3/File::Listing.3 -#usr/share/man/man3/HTML::Form.3 -#usr/share/man/man3/HTTP::Cookies.3 -#usr/share/man/man3/HTTP::Cookies::Microsoft.3 -#usr/share/man/man3/HTTP::Cookies::Netscape.3 -#usr/share/man/man3/HTTP::Daemon.3 -#usr/share/man/man3/HTTP::Date.3 -#usr/share/man/man3/HTTP::Headers.3 -#usr/share/man/man3/HTTP::Headers::Util.3 -#usr/share/man/man3/HTTP::Message.3 -#usr/share/man/man3/HTTP::Negotiate.3 -#usr/share/man/man3/HTTP::Request.3 -#usr/share/man/man3/HTTP::Request::Common.3 -#usr/share/man/man3/HTTP::Response.3 -#usr/share/man/man3/HTTP::Status.3 -#usr/share/man/man3/LWP.3 -#usr/share/man/man3/LWP::Authen::Ntlm.3 -#usr/share/man/man3/LWP::ConnCache.3 -#usr/share/man/man3/LWP::Debug.3 -#usr/share/man/man3/LWP::DebugFile.3 -#usr/share/man/man3/LWP::MediaTypes.3 -#usr/share/man/man3/LWP::MemberMixin.3 -#usr/share/man/man3/LWP::Protocol.3 -#usr/share/man/man3/LWP::RobotUA.3 -#usr/share/man/man3/LWP::Simple.3 -#usr/share/man/man3/LWP::UserAgent.3 -#usr/share/man/man3/Net::HTTP.3 -#usr/share/man/man3/Net::HTTP::NB.3 -#usr/share/man/man3/WWW::RobotRules.3 -#usr/share/man/man3/WWW::RobotRules::AnyDBM_File.3 -#usr/share/man/man3/lwpcook.3 -#usr/share/man/man3/lwptut.3 diff --git a/config/rootfiles/common/lua b/config/rootfiles/common/lua index 1839f7e1bc..ac844ac033 100644 --- a/config/rootfiles/common/lua +++ b/config/rootfiles/common/lua @@ -7,7 +7,7 @@ usr/bin/luac #usr/include/lualib.h #usr/lib/liblua.so usr/lib/liblua.so.5.4 -usr/lib/liblua.so.5.4.3 +usr/lib/liblua.so.5.4.4 #usr/lib/lua #usr/lib/lua/5.4 #usr/lib/pkgconfig/lua.pc diff --git a/config/rootfiles/common/meson b/config/rootfiles/common/meson index 111f853a69..69d645bb76 100644 --- a/config/rootfiles/common/meson +++ b/config/rootfiles/common/meson @@ -1,230 +1,230 @@ #usr/bin/meson -#usr/lib/python3.8/site-packages/meson-0.60.1-py3.8.egg-info -#usr/lib/python3.8/site-packages/meson-0.60.1-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/meson-0.60.1-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/meson-0.60.1-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/meson-0.60.1-py3.8.egg-info/entry_points.txt -#usr/lib/python3.8/site-packages/meson-0.60.1-py3.8.egg-info/requires.txt -#usr/lib/python3.8/site-packages/meson-0.60.1-py3.8.egg-info/top_level.txt -#usr/lib/python3.8/site-packages/mesonbuild -#usr/lib/python3.8/site-packages/mesonbuild/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/_pathlib.py -#usr/lib/python3.8/site-packages/mesonbuild/_typing.py -#usr/lib/python3.8/site-packages/mesonbuild/arglist.py -#usr/lib/python3.8/site-packages/mesonbuild/ast -#usr/lib/python3.8/site-packages/mesonbuild/ast/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/ast/interpreter.py -#usr/lib/python3.8/site-packages/mesonbuild/ast/introspection.py -#usr/lib/python3.8/site-packages/mesonbuild/ast/postprocess.py -#usr/lib/python3.8/site-packages/mesonbuild/ast/printer.py -#usr/lib/python3.8/site-packages/mesonbuild/ast/visitor.py -#usr/lib/python3.8/site-packages/mesonbuild/backend -#usr/lib/python3.8/site-packages/mesonbuild/backend/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/backend/backends.py -#usr/lib/python3.8/site-packages/mesonbuild/backend/ninjabackend.py -#usr/lib/python3.8/site-packages/mesonbuild/backend/vs2010backend.py -#usr/lib/python3.8/site-packages/mesonbuild/backend/vs2012backend.py -#usr/lib/python3.8/site-packages/mesonbuild/backend/vs2013backend.py -#usr/lib/python3.8/site-packages/mesonbuild/backend/vs2015backend.py -#usr/lib/python3.8/site-packages/mesonbuild/backend/vs2017backend.py -#usr/lib/python3.8/site-packages/mesonbuild/backend/vs2019backend.py -#usr/lib/python3.8/site-packages/mesonbuild/backend/xcodebackend.py -#usr/lib/python3.8/site-packages/mesonbuild/build.py -#usr/lib/python3.8/site-packages/mesonbuild/cmake -#usr/lib/python3.8/site-packages/mesonbuild/cmake/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/cmake/client.py -#usr/lib/python3.8/site-packages/mesonbuild/cmake/common.py -#usr/lib/python3.8/site-packages/mesonbuild/cmake/executor.py -#usr/lib/python3.8/site-packages/mesonbuild/cmake/fileapi.py -#usr/lib/python3.8/site-packages/mesonbuild/cmake/generator.py -#usr/lib/python3.8/site-packages/mesonbuild/cmake/interpreter.py -#usr/lib/python3.8/site-packages/mesonbuild/cmake/toolchain.py -#usr/lib/python3.8/site-packages/mesonbuild/cmake/traceparser.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers -#usr/lib/python3.8/site-packages/mesonbuild/compilers/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/c.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/c_function_attributes.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/compilers.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/cpp.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/cs.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/cuda.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/cython.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/d.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/detect.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/fortran.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/java.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/arm.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/c2000.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/ccrx.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/clang.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/clike.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/compcert.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/elbrus.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/emscripten.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/gnu.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/intel.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/islinker.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/pgi.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/visualstudio.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/mixins/xc16.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/objc.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/objcpp.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/rust.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/swift.py -#usr/lib/python3.8/site-packages/mesonbuild/compilers/vala.py -#usr/lib/python3.8/site-packages/mesonbuild/coredata.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/base.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/boost.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/cmake.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/coarrays.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/configtool.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/cuda.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/detect.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/dev.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/dub.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/factory.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/framework.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/hdf5.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/misc.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/mpi.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/pkgconfig.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/platform.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/qt.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/scalapack.py -#usr/lib/python3.8/site-packages/mesonbuild/dependencies/ui.py -#usr/lib/python3.8/site-packages/mesonbuild/depfile.py -#usr/lib/python3.8/site-packages/mesonbuild/envconfig.py -#usr/lib/python3.8/site-packages/mesonbuild/environment.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/compiler.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/dependencyfallbacks.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/interpreter.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/interpreterobjects.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/kwargs.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/mesonmain.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/primitives -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/primitives/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/primitives/array.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/primitives/boolean.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/primitives/dict.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/primitives/integer.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/primitives/range.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/primitives/string.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreter/type_checking.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreterbase -#usr/lib/python3.8/site-packages/mesonbuild/interpreterbase/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreterbase/_unholder.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreterbase/baseobjects.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreterbase/decorators.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreterbase/disabler.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreterbase/exceptions.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreterbase/helpers.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreterbase/interpreterbase.py -#usr/lib/python3.8/site-packages/mesonbuild/interpreterbase/operator.py -#usr/lib/python3.8/site-packages/mesonbuild/linkers -#usr/lib/python3.8/site-packages/mesonbuild/linkers/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/linkers/detect.py -#usr/lib/python3.8/site-packages/mesonbuild/linkers/linkers.py -#usr/lib/python3.8/site-packages/mesonbuild/mcompile.py -#usr/lib/python3.8/site-packages/mesonbuild/mconf.py -#usr/lib/python3.8/site-packages/mesonbuild/mdevenv.py -#usr/lib/python3.8/site-packages/mesonbuild/mdist.py -#usr/lib/python3.8/site-packages/mesonbuild/mesondata.py -#usr/lib/python3.8/site-packages/mesonbuild/mesonlib -#usr/lib/python3.8/site-packages/mesonbuild/mesonlib/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/mesonlib/platform.py -#usr/lib/python3.8/site-packages/mesonbuild/mesonlib/posix.py -#usr/lib/python3.8/site-packages/mesonbuild/mesonlib/universal.py -#usr/lib/python3.8/site-packages/mesonbuild/mesonlib/vsenv.py -#usr/lib/python3.8/site-packages/mesonbuild/mesonlib/win32.py -#usr/lib/python3.8/site-packages/mesonbuild/mesonmain.py -#usr/lib/python3.8/site-packages/mesonbuild/minit.py -#usr/lib/python3.8/site-packages/mesonbuild/minstall.py -#usr/lib/python3.8/site-packages/mesonbuild/mintro.py -#usr/lib/python3.8/site-packages/mesonbuild/mlog.py -#usr/lib/python3.8/site-packages/mesonbuild/modules -#usr/lib/python3.8/site-packages/mesonbuild/modules/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/cmake.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/dlang.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/fs.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/gnome.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/hotdoc.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/i18n.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/java.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/keyval.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/modtest.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/pkgconfig.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/python.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/python3.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/qt.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/qt4.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/qt5.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/qt6.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/rpm.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/sourceset.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/unstable_cuda.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/unstable_external_project.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/unstable_icestorm.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/unstable_rust.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/unstable_simd.py -#usr/lib/python3.8/site-packages/mesonbuild/modules/windows.py -#usr/lib/python3.8/site-packages/mesonbuild/mparser.py -#usr/lib/python3.8/site-packages/mesonbuild/msetup.py -#usr/lib/python3.8/site-packages/mesonbuild/msubprojects.py -#usr/lib/python3.8/site-packages/mesonbuild/mtest.py -#usr/lib/python3.8/site-packages/mesonbuild/munstable_coredata.py -#usr/lib/python3.8/site-packages/mesonbuild/optinterpreter.py -#usr/lib/python3.8/site-packages/mesonbuild/programs.py -#usr/lib/python3.8/site-packages/mesonbuild/rewriter.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts -#usr/lib/python3.8/site-packages/mesonbuild/scripts/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/clangformat.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/clangtidy.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/cleantrees.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/cmake_run_ctgt.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/cmd_or_ps.ps1 -#usr/lib/python3.8/site-packages/mesonbuild/scripts/coverage.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/delwithsuffix.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/depfixer.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/depscan.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/dirchanger.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/externalproject.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/gettext.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/gtkdochelper.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/hotdochelper.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/meson_exe.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/msgfmthelper.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/regen_checker.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/scanbuild.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/symbolextractor.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/tags.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/uninstall.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/vcstagger.py -#usr/lib/python3.8/site-packages/mesonbuild/scripts/yelphelper.py -#usr/lib/python3.8/site-packages/mesonbuild/templates -#usr/lib/python3.8/site-packages/mesonbuild/templates/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/cpptemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/cstemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/ctemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/cudatemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/dlangtemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/fortrantemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/javatemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/mesontemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/objcpptemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/objctemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/rusttemplates.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/samplefactory.py -#usr/lib/python3.8/site-packages/mesonbuild/templates/sampleimpl.py -#usr/lib/python3.8/site-packages/mesonbuild/wrap -#usr/lib/python3.8/site-packages/mesonbuild/wrap/__init__.py -#usr/lib/python3.8/site-packages/mesonbuild/wrap/wrap.py -#usr/lib/python3.8/site-packages/mesonbuild/wrap/wraptool.py +#usr/lib/python3.10/site-packages/meson-0.60.1-py3.10.egg-info +#usr/lib/python3.10/site-packages/meson-0.60.1-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/meson-0.60.1-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/meson-0.60.1-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/meson-0.60.1-py3.10.egg-info/entry_points.txt +#usr/lib/python3.10/site-packages/meson-0.60.1-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/meson-0.60.1-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/mesonbuild +#usr/lib/python3.10/site-packages/mesonbuild/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/_pathlib.py +#usr/lib/python3.10/site-packages/mesonbuild/_typing.py +#usr/lib/python3.10/site-packages/mesonbuild/arglist.py +#usr/lib/python3.10/site-packages/mesonbuild/ast +#usr/lib/python3.10/site-packages/mesonbuild/ast/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/ast/interpreter.py +#usr/lib/python3.10/site-packages/mesonbuild/ast/introspection.py +#usr/lib/python3.10/site-packages/mesonbuild/ast/postprocess.py +#usr/lib/python3.10/site-packages/mesonbuild/ast/printer.py +#usr/lib/python3.10/site-packages/mesonbuild/ast/visitor.py +#usr/lib/python3.10/site-packages/mesonbuild/backend +#usr/lib/python3.10/site-packages/mesonbuild/backend/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/backend/backends.py +#usr/lib/python3.10/site-packages/mesonbuild/backend/ninjabackend.py +#usr/lib/python3.10/site-packages/mesonbuild/backend/vs2010backend.py +#usr/lib/python3.10/site-packages/mesonbuild/backend/vs2012backend.py +#usr/lib/python3.10/site-packages/mesonbuild/backend/vs2013backend.py +#usr/lib/python3.10/site-packages/mesonbuild/backend/vs2015backend.py +#usr/lib/python3.10/site-packages/mesonbuild/backend/vs2017backend.py +#usr/lib/python3.10/site-packages/mesonbuild/backend/vs2019backend.py +#usr/lib/python3.10/site-packages/mesonbuild/backend/xcodebackend.py +#usr/lib/python3.10/site-packages/mesonbuild/build.py +#usr/lib/python3.10/site-packages/mesonbuild/cmake +#usr/lib/python3.10/site-packages/mesonbuild/cmake/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/cmake/client.py +#usr/lib/python3.10/site-packages/mesonbuild/cmake/common.py +#usr/lib/python3.10/site-packages/mesonbuild/cmake/executor.py +#usr/lib/python3.10/site-packages/mesonbuild/cmake/fileapi.py +#usr/lib/python3.10/site-packages/mesonbuild/cmake/generator.py +#usr/lib/python3.10/site-packages/mesonbuild/cmake/interpreter.py +#usr/lib/python3.10/site-packages/mesonbuild/cmake/toolchain.py +#usr/lib/python3.10/site-packages/mesonbuild/cmake/traceparser.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers +#usr/lib/python3.10/site-packages/mesonbuild/compilers/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/c.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/c_function_attributes.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/compilers.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/cpp.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/cs.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/cuda.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/cython.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/d.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/detect.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/fortran.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/java.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/arm.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/c2000.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/ccrx.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/clang.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/clike.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/compcert.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/elbrus.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/emscripten.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/gnu.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/intel.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/islinker.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/pgi.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/visualstudio.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/xc16.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/objc.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/objcpp.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/rust.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/swift.py +#usr/lib/python3.10/site-packages/mesonbuild/compilers/vala.py +#usr/lib/python3.10/site-packages/mesonbuild/coredata.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/base.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/boost.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/cmake.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/coarrays.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/configtool.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/cuda.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/detect.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/dev.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/dub.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/factory.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/framework.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/hdf5.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/misc.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/mpi.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/pkgconfig.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/platform.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/qt.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/scalapack.py +#usr/lib/python3.10/site-packages/mesonbuild/dependencies/ui.py +#usr/lib/python3.10/site-packages/mesonbuild/depfile.py +#usr/lib/python3.10/site-packages/mesonbuild/envconfig.py +#usr/lib/python3.10/site-packages/mesonbuild/environment.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/compiler.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/dependencyfallbacks.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/interpreter.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/interpreterobjects.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/kwargs.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/mesonmain.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/primitives +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/primitives/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/primitives/array.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/primitives/boolean.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/primitives/dict.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/primitives/integer.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/primitives/range.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/primitives/string.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreter/type_checking.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase +#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase/_unholder.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase/baseobjects.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase/decorators.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase/disabler.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase/exceptions.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase/helpers.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase/interpreterbase.py +#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase/operator.py +#usr/lib/python3.10/site-packages/mesonbuild/linkers +#usr/lib/python3.10/site-packages/mesonbuild/linkers/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/linkers/detect.py +#usr/lib/python3.10/site-packages/mesonbuild/linkers/linkers.py +#usr/lib/python3.10/site-packages/mesonbuild/mcompile.py +#usr/lib/python3.10/site-packages/mesonbuild/mconf.py +#usr/lib/python3.10/site-packages/mesonbuild/mdevenv.py +#usr/lib/python3.10/site-packages/mesonbuild/mdist.py +#usr/lib/python3.10/site-packages/mesonbuild/mesondata.py +#usr/lib/python3.10/site-packages/mesonbuild/mesonlib +#usr/lib/python3.10/site-packages/mesonbuild/mesonlib/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/mesonlib/platform.py +#usr/lib/python3.10/site-packages/mesonbuild/mesonlib/posix.py +#usr/lib/python3.10/site-packages/mesonbuild/mesonlib/universal.py +#usr/lib/python3.10/site-packages/mesonbuild/mesonlib/vsenv.py +#usr/lib/python3.10/site-packages/mesonbuild/mesonlib/win32.py +#usr/lib/python3.10/site-packages/mesonbuild/mesonmain.py +#usr/lib/python3.10/site-packages/mesonbuild/minit.py +#usr/lib/python3.10/site-packages/mesonbuild/minstall.py +#usr/lib/python3.10/site-packages/mesonbuild/mintro.py +#usr/lib/python3.10/site-packages/mesonbuild/mlog.py +#usr/lib/python3.10/site-packages/mesonbuild/modules +#usr/lib/python3.10/site-packages/mesonbuild/modules/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/cmake.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/dlang.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/fs.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/gnome.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/hotdoc.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/i18n.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/java.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/keyval.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/modtest.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/pkgconfig.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/python.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/python3.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/qt.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/qt4.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/qt5.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/qt6.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/rpm.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/sourceset.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/unstable_cuda.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/unstable_external_project.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/unstable_icestorm.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/unstable_rust.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/unstable_simd.py +#usr/lib/python3.10/site-packages/mesonbuild/modules/windows.py +#usr/lib/python3.10/site-packages/mesonbuild/mparser.py +#usr/lib/python3.10/site-packages/mesonbuild/msetup.py +#usr/lib/python3.10/site-packages/mesonbuild/msubprojects.py +#usr/lib/python3.10/site-packages/mesonbuild/mtest.py +#usr/lib/python3.10/site-packages/mesonbuild/munstable_coredata.py +#usr/lib/python3.10/site-packages/mesonbuild/optinterpreter.py +#usr/lib/python3.10/site-packages/mesonbuild/programs.py +#usr/lib/python3.10/site-packages/mesonbuild/rewriter.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts +#usr/lib/python3.10/site-packages/mesonbuild/scripts/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/clangformat.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/clangtidy.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/cleantrees.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/cmake_run_ctgt.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/cmd_or_ps.ps1 +#usr/lib/python3.10/site-packages/mesonbuild/scripts/coverage.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/delwithsuffix.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/depfixer.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/depscan.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/dirchanger.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/externalproject.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/gettext.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/gtkdochelper.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/hotdochelper.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/meson_exe.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/msgfmthelper.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/regen_checker.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/scanbuild.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/symbolextractor.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/tags.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/uninstall.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/vcstagger.py +#usr/lib/python3.10/site-packages/mesonbuild/scripts/yelphelper.py +#usr/lib/python3.10/site-packages/mesonbuild/templates +#usr/lib/python3.10/site-packages/mesonbuild/templates/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/cpptemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/cstemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/ctemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/cudatemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/dlangtemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/fortrantemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/javatemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/mesontemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/objcpptemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/objctemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/rusttemplates.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/samplefactory.py +#usr/lib/python3.10/site-packages/mesonbuild/templates/sampleimpl.py +#usr/lib/python3.10/site-packages/mesonbuild/wrap +#usr/lib/python3.10/site-packages/mesonbuild/wrap/__init__.py +#usr/lib/python3.10/site-packages/mesonbuild/wrap/wrap.py +#usr/lib/python3.10/site-packages/mesonbuild/wrap/wraptool.py #usr/share/man/man1/meson.1 #usr/share/polkit-1 #usr/share/polkit-1/actions diff --git a/config/rootfiles/common/newt b/config/rootfiles/common/newt index 554388aff3..39c90521fc 100644 --- a/config/rootfiles/common/newt +++ b/config/rootfiles/common/newt @@ -5,8 +5,8 @@ usr/bin/whiptail usr/lib/libnewt.so.0.52 usr/lib/libnewt.so.0.52.21 #usr/lib/pkgconfig/libnewt.pc -#usr/lib/python3.8/site-packages/_snack.so -#usr/lib/python3.8/site-packages/snack.py +#usr/lib/python3.10/site-packages/_snack.so +#usr/lib/python3.10/site-packages/snack.py #usr/share/locale/ar #usr/share/locale/ar/LC_MESSAGES #usr/share/locale/ar/LC_MESSAGES/newt.mo diff --git a/config/rootfiles/common/openssl b/config/rootfiles/common/openssl index 345f487d7f..d690f5be0d 100644 --- a/config/rootfiles/common/openssl +++ b/config/rootfiles/common/openssl @@ -3846,6 +3846,8 @@ usr/lib/libssl.so.1.1 #usr/share/doc/openssl/html/man3/d2i_X509_REVOKED.html #usr/share/doc/openssl/html/man3/d2i_X509_SIG.html #usr/share/doc/openssl/html/man3/d2i_X509_VAL.html +#usr/share/doc/openssl/html/man3/d2i_X509_bio.html +#usr/share/doc/openssl/html/man3/d2i_X509_fp.html #usr/share/doc/openssl/html/man3/i2d_ACCESS_DESCRIPTION.html #usr/share/doc/openssl/html/man3/i2d_ADMISSIONS.html #usr/share/doc/openssl/html/man3/i2d_ADMISSION_SYNTAX.html @@ -4040,6 +4042,8 @@ usr/lib/libssl.so.1.1 #usr/share/doc/openssl/html/man3/i2d_X509_REVOKED.html #usr/share/doc/openssl/html/man3/i2d_X509_SIG.html #usr/share/doc/openssl/html/man3/i2d_X509_VAL.html +#usr/share/doc/openssl/html/man3/i2d_X509_bio.html +#usr/share/doc/openssl/html/man3/i2d_X509_fp.html #usr/share/doc/openssl/html/man3/i2d_re_X509_CRL_tbs.html #usr/share/doc/openssl/html/man3/i2d_re_X509_REQ_tbs.html #usr/share/doc/openssl/html/man3/i2d_re_X509_tbs.html @@ -7819,6 +7823,8 @@ usr/lib/libssl.so.1.1 #usr/share/man/man3/d2i_X509_REVOKED.3 #usr/share/man/man3/d2i_X509_SIG.3 #usr/share/man/man3/d2i_X509_VAL.3 +#usr/share/man/man3/d2i_X509_bio.3 +#usr/share/man/man3/d2i_X509_fp.3 #usr/share/man/man3/i2d_ACCESS_DESCRIPTION.3 #usr/share/man/man3/i2d_ADMISSIONS.3 #usr/share/man/man3/i2d_ADMISSION_SYNTAX.3 @@ -8013,6 +8019,8 @@ usr/lib/libssl.so.1.1 #usr/share/man/man3/i2d_X509_REVOKED.3 #usr/share/man/man3/i2d_X509_SIG.3 #usr/share/man/man3/i2d_X509_VAL.3 +#usr/share/man/man3/i2d_X509_bio.3 +#usr/share/man/man3/i2d_X509_fp.3 #usr/share/man/man3/i2d_re_X509_CRL_tbs.3 #usr/share/man/man3/i2d_re_X509_REQ_tbs.3 #usr/share/man/man3/i2d_re_X509_tbs.3 diff --git a/config/rootfiles/common/pango b/config/rootfiles/common/pango index b9146ecdd1..dbb65e4311 100644 --- a/config/rootfiles/common/pango +++ b/config/rootfiles/common/pango @@ -40,13 +40,13 @@ usr/bin/pango-view #usr/include/pango-1.0/pango/pangoft2.h #usr/lib/libpango-1.0.so usr/lib/libpango-1.0.so.0 -usr/lib/libpango-1.0.so.0.5000.0 +usr/lib/libpango-1.0.so.0.5000.3 #usr/lib/libpangocairo-1.0.so usr/lib/libpangocairo-1.0.so.0 -usr/lib/libpangocairo-1.0.so.0.5000.0 +usr/lib/libpangocairo-1.0.so.0.5000.3 #usr/lib/libpangoft2-1.0.so usr/lib/libpangoft2-1.0.so.0 -usr/lib/libpangoft2-1.0.so.0.5000.0 +usr/lib/libpangoft2-1.0.so.0.5000.3 #usr/lib/pkgconfig/pango.pc #usr/lib/pkgconfig/pangocairo.pc #usr/lib/pkgconfig/pangofc.pc diff --git a/config/rootfiles/common/Archive-Tar b/config/rootfiles/common/perl-Archive-Tar similarity index 100% rename from config/rootfiles/common/Archive-Tar rename to config/rootfiles/common/perl-Archive-Tar diff --git a/config/rootfiles/common/Archive-Zip b/config/rootfiles/common/perl-Archive-Zip similarity index 100% rename from config/rootfiles/common/Archive-Zip rename to config/rootfiles/common/perl-Archive-Zip diff --git a/config/rootfiles/common/BerkeleyDB b/config/rootfiles/common/perl-BerkeleyDB similarity index 100% rename from config/rootfiles/common/BerkeleyDB rename to config/rootfiles/common/perl-BerkeleyDB diff --git a/config/rootfiles/common/Canary-Stability b/config/rootfiles/common/perl-Canary-Stability similarity index 100% rename from config/rootfiles/common/Canary-Stability rename to config/rootfiles/common/perl-Canary-Stability diff --git a/config/rootfiles/common/Compress-Zlib b/config/rootfiles/common/perl-Compress-Zlib similarity index 100% rename from config/rootfiles/common/Compress-Zlib rename to config/rootfiles/common/perl-Compress-Zlib diff --git a/config/rootfiles/common/Convert-TNEF b/config/rootfiles/common/perl-Convert-TNEF similarity index 100% rename from config/rootfiles/common/Convert-TNEF rename to config/rootfiles/common/perl-Convert-TNEF diff --git a/config/rootfiles/common/Convert-UUlib b/config/rootfiles/common/perl-Convert-UUlib similarity index 100% rename from config/rootfiles/common/Convert-UUlib rename to config/rootfiles/common/perl-Convert-UUlib diff --git a/config/rootfiles/common/Crypt-PasswdMD5 b/config/rootfiles/common/perl-Crypt-PasswdMD5 similarity index 100% rename from config/rootfiles/common/Crypt-PasswdMD5 rename to config/rootfiles/common/perl-Crypt-PasswdMD5 diff --git a/config/rootfiles/common/Digest b/config/rootfiles/common/perl-Digest similarity index 100% rename from config/rootfiles/common/Digest rename to config/rootfiles/common/perl-Digest diff --git a/config/rootfiles/common/Digest-HMAC b/config/rootfiles/common/perl-Digest-HMAC similarity index 100% rename from config/rootfiles/common/Digest-HMAC rename to config/rootfiles/common/perl-Digest-HMAC diff --git a/config/rootfiles/common/Digest-SHA1 b/config/rootfiles/common/perl-Digest-SHA1 similarity index 100% rename from config/rootfiles/common/Digest-SHA1 rename to config/rootfiles/common/perl-Digest-SHA1 diff --git a/config/rootfiles/common/ExtUtils-PkgConfig b/config/rootfiles/common/perl-ExtUtils-PkgConfig similarity index 100% rename from config/rootfiles/common/ExtUtils-PkgConfig rename to config/rootfiles/common/perl-ExtUtils-PkgConfig diff --git a/config/rootfiles/common/GD-Graph b/config/rootfiles/common/perl-GD-Graph similarity index 100% rename from config/rootfiles/common/GD-Graph rename to config/rootfiles/common/perl-GD-Graph diff --git a/config/rootfiles/common/GD-TextUtil b/config/rootfiles/common/perl-GD-TextUtil similarity index 100% rename from config/rootfiles/common/GD-TextUtil rename to config/rootfiles/common/perl-GD-TextUtil diff --git a/config/rootfiles/common/HTML-Parser b/config/rootfiles/common/perl-HTML-Parser similarity index 100% rename from config/rootfiles/common/HTML-Parser rename to config/rootfiles/common/perl-HTML-Parser diff --git a/config/rootfiles/common/HTML-Tagset b/config/rootfiles/common/perl-HTML-Tagset similarity index 100% rename from config/rootfiles/common/HTML-Tagset rename to config/rootfiles/common/perl-HTML-Tagset diff --git a/config/rootfiles/common/HTML-Template b/config/rootfiles/common/perl-HTML-Template similarity index 100% rename from config/rootfiles/common/HTML-Template rename to config/rootfiles/common/perl-HTML-Template diff --git a/config/rootfiles/common/perl-HTTP-Date b/config/rootfiles/common/perl-HTTP-Date new file mode 100644 index 0000000000..75c250b7ba --- /dev/null +++ b/config/rootfiles/common/perl-HTTP-Date @@ -0,0 +1,4 @@ +usr/lib/perl5/site_perl/5.32.1/HTTP/Date.pm +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/HTTP/Date +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/HTTP/Date/.packlist +#usr/share/man/man3/HTTP::Date.3 diff --git a/config/rootfiles/common/perl-HTTP-Message b/config/rootfiles/common/perl-HTTP-Message new file mode 100644 index 0000000000..d52b1dea11 --- /dev/null +++ b/config/rootfiles/common/perl-HTTP-Message @@ -0,0 +1,26 @@ +#usr/lib/perl5/site_perl/5.32.1/HTTP +usr/lib/perl5/site_perl/5.32.1/HTTP/Config.pm +#usr/lib/perl5/site_perl/5.32.1/HTTP/Headers +usr/lib/perl5/site_perl/5.32.1/HTTP/Headers.pm +usr/lib/perl5/site_perl/5.32.1/HTTP/Headers/Auth.pm +usr/lib/perl5/site_perl/5.32.1/HTTP/Headers/ETag.pm +usr/lib/perl5/site_perl/5.32.1/HTTP/Headers/Util.pm +usr/lib/perl5/site_perl/5.32.1/HTTP/Message.pm +#usr/lib/perl5/site_perl/5.32.1/HTTP/Request +usr/lib/perl5/site_perl/5.32.1/HTTP/Request.pm +usr/lib/perl5/site_perl/5.32.1/HTTP/Request/Common.pm +usr/lib/perl5/site_perl/5.32.1/HTTP/Response.pm +usr/lib/perl5/site_perl/5.32.1/HTTP/Status.pm +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/HTTP +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/HTTP/Message +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/HTTP/Message/.packlist +#usr/share/man/man3/HTTP::Config.3 +#usr/share/man/man3/HTTP::Headers.3 +#usr/share/man/man3/HTTP::Headers::Auth.3 +#usr/share/man/man3/HTTP::Headers::ETag.3 +#usr/share/man/man3/HTTP::Headers::Util.3 +#usr/share/man/man3/HTTP::Message.3 +#usr/share/man/man3/HTTP::Request.3 +#usr/share/man/man3/HTTP::Request::Common.3 +#usr/share/man/man3/HTTP::Response.3 +#usr/share/man/man3/HTTP::Status.3 diff --git a/config/rootfiles/common/IO-Socket-SSL b/config/rootfiles/common/perl-IO-Socket-SSL similarity index 100% rename from config/rootfiles/common/IO-Socket-SSL rename to config/rootfiles/common/perl-IO-Socket-SSL diff --git a/config/rootfiles/common/IO-Stringy b/config/rootfiles/common/perl-IO-Stringy similarity index 100% rename from config/rootfiles/common/IO-Stringy rename to config/rootfiles/common/perl-IO-Stringy diff --git a/config/rootfiles/common/perl-LWP-Protocol-https b/config/rootfiles/common/perl-LWP-Protocol-https new file mode 100644 index 0000000000..9457d27e62 --- /dev/null +++ b/config/rootfiles/common/perl-LWP-Protocol-https @@ -0,0 +1,6 @@ +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/https.pm +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/LWP +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/LWP/Protocol +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/LWP/Protocol/https +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/LWP/Protocol/https/.packlist +#usr/share/man/man3/LWP::Protocol::https.3 diff --git a/config/rootfiles/common/MIME-Tools b/config/rootfiles/common/perl-MIME-Tools similarity index 100% rename from config/rootfiles/common/MIME-Tools rename to config/rootfiles/common/perl-MIME-Tools diff --git a/config/rootfiles/common/Mail-Tools b/config/rootfiles/common/perl-Mail-Tools similarity index 100% rename from config/rootfiles/common/Mail-Tools rename to config/rootfiles/common/perl-Mail-Tools diff --git a/config/rootfiles/common/Net-DNS b/config/rootfiles/common/perl-Net-DNS similarity index 100% rename from config/rootfiles/common/Net-DNS rename to config/rootfiles/common/perl-Net-DNS diff --git a/config/rootfiles/common/perl-Net-HTTP b/config/rootfiles/common/perl-Net-HTTP new file mode 100644 index 0000000000..a61d6d2169 --- /dev/null +++ b/config/rootfiles/common/perl-Net-HTTP @@ -0,0 +1,13 @@ +#usr/lib/perl5/site_perl/5.32.1/Net +#usr/lib/perl5/site_perl/5.32.1/Net/HTTP +usr/lib/perl5/site_perl/5.32.1/Net/HTTP.pm +usr/lib/perl5/site_perl/5.32.1/Net/HTTP/Methods.pm +usr/lib/perl5/site_perl/5.32.1/Net/HTTP/NB.pm +usr/lib/perl5/site_perl/5.32.1/Net/HTTPS.pm +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Net +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Net/HTTP +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Net/HTTP/.packlist +#usr/share/man/man3/Net::HTTP.3 +#usr/share/man/man3/Net::HTTP::Methods.3 +#usr/share/man/man3/Net::HTTP::NB.3 +#usr/share/man/man3/Net::HTTPS.3 diff --git a/config/rootfiles/common/Net-IPv4Addr b/config/rootfiles/common/perl-Net-IPv4Addr similarity index 100% rename from config/rootfiles/common/Net-IPv4Addr rename to config/rootfiles/common/perl-Net-IPv4Addr diff --git a/config/rootfiles/common/Net-Server b/config/rootfiles/common/perl-Net-Server similarity index 100% rename from config/rootfiles/common/Net-Server rename to config/rootfiles/common/perl-Net-Server diff --git a/config/rootfiles/common/Net-Telnet b/config/rootfiles/common/perl-Net-Telnet similarity index 100% rename from config/rootfiles/common/Net-Telnet rename to config/rootfiles/common/perl-Net-Telnet diff --git a/config/rootfiles/common/Net_SSLeay b/config/rootfiles/common/perl-Net_SSLeay similarity index 100% rename from config/rootfiles/common/Net_SSLeay rename to config/rootfiles/common/perl-Net_SSLeay diff --git a/config/rootfiles/common/Text-Tabs+Wrap b/config/rootfiles/common/perl-Text-Tabs+Wrap similarity index 100% rename from config/rootfiles/common/Text-Tabs+Wrap rename to config/rootfiles/common/perl-Text-Tabs+Wrap diff --git a/config/rootfiles/common/perl-Try-Tiny b/config/rootfiles/common/perl-Try-Tiny new file mode 100644 index 0000000000..bb259b538f --- /dev/null +++ b/config/rootfiles/common/perl-Try-Tiny @@ -0,0 +1,6 @@ +#usr/lib/perl5/site_perl/5.32.1/Try +usr/lib/perl5/site_perl/5.32.1/Try/Tiny.pm +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Try +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Try/Tiny +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Try/Tiny/.packlist +#usr/share/man/man3/Try::Tiny.3 diff --git a/config/rootfiles/common/URI b/config/rootfiles/common/perl-URI similarity index 100% rename from config/rootfiles/common/URI rename to config/rootfiles/common/perl-URI diff --git a/config/rootfiles/common/Unix-Syslog b/config/rootfiles/common/perl-Unix-Syslog similarity index 100% rename from config/rootfiles/common/Unix-Syslog rename to config/rootfiles/common/perl-Unix-Syslog diff --git a/config/rootfiles/common/XML-Parser b/config/rootfiles/common/perl-XML-Parser similarity index 100% rename from config/rootfiles/common/XML-Parser rename to config/rootfiles/common/perl-XML-Parser diff --git a/config/rootfiles/common/perl-libwww b/config/rootfiles/common/perl-libwww new file mode 100644 index 0000000000..38edd2f48b --- /dev/null +++ b/config/rootfiles/common/perl-libwww @@ -0,0 +1,44 @@ +#usr/lib/perl5/site_perl/5.32.1/LWP +usr/lib/perl5/site_perl/5.32.1/LWP.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Authen +usr/lib/perl5/site_perl/5.32.1/LWP/Authen/Basic.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Authen/Digest.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Authen/Ntlm.pm +usr/lib/perl5/site_perl/5.32.1/LWP/ConnCache.pm +#usr/lib/perl5/site_perl/5.32.1/LWP/Debug +usr/lib/perl5/site_perl/5.32.1/LWP/Debug.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Debug/TraceHTTP.pm +usr/lib/perl5/site_perl/5.32.1/LWP/DebugFile.pm +usr/lib/perl5/site_perl/5.32.1/LWP/MemberMixin.pm +#usr/lib/perl5/site_perl/5.32.1/LWP/Protocol +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/cpan.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/data.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/file.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/ftp.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/gopher.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/http.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/loopback.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/mailto.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/nntp.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/nogo.pm +usr/lib/perl5/site_perl/5.32.1/LWP/RobotUA.pm +usr/lib/perl5/site_perl/5.32.1/LWP/Simple.pm +usr/lib/perl5/site_perl/5.32.1/LWP/UserAgent.pm +#usr/lib/perl5/site_perl/5.32.1/libwww +#usr/lib/perl5/site_perl/5.32.1/libwww/lwpcook.pod +#usr/lib/perl5/site_perl/5.32.1/libwww/lwptut.pod +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/libwww +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/libwww/perl +#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/libwww/perl/.packlist +#usr/share/man/man3/LWP.3 +#usr/share/man/man3/LWP::Authen::Ntlm.3 +#usr/share/man/man3/LWP::ConnCache.3 +#usr/share/man/man3/LWP::Debug.3 +#usr/share/man/man3/LWP::MemberMixin.3 +#usr/share/man/man3/LWP::Protocol.3 +#usr/share/man/man3/LWP::RobotUA.3 +#usr/share/man/man3/LWP::Simple.3 +#usr/share/man/man3/LWP::UserAgent.3 +#usr/share/man/man3/libwww::lwpcook.3 +#usr/share/man/man3/libwww::lwptut.3 diff --git a/config/rootfiles/common/poppler b/config/rootfiles/common/poppler index 546e8cb778..8bd35c272a 100644 --- a/config/rootfiles/common/poppler +++ b/config/rootfiles/common/poppler @@ -31,6 +31,8 @@ usr/bin/pdfunite #usr/include/poppler/Dict.h #usr/include/poppler/Error.h #usr/include/poppler/ErrorCodes.h +#usr/include/poppler/FDPDFDocBuilder.h +#usr/include/poppler/FILECacheLoader.h #usr/include/poppler/FileSpec.h #usr/include/poppler/FontEncodingTables.h #usr/include/poppler/FontInfo.h @@ -74,8 +76,6 @@ usr/bin/pdfunite #usr/include/poppler/SecurityHandler.h #usr/include/poppler/Sound.h #usr/include/poppler/SplashOutputDev.h -#usr/include/poppler/StdinCachedFile.h -#usr/include/poppler/StdinPDFDocBuilder.h #usr/include/poppler/Stream-CCITT.h #usr/include/poppler/Stream.h #usr/include/poppler/StructElement.h @@ -171,10 +171,10 @@ usr/lib/libpoppler-cpp.so.0 usr/lib/libpoppler-cpp.so.0.9.0 #usr/lib/libpoppler-glib.so usr/lib/libpoppler-glib.so.8 -usr/lib/libpoppler-glib.so.8.21.0 +usr/lib/libpoppler-glib.so.8.23.0 #usr/lib/libpoppler.so -usr/lib/libpoppler.so.115 -usr/lib/libpoppler.so.115.0.0 +usr/lib/libpoppler.so.118 +usr/lib/libpoppler.so.118.0.0 #usr/lib/pkgconfig/poppler-cpp.pc #usr/lib/pkgconfig/poppler-glib.pc #usr/lib/pkgconfig/poppler.pc diff --git a/config/rootfiles/common/python3 b/config/rootfiles/common/python3 index ffe058facc..2e68ca8c21 100644 --- a/config/rootfiles/common/python3 +++ b/config/rootfiles/common/python3 @@ -1,1804 +1,1872 @@ usr/bin/2to3 -usr/bin/2to3-3.8 -usr/bin/easy_install-3.8 +usr/bin/2to3-3.10 usr/bin/idle3 -usr/bin/idle3.8 +usr/bin/idle3.10 usr/bin/pip3 -usr/bin/pip3.8 +usr/bin/pip3.10 usr/bin/pydoc3 -usr/bin/pydoc3.8 +usr/bin/pydoc3.10 usr/bin/python3 usr/bin/python3-config -usr/bin/python3.8 -usr/bin/python3.8-config -#usr/include/python3.8 -#usr/include/python3.8/Python-ast.h -#usr/include/python3.8/Python.h -#usr/include/python3.8/abstract.h -#usr/include/python3.8/asdl.h -#usr/include/python3.8/ast.h -#usr/include/python3.8/bitset.h -#usr/include/python3.8/bltinmodule.h -#usr/include/python3.8/boolobject.h -#usr/include/python3.8/bytearrayobject.h -#usr/include/python3.8/bytes_methods.h -#usr/include/python3.8/bytesobject.h -#usr/include/python3.8/cellobject.h -#usr/include/python3.8/ceval.h -#usr/include/python3.8/classobject.h -#usr/include/python3.8/code.h -#usr/include/python3.8/codecs.h -#usr/include/python3.8/compile.h -#usr/include/python3.8/complexobject.h -#usr/include/python3.8/context.h -#usr/include/python3.8/cpython -#usr/include/python3.8/cpython/abstract.h -#usr/include/python3.8/cpython/dictobject.h -#usr/include/python3.8/cpython/fileobject.h -#usr/include/python3.8/cpython/initconfig.h -#usr/include/python3.8/cpython/interpreteridobject.h -#usr/include/python3.8/cpython/object.h -#usr/include/python3.8/cpython/objimpl.h -#usr/include/python3.8/cpython/pyerrors.h -#usr/include/python3.8/cpython/pylifecycle.h -#usr/include/python3.8/cpython/pymem.h -#usr/include/python3.8/cpython/pystate.h -#usr/include/python3.8/cpython/sysmodule.h -#usr/include/python3.8/cpython/traceback.h -#usr/include/python3.8/cpython/tupleobject.h -#usr/include/python3.8/cpython/unicodeobject.h -#usr/include/python3.8/datetime.h -#usr/include/python3.8/descrobject.h -#usr/include/python3.8/dictobject.h -#usr/include/python3.8/dtoa.h -#usr/include/python3.8/dynamic_annotations.h -#usr/include/python3.8/enumobject.h -#usr/include/python3.8/errcode.h -#usr/include/python3.8/eval.h -#usr/include/python3.8/fileobject.h -#usr/include/python3.8/fileutils.h -#usr/include/python3.8/floatobject.h -#usr/include/python3.8/frameobject.h -#usr/include/python3.8/funcobject.h -#usr/include/python3.8/genobject.h -#usr/include/python3.8/graminit.h -#usr/include/python3.8/grammar.h -#usr/include/python3.8/import.h -#usr/include/python3.8/internal -#usr/include/python3.8/internal/pycore_accu.h -#usr/include/python3.8/internal/pycore_atomic.h -#usr/include/python3.8/internal/pycore_ceval.h -#usr/include/python3.8/internal/pycore_code.h -#usr/include/python3.8/internal/pycore_condvar.h -#usr/include/python3.8/internal/pycore_context.h -#usr/include/python3.8/internal/pycore_fileutils.h -#usr/include/python3.8/internal/pycore_getopt.h -#usr/include/python3.8/internal/pycore_gil.h -#usr/include/python3.8/internal/pycore_hamt.h -#usr/include/python3.8/internal/pycore_initconfig.h -#usr/include/python3.8/internal/pycore_object.h -#usr/include/python3.8/internal/pycore_pathconfig.h -#usr/include/python3.8/internal/pycore_pyerrors.h -#usr/include/python3.8/internal/pycore_pyhash.h -#usr/include/python3.8/internal/pycore_pylifecycle.h -#usr/include/python3.8/internal/pycore_pymem.h -#usr/include/python3.8/internal/pycore_pystate.h -#usr/include/python3.8/internal/pycore_traceback.h -#usr/include/python3.8/internal/pycore_tupleobject.h -#usr/include/python3.8/internal/pycore_warnings.h -#usr/include/python3.8/interpreteridobject.h -#usr/include/python3.8/intrcheck.h -#usr/include/python3.8/iterobject.h -#usr/include/python3.8/listobject.h -#usr/include/python3.8/longintrepr.h -#usr/include/python3.8/longobject.h -#usr/include/python3.8/marshal.h -#usr/include/python3.8/memoryobject.h -#usr/include/python3.8/methodobject.h -#usr/include/python3.8/modsupport.h -#usr/include/python3.8/moduleobject.h -#usr/include/python3.8/namespaceobject.h -#usr/include/python3.8/node.h -#usr/include/python3.8/object.h -#usr/include/python3.8/objimpl.h -#usr/include/python3.8/odictobject.h -#usr/include/python3.8/opcode.h -#usr/include/python3.8/osdefs.h -#usr/include/python3.8/osmodule.h -#usr/include/python3.8/parsetok.h -#usr/include/python3.8/patchlevel.h -#usr/include/python3.8/picklebufobject.h -#usr/include/python3.8/py_curses.h -#usr/include/python3.8/pyarena.h -#usr/include/python3.8/pycapsule.h -#usr/include/python3.8/pyconfig.h -#usr/include/python3.8/pyctype.h -#usr/include/python3.8/pydebug.h -#usr/include/python3.8/pydtrace.h -#usr/include/python3.8/pyerrors.h -#usr/include/python3.8/pyexpat.h -#usr/include/python3.8/pyfpe.h -#usr/include/python3.8/pyhash.h -#usr/include/python3.8/pylifecycle.h -#usr/include/python3.8/pymacconfig.h -#usr/include/python3.8/pymacro.h -#usr/include/python3.8/pymath.h -#usr/include/python3.8/pymem.h -#usr/include/python3.8/pyport.h -#usr/include/python3.8/pystate.h -#usr/include/python3.8/pystrcmp.h -#usr/include/python3.8/pystrhex.h -#usr/include/python3.8/pystrtod.h -#usr/include/python3.8/pythonrun.h -#usr/include/python3.8/pythread.h -#usr/include/python3.8/pytime.h -#usr/include/python3.8/rangeobject.h -#usr/include/python3.8/setobject.h -#usr/include/python3.8/sliceobject.h -#usr/include/python3.8/structmember.h -#usr/include/python3.8/structseq.h -#usr/include/python3.8/symtable.h -#usr/include/python3.8/sysmodule.h -#usr/include/python3.8/token.h -#usr/include/python3.8/traceback.h -#usr/include/python3.8/tracemalloc.h -#usr/include/python3.8/tupleobject.h -#usr/include/python3.8/typeslots.h -#usr/include/python3.8/ucnhash.h -#usr/include/python3.8/unicodeobject.h -#usr/include/python3.8/warnings.h -#usr/include/python3.8/weakrefobject.h -usr/lib/libpython3.8.so -usr/lib/libpython3.8.so.1.0 +usr/bin/python3.10 +usr/bin/python3.10-config +#usr/include/python3.10 +#usr/include/python3.10/Python.h +#usr/include/python3.10/abstract.h +#usr/include/python3.10/bltinmodule.h +#usr/include/python3.10/boolobject.h +#usr/include/python3.10/bytearrayobject.h +#usr/include/python3.10/bytesobject.h +#usr/include/python3.10/cellobject.h +#usr/include/python3.10/ceval.h +#usr/include/python3.10/classobject.h +#usr/include/python3.10/code.h +#usr/include/python3.10/codecs.h +#usr/include/python3.10/compile.h +#usr/include/python3.10/complexobject.h +#usr/include/python3.10/context.h +#usr/include/python3.10/cpython +#usr/include/python3.10/cpython/abstract.h +#usr/include/python3.10/cpython/bytearrayobject.h +#usr/include/python3.10/cpython/bytesobject.h +#usr/include/python3.10/cpython/ceval.h +#usr/include/python3.10/cpython/code.h +#usr/include/python3.10/cpython/compile.h +#usr/include/python3.10/cpython/dictobject.h +#usr/include/python3.10/cpython/fileobject.h +#usr/include/python3.10/cpython/fileutils.h +#usr/include/python3.10/cpython/frameobject.h +#usr/include/python3.10/cpython/import.h +#usr/include/python3.10/cpython/initconfig.h +#usr/include/python3.10/cpython/interpreteridobject.h +#usr/include/python3.10/cpython/listobject.h +#usr/include/python3.10/cpython/methodobject.h +#usr/include/python3.10/cpython/object.h +#usr/include/python3.10/cpython/objimpl.h +#usr/include/python3.10/cpython/odictobject.h +#usr/include/python3.10/cpython/picklebufobject.h +#usr/include/python3.10/cpython/pyctype.h +#usr/include/python3.10/cpython/pydebug.h +#usr/include/python3.10/cpython/pyerrors.h +#usr/include/python3.10/cpython/pyfpe.h +#usr/include/python3.10/cpython/pylifecycle.h +#usr/include/python3.10/cpython/pymem.h +#usr/include/python3.10/cpython/pystate.h +#usr/include/python3.10/cpython/pythonrun.h +#usr/include/python3.10/cpython/pytime.h +#usr/include/python3.10/cpython/sysmodule.h +#usr/include/python3.10/cpython/traceback.h +#usr/include/python3.10/cpython/tupleobject.h +#usr/include/python3.10/cpython/unicodeobject.h +#usr/include/python3.10/datetime.h +#usr/include/python3.10/descrobject.h +#usr/include/python3.10/dictobject.h +#usr/include/python3.10/dynamic_annotations.h +#usr/include/python3.10/enumobject.h +#usr/include/python3.10/errcode.h +#usr/include/python3.10/eval.h +#usr/include/python3.10/exports.h +#usr/include/python3.10/fileobject.h +#usr/include/python3.10/fileutils.h +#usr/include/python3.10/floatobject.h +#usr/include/python3.10/frameobject.h +#usr/include/python3.10/funcobject.h +#usr/include/python3.10/genericaliasobject.h +#usr/include/python3.10/genobject.h +#usr/include/python3.10/import.h +#usr/include/python3.10/internal +#usr/include/python3.10/internal/pycore_abstract.h +#usr/include/python3.10/internal/pycore_accu.h +#usr/include/python3.10/internal/pycore_asdl.h +#usr/include/python3.10/internal/pycore_ast.h +#usr/include/python3.10/internal/pycore_ast_state.h +#usr/include/python3.10/internal/pycore_atomic.h +#usr/include/python3.10/internal/pycore_atomic_funcs.h +#usr/include/python3.10/internal/pycore_bitutils.h +#usr/include/python3.10/internal/pycore_blocks_output_buffer.h +#usr/include/python3.10/internal/pycore_bytes_methods.h +#usr/include/python3.10/internal/pycore_call.h +#usr/include/python3.10/internal/pycore_ceval.h +#usr/include/python3.10/internal/pycore_code.h +#usr/include/python3.10/internal/pycore_compile.h +#usr/include/python3.10/internal/pycore_condvar.h +#usr/include/python3.10/internal/pycore_context.h +#usr/include/python3.10/internal/pycore_dtoa.h +#usr/include/python3.10/internal/pycore_fileutils.h +#usr/include/python3.10/internal/pycore_format.h +#usr/include/python3.10/internal/pycore_gc.h +#usr/include/python3.10/internal/pycore_getopt.h +#usr/include/python3.10/internal/pycore_gil.h +#usr/include/python3.10/internal/pycore_hamt.h +#usr/include/python3.10/internal/pycore_hashtable.h +#usr/include/python3.10/internal/pycore_import.h +#usr/include/python3.10/internal/pycore_initconfig.h +#usr/include/python3.10/internal/pycore_interp.h +#usr/include/python3.10/internal/pycore_list.h +#usr/include/python3.10/internal/pycore_long.h +#usr/include/python3.10/internal/pycore_moduleobject.h +#usr/include/python3.10/internal/pycore_object.h +#usr/include/python3.10/internal/pycore_parser.h +#usr/include/python3.10/internal/pycore_pathconfig.h +#usr/include/python3.10/internal/pycore_pyarena.h +#usr/include/python3.10/internal/pycore_pyerrors.h +#usr/include/python3.10/internal/pycore_pyhash.h +#usr/include/python3.10/internal/pycore_pylifecycle.h +#usr/include/python3.10/internal/pycore_pymem.h +#usr/include/python3.10/internal/pycore_pystate.h +#usr/include/python3.10/internal/pycore_runtime.h +#usr/include/python3.10/internal/pycore_structseq.h +#usr/include/python3.10/internal/pycore_symtable.h +#usr/include/python3.10/internal/pycore_sysmodule.h +#usr/include/python3.10/internal/pycore_traceback.h +#usr/include/python3.10/internal/pycore_tuple.h +#usr/include/python3.10/internal/pycore_ucnhash.h +#usr/include/python3.10/internal/pycore_unionobject.h +#usr/include/python3.10/internal/pycore_warnings.h +#usr/include/python3.10/interpreteridobject.h +#usr/include/python3.10/intrcheck.h +#usr/include/python3.10/iterobject.h +#usr/include/python3.10/listobject.h +#usr/include/python3.10/longintrepr.h +#usr/include/python3.10/longobject.h +#usr/include/python3.10/marshal.h +#usr/include/python3.10/memoryobject.h +#usr/include/python3.10/methodobject.h +#usr/include/python3.10/modsupport.h +#usr/include/python3.10/moduleobject.h +#usr/include/python3.10/namespaceobject.h +#usr/include/python3.10/object.h +#usr/include/python3.10/objimpl.h +#usr/include/python3.10/opcode.h +#usr/include/python3.10/osdefs.h +#usr/include/python3.10/osmodule.h +#usr/include/python3.10/patchlevel.h +#usr/include/python3.10/py_curses.h +#usr/include/python3.10/pycapsule.h +#usr/include/python3.10/pyconfig.h +#usr/include/python3.10/pydtrace.h +#usr/include/python3.10/pyerrors.h +#usr/include/python3.10/pyexpat.h +#usr/include/python3.10/pyframe.h +#usr/include/python3.10/pyhash.h +#usr/include/python3.10/pylifecycle.h +#usr/include/python3.10/pymacconfig.h +#usr/include/python3.10/pymacro.h +#usr/include/python3.10/pymath.h +#usr/include/python3.10/pymem.h +#usr/include/python3.10/pyport.h +#usr/include/python3.10/pystate.h +#usr/include/python3.10/pystrcmp.h +#usr/include/python3.10/pystrhex.h +#usr/include/python3.10/pystrtod.h +#usr/include/python3.10/pythonrun.h +#usr/include/python3.10/pythread.h +#usr/include/python3.10/rangeobject.h +#usr/include/python3.10/setobject.h +#usr/include/python3.10/sliceobject.h +#usr/include/python3.10/structmember.h +#usr/include/python3.10/structseq.h +#usr/include/python3.10/sysmodule.h +#usr/include/python3.10/token.h +#usr/include/python3.10/traceback.h +#usr/include/python3.10/tracemalloc.h +#usr/include/python3.10/tupleobject.h +#usr/include/python3.10/typeslots.h +#usr/include/python3.10/unicodeobject.h +#usr/include/python3.10/warnings.h +#usr/include/python3.10/weakrefobject.h +usr/lib/libpython3.10.so +usr/lib/libpython3.10.so.1.0 #usr/lib/libpython3.so -#usr/lib/pkgconfig/python-3.8-embed.pc -#usr/lib/pkgconfig/python-3.8.pc +#usr/lib/pkgconfig/python-3.10-embed.pc +#usr/lib/pkgconfig/python-3.10.pc #usr/lib/pkgconfig/python3-embed.pc #usr/lib/pkgconfig/python3.pc -#usr/lib/python3.8 -#usr/lib/python3.8/LICENSE.txt -usr/lib/python3.8/__future__.py -usr/lib/python3.8/__phello__.foo.py -usr/lib/python3.8/_bootlocale.py -usr/lib/python3.8/_collections_abc.py -usr/lib/python3.8/_compat_pickle.py -usr/lib/python3.8/_compression.py -usr/lib/python3.8/_dummy_thread.py -usr/lib/python3.8/_markupbase.py -usr/lib/python3.8/_osx_support.py -usr/lib/python3.8/_py_abc.py -usr/lib/python3.8/_pydecimal.py -usr/lib/python3.8/_pyio.py -usr/lib/python3.8/_sitebuiltins.py -usr/lib/python3.8/_strptime.py -usr/lib/python3.8/_sysconfigdata__linux_xxxMACHINExxx-linux-gnu.py -usr/lib/python3.8/_threading_local.py -usr/lib/python3.8/_weakrefset.py -usr/lib/python3.8/abc.py -usr/lib/python3.8/aifc.py -usr/lib/python3.8/antigravity.py -usr/lib/python3.8/argparse.py -usr/lib/python3.8/ast.py -usr/lib/python3.8/asynchat.py -#usr/lib/python3.8/asyncio -usr/lib/python3.8/asyncio/__init__.py -usr/lib/python3.8/asyncio/__main__.py -usr/lib/python3.8/asyncio/base_events.py -usr/lib/python3.8/asyncio/base_futures.py -usr/lib/python3.8/asyncio/base_subprocess.py -usr/lib/python3.8/asyncio/base_tasks.py -usr/lib/python3.8/asyncio/constants.py -usr/lib/python3.8/asyncio/coroutines.py -usr/lib/python3.8/asyncio/events.py -usr/lib/python3.8/asyncio/exceptions.py -usr/lib/python3.8/asyncio/format_helpers.py -usr/lib/python3.8/asyncio/futures.py -usr/lib/python3.8/asyncio/locks.py -usr/lib/python3.8/asyncio/log.py -usr/lib/python3.8/asyncio/proactor_events.py -usr/lib/python3.8/asyncio/protocols.py -usr/lib/python3.8/asyncio/queues.py -usr/lib/python3.8/asyncio/runners.py -usr/lib/python3.8/asyncio/selector_events.py -usr/lib/python3.8/asyncio/sslproto.py -usr/lib/python3.8/asyncio/staggered.py -usr/lib/python3.8/asyncio/streams.py -usr/lib/python3.8/asyncio/subprocess.py -usr/lib/python3.8/asyncio/tasks.py -usr/lib/python3.8/asyncio/transports.py -usr/lib/python3.8/asyncio/trsock.py -usr/lib/python3.8/asyncio/unix_events.py -usr/lib/python3.8/asyncio/windows_events.py -usr/lib/python3.8/asyncio/windows_utils.py -usr/lib/python3.8/asyncore.py -usr/lib/python3.8/base64.py -usr/lib/python3.8/bdb.py -usr/lib/python3.8/binhex.py -usr/lib/python3.8/bisect.py -usr/lib/python3.8/bz2.py -usr/lib/python3.8/cProfile.py -usr/lib/python3.8/calendar.py -usr/lib/python3.8/cgi.py -usr/lib/python3.8/cgitb.py -usr/lib/python3.8/chunk.py -usr/lib/python3.8/cmd.py -usr/lib/python3.8/code.py -usr/lib/python3.8/codecs.py -usr/lib/python3.8/codeop.py -#usr/lib/python3.8/collections -usr/lib/python3.8/collections/__init__.py -usr/lib/python3.8/collections/abc.py -usr/lib/python3.8/colorsys.py -usr/lib/python3.8/compileall.py -#usr/lib/python3.8/concurrent -usr/lib/python3.8/concurrent/__init__.py -#usr/lib/python3.8/concurrent/futures -usr/lib/python3.8/concurrent/futures/__init__.py -usr/lib/python3.8/concurrent/futures/_base.py -usr/lib/python3.8/concurrent/futures/process.py -usr/lib/python3.8/concurrent/futures/thread.py -#usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu -usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu/Makefile -usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu/Setup -usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu/Setup.local -usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu/config.c -usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu/config.c.in -usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu/install-sh -usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu/libpython3.8.a -usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu/makesetup -usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu/python-config.py -usr/lib/python3.8/config-3.8-xxxMACHINExxx-linux-gnu/python.o -usr/lib/python3.8/configparser.py -usr/lib/python3.8/contextlib.py -usr/lib/python3.8/contextvars.py -usr/lib/python3.8/copy.py -usr/lib/python3.8/copyreg.py -usr/lib/python3.8/crypt.py -usr/lib/python3.8/csv.py -#usr/lib/python3.8/ctypes -usr/lib/python3.8/ctypes/__init__.py -usr/lib/python3.8/ctypes/_aix.py -usr/lib/python3.8/ctypes/_endian.py -#usr/lib/python3.8/ctypes/macholib -usr/lib/python3.8/ctypes/macholib/README.ctypes -usr/lib/python3.8/ctypes/macholib/__init__.py -usr/lib/python3.8/ctypes/macholib/dyld.py -usr/lib/python3.8/ctypes/macholib/dylib.py -usr/lib/python3.8/ctypes/macholib/fetch_macholib -usr/lib/python3.8/ctypes/macholib/fetch_macholib.bat -usr/lib/python3.8/ctypes/macholib/framework.py -#usr/lib/python3.8/ctypes/test -usr/lib/python3.8/ctypes/util.py -usr/lib/python3.8/ctypes/wintypes.py -#usr/lib/python3.8/curses -usr/lib/python3.8/curses/__init__.py -usr/lib/python3.8/curses/ascii.py -usr/lib/python3.8/curses/has_key.py -usr/lib/python3.8/curses/panel.py -usr/lib/python3.8/curses/textpad.py -usr/lib/python3.8/dataclasses.py -usr/lib/python3.8/datetime.py -#usr/lib/python3.8/dbm -usr/lib/python3.8/dbm/__init__.py -usr/lib/python3.8/dbm/dumb.py -usr/lib/python3.8/dbm/gnu.py -usr/lib/python3.8/dbm/ndbm.py -usr/lib/python3.8/decimal.py -usr/lib/python3.8/difflib.py -usr/lib/python3.8/dis.py -#usr/lib/python3.8/distutils -#usr/lib/python3.8/distutils/README -usr/lib/python3.8/distutils/__init__.py -usr/lib/python3.8/distutils/_msvccompiler.py -usr/lib/python3.8/distutils/archive_util.py -usr/lib/python3.8/distutils/bcppcompiler.py -usr/lib/python3.8/distutils/ccompiler.py -usr/lib/python3.8/distutils/cmd.py -#usr/lib/python3.8/distutils/command -usr/lib/python3.8/distutils/command/__init__.py -usr/lib/python3.8/distutils/command/bdist.py -usr/lib/python3.8/distutils/command/bdist_dumb.py -usr/lib/python3.8/distutils/command/bdist_msi.py -usr/lib/python3.8/distutils/command/bdist_rpm.py -usr/lib/python3.8/distutils/command/bdist_wininst.py -usr/lib/python3.8/distutils/command/build.py -usr/lib/python3.8/distutils/command/build_clib.py -usr/lib/python3.8/distutils/command/build_ext.py -usr/lib/python3.8/distutils/command/build_py.py -usr/lib/python3.8/distutils/command/build_scripts.py -usr/lib/python3.8/distutils/command/check.py -usr/lib/python3.8/distutils/command/clean.py -usr/lib/python3.8/distutils/command/command_template -usr/lib/python3.8/distutils/command/config.py -usr/lib/python3.8/distutils/command/install.py -usr/lib/python3.8/distutils/command/install_data.py -usr/lib/python3.8/distutils/command/install_egg_info.py -usr/lib/python3.8/distutils/command/install_headers.py -usr/lib/python3.8/distutils/command/install_lib.py -usr/lib/python3.8/distutils/command/install_scripts.py -usr/lib/python3.8/distutils/command/register.py -usr/lib/python3.8/distutils/command/sdist.py -usr/lib/python3.8/distutils/command/upload.py -usr/lib/python3.8/distutils/command/wininst-10.0-amd64.exe -usr/lib/python3.8/distutils/command/wininst-10.0.exe -usr/lib/python3.8/distutils/command/wininst-14.0-amd64.exe -usr/lib/python3.8/distutils/command/wininst-14.0.exe -usr/lib/python3.8/distutils/command/wininst-6.0.exe -usr/lib/python3.8/distutils/command/wininst-7.1.exe -usr/lib/python3.8/distutils/command/wininst-8.0.exe -usr/lib/python3.8/distutils/command/wininst-9.0-amd64.exe -usr/lib/python3.8/distutils/command/wininst-9.0.exe -usr/lib/python3.8/distutils/config.py -usr/lib/python3.8/distutils/core.py -usr/lib/python3.8/distutils/cygwinccompiler.py -usr/lib/python3.8/distutils/debug.py -usr/lib/python3.8/distutils/dep_util.py -usr/lib/python3.8/distutils/dir_util.py -usr/lib/python3.8/distutils/dist.py -usr/lib/python3.8/distutils/errors.py -usr/lib/python3.8/distutils/extension.py -usr/lib/python3.8/distutils/fancy_getopt.py -usr/lib/python3.8/distutils/file_util.py -usr/lib/python3.8/distutils/filelist.py -usr/lib/python3.8/distutils/log.py -usr/lib/python3.8/distutils/msvc9compiler.py -usr/lib/python3.8/distutils/msvccompiler.py -usr/lib/python3.8/distutils/spawn.py -usr/lib/python3.8/distutils/sysconfig.py -#usr/lib/python3.8/distutils/tests -usr/lib/python3.8/distutils/tests/Setup.sample -usr/lib/python3.8/distutils/tests/__init__.py -usr/lib/python3.8/distutils/tests/includetest.rst -usr/lib/python3.8/distutils/tests/support.py -usr/lib/python3.8/distutils/tests/test_archive_util.py -usr/lib/python3.8/distutils/tests/test_bdist.py -usr/lib/python3.8/distutils/tests/test_bdist_dumb.py -usr/lib/python3.8/distutils/tests/test_bdist_msi.py -usr/lib/python3.8/distutils/tests/test_bdist_rpm.py -usr/lib/python3.8/distutils/tests/test_bdist_wininst.py -usr/lib/python3.8/distutils/tests/test_build.py -usr/lib/python3.8/distutils/tests/test_build_clib.py -usr/lib/python3.8/distutils/tests/test_build_ext.py -usr/lib/python3.8/distutils/tests/test_build_py.py -usr/lib/python3.8/distutils/tests/test_build_scripts.py -usr/lib/python3.8/distutils/tests/test_check.py -usr/lib/python3.8/distutils/tests/test_clean.py -usr/lib/python3.8/distutils/tests/test_cmd.py -usr/lib/python3.8/distutils/tests/test_config.py -usr/lib/python3.8/distutils/tests/test_config_cmd.py -usr/lib/python3.8/distutils/tests/test_core.py -usr/lib/python3.8/distutils/tests/test_cygwinccompiler.py -usr/lib/python3.8/distutils/tests/test_dep_util.py -usr/lib/python3.8/distutils/tests/test_dir_util.py -usr/lib/python3.8/distutils/tests/test_dist.py -usr/lib/python3.8/distutils/tests/test_extension.py -usr/lib/python3.8/distutils/tests/test_file_util.py -usr/lib/python3.8/distutils/tests/test_filelist.py -usr/lib/python3.8/distutils/tests/test_install.py -usr/lib/python3.8/distutils/tests/test_install_data.py -usr/lib/python3.8/distutils/tests/test_install_headers.py -usr/lib/python3.8/distutils/tests/test_install_lib.py -usr/lib/python3.8/distutils/tests/test_install_scripts.py -usr/lib/python3.8/distutils/tests/test_log.py -usr/lib/python3.8/distutils/tests/test_msvc9compiler.py -usr/lib/python3.8/distutils/tests/test_msvccompiler.py -usr/lib/python3.8/distutils/tests/test_register.py -usr/lib/python3.8/distutils/tests/test_sdist.py -usr/lib/python3.8/distutils/tests/test_spawn.py -usr/lib/python3.8/distutils/tests/test_sysconfig.py -usr/lib/python3.8/distutils/tests/test_text_file.py -usr/lib/python3.8/distutils/tests/test_unixccompiler.py -usr/lib/python3.8/distutils/tests/test_upload.py -usr/lib/python3.8/distutils/tests/test_util.py -usr/lib/python3.8/distutils/tests/test_version.py -usr/lib/python3.8/distutils/tests/test_versionpredicate.py -usr/lib/python3.8/distutils/tests/xxmodule.c -usr/lib/python3.8/distutils/text_file.py -usr/lib/python3.8/distutils/unixccompiler.py -usr/lib/python3.8/distutils/util.py -usr/lib/python3.8/distutils/version.py -usr/lib/python3.8/distutils/versionpredicate.py -usr/lib/python3.8/doctest.py -usr/lib/python3.8/dummy_threading.py -#usr/lib/python3.8/email -usr/lib/python3.8/email/__init__.py -usr/lib/python3.8/email/_encoded_words.py -usr/lib/python3.8/email/_header_value_parser.py -usr/lib/python3.8/email/_parseaddr.py -usr/lib/python3.8/email/_policybase.py -usr/lib/python3.8/email/architecture.rst -usr/lib/python3.8/email/base64mime.py -usr/lib/python3.8/email/charset.py -usr/lib/python3.8/email/contentmanager.py -usr/lib/python3.8/email/encoders.py -usr/lib/python3.8/email/errors.py -usr/lib/python3.8/email/feedparser.py -usr/lib/python3.8/email/generator.py -usr/lib/python3.8/email/header.py -usr/lib/python3.8/email/headerregistry.py -usr/lib/python3.8/email/iterators.py -usr/lib/python3.8/email/message.py -#usr/lib/python3.8/email/mime -usr/lib/python3.8/email/mime/__init__.py -usr/lib/python3.8/email/mime/application.py -usr/lib/python3.8/email/mime/audio.py -usr/lib/python3.8/email/mime/base.py -usr/lib/python3.8/email/mime/image.py -usr/lib/python3.8/email/mime/message.py -usr/lib/python3.8/email/mime/multipart.py -usr/lib/python3.8/email/mime/nonmultipart.py -usr/lib/python3.8/email/mime/text.py -usr/lib/python3.8/email/parser.py -usr/lib/python3.8/email/policy.py -usr/lib/python3.8/email/quoprimime.py -usr/lib/python3.8/email/utils.py -#usr/lib/python3.8/encodings -usr/lib/python3.8/encodings/__init__.py -usr/lib/python3.8/encodings/aliases.py -usr/lib/python3.8/encodings/ascii.py -usr/lib/python3.8/encodings/base64_codec.py -usr/lib/python3.8/encodings/big5.py -usr/lib/python3.8/encodings/big5hkscs.py -usr/lib/python3.8/encodings/bz2_codec.py -usr/lib/python3.8/encodings/charmap.py -usr/lib/python3.8/encodings/cp037.py -usr/lib/python3.8/encodings/cp1006.py -usr/lib/python3.8/encodings/cp1026.py -usr/lib/python3.8/encodings/cp1125.py -usr/lib/python3.8/encodings/cp1140.py -usr/lib/python3.8/encodings/cp1250.py -usr/lib/python3.8/encodings/cp1251.py -usr/lib/python3.8/encodings/cp1252.py -usr/lib/python3.8/encodings/cp1253.py -usr/lib/python3.8/encodings/cp1254.py -usr/lib/python3.8/encodings/cp1255.py -usr/lib/python3.8/encodings/cp1256.py -usr/lib/python3.8/encodings/cp1257.py -usr/lib/python3.8/encodings/cp1258.py -usr/lib/python3.8/encodings/cp273.py -usr/lib/python3.8/encodings/cp424.py -usr/lib/python3.8/encodings/cp437.py -usr/lib/python3.8/encodings/cp500.py -usr/lib/python3.8/encodings/cp720.py -usr/lib/python3.8/encodings/cp737.py -usr/lib/python3.8/encodings/cp775.py -usr/lib/python3.8/encodings/cp850.py -usr/lib/python3.8/encodings/cp852.py -usr/lib/python3.8/encodings/cp855.py -usr/lib/python3.8/encodings/cp856.py -usr/lib/python3.8/encodings/cp857.py -usr/lib/python3.8/encodings/cp858.py -usr/lib/python3.8/encodings/cp860.py -usr/lib/python3.8/encodings/cp861.py -usr/lib/python3.8/encodings/cp862.py -usr/lib/python3.8/encodings/cp863.py -usr/lib/python3.8/encodings/cp864.py -usr/lib/python3.8/encodings/cp865.py -usr/lib/python3.8/encodings/cp866.py -usr/lib/python3.8/encodings/cp869.py -usr/lib/python3.8/encodings/cp874.py -usr/lib/python3.8/encodings/cp875.py -usr/lib/python3.8/encodings/cp932.py -usr/lib/python3.8/encodings/cp949.py -usr/lib/python3.8/encodings/cp950.py -usr/lib/python3.8/encodings/euc_jis_2004.py -usr/lib/python3.8/encodings/euc_jisx0213.py -usr/lib/python3.8/encodings/euc_jp.py -usr/lib/python3.8/encodings/euc_kr.py -usr/lib/python3.8/encodings/gb18030.py -usr/lib/python3.8/encodings/gb2312.py -usr/lib/python3.8/encodings/gbk.py -usr/lib/python3.8/encodings/hex_codec.py -usr/lib/python3.8/encodings/hp_roman8.py -usr/lib/python3.8/encodings/hz.py -usr/lib/python3.8/encodings/idna.py -usr/lib/python3.8/encodings/iso2022_jp.py -usr/lib/python3.8/encodings/iso2022_jp_1.py -usr/lib/python3.8/encodings/iso2022_jp_2.py -usr/lib/python3.8/encodings/iso2022_jp_2004.py -usr/lib/python3.8/encodings/iso2022_jp_3.py -usr/lib/python3.8/encodings/iso2022_jp_ext.py -usr/lib/python3.8/encodings/iso2022_kr.py -usr/lib/python3.8/encodings/iso8859_1.py -usr/lib/python3.8/encodings/iso8859_10.py -usr/lib/python3.8/encodings/iso8859_11.py -usr/lib/python3.8/encodings/iso8859_13.py -usr/lib/python3.8/encodings/iso8859_14.py -usr/lib/python3.8/encodings/iso8859_15.py -usr/lib/python3.8/encodings/iso8859_16.py -usr/lib/python3.8/encodings/iso8859_2.py -usr/lib/python3.8/encodings/iso8859_3.py -usr/lib/python3.8/encodings/iso8859_4.py -usr/lib/python3.8/encodings/iso8859_5.py -usr/lib/python3.8/encodings/iso8859_6.py -usr/lib/python3.8/encodings/iso8859_7.py -usr/lib/python3.8/encodings/iso8859_8.py -usr/lib/python3.8/encodings/iso8859_9.py -usr/lib/python3.8/encodings/johab.py -usr/lib/python3.8/encodings/koi8_r.py -usr/lib/python3.8/encodings/koi8_t.py -usr/lib/python3.8/encodings/koi8_u.py -usr/lib/python3.8/encodings/kz1048.py -usr/lib/python3.8/encodings/latin_1.py -usr/lib/python3.8/encodings/mac_arabic.py -usr/lib/python3.8/encodings/mac_centeuro.py -usr/lib/python3.8/encodings/mac_croatian.py -usr/lib/python3.8/encodings/mac_cyrillic.py -usr/lib/python3.8/encodings/mac_farsi.py -usr/lib/python3.8/encodings/mac_greek.py -usr/lib/python3.8/encodings/mac_iceland.py -usr/lib/python3.8/encodings/mac_latin2.py -usr/lib/python3.8/encodings/mac_roman.py -usr/lib/python3.8/encodings/mac_romanian.py -usr/lib/python3.8/encodings/mac_turkish.py -usr/lib/python3.8/encodings/mbcs.py -usr/lib/python3.8/encodings/oem.py -usr/lib/python3.8/encodings/palmos.py -usr/lib/python3.8/encodings/ptcp154.py -usr/lib/python3.8/encodings/punycode.py -usr/lib/python3.8/encodings/quopri_codec.py -usr/lib/python3.8/encodings/raw_unicode_escape.py -usr/lib/python3.8/encodings/rot_13.py -usr/lib/python3.8/encodings/shift_jis.py -usr/lib/python3.8/encodings/shift_jis_2004.py -usr/lib/python3.8/encodings/shift_jisx0213.py -usr/lib/python3.8/encodings/tis_620.py -usr/lib/python3.8/encodings/undefined.py -usr/lib/python3.8/encodings/unicode_escape.py -usr/lib/python3.8/encodings/utf_16.py -usr/lib/python3.8/encodings/utf_16_be.py -usr/lib/python3.8/encodings/utf_16_le.py -usr/lib/python3.8/encodings/utf_32.py -usr/lib/python3.8/encodings/utf_32_be.py -usr/lib/python3.8/encodings/utf_32_le.py -usr/lib/python3.8/encodings/utf_7.py -usr/lib/python3.8/encodings/utf_8.py -usr/lib/python3.8/encodings/utf_8_sig.py -usr/lib/python3.8/encodings/uu_codec.py -usr/lib/python3.8/encodings/zlib_codec.py -usr/lib/python3.8/ensurepip -usr/lib/python3.8/ensurepip/__init__.py -usr/lib/python3.8/ensurepip/__main__.py -usr/lib/python3.8/ensurepip/_bundled -usr/lib/python3.8/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl -usr/lib/python3.8/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl -usr/lib/python3.8/ensurepip/_uninstall.py -usr/lib/python3.8/enum.py -usr/lib/python3.8/filecmp.py -usr/lib/python3.8/fileinput.py -usr/lib/python3.8/fnmatch.py -usr/lib/python3.8/formatter.py -usr/lib/python3.8/fractions.py -usr/lib/python3.8/ftplib.py -usr/lib/python3.8/functools.py -usr/lib/python3.8/genericpath.py -usr/lib/python3.8/getopt.py -usr/lib/python3.8/getpass.py -usr/lib/python3.8/gettext.py -usr/lib/python3.8/glob.py -usr/lib/python3.8/gzip.py -usr/lib/python3.8/hashlib.py -usr/lib/python3.8/heapq.py -usr/lib/python3.8/hmac.py -#usr/lib/python3.8/html -usr/lib/python3.8/html/__init__.py -usr/lib/python3.8/html/entities.py -usr/lib/python3.8/html/parser.py -#usr/lib/python3.8/http -usr/lib/python3.8/http/__init__.py -usr/lib/python3.8/http/client.py -usr/lib/python3.8/http/cookiejar.py -usr/lib/python3.8/http/cookies.py -usr/lib/python3.8/http/server.py -#usr/lib/python3.8/idlelib -usr/lib/python3.8/idlelib/CREDITS.txt -usr/lib/python3.8/idlelib/ChangeLog -usr/lib/python3.8/idlelib/HISTORY.txt -usr/lib/python3.8/idlelib/Icons -usr/lib/python3.8/idlelib/Icons/README.txt -usr/lib/python3.8/idlelib/Icons/folder.gif -usr/lib/python3.8/idlelib/Icons/idle.ico -usr/lib/python3.8/idlelib/Icons/idle_16.gif -usr/lib/python3.8/idlelib/Icons/idle_16.png -usr/lib/python3.8/idlelib/Icons/idle_256.png -usr/lib/python3.8/idlelib/Icons/idle_32.gif -usr/lib/python3.8/idlelib/Icons/idle_32.png -usr/lib/python3.8/idlelib/Icons/idle_48.gif -usr/lib/python3.8/idlelib/Icons/idle_48.png -usr/lib/python3.8/idlelib/Icons/minusnode.gif -usr/lib/python3.8/idlelib/Icons/openfolder.gif -usr/lib/python3.8/idlelib/Icons/plusnode.gif -usr/lib/python3.8/idlelib/Icons/python.gif -usr/lib/python3.8/idlelib/Icons/tk.gif -usr/lib/python3.8/idlelib/NEWS.txt -usr/lib/python3.8/idlelib/NEWS2x.txt -usr/lib/python3.8/idlelib/README.txt -usr/lib/python3.8/idlelib/TODO.txt -usr/lib/python3.8/idlelib/__init__.py -usr/lib/python3.8/idlelib/__main__.py -usr/lib/python3.8/idlelib/autocomplete.py -usr/lib/python3.8/idlelib/autocomplete_w.py -usr/lib/python3.8/idlelib/autoexpand.py -usr/lib/python3.8/idlelib/browser.py -usr/lib/python3.8/idlelib/calltip.py -usr/lib/python3.8/idlelib/calltip_w.py -usr/lib/python3.8/idlelib/codecontext.py -usr/lib/python3.8/idlelib/colorizer.py -usr/lib/python3.8/idlelib/config-extensions.def -usr/lib/python3.8/idlelib/config-highlight.def -usr/lib/python3.8/idlelib/config-keys.def -usr/lib/python3.8/idlelib/config-main.def -usr/lib/python3.8/idlelib/config.py -usr/lib/python3.8/idlelib/config_key.py -usr/lib/python3.8/idlelib/configdialog.py -usr/lib/python3.8/idlelib/debugger.py -usr/lib/python3.8/idlelib/debugger_r.py -usr/lib/python3.8/idlelib/debugobj.py -usr/lib/python3.8/idlelib/debugobj_r.py -usr/lib/python3.8/idlelib/delegator.py -usr/lib/python3.8/idlelib/dynoption.py -usr/lib/python3.8/idlelib/editor.py -usr/lib/python3.8/idlelib/extend.txt -usr/lib/python3.8/idlelib/filelist.py -usr/lib/python3.8/idlelib/format.py -usr/lib/python3.8/idlelib/grep.py -usr/lib/python3.8/idlelib/help.html -usr/lib/python3.8/idlelib/help.py -usr/lib/python3.8/idlelib/help_about.py -usr/lib/python3.8/idlelib/history.py -usr/lib/python3.8/idlelib/hyperparser.py -usr/lib/python3.8/idlelib/idle.bat -usr/lib/python3.8/idlelib/idle.py -usr/lib/python3.8/idlelib/idle.pyw -usr/lib/python3.8/idlelib/idle_test -usr/lib/python3.8/idlelib/idle_test/README.txt -usr/lib/python3.8/idlelib/idle_test/__init__.py -usr/lib/python3.8/idlelib/idle_test/htest.py -usr/lib/python3.8/idlelib/idle_test/mock_idle.py -usr/lib/python3.8/idlelib/idle_test/mock_tk.py -usr/lib/python3.8/idlelib/idle_test/template.py -usr/lib/python3.8/idlelib/idle_test/test_autocomplete.py -usr/lib/python3.8/idlelib/idle_test/test_autocomplete_w.py -usr/lib/python3.8/idlelib/idle_test/test_autoexpand.py -usr/lib/python3.8/idlelib/idle_test/test_browser.py -usr/lib/python3.8/idlelib/idle_test/test_calltip.py -usr/lib/python3.8/idlelib/idle_test/test_calltip_w.py -usr/lib/python3.8/idlelib/idle_test/test_codecontext.py -usr/lib/python3.8/idlelib/idle_test/test_colorizer.py -usr/lib/python3.8/idlelib/idle_test/test_config.py -usr/lib/python3.8/idlelib/idle_test/test_config_key.py -usr/lib/python3.8/idlelib/idle_test/test_configdialog.py -usr/lib/python3.8/idlelib/idle_test/test_debugger.py -usr/lib/python3.8/idlelib/idle_test/test_debugger_r.py -usr/lib/python3.8/idlelib/idle_test/test_debugobj.py -usr/lib/python3.8/idlelib/idle_test/test_debugobj_r.py -usr/lib/python3.8/idlelib/idle_test/test_delegator.py -usr/lib/python3.8/idlelib/idle_test/test_editmenu.py -usr/lib/python3.8/idlelib/idle_test/test_editor.py -usr/lib/python3.8/idlelib/idle_test/test_filelist.py -usr/lib/python3.8/idlelib/idle_test/test_format.py -usr/lib/python3.8/idlelib/idle_test/test_grep.py -usr/lib/python3.8/idlelib/idle_test/test_help.py -usr/lib/python3.8/idlelib/idle_test/test_help_about.py -usr/lib/python3.8/idlelib/idle_test/test_history.py -usr/lib/python3.8/idlelib/idle_test/test_hyperparser.py -usr/lib/python3.8/idlelib/idle_test/test_iomenu.py -usr/lib/python3.8/idlelib/idle_test/test_macosx.py -usr/lib/python3.8/idlelib/idle_test/test_mainmenu.py -usr/lib/python3.8/idlelib/idle_test/test_multicall.py -usr/lib/python3.8/idlelib/idle_test/test_outwin.py -usr/lib/python3.8/idlelib/idle_test/test_parenmatch.py -usr/lib/python3.8/idlelib/idle_test/test_pathbrowser.py -usr/lib/python3.8/idlelib/idle_test/test_percolator.py -usr/lib/python3.8/idlelib/idle_test/test_pyparse.py -usr/lib/python3.8/idlelib/idle_test/test_pyshell.py -usr/lib/python3.8/idlelib/idle_test/test_query.py -usr/lib/python3.8/idlelib/idle_test/test_redirector.py -usr/lib/python3.8/idlelib/idle_test/test_replace.py -usr/lib/python3.8/idlelib/idle_test/test_rpc.py -usr/lib/python3.8/idlelib/idle_test/test_run.py -usr/lib/python3.8/idlelib/idle_test/test_runscript.py -usr/lib/python3.8/idlelib/idle_test/test_scrolledlist.py -usr/lib/python3.8/idlelib/idle_test/test_search.py -usr/lib/python3.8/idlelib/idle_test/test_searchbase.py -usr/lib/python3.8/idlelib/idle_test/test_searchengine.py -usr/lib/python3.8/idlelib/idle_test/test_sidebar.py -usr/lib/python3.8/idlelib/idle_test/test_squeezer.py -usr/lib/python3.8/idlelib/idle_test/test_stackviewer.py -usr/lib/python3.8/idlelib/idle_test/test_statusbar.py -usr/lib/python3.8/idlelib/idle_test/test_text.py -usr/lib/python3.8/idlelib/idle_test/test_textview.py -usr/lib/python3.8/idlelib/idle_test/test_tooltip.py -usr/lib/python3.8/idlelib/idle_test/test_tree.py -usr/lib/python3.8/idlelib/idle_test/test_undo.py -usr/lib/python3.8/idlelib/idle_test/test_warning.py -usr/lib/python3.8/idlelib/idle_test/test_window.py -usr/lib/python3.8/idlelib/idle_test/test_zoomheight.py -usr/lib/python3.8/idlelib/iomenu.py -usr/lib/python3.8/idlelib/macosx.py -usr/lib/python3.8/idlelib/mainmenu.py -usr/lib/python3.8/idlelib/multicall.py -usr/lib/python3.8/idlelib/outwin.py -usr/lib/python3.8/idlelib/parenmatch.py -usr/lib/python3.8/idlelib/pathbrowser.py -usr/lib/python3.8/idlelib/percolator.py -usr/lib/python3.8/idlelib/pyparse.py -usr/lib/python3.8/idlelib/pyshell.py -usr/lib/python3.8/idlelib/query.py -usr/lib/python3.8/idlelib/redirector.py -usr/lib/python3.8/idlelib/replace.py -usr/lib/python3.8/idlelib/rpc.py -usr/lib/python3.8/idlelib/run.py -usr/lib/python3.8/idlelib/runscript.py -usr/lib/python3.8/idlelib/scrolledlist.py -usr/lib/python3.8/idlelib/search.py -usr/lib/python3.8/idlelib/searchbase.py -usr/lib/python3.8/idlelib/searchengine.py -usr/lib/python3.8/idlelib/sidebar.py -usr/lib/python3.8/idlelib/squeezer.py -usr/lib/python3.8/idlelib/stackviewer.py -usr/lib/python3.8/idlelib/statusbar.py -usr/lib/python3.8/idlelib/textview.py -usr/lib/python3.8/idlelib/tooltip.py -usr/lib/python3.8/idlelib/tree.py -usr/lib/python3.8/idlelib/undo.py -usr/lib/python3.8/idlelib/window.py -usr/lib/python3.8/idlelib/zoomheight.py -usr/lib/python3.8/idlelib/zzdummy.py -usr/lib/python3.8/imaplib.py -usr/lib/python3.8/imghdr.py -usr/lib/python3.8/imp.py -#usr/lib/python3.8/importlib -usr/lib/python3.8/importlib/__init__.py -usr/lib/python3.8/importlib/_bootstrap.py -usr/lib/python3.8/importlib/_bootstrap_external.py -usr/lib/python3.8/importlib/abc.py -usr/lib/python3.8/importlib/machinery.py -usr/lib/python3.8/importlib/metadata.py -usr/lib/python3.8/importlib/resources.py -usr/lib/python3.8/importlib/util.py -usr/lib/python3.8/inspect.py -usr/lib/python3.8/io.py -usr/lib/python3.8/ipaddress.py -#usr/lib/python3.8/json -usr/lib/python3.8/json/__init__.py -usr/lib/python3.8/json/decoder.py -usr/lib/python3.8/json/encoder.py -usr/lib/python3.8/json/scanner.py -usr/lib/python3.8/json/tool.py -usr/lib/python3.8/keyword.py -#usr/lib/python3.8/lib-dynload -usr/lib/python3.8/lib-dynload/_asyncio.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_bisect.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_blake2.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_bz2.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_codecs_cn.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_codecs_hk.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_codecs_iso2022.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_codecs_jp.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_codecs_kr.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_codecs_tw.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_contextvars.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_crypt.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_csv.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_ctypes.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_ctypes_test.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_curses.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_curses_panel.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_datetime.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_dbm.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_decimal.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_elementtree.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_gdbm.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_hashlib.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_heapq.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_json.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_lsprof.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_lzma.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_md5.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_multibytecodec.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_multiprocessing.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_opcode.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_pickle.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_posixshmem.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_posixsubprocess.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_queue.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_random.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_sha1.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_sha256.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_sha3.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_sha512.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_socket.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_sqlite3.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_ssl.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_statistics.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_struct.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_testbuffer.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_testcapi.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_testimportmultiple.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_testinternalcapi.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_testmultiphase.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_uuid.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_xxsubinterpreters.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/_xxtestfuzz.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/array.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/audioop.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/binascii.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/cmath.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/fcntl.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/grp.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/math.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/mmap.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/ossaudiodev.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/parser.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/pyexpat.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/readline.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/resource.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/select.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/spwd.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/syslog.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/termios.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/unicodedata.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/xxlimited.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/lib-dynload/zlib.cpython-38-xxxMACHINExxx-linux-gnu.so -#usr/lib/python3.8/lib2to3 -usr/lib/python3.8/lib2to3/Grammar.txt -usr/lib/python3.8/lib2to3/Grammar3.8.7.final.0.pickle -usr/lib/python3.8/lib2to3/PatternGrammar.txt -usr/lib/python3.8/lib2to3/PatternGrammar3.8.7.final.0.pickle -usr/lib/python3.8/lib2to3/__init__.py -usr/lib/python3.8/lib2to3/__main__.py -usr/lib/python3.8/lib2to3/btm_matcher.py -usr/lib/python3.8/lib2to3/btm_utils.py -usr/lib/python3.8/lib2to3/fixer_base.py -usr/lib/python3.8/lib2to3/fixer_util.py -#usr/lib/python3.8/lib2to3/fixes -usr/lib/python3.8/lib2to3/fixes/__init__.py -usr/lib/python3.8/lib2to3/fixes/fix_apply.py -usr/lib/python3.8/lib2to3/fixes/fix_asserts.py -usr/lib/python3.8/lib2to3/fixes/fix_basestring.py -usr/lib/python3.8/lib2to3/fixes/fix_buffer.py -usr/lib/python3.8/lib2to3/fixes/fix_dict.py -usr/lib/python3.8/lib2to3/fixes/fix_except.py -usr/lib/python3.8/lib2to3/fixes/fix_exec.py -usr/lib/python3.8/lib2to3/fixes/fix_execfile.py -usr/lib/python3.8/lib2to3/fixes/fix_exitfunc.py -usr/lib/python3.8/lib2to3/fixes/fix_filter.py -usr/lib/python3.8/lib2to3/fixes/fix_funcattrs.py -usr/lib/python3.8/lib2to3/fixes/fix_future.py -usr/lib/python3.8/lib2to3/fixes/fix_getcwdu.py -usr/lib/python3.8/lib2to3/fixes/fix_has_key.py -usr/lib/python3.8/lib2to3/fixes/fix_idioms.py -usr/lib/python3.8/lib2to3/fixes/fix_import.py -usr/lib/python3.8/lib2to3/fixes/fix_imports.py -usr/lib/python3.8/lib2to3/fixes/fix_imports2.py -usr/lib/python3.8/lib2to3/fixes/fix_input.py -usr/lib/python3.8/lib2to3/fixes/fix_intern.py -usr/lib/python3.8/lib2to3/fixes/fix_isinstance.py -usr/lib/python3.8/lib2to3/fixes/fix_itertools.py -usr/lib/python3.8/lib2to3/fixes/fix_itertools_imports.py -usr/lib/python3.8/lib2to3/fixes/fix_long.py -usr/lib/python3.8/lib2to3/fixes/fix_map.py -usr/lib/python3.8/lib2to3/fixes/fix_metaclass.py -usr/lib/python3.8/lib2to3/fixes/fix_methodattrs.py -usr/lib/python3.8/lib2to3/fixes/fix_ne.py -usr/lib/python3.8/lib2to3/fixes/fix_next.py -usr/lib/python3.8/lib2to3/fixes/fix_nonzero.py -usr/lib/python3.8/lib2to3/fixes/fix_numliterals.py -usr/lib/python3.8/lib2to3/fixes/fix_operator.py -usr/lib/python3.8/lib2to3/fixes/fix_paren.py -usr/lib/python3.8/lib2to3/fixes/fix_print.py -usr/lib/python3.8/lib2to3/fixes/fix_raise.py -usr/lib/python3.8/lib2to3/fixes/fix_raw_input.py -usr/lib/python3.8/lib2to3/fixes/fix_reduce.py -usr/lib/python3.8/lib2to3/fixes/fix_reload.py -usr/lib/python3.8/lib2to3/fixes/fix_renames.py -usr/lib/python3.8/lib2to3/fixes/fix_repr.py -usr/lib/python3.8/lib2to3/fixes/fix_set_literal.py -usr/lib/python3.8/lib2to3/fixes/fix_standarderror.py -usr/lib/python3.8/lib2to3/fixes/fix_sys_exc.py -usr/lib/python3.8/lib2to3/fixes/fix_throw.py -usr/lib/python3.8/lib2to3/fixes/fix_tuple_params.py -usr/lib/python3.8/lib2to3/fixes/fix_types.py -usr/lib/python3.8/lib2to3/fixes/fix_unicode.py -usr/lib/python3.8/lib2to3/fixes/fix_urllib.py -usr/lib/python3.8/lib2to3/fixes/fix_ws_comma.py -usr/lib/python3.8/lib2to3/fixes/fix_xrange.py -usr/lib/python3.8/lib2to3/fixes/fix_xreadlines.py -usr/lib/python3.8/lib2to3/fixes/fix_zip.py -usr/lib/python3.8/lib2to3/main.py -usr/lib/python3.8/lib2to3/patcomp.py -#usr/lib/python3.8/lib2to3/pgen2 -usr/lib/python3.8/lib2to3/pgen2/__init__.py -usr/lib/python3.8/lib2to3/pgen2/conv.py -usr/lib/python3.8/lib2to3/pgen2/driver.py -usr/lib/python3.8/lib2to3/pgen2/grammar.py -usr/lib/python3.8/lib2to3/pgen2/literals.py -usr/lib/python3.8/lib2to3/pgen2/parse.py -usr/lib/python3.8/lib2to3/pgen2/pgen.py -usr/lib/python3.8/lib2to3/pgen2/token.py -usr/lib/python3.8/lib2to3/pgen2/tokenize.py -usr/lib/python3.8/lib2to3/pygram.py -usr/lib/python3.8/lib2to3/pytree.py -usr/lib/python3.8/lib2to3/refactor.py -usr/lib/python3.8/lib2to3/tests -usr/lib/python3.8/lib2to3/tests/__init__.py -usr/lib/python3.8/lib2to3/tests/__main__.py -usr/lib/python3.8/lib2to3/tests/data -usr/lib/python3.8/lib2to3/tests/data/README -usr/lib/python3.8/lib2to3/tests/data/bom.py -usr/lib/python3.8/lib2to3/tests/data/crlf.py -usr/lib/python3.8/lib2to3/tests/data/different_encoding.py -usr/lib/python3.8/lib2to3/tests/data/false_encoding.py -usr/lib/python3.8/lib2to3/tests/data/fixers -usr/lib/python3.8/lib2to3/tests/data/fixers/bad_order.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/__init__.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/fix_explicit.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/fix_first.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/fix_last.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/fix_parrot.py -usr/lib/python3.8/lib2to3/tests/data/fixers/myfixes/fix_preorder.py -usr/lib/python3.8/lib2to3/tests/data/fixers/no_fixer_cls.py -usr/lib/python3.8/lib2to3/tests/data/fixers/parrot_example.py -usr/lib/python3.8/lib2to3/tests/data/infinite_recursion.py -usr/lib/python3.8/lib2to3/tests/data/py2_test_grammar.py -usr/lib/python3.8/lib2to3/tests/data/py3_test_grammar.py -usr/lib/python3.8/lib2to3/tests/pytree_idempotency.py -usr/lib/python3.8/lib2to3/tests/support.py -usr/lib/python3.8/lib2to3/tests/test_all_fixers.py -usr/lib/python3.8/lib2to3/tests/test_fixers.py -usr/lib/python3.8/lib2to3/tests/test_main.py -usr/lib/python3.8/lib2to3/tests/test_parser.py -usr/lib/python3.8/lib2to3/tests/test_pytree.py -usr/lib/python3.8/lib2to3/tests/test_refactor.py -usr/lib/python3.8/lib2to3/tests/test_util.py -usr/lib/python3.8/linecache.py -usr/lib/python3.8/locale.py -#usr/lib/python3.8/logging -usr/lib/python3.8/logging/__init__.py -usr/lib/python3.8/logging/config.py -usr/lib/python3.8/logging/handlers.py -usr/lib/python3.8/lzma.py -usr/lib/python3.8/mailbox.py -usr/lib/python3.8/mailcap.py -usr/lib/python3.8/mimetypes.py -usr/lib/python3.8/modulefinder.py -#usr/lib/python3.8/multiprocessing -usr/lib/python3.8/multiprocessing/__init__.py -usr/lib/python3.8/multiprocessing/connection.py -usr/lib/python3.8/multiprocessing/context.py -#usr/lib/python3.8/multiprocessing/dummy -usr/lib/python3.8/multiprocessing/dummy/__init__.py -usr/lib/python3.8/multiprocessing/dummy/connection.py -usr/lib/python3.8/multiprocessing/forkserver.py -usr/lib/python3.8/multiprocessing/heap.py -usr/lib/python3.8/multiprocessing/managers.py -usr/lib/python3.8/multiprocessing/pool.py -usr/lib/python3.8/multiprocessing/popen_fork.py -usr/lib/python3.8/multiprocessing/popen_forkserver.py -usr/lib/python3.8/multiprocessing/popen_spawn_posix.py -usr/lib/python3.8/multiprocessing/popen_spawn_win32.py -usr/lib/python3.8/multiprocessing/process.py -usr/lib/python3.8/multiprocessing/queues.py -usr/lib/python3.8/multiprocessing/reduction.py -usr/lib/python3.8/multiprocessing/resource_sharer.py -usr/lib/python3.8/multiprocessing/resource_tracker.py -usr/lib/python3.8/multiprocessing/shared_memory.py -usr/lib/python3.8/multiprocessing/sharedctypes.py -usr/lib/python3.8/multiprocessing/spawn.py -usr/lib/python3.8/multiprocessing/synchronize.py -usr/lib/python3.8/multiprocessing/util.py -usr/lib/python3.8/netrc.py -usr/lib/python3.8/nntplib.py -usr/lib/python3.8/ntpath.py -usr/lib/python3.8/nturl2path.py -usr/lib/python3.8/numbers.py -usr/lib/python3.8/opcode.py -usr/lib/python3.8/operator.py -usr/lib/python3.8/optparse.py -usr/lib/python3.8/os.py -usr/lib/python3.8/pathlib.py -usr/lib/python3.8/pdb.py -usr/lib/python3.8/pickle.py -usr/lib/python3.8/pickletools.py -usr/lib/python3.8/pipes.py -usr/lib/python3.8/pkgutil.py -usr/lib/python3.8/platform.py -usr/lib/python3.8/plistlib.py -usr/lib/python3.8/poplib.py -usr/lib/python3.8/posixpath.py -usr/lib/python3.8/pprint.py -usr/lib/python3.8/profile.py -usr/lib/python3.8/pstats.py -usr/lib/python3.8/pty.py -usr/lib/python3.8/py_compile.py -usr/lib/python3.8/pyclbr.py -usr/lib/python3.8/pydoc.py -#usr/lib/python3.8/pydoc_data -usr/lib/python3.8/pydoc_data/__init__.py -usr/lib/python3.8/pydoc_data/_pydoc.css -usr/lib/python3.8/pydoc_data/topics.py -usr/lib/python3.8/queue.py -usr/lib/python3.8/quopri.py -usr/lib/python3.8/random.py -usr/lib/python3.8/re.py -usr/lib/python3.8/reprlib.py -usr/lib/python3.8/rlcompleter.py -usr/lib/python3.8/runpy.py -usr/lib/python3.8/sched.py -usr/lib/python3.8/secrets.py -usr/lib/python3.8/selectors.py -usr/lib/python3.8/shelve.py -usr/lib/python3.8/shlex.py -usr/lib/python3.8/shutil.py -usr/lib/python3.8/signal.py -#usr/lib/python3.8/site-packages -usr/lib/python3.8/site-packages/README.txt -usr/lib/python3.8/site-packages/easy_install.py -#usr/lib/python3.8/site-packages/pip -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/INSTALLER -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/LICENSE.txt -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/METADATA -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/RECORD -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/REQUESTED -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/WHEEL -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/entry_points.txt -usr/lib/python3.8/site-packages/pip-20.2.3.dist-info/top_level.txt -usr/lib/python3.8/site-packages/pip/__init__.py -usr/lib/python3.8/site-packages/pip/__main__.py -#usr/lib/python3.8/site-packages/pip/_internal -usr/lib/python3.8/site-packages/pip/_internal/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/build_env.py -usr/lib/python3.8/site-packages/pip/_internal/cache.py -#usr/lib/python3.8/site-packages/pip/_internal/cli -usr/lib/python3.8/site-packages/pip/_internal/cli/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py -usr/lib/python3.8/site-packages/pip/_internal/cli/base_command.py -usr/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py -usr/lib/python3.8/site-packages/pip/_internal/cli/command_context.py -usr/lib/python3.8/site-packages/pip/_internal/cli/main.py -usr/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py -usr/lib/python3.8/site-packages/pip/_internal/cli/parser.py -usr/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py -usr/lib/python3.8/site-packages/pip/_internal/cli/req_command.py -usr/lib/python3.8/site-packages/pip/_internal/cli/spinners.py -usr/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py -#usr/lib/python3.8/site-packages/pip/_internal/commands -usr/lib/python3.8/site-packages/pip/_internal/commands/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/commands/cache.py -usr/lib/python3.8/site-packages/pip/_internal/commands/check.py -usr/lib/python3.8/site-packages/pip/_internal/commands/completion.py -usr/lib/python3.8/site-packages/pip/_internal/commands/configuration.py -usr/lib/python3.8/site-packages/pip/_internal/commands/debug.py -usr/lib/python3.8/site-packages/pip/_internal/commands/download.py -usr/lib/python3.8/site-packages/pip/_internal/commands/freeze.py -usr/lib/python3.8/site-packages/pip/_internal/commands/hash.py -usr/lib/python3.8/site-packages/pip/_internal/commands/help.py -usr/lib/python3.8/site-packages/pip/_internal/commands/install.py -usr/lib/python3.8/site-packages/pip/_internal/commands/list.py -usr/lib/python3.8/site-packages/pip/_internal/commands/search.py -usr/lib/python3.8/site-packages/pip/_internal/commands/show.py -usr/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py -usr/lib/python3.8/site-packages/pip/_internal/commands/wheel.py -usr/lib/python3.8/site-packages/pip/_internal/configuration.py -#usr/lib/python3.8/site-packages/pip/_internal/distributions -usr/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/distributions/base.py -usr/lib/python3.8/site-packages/pip/_internal/distributions/installed.py -usr/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py -usr/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py -usr/lib/python3.8/site-packages/pip/_internal/exceptions.py -usr/lib/python3.8/site-packages/pip/_internal/index -usr/lib/python3.8/site-packages/pip/_internal/index/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/index/collector.py -usr/lib/python3.8/site-packages/pip/_internal/index/package_finder.py -usr/lib/python3.8/site-packages/pip/_internal/locations.py -usr/lib/python3.8/site-packages/pip/_internal/main.py -#usr/lib/python3.8/site-packages/pip/_internal/models -usr/lib/python3.8/site-packages/pip/_internal/models/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/models/candidate.py -usr/lib/python3.8/site-packages/pip/_internal/models/direct_url.py -usr/lib/python3.8/site-packages/pip/_internal/models/format_control.py -usr/lib/python3.8/site-packages/pip/_internal/models/index.py -usr/lib/python3.8/site-packages/pip/_internal/models/link.py -usr/lib/python3.8/site-packages/pip/_internal/models/scheme.py -usr/lib/python3.8/site-packages/pip/_internal/models/search_scope.py -usr/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py -usr/lib/python3.8/site-packages/pip/_internal/models/target_python.py -usr/lib/python3.8/site-packages/pip/_internal/models/wheel.py -usr/lib/python3.8/site-packages/pip/_internal/network -usr/lib/python3.8/site-packages/pip/_internal/network/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/network/auth.py -usr/lib/python3.8/site-packages/pip/_internal/network/cache.py -usr/lib/python3.8/site-packages/pip/_internal/network/download.py -usr/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py -usr/lib/python3.8/site-packages/pip/_internal/network/session.py -usr/lib/python3.8/site-packages/pip/_internal/network/utils.py -usr/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py -#usr/lib/python3.8/site-packages/pip/_internal/operations -usr/lib/python3.8/site-packages/pip/_internal/operations/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/operations/build -usr/lib/python3.8/site-packages/pip/_internal/operations/build/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/operations/build/metadata.py -usr/lib/python3.8/site-packages/pip/_internal/operations/build/metadata_legacy.py -usr/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py -usr/lib/python3.8/site-packages/pip/_internal/operations/build/wheel_legacy.py -usr/lib/python3.8/site-packages/pip/_internal/operations/check.py -usr/lib/python3.8/site-packages/pip/_internal/operations/freeze.py -usr/lib/python3.8/site-packages/pip/_internal/operations/install -usr/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/operations/install/editable_legacy.py -usr/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py -usr/lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py -usr/lib/python3.8/site-packages/pip/_internal/operations/prepare.py -usr/lib/python3.8/site-packages/pip/_internal/pyproject.py -#usr/lib/python3.8/site-packages/pip/_internal/req -usr/lib/python3.8/site-packages/pip/_internal/req/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/req/constructors.py -usr/lib/python3.8/site-packages/pip/_internal/req/req_file.py -usr/lib/python3.8/site-packages/pip/_internal/req/req_install.py -usr/lib/python3.8/site-packages/pip/_internal/req/req_set.py -usr/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py -usr/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py -usr/lib/python3.8/site-packages/pip/_internal/resolution -usr/lib/python3.8/site-packages/pip/_internal/resolution/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/base.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/legacy -usr/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/provider.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/requirements.py -usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py -usr/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py -#usr/lib/python3.8/site-packages/pip/_internal/utils -usr/lib/python3.8/site-packages/pip/_internal/utils/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/utils/appdirs.py -usr/lib/python3.8/site-packages/pip/_internal/utils/compat.py -usr/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py -usr/lib/python3.8/site-packages/pip/_internal/utils/datetime.py -usr/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py -usr/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py -usr/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py -usr/lib/python3.8/site-packages/pip/_internal/utils/encoding.py -usr/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py -usr/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py -usr/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py -usr/lib/python3.8/site-packages/pip/_internal/utils/glibc.py -usr/lib/python3.8/site-packages/pip/_internal/utils/hashes.py -usr/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py -usr/lib/python3.8/site-packages/pip/_internal/utils/logging.py -usr/lib/python3.8/site-packages/pip/_internal/utils/misc.py -usr/lib/python3.8/site-packages/pip/_internal/utils/models.py -usr/lib/python3.8/site-packages/pip/_internal/utils/packaging.py -usr/lib/python3.8/site-packages/pip/_internal/utils/parallel.py -usr/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py -usr/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py -usr/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py -usr/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py -usr/lib/python3.8/site-packages/pip/_internal/utils/typing.py -usr/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py -usr/lib/python3.8/site-packages/pip/_internal/utils/urls.py -usr/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py -usr/lib/python3.8/site-packages/pip/_internal/utils/wheel.py -#usr/lib/python3.8/site-packages/pip/_internal/vcs -usr/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py -usr/lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py -usr/lib/python3.8/site-packages/pip/_internal/vcs/git.py -usr/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py -usr/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py -usr/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py -usr/lib/python3.8/site-packages/pip/_internal/wheel_builder.py -usr/lib/python3.8/site-packages/pip/_vendor -usr/lib/python3.8/site-packages/pip/_vendor/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/appdirs.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py -usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py -#usr/lib/python3.8/site-packages/pip/_vendor/certifi -usr/lib/python3.8/site-packages/pip/_vendor/certifi/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py -usr/lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem -usr/lib/python3.8/site-packages/pip/_vendor/certifi/core.py -#usr/lib/python3.8/site-packages/pip/_vendor/chardet -usr/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py -#usr/lib/python3.8/site-packages/pip/_vendor/chardet/cli -usr/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langcyrillicmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/sbcharsetprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py -usr/lib/python3.8/site-packages/pip/_vendor/chardet/version.py -#usr/lib/python3.8/site-packages/pip/_vendor/colorama -usr/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py -usr/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py -usr/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py -usr/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py -usr/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py -usr/lib/python3.8/site-packages/pip/_vendor/contextlib2.py -#usr/lib/python3.8/site-packages/pip/_vendor/distlib -usr/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/database.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/index.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/markers.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe -usr/lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe -usr/lib/python3.8/site-packages/pip/_vendor/distlib/util.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/version.py -usr/lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe -usr/lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe -usr/lib/python3.8/site-packages/pip/_vendor/distlib/wheel.py -usr/lib/python3.8/site-packages/pip/_vendor/distro.py -#usr/lib/python3.8/site-packages/pip/_vendor/html5lib -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py -#usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/base.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/serializer.py -#usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/sax.py -#usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/base.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/dom.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py -#usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/base.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/dom.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py -usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py -#usr/lib/python3.8/site-packages/pip/_vendor/idna -usr/lib/python3.8/site-packages/pip/_vendor/idna/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/codec.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/core.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/idnadata.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/intranges.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/package_data.py -usr/lib/python3.8/site-packages/pip/_vendor/idna/uts46data.py -usr/lib/python3.8/site-packages/pip/_vendor/ipaddress.py -#usr/lib/python3.8/site-packages/pip/_vendor/msgpack -usr/lib/python3.8/site-packages/pip/_vendor/msgpack/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/msgpack/_version.py -usr/lib/python3.8/site-packages/pip/_vendor/msgpack/exceptions.py -usr/lib/python3.8/site-packages/pip/_vendor/msgpack/ext.py -usr/lib/python3.8/site-packages/pip/_vendor/msgpack/fallback.py -#usr/lib/python3.8/site-packages/pip/_vendor/packaging -usr/lib/python3.8/site-packages/pip/_vendor/packaging/__about__.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/_compat.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/_structures.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/_typing.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/markers.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/requirements.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/specifiers.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/tags.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/utils.py -usr/lib/python3.8/site-packages/pip/_vendor/packaging/version.py -#usr/lib/python3.8/site-packages/pip/_vendor/pep517 -usr/lib/python3.8/site-packages/pip/_vendor/pep517/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/build.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/check.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/colorlog.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/dirtools.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/envbuild.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/meta.py -usr/lib/python3.8/site-packages/pip/_vendor/pep517/wrappers.py -#usr/lib/python3.8/site-packages/pip/_vendor/pkg_resources -usr/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/pkg_resources/py31compat.py -#usr/lib/python3.8/site-packages/pip/_vendor/progress -usr/lib/python3.8/site-packages/pip/_vendor/progress/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/progress/bar.py -usr/lib/python3.8/site-packages/pip/_vendor/progress/counter.py -usr/lib/python3.8/site-packages/pip/_vendor/progress/spinner.py -usr/lib/python3.8/site-packages/pip/_vendor/pyparsing.py -#usr/lib/python3.8/site-packages/pip/_vendor/requests -usr/lib/python3.8/site-packages/pip/_vendor/requests/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/__version__.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/_internal_utils.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/adapters.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/api.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/auth.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/certs.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/compat.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/cookies.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/exceptions.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/help.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/hooks.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/models.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/packages.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/sessions.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/status_codes.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/structures.py -usr/lib/python3.8/site-packages/pip/_vendor/requests/utils.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/providers.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/reporters.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py -usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/structs.py -usr/lib/python3.8/site-packages/pip/_vendor/retrying.py -usr/lib/python3.8/site-packages/pip/_vendor/six.py -usr/lib/python3.8/site-packages/pip/_vendor/toml -usr/lib/python3.8/site-packages/pip/_vendor/toml/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/toml/common.py -usr/lib/python3.8/site-packages/pip/_vendor/toml/decoder.py -usr/lib/python3.8/site-packages/pip/_vendor/toml/encoder.py -usr/lib/python3.8/site-packages/pip/_vendor/toml/ordered.py -usr/lib/python3.8/site-packages/pip/_vendor/toml/tz.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3 -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/_collections.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/connection.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/connectionpool.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/appengine.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/securetransport.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/socks.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/exceptions.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/fields.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/filepost.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/six.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/poolmanager.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/request.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py -#usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/connection.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/queue.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/request.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/response.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/retry.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssl_.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/timeout.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/url.py -usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/wait.py -usr/lib/python3.8/site-packages/pip/_vendor/vendor.txt -#usr/lib/python3.8/site-packages/pip/_vendor/webencodings -usr/lib/python3.8/site-packages/pip/_vendor/webencodings/__init__.py -usr/lib/python3.8/site-packages/pip/_vendor/webencodings/labels.py -usr/lib/python3.8/site-packages/pip/_vendor/webencodings/mklabels.py -usr/lib/python3.8/site-packages/pip/_vendor/webencodings/tests.py -usr/lib/python3.8/site-packages/pip/_vendor/webencodings/x_user_defined.py -#usr/lib/python3.8/site-packages/pkg_resources -usr/lib/python3.8/site-packages/pkg_resources/__init__.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor -usr/lib/python3.8/site-packages/pkg_resources/_vendor/__init__.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/appdirs.py -#usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__about__.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__init__.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_compat.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_structures.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/markers.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/requirements.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/specifiers.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/tags.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/utils.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/version.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/pyparsing.py -usr/lib/python3.8/site-packages/pkg_resources/_vendor/six.py -usr/lib/python3.8/site-packages/pkg_resources/extern -usr/lib/python3.8/site-packages/pkg_resources/extern/__init__.py -#usr/lib/python3.8/site-packages/setuptools -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/INSTALLER -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/LICENSE -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/METADATA -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/RECORD -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/REQUESTED -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/WHEEL -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/dependency_links.txt -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/entry_points.txt -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/top_level.txt -usr/lib/python3.8/site-packages/setuptools-49.2.1.dist-info/zip-safe -usr/lib/python3.8/site-packages/setuptools/__init__.py -usr/lib/python3.8/site-packages/setuptools/_deprecation_warning.py -usr/lib/python3.8/site-packages/setuptools/_distutils -usr/lib/python3.8/site-packages/setuptools/_distutils/__init__.py -usr/lib/python3.8/site-packages/setuptools/_distutils/_msvccompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/archive_util.py -usr/lib/python3.8/site-packages/setuptools/_distutils/bcppcompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/ccompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/cmd.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command -usr/lib/python3.8/site-packages/setuptools/_distutils/command/__init__.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/bdist.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_dumb.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_msi.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_rpm.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_wininst.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/build.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/build_clib.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/build_ext.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/build_py.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/build_scripts.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/check.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/clean.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/config.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install_data.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install_egg_info.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install_headers.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install_lib.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/install_scripts.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/register.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/sdist.py -usr/lib/python3.8/site-packages/setuptools/_distutils/command/upload.py -usr/lib/python3.8/site-packages/setuptools/_distutils/config.py -usr/lib/python3.8/site-packages/setuptools/_distutils/core.py -usr/lib/python3.8/site-packages/setuptools/_distutils/cygwinccompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/debug.py -usr/lib/python3.8/site-packages/setuptools/_distutils/dep_util.py -usr/lib/python3.8/site-packages/setuptools/_distutils/dir_util.py -usr/lib/python3.8/site-packages/setuptools/_distutils/dist.py -usr/lib/python3.8/site-packages/setuptools/_distutils/errors.py -usr/lib/python3.8/site-packages/setuptools/_distutils/extension.py -usr/lib/python3.8/site-packages/setuptools/_distutils/fancy_getopt.py -usr/lib/python3.8/site-packages/setuptools/_distutils/file_util.py -usr/lib/python3.8/site-packages/setuptools/_distutils/filelist.py -usr/lib/python3.8/site-packages/setuptools/_distutils/log.py -usr/lib/python3.8/site-packages/setuptools/_distutils/msvc9compiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/msvccompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/spawn.py -usr/lib/python3.8/site-packages/setuptools/_distutils/sysconfig.py -usr/lib/python3.8/site-packages/setuptools/_distutils/text_file.py -usr/lib/python3.8/site-packages/setuptools/_distutils/unixccompiler.py -usr/lib/python3.8/site-packages/setuptools/_distutils/util.py -usr/lib/python3.8/site-packages/setuptools/_distutils/version.py -usr/lib/python3.8/site-packages/setuptools/_distutils/versionpredicate.py -usr/lib/python3.8/site-packages/setuptools/_imp.py -#usr/lib/python3.8/site-packages/setuptools/_vendor -usr/lib/python3.8/site-packages/setuptools/_vendor/__init__.py -usr/lib/python3.8/site-packages/setuptools/_vendor/ordered_set.py -#usr/lib/python3.8/site-packages/setuptools/_vendor/packaging -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/__about__.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/__init__.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/_compat.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/_structures.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/markers.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/requirements.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/specifiers.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/tags.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/utils.py -usr/lib/python3.8/site-packages/setuptools/_vendor/packaging/version.py -usr/lib/python3.8/site-packages/setuptools/_vendor/pyparsing.py -usr/lib/python3.8/site-packages/setuptools/_vendor/six.py -usr/lib/python3.8/site-packages/setuptools/archive_util.py -usr/lib/python3.8/site-packages/setuptools/build_meta.py -usr/lib/python3.8/site-packages/setuptools/cli-32.exe -usr/lib/python3.8/site-packages/setuptools/cli-64.exe -usr/lib/python3.8/site-packages/setuptools/cli.exe -#usr/lib/python3.8/site-packages/setuptools/command -usr/lib/python3.8/site-packages/setuptools/command/__init__.py -usr/lib/python3.8/site-packages/setuptools/command/alias.py -usr/lib/python3.8/site-packages/setuptools/command/bdist_egg.py -usr/lib/python3.8/site-packages/setuptools/command/bdist_rpm.py -usr/lib/python3.8/site-packages/setuptools/command/bdist_wininst.py -usr/lib/python3.8/site-packages/setuptools/command/build_clib.py -usr/lib/python3.8/site-packages/setuptools/command/build_ext.py -usr/lib/python3.8/site-packages/setuptools/command/build_py.py -usr/lib/python3.8/site-packages/setuptools/command/develop.py -usr/lib/python3.8/site-packages/setuptools/command/dist_info.py -usr/lib/python3.8/site-packages/setuptools/command/easy_install.py -usr/lib/python3.8/site-packages/setuptools/command/egg_info.py -usr/lib/python3.8/site-packages/setuptools/command/install.py -usr/lib/python3.8/site-packages/setuptools/command/install_egg_info.py -usr/lib/python3.8/site-packages/setuptools/command/install_lib.py -usr/lib/python3.8/site-packages/setuptools/command/install_scripts.py -#usr/lib/python3.8/site-packages/setuptools/command/launcher +#usr/lib/python3.10 +#usr/lib/python3.10/LICENSE.txt +usr/lib/python3.10/__future__.py +usr/lib/python3.10/__phello__.foo.py +usr/lib/python3.10/_aix_support.py +usr/lib/python3.10/_bootsubprocess.py +usr/lib/python3.10/_collections_abc.py +usr/lib/python3.10/_compat_pickle.py +usr/lib/python3.10/_compression.py +usr/lib/python3.10/_markupbase.py +usr/lib/python3.10/_osx_support.py +usr/lib/python3.10/_py_abc.py +usr/lib/python3.10/_pydecimal.py +usr/lib/python3.10/_pyio.py +usr/lib/python3.10/_sitebuiltins.py +usr/lib/python3.10/_strptime.py +usr/lib/python3.10/_sysconfigdata__linux_xxxMACHINExxx-linux-gnu.py +usr/lib/python3.10/_threading_local.py +usr/lib/python3.10/_weakrefset.py +usr/lib/python3.10/abc.py +usr/lib/python3.10/aifc.py +usr/lib/python3.10/antigravity.py +usr/lib/python3.10/argparse.py +usr/lib/python3.10/ast.py +usr/lib/python3.10/asynchat.py +#usr/lib/python3.10/asyncio +usr/lib/python3.10/asyncio/__init__.py +usr/lib/python3.10/asyncio/__main__.py +usr/lib/python3.10/asyncio/base_events.py +usr/lib/python3.10/asyncio/base_futures.py +usr/lib/python3.10/asyncio/base_subprocess.py +usr/lib/python3.10/asyncio/base_tasks.py +usr/lib/python3.10/asyncio/constants.py +usr/lib/python3.10/asyncio/coroutines.py +usr/lib/python3.10/asyncio/events.py +usr/lib/python3.10/asyncio/exceptions.py +usr/lib/python3.10/asyncio/format_helpers.py +usr/lib/python3.10/asyncio/futures.py +usr/lib/python3.10/asyncio/locks.py +usr/lib/python3.10/asyncio/log.py +usr/lib/python3.10/asyncio/mixins.py +usr/lib/python3.10/asyncio/proactor_events.py +usr/lib/python3.10/asyncio/protocols.py +usr/lib/python3.10/asyncio/queues.py +usr/lib/python3.10/asyncio/runners.py +usr/lib/python3.10/asyncio/selector_events.py +usr/lib/python3.10/asyncio/sslproto.py +usr/lib/python3.10/asyncio/staggered.py +usr/lib/python3.10/asyncio/streams.py +usr/lib/python3.10/asyncio/subprocess.py +usr/lib/python3.10/asyncio/tasks.py +usr/lib/python3.10/asyncio/threads.py +usr/lib/python3.10/asyncio/transports.py +usr/lib/python3.10/asyncio/trsock.py +usr/lib/python3.10/asyncio/unix_events.py +usr/lib/python3.10/asyncio/windows_events.py +usr/lib/python3.10/asyncio/windows_utils.py +usr/lib/python3.10/asyncore.py +usr/lib/python3.10/base64.py +usr/lib/python3.10/bdb.py +usr/lib/python3.10/binhex.py +usr/lib/python3.10/bisect.py +usr/lib/python3.10/bz2.py +usr/lib/python3.10/cProfile.py +usr/lib/python3.10/calendar.py +usr/lib/python3.10/cgi.py +usr/lib/python3.10/cgitb.py +usr/lib/python3.10/chunk.py +usr/lib/python3.10/cmd.py +usr/lib/python3.10/code.py +usr/lib/python3.10/codecs.py +usr/lib/python3.10/codeop.py +#usr/lib/python3.10/collections +usr/lib/python3.10/collections/__init__.py +usr/lib/python3.10/collections/abc.py +usr/lib/python3.10/colorsys.py +usr/lib/python3.10/compileall.py +#usr/lib/python3.10/concurrent +usr/lib/python3.10/concurrent/__init__.py +#usr/lib/python3.10/concurrent/futures +usr/lib/python3.10/concurrent/futures/__init__.py +usr/lib/python3.10/concurrent/futures/_base.py +usr/lib/python3.10/concurrent/futures/process.py +usr/lib/python3.10/concurrent/futures/thread.py +#usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu +usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu/Makefile +usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu/Setup +usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu/Setup.local +usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu/config.c +usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu/config.c.in +usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu/install-sh +usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu/libpython3.10.a +usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu/makesetup +usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu/python-config.py +usr/lib/python3.10/config-3.10-xxxMACHINExxx-linux-gnu/python.o +usr/lib/python3.10/configparser.py +usr/lib/python3.10/contextlib.py +usr/lib/python3.10/contextvars.py +usr/lib/python3.10/copy.py +usr/lib/python3.10/copyreg.py +usr/lib/python3.10/crypt.py +usr/lib/python3.10/csv.py +#usr/lib/python3.10/ctypes +usr/lib/python3.10/ctypes/__init__.py +usr/lib/python3.10/ctypes/_aix.py +usr/lib/python3.10/ctypes/_endian.py +#usr/lib/python3.10/ctypes/macholib +usr/lib/python3.10/ctypes/macholib/README.ctypes +usr/lib/python3.10/ctypes/macholib/__init__.py +usr/lib/python3.10/ctypes/macholib/dyld.py +usr/lib/python3.10/ctypes/macholib/dylib.py +usr/lib/python3.10/ctypes/macholib/fetch_macholib +usr/lib/python3.10/ctypes/macholib/fetch_macholib.bat +usr/lib/python3.10/ctypes/macholib/framework.py +#usr/lib/python3.10/ctypes/test +usr/lib/python3.10/ctypes/util.py +usr/lib/python3.10/ctypes/wintypes.py +#usr/lib/python3.10/curses +usr/lib/python3.10/curses/__init__.py +usr/lib/python3.10/curses/ascii.py +usr/lib/python3.10/curses/has_key.py +usr/lib/python3.10/curses/panel.py +usr/lib/python3.10/curses/textpad.py +usr/lib/python3.10/dataclasses.py +usr/lib/python3.10/datetime.py +#usr/lib/python3.10/dbm +usr/lib/python3.10/dbm/__init__.py +usr/lib/python3.10/dbm/dumb.py +usr/lib/python3.10/dbm/gnu.py +usr/lib/python3.10/dbm/ndbm.py +usr/lib/python3.10/decimal.py +usr/lib/python3.10/difflib.py +usr/lib/python3.10/dis.py +#usr/lib/python3.10/distutils +#usr/lib/python3.10/distutils/README +usr/lib/python3.10/distutils/__init__.py +usr/lib/python3.10/distutils/_msvccompiler.py +usr/lib/python3.10/distutils/archive_util.py +usr/lib/python3.10/distutils/bcppcompiler.py +usr/lib/python3.10/distutils/ccompiler.py +usr/lib/python3.10/distutils/cmd.py +#usr/lib/python3.10/distutils/command +usr/lib/python3.10/distutils/command/__init__.py +usr/lib/python3.10/distutils/command/bdist.py +usr/lib/python3.10/distutils/command/bdist_dumb.py +usr/lib/python3.10/distutils/command/bdist_msi.py +usr/lib/python3.10/distutils/command/bdist_rpm.py +usr/lib/python3.10/distutils/command/build.py +usr/lib/python3.10/distutils/command/build_clib.py +usr/lib/python3.10/distutils/command/build_ext.py +usr/lib/python3.10/distutils/command/build_py.py +usr/lib/python3.10/distutils/command/build_scripts.py +usr/lib/python3.10/distutils/command/check.py +usr/lib/python3.10/distutils/command/clean.py +usr/lib/python3.10/distutils/command/command_template +usr/lib/python3.10/distutils/command/config.py +usr/lib/python3.10/distutils/command/install.py +usr/lib/python3.10/distutils/command/install_data.py +usr/lib/python3.10/distutils/command/install_egg_info.py +usr/lib/python3.10/distutils/command/install_headers.py +usr/lib/python3.10/distutils/command/install_lib.py +usr/lib/python3.10/distutils/command/install_scripts.py +usr/lib/python3.10/distutils/command/register.py +usr/lib/python3.10/distutils/command/sdist.py +usr/lib/python3.10/distutils/command/upload.py +usr/lib/python3.10/distutils/config.py +usr/lib/python3.10/distutils/core.py +usr/lib/python3.10/distutils/cygwinccompiler.py +usr/lib/python3.10/distutils/debug.py +usr/lib/python3.10/distutils/dep_util.py +usr/lib/python3.10/distutils/dir_util.py +usr/lib/python3.10/distutils/dist.py +usr/lib/python3.10/distutils/errors.py +usr/lib/python3.10/distutils/extension.py +usr/lib/python3.10/distutils/fancy_getopt.py +usr/lib/python3.10/distutils/file_util.py +usr/lib/python3.10/distutils/filelist.py +usr/lib/python3.10/distutils/log.py +usr/lib/python3.10/distutils/msvc9compiler.py +usr/lib/python3.10/distutils/msvccompiler.py +usr/lib/python3.10/distutils/spawn.py +usr/lib/python3.10/distutils/sysconfig.py +#usr/lib/python3.10/distutils/tests +usr/lib/python3.10/distutils/tests/Setup.sample +usr/lib/python3.10/distutils/tests/__init__.py +usr/lib/python3.10/distutils/tests/includetest.rst +usr/lib/python3.10/distutils/tests/support.py +usr/lib/python3.10/distutils/tests/test_archive_util.py +usr/lib/python3.10/distutils/tests/test_bdist.py +usr/lib/python3.10/distutils/tests/test_bdist_dumb.py +usr/lib/python3.10/distutils/tests/test_bdist_msi.py +usr/lib/python3.10/distutils/tests/test_bdist_rpm.py +usr/lib/python3.10/distutils/tests/test_build.py +usr/lib/python3.10/distutils/tests/test_build_clib.py +usr/lib/python3.10/distutils/tests/test_build_ext.py +usr/lib/python3.10/distutils/tests/test_build_py.py +usr/lib/python3.10/distutils/tests/test_build_scripts.py +usr/lib/python3.10/distutils/tests/test_check.py +usr/lib/python3.10/distutils/tests/test_clean.py +usr/lib/python3.10/distutils/tests/test_cmd.py +usr/lib/python3.10/distutils/tests/test_config.py +usr/lib/python3.10/distutils/tests/test_config_cmd.py +usr/lib/python3.10/distutils/tests/test_core.py +usr/lib/python3.10/distutils/tests/test_cygwinccompiler.py +usr/lib/python3.10/distutils/tests/test_dep_util.py +usr/lib/python3.10/distutils/tests/test_dir_util.py +usr/lib/python3.10/distutils/tests/test_dist.py +usr/lib/python3.10/distutils/tests/test_extension.py +usr/lib/python3.10/distutils/tests/test_file_util.py +usr/lib/python3.10/distutils/tests/test_filelist.py +usr/lib/python3.10/distutils/tests/test_install.py +usr/lib/python3.10/distutils/tests/test_install_data.py +usr/lib/python3.10/distutils/tests/test_install_headers.py +usr/lib/python3.10/distutils/tests/test_install_lib.py +usr/lib/python3.10/distutils/tests/test_install_scripts.py +usr/lib/python3.10/distutils/tests/test_log.py +usr/lib/python3.10/distutils/tests/test_msvc9compiler.py +usr/lib/python3.10/distutils/tests/test_msvccompiler.py +usr/lib/python3.10/distutils/tests/test_register.py +usr/lib/python3.10/distutils/tests/test_sdist.py +usr/lib/python3.10/distutils/tests/test_spawn.py +usr/lib/python3.10/distutils/tests/test_sysconfig.py +usr/lib/python3.10/distutils/tests/test_text_file.py +usr/lib/python3.10/distutils/tests/test_unixccompiler.py +usr/lib/python3.10/distutils/tests/test_upload.py +usr/lib/python3.10/distutils/tests/test_util.py +usr/lib/python3.10/distutils/tests/test_version.py +usr/lib/python3.10/distutils/tests/test_versionpredicate.py +usr/lib/python3.10/distutils/tests/xxmodule.c +usr/lib/python3.10/distutils/text_file.py +usr/lib/python3.10/distutils/unixccompiler.py +usr/lib/python3.10/distutils/util.py +usr/lib/python3.10/distutils/version.py +usr/lib/python3.10/distutils/versionpredicate.py +usr/lib/python3.10/doctest.py +#usr/lib/python3.10/email +usr/lib/python3.10/email/__init__.py +usr/lib/python3.10/email/_encoded_words.py +usr/lib/python3.10/email/_header_value_parser.py +usr/lib/python3.10/email/_parseaddr.py +usr/lib/python3.10/email/_policybase.py +usr/lib/python3.10/email/architecture.rst +usr/lib/python3.10/email/base64mime.py +usr/lib/python3.10/email/charset.py +usr/lib/python3.10/email/contentmanager.py +usr/lib/python3.10/email/encoders.py +usr/lib/python3.10/email/errors.py +usr/lib/python3.10/email/feedparser.py +usr/lib/python3.10/email/generator.py +usr/lib/python3.10/email/header.py +usr/lib/python3.10/email/headerregistry.py +usr/lib/python3.10/email/iterators.py +usr/lib/python3.10/email/message.py +#usr/lib/python3.10/email/mime +usr/lib/python3.10/email/mime/__init__.py +usr/lib/python3.10/email/mime/application.py +usr/lib/python3.10/email/mime/audio.py +usr/lib/python3.10/email/mime/base.py +usr/lib/python3.10/email/mime/image.py +usr/lib/python3.10/email/mime/message.py +usr/lib/python3.10/email/mime/multipart.py +usr/lib/python3.10/email/mime/nonmultipart.py +usr/lib/python3.10/email/mime/text.py +usr/lib/python3.10/email/parser.py +usr/lib/python3.10/email/policy.py +usr/lib/python3.10/email/quoprimime.py +usr/lib/python3.10/email/utils.py +#usr/lib/python3.10/encodings +usr/lib/python3.10/encodings/__init__.py +usr/lib/python3.10/encodings/aliases.py +usr/lib/python3.10/encodings/ascii.py +usr/lib/python3.10/encodings/base64_codec.py +usr/lib/python3.10/encodings/big5.py +usr/lib/python3.10/encodings/big5hkscs.py +usr/lib/python3.10/encodings/bz2_codec.py +usr/lib/python3.10/encodings/charmap.py +usr/lib/python3.10/encodings/cp037.py +usr/lib/python3.10/encodings/cp1006.py +usr/lib/python3.10/encodings/cp1026.py +usr/lib/python3.10/encodings/cp1125.py +usr/lib/python3.10/encodings/cp1140.py +usr/lib/python3.10/encodings/cp1250.py +usr/lib/python3.10/encodings/cp1251.py +usr/lib/python3.10/encodings/cp1252.py +usr/lib/python3.10/encodings/cp1253.py +usr/lib/python3.10/encodings/cp1254.py +usr/lib/python3.10/encodings/cp1255.py +usr/lib/python3.10/encodings/cp1256.py +usr/lib/python3.10/encodings/cp1257.py +usr/lib/python3.10/encodings/cp1258.py +usr/lib/python3.10/encodings/cp273.py +usr/lib/python3.10/encodings/cp424.py +usr/lib/python3.10/encodings/cp437.py +usr/lib/python3.10/encodings/cp500.py +usr/lib/python3.10/encodings/cp720.py +usr/lib/python3.10/encodings/cp737.py +usr/lib/python3.10/encodings/cp775.py +usr/lib/python3.10/encodings/cp850.py +usr/lib/python3.10/encodings/cp852.py +usr/lib/python3.10/encodings/cp855.py +usr/lib/python3.10/encodings/cp856.py +usr/lib/python3.10/encodings/cp857.py +usr/lib/python3.10/encodings/cp858.py +usr/lib/python3.10/encodings/cp860.py +usr/lib/python3.10/encodings/cp861.py +usr/lib/python3.10/encodings/cp862.py +usr/lib/python3.10/encodings/cp863.py +usr/lib/python3.10/encodings/cp864.py +usr/lib/python3.10/encodings/cp865.py +usr/lib/python3.10/encodings/cp866.py +usr/lib/python3.10/encodings/cp869.py +usr/lib/python3.10/encodings/cp874.py +usr/lib/python3.10/encodings/cp875.py +usr/lib/python3.10/encodings/cp932.py +usr/lib/python3.10/encodings/cp949.py +usr/lib/python3.10/encodings/cp950.py +usr/lib/python3.10/encodings/euc_jis_2004.py +usr/lib/python3.10/encodings/euc_jisx0213.py +usr/lib/python3.10/encodings/euc_jp.py +usr/lib/python3.10/encodings/euc_kr.py +usr/lib/python3.10/encodings/gb18030.py +usr/lib/python3.10/encodings/gb2312.py +usr/lib/python3.10/encodings/gbk.py +usr/lib/python3.10/encodings/hex_codec.py +usr/lib/python3.10/encodings/hp_roman8.py +usr/lib/python3.10/encodings/hz.py +usr/lib/python3.10/encodings/idna.py +usr/lib/python3.10/encodings/iso2022_jp.py +usr/lib/python3.10/encodings/iso2022_jp_1.py +usr/lib/python3.10/encodings/iso2022_jp_2.py +usr/lib/python3.10/encodings/iso2022_jp_2004.py +usr/lib/python3.10/encodings/iso2022_jp_3.py +usr/lib/python3.10/encodings/iso2022_jp_ext.py +usr/lib/python3.10/encodings/iso2022_kr.py +usr/lib/python3.10/encodings/iso8859_1.py +usr/lib/python3.10/encodings/iso8859_10.py +usr/lib/python3.10/encodings/iso8859_11.py +usr/lib/python3.10/encodings/iso8859_13.py +usr/lib/python3.10/encodings/iso8859_14.py +usr/lib/python3.10/encodings/iso8859_15.py +usr/lib/python3.10/encodings/iso8859_16.py +usr/lib/python3.10/encodings/iso8859_2.py +usr/lib/python3.10/encodings/iso8859_3.py +usr/lib/python3.10/encodings/iso8859_4.py +usr/lib/python3.10/encodings/iso8859_5.py +usr/lib/python3.10/encodings/iso8859_6.py +usr/lib/python3.10/encodings/iso8859_7.py +usr/lib/python3.10/encodings/iso8859_8.py +usr/lib/python3.10/encodings/iso8859_9.py +usr/lib/python3.10/encodings/johab.py +usr/lib/python3.10/encodings/koi8_r.py +usr/lib/python3.10/encodings/koi8_t.py +usr/lib/python3.10/encodings/koi8_u.py +usr/lib/python3.10/encodings/kz1048.py +usr/lib/python3.10/encodings/latin_1.py +usr/lib/python3.10/encodings/mac_arabic.py +usr/lib/python3.10/encodings/mac_croatian.py +usr/lib/python3.10/encodings/mac_cyrillic.py +usr/lib/python3.10/encodings/mac_farsi.py +usr/lib/python3.10/encodings/mac_greek.py +usr/lib/python3.10/encodings/mac_iceland.py +usr/lib/python3.10/encodings/mac_latin2.py +usr/lib/python3.10/encodings/mac_roman.py +usr/lib/python3.10/encodings/mac_romanian.py +usr/lib/python3.10/encodings/mac_turkish.py +usr/lib/python3.10/encodings/mbcs.py +usr/lib/python3.10/encodings/oem.py +usr/lib/python3.10/encodings/palmos.py +usr/lib/python3.10/encodings/ptcp154.py +usr/lib/python3.10/encodings/punycode.py +usr/lib/python3.10/encodings/quopri_codec.py +usr/lib/python3.10/encodings/raw_unicode_escape.py +usr/lib/python3.10/encodings/rot_13.py +usr/lib/python3.10/encodings/shift_jis.py +usr/lib/python3.10/encodings/shift_jis_2004.py +usr/lib/python3.10/encodings/shift_jisx0213.py +usr/lib/python3.10/encodings/tis_620.py +usr/lib/python3.10/encodings/undefined.py +usr/lib/python3.10/encodings/unicode_escape.py +usr/lib/python3.10/encodings/utf_16.py +usr/lib/python3.10/encodings/utf_16_be.py +usr/lib/python3.10/encodings/utf_16_le.py +usr/lib/python3.10/encodings/utf_32.py +usr/lib/python3.10/encodings/utf_32_be.py +usr/lib/python3.10/encodings/utf_32_le.py +usr/lib/python3.10/encodings/utf_7.py +usr/lib/python3.10/encodings/utf_8.py +usr/lib/python3.10/encodings/utf_8_sig.py +usr/lib/python3.10/encodings/uu_codec.py +usr/lib/python3.10/encodings/zlib_codec.py +usr/lib/python3.10/ensurepip +usr/lib/python3.10/ensurepip/__init__.py +usr/lib/python3.10/ensurepip/__main__.py +usr/lib/python3.10/ensurepip/_bundled +usr/lib/python3.10/ensurepip/_bundled/__init__.py +usr/lib/python3.10/ensurepip/_bundled/pip-21.2.4-py3-none-any.whl +usr/lib/python3.10/ensurepip/_bundled/setuptools-58.1.0-py3-none-any.whl +usr/lib/python3.10/ensurepip/_uninstall.py +usr/lib/python3.10/enum.py +usr/lib/python3.10/filecmp.py +usr/lib/python3.10/fileinput.py +usr/lib/python3.10/fnmatch.py +usr/lib/python3.10/fractions.py +usr/lib/python3.10/ftplib.py +usr/lib/python3.10/functools.py +usr/lib/python3.10/genericpath.py +usr/lib/python3.10/getopt.py +usr/lib/python3.10/getpass.py +usr/lib/python3.10/gettext.py +usr/lib/python3.10/glob.py +usr/lib/python3.10/graphlib.py +usr/lib/python3.10/gzip.py +usr/lib/python3.10/hashlib.py +usr/lib/python3.10/heapq.py +usr/lib/python3.10/hmac.py +#usr/lib/python3.10/html +usr/lib/python3.10/html/__init__.py +usr/lib/python3.10/html/entities.py +usr/lib/python3.10/html/parser.py +#usr/lib/python3.10/http +usr/lib/python3.10/http/__init__.py +usr/lib/python3.10/http/client.py +usr/lib/python3.10/http/cookiejar.py +usr/lib/python3.10/http/cookies.py +usr/lib/python3.10/http/server.py +#usr/lib/python3.10/idlelib +usr/lib/python3.10/idlelib/CREDITS.txt +usr/lib/python3.10/idlelib/ChangeLog +usr/lib/python3.10/idlelib/HISTORY.txt +usr/lib/python3.10/idlelib/Icons +usr/lib/python3.10/idlelib/Icons/README.txt +usr/lib/python3.10/idlelib/Icons/folder.gif +usr/lib/python3.10/idlelib/Icons/idle.ico +usr/lib/python3.10/idlelib/Icons/idle_16.gif +usr/lib/python3.10/idlelib/Icons/idle_16.png +usr/lib/python3.10/idlelib/Icons/idle_256.png +usr/lib/python3.10/idlelib/Icons/idle_32.gif +usr/lib/python3.10/idlelib/Icons/idle_32.png +usr/lib/python3.10/idlelib/Icons/idle_48.gif +usr/lib/python3.10/idlelib/Icons/idle_48.png +usr/lib/python3.10/idlelib/Icons/minusnode.gif +usr/lib/python3.10/idlelib/Icons/openfolder.gif +usr/lib/python3.10/idlelib/Icons/plusnode.gif +usr/lib/python3.10/idlelib/Icons/python.gif +usr/lib/python3.10/idlelib/Icons/tk.gif +usr/lib/python3.10/idlelib/NEWS.txt +usr/lib/python3.10/idlelib/NEWS2x.txt +usr/lib/python3.10/idlelib/README.txt +usr/lib/python3.10/idlelib/TODO.txt +usr/lib/python3.10/idlelib/__init__.py +usr/lib/python3.10/idlelib/__main__.py +usr/lib/python3.10/idlelib/autocomplete.py +usr/lib/python3.10/idlelib/autocomplete_w.py +usr/lib/python3.10/idlelib/autoexpand.py +usr/lib/python3.10/idlelib/browser.py +usr/lib/python3.10/idlelib/calltip.py +usr/lib/python3.10/idlelib/calltip_w.py +usr/lib/python3.10/idlelib/codecontext.py +usr/lib/python3.10/idlelib/colorizer.py +usr/lib/python3.10/idlelib/config-extensions.def +usr/lib/python3.10/idlelib/config-highlight.def +usr/lib/python3.10/idlelib/config-keys.def +usr/lib/python3.10/idlelib/config-main.def +usr/lib/python3.10/idlelib/config.py +usr/lib/python3.10/idlelib/config_key.py +usr/lib/python3.10/idlelib/configdialog.py +usr/lib/python3.10/idlelib/debugger.py +usr/lib/python3.10/idlelib/debugger_r.py +usr/lib/python3.10/idlelib/debugobj.py +usr/lib/python3.10/idlelib/debugobj_r.py +usr/lib/python3.10/idlelib/delegator.py +usr/lib/python3.10/idlelib/dynoption.py +usr/lib/python3.10/idlelib/editor.py +usr/lib/python3.10/idlelib/extend.txt +usr/lib/python3.10/idlelib/filelist.py +usr/lib/python3.10/idlelib/format.py +usr/lib/python3.10/idlelib/grep.py +usr/lib/python3.10/idlelib/help.html +usr/lib/python3.10/idlelib/help.py +usr/lib/python3.10/idlelib/help_about.py +usr/lib/python3.10/idlelib/history.py +usr/lib/python3.10/idlelib/hyperparser.py +usr/lib/python3.10/idlelib/idle.bat +usr/lib/python3.10/idlelib/idle.py +usr/lib/python3.10/idlelib/idle.pyw +usr/lib/python3.10/idlelib/idle_test +usr/lib/python3.10/idlelib/idle_test/README.txt +usr/lib/python3.10/idlelib/idle_test/__init__.py +usr/lib/python3.10/idlelib/idle_test/htest.py +usr/lib/python3.10/idlelib/idle_test/mock_idle.py +usr/lib/python3.10/idlelib/idle_test/mock_tk.py +usr/lib/python3.10/idlelib/idle_test/template.py +usr/lib/python3.10/idlelib/idle_test/test_autocomplete.py +usr/lib/python3.10/idlelib/idle_test/test_autocomplete_w.py +usr/lib/python3.10/idlelib/idle_test/test_autoexpand.py +usr/lib/python3.10/idlelib/idle_test/test_browser.py +usr/lib/python3.10/idlelib/idle_test/test_calltip.py +usr/lib/python3.10/idlelib/idle_test/test_calltip_w.py +usr/lib/python3.10/idlelib/idle_test/test_codecontext.py +usr/lib/python3.10/idlelib/idle_test/test_colorizer.py +usr/lib/python3.10/idlelib/idle_test/test_config.py +usr/lib/python3.10/idlelib/idle_test/test_config_key.py +usr/lib/python3.10/idlelib/idle_test/test_configdialog.py +usr/lib/python3.10/idlelib/idle_test/test_debugger.py +usr/lib/python3.10/idlelib/idle_test/test_debugger_r.py +usr/lib/python3.10/idlelib/idle_test/test_debugobj.py +usr/lib/python3.10/idlelib/idle_test/test_debugobj_r.py +usr/lib/python3.10/idlelib/idle_test/test_delegator.py +usr/lib/python3.10/idlelib/idle_test/test_editmenu.py +usr/lib/python3.10/idlelib/idle_test/test_editor.py +usr/lib/python3.10/idlelib/idle_test/test_filelist.py +usr/lib/python3.10/idlelib/idle_test/test_format.py +usr/lib/python3.10/idlelib/idle_test/test_grep.py +usr/lib/python3.10/idlelib/idle_test/test_help.py +usr/lib/python3.10/idlelib/idle_test/test_help_about.py +usr/lib/python3.10/idlelib/idle_test/test_history.py +usr/lib/python3.10/idlelib/idle_test/test_hyperparser.py +usr/lib/python3.10/idlelib/idle_test/test_iomenu.py +usr/lib/python3.10/idlelib/idle_test/test_macosx.py +usr/lib/python3.10/idlelib/idle_test/test_mainmenu.py +usr/lib/python3.10/idlelib/idle_test/test_multicall.py +usr/lib/python3.10/idlelib/idle_test/test_outwin.py +usr/lib/python3.10/idlelib/idle_test/test_parenmatch.py +usr/lib/python3.10/idlelib/idle_test/test_pathbrowser.py +usr/lib/python3.10/idlelib/idle_test/test_percolator.py +usr/lib/python3.10/idlelib/idle_test/test_pyparse.py +usr/lib/python3.10/idlelib/idle_test/test_pyshell.py +usr/lib/python3.10/idlelib/idle_test/test_query.py +usr/lib/python3.10/idlelib/idle_test/test_redirector.py +usr/lib/python3.10/idlelib/idle_test/test_replace.py +usr/lib/python3.10/idlelib/idle_test/test_rpc.py +usr/lib/python3.10/idlelib/idle_test/test_run.py +usr/lib/python3.10/idlelib/idle_test/test_runscript.py +usr/lib/python3.10/idlelib/idle_test/test_scrolledlist.py +usr/lib/python3.10/idlelib/idle_test/test_search.py +usr/lib/python3.10/idlelib/idle_test/test_searchbase.py +usr/lib/python3.10/idlelib/idle_test/test_searchengine.py +usr/lib/python3.10/idlelib/idle_test/test_sidebar.py +usr/lib/python3.10/idlelib/idle_test/test_squeezer.py +usr/lib/python3.10/idlelib/idle_test/test_stackviewer.py +usr/lib/python3.10/idlelib/idle_test/test_statusbar.py +usr/lib/python3.10/idlelib/idle_test/test_text.py +usr/lib/python3.10/idlelib/idle_test/test_textview.py +usr/lib/python3.10/idlelib/idle_test/test_tooltip.py +usr/lib/python3.10/idlelib/idle_test/test_tree.py +usr/lib/python3.10/idlelib/idle_test/test_undo.py +usr/lib/python3.10/idlelib/idle_test/test_warning.py +usr/lib/python3.10/idlelib/idle_test/test_window.py +usr/lib/python3.10/idlelib/idle_test/test_zoomheight.py +usr/lib/python3.10/idlelib/idle_test/test_zzdummy.py +usr/lib/python3.10/idlelib/idle_test/tkinter_testing_utils.py +usr/lib/python3.10/idlelib/iomenu.py +usr/lib/python3.10/idlelib/macosx.py +usr/lib/python3.10/idlelib/mainmenu.py +usr/lib/python3.10/idlelib/multicall.py +usr/lib/python3.10/idlelib/outwin.py +usr/lib/python3.10/idlelib/parenmatch.py +usr/lib/python3.10/idlelib/pathbrowser.py +usr/lib/python3.10/idlelib/percolator.py +usr/lib/python3.10/idlelib/pyparse.py +usr/lib/python3.10/idlelib/pyshell.py +usr/lib/python3.10/idlelib/query.py +usr/lib/python3.10/idlelib/redirector.py +usr/lib/python3.10/idlelib/replace.py +usr/lib/python3.10/idlelib/rpc.py +usr/lib/python3.10/idlelib/run.py +usr/lib/python3.10/idlelib/runscript.py +usr/lib/python3.10/idlelib/scrolledlist.py +usr/lib/python3.10/idlelib/search.py +usr/lib/python3.10/idlelib/searchbase.py +usr/lib/python3.10/idlelib/searchengine.py +usr/lib/python3.10/idlelib/sidebar.py +usr/lib/python3.10/idlelib/squeezer.py +usr/lib/python3.10/idlelib/stackviewer.py +usr/lib/python3.10/idlelib/statusbar.py +usr/lib/python3.10/idlelib/textview.py +usr/lib/python3.10/idlelib/tooltip.py +usr/lib/python3.10/idlelib/tree.py +usr/lib/python3.10/idlelib/undo.py +usr/lib/python3.10/idlelib/window.py +usr/lib/python3.10/idlelib/zoomheight.py +usr/lib/python3.10/idlelib/zzdummy.py +usr/lib/python3.10/imaplib.py +usr/lib/python3.10/imghdr.py +usr/lib/python3.10/imp.py +#usr/lib/python3.10/importlib +usr/lib/python3.10/importlib/__init__.py +usr/lib/python3.10/importlib/_abc.py +usr/lib/python3.10/importlib/_adapters.py +usr/lib/python3.10/importlib/_bootstrap.py +usr/lib/python3.10/importlib/_bootstrap_external.py +usr/lib/python3.10/importlib/_common.py +usr/lib/python3.10/importlib/abc.py +usr/lib/python3.10/importlib/machinery.py +#usr/lib/python3.10/importlib/metadata +usr/lib/python3.10/importlib/metadata/__init__.py +usr/lib/python3.10/importlib/metadata/_adapters.py +usr/lib/python3.10/importlib/metadata/_collections.py +usr/lib/python3.10/importlib/metadata/_functools.py +usr/lib/python3.10/importlib/metadata/_itertools.py +usr/lib/python3.10/importlib/metadata/_meta.py +usr/lib/python3.10/importlib/metadata/_text.py +usr/lib/python3.10/importlib/readers.py +usr/lib/python3.10/importlib/resources.py +usr/lib/python3.10/importlib/util.py +usr/lib/python3.10/inspect.py +usr/lib/python3.10/io.py +usr/lib/python3.10/ipaddress.py +#usr/lib/python3.10/json +usr/lib/python3.10/json/__init__.py +usr/lib/python3.10/json/decoder.py +usr/lib/python3.10/json/encoder.py +usr/lib/python3.10/json/scanner.py +usr/lib/python3.10/json/tool.py +usr/lib/python3.10/keyword.py +#usr/lib/python3.10/lib-dynload +usr/lib/python3.10/lib-dynload/_asyncio.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_bisect.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_blake2.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_bz2.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_cn.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_hk.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_iso2022.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_jp.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_kr.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_codecs_tw.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_contextvars.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_crypt.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_csv.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_ctypes.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_ctypes_test.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_curses.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_curses_panel.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_datetime.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_dbm.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_decimal.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_elementtree.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_gdbm.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_hashlib.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_heapq.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_json.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_lsprof.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_lzma.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_md5.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_multibytecodec.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_multiprocessing.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_opcode.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_pickle.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_posixshmem.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_posixsubprocess.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_queue.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_random.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_sha1.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_sha256.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_sha3.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_sha512.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_socket.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_sqlite3.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_ssl.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_statistics.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_struct.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_testbuffer.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_testcapi.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_testimportmultiple.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_testinternalcapi.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_testmultiphase.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_uuid.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_xxsubinterpreters.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_xxtestfuzz.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/_zoneinfo.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/array.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/audioop.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/binascii.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/cmath.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/fcntl.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/grp.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/math.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/mmap.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/ossaudiodev.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/pyexpat.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/readline.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/resource.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/select.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/spwd.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/syslog.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/termios.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/unicodedata.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/xxlimited.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/xxlimited_35.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/lib-dynload/zlib.cpython-310-xxxMACHINExxx-linux-gnu.so +#usr/lib/python3.10/lib2to3 +usr/lib/python3.10/lib2to3/Grammar.txt +usr/lib/python3.10/lib2to3/Grammar3.10.1.final.0.pickle +usr/lib/python3.10/lib2to3/PatternGrammar.txt +usr/lib/python3.10/lib2to3/PatternGrammar3.10.1.final.0.pickle +usr/lib/python3.10/lib2to3/__init__.py +usr/lib/python3.10/lib2to3/__main__.py +usr/lib/python3.10/lib2to3/btm_matcher.py +usr/lib/python3.10/lib2to3/btm_utils.py +usr/lib/python3.10/lib2to3/fixer_base.py +usr/lib/python3.10/lib2to3/fixer_util.py +#usr/lib/python3.10/lib2to3/fixes +usr/lib/python3.10/lib2to3/fixes/__init__.py +usr/lib/python3.10/lib2to3/fixes/fix_apply.py +usr/lib/python3.10/lib2to3/fixes/fix_asserts.py +usr/lib/python3.10/lib2to3/fixes/fix_basestring.py +usr/lib/python3.10/lib2to3/fixes/fix_buffer.py +usr/lib/python3.10/lib2to3/fixes/fix_dict.py +usr/lib/python3.10/lib2to3/fixes/fix_except.py +usr/lib/python3.10/lib2to3/fixes/fix_exec.py +usr/lib/python3.10/lib2to3/fixes/fix_execfile.py +usr/lib/python3.10/lib2to3/fixes/fix_exitfunc.py +usr/lib/python3.10/lib2to3/fixes/fix_filter.py +usr/lib/python3.10/lib2to3/fixes/fix_funcattrs.py +usr/lib/python3.10/lib2to3/fixes/fix_future.py +usr/lib/python3.10/lib2to3/fixes/fix_getcwdu.py +usr/lib/python3.10/lib2to3/fixes/fix_has_key.py +usr/lib/python3.10/lib2to3/fixes/fix_idioms.py +usr/lib/python3.10/lib2to3/fixes/fix_import.py +usr/lib/python3.10/lib2to3/fixes/fix_imports.py +usr/lib/python3.10/lib2to3/fixes/fix_imports2.py +usr/lib/python3.10/lib2to3/fixes/fix_input.py +usr/lib/python3.10/lib2to3/fixes/fix_intern.py +usr/lib/python3.10/lib2to3/fixes/fix_isinstance.py +usr/lib/python3.10/lib2to3/fixes/fix_itertools.py +usr/lib/python3.10/lib2to3/fixes/fix_itertools_imports.py +usr/lib/python3.10/lib2to3/fixes/fix_long.py +usr/lib/python3.10/lib2to3/fixes/fix_map.py +usr/lib/python3.10/lib2to3/fixes/fix_metaclass.py +usr/lib/python3.10/lib2to3/fixes/fix_methodattrs.py +usr/lib/python3.10/lib2to3/fixes/fix_ne.py +usr/lib/python3.10/lib2to3/fixes/fix_next.py +usr/lib/python3.10/lib2to3/fixes/fix_nonzero.py +usr/lib/python3.10/lib2to3/fixes/fix_numliterals.py +usr/lib/python3.10/lib2to3/fixes/fix_operator.py +usr/lib/python3.10/lib2to3/fixes/fix_paren.py +usr/lib/python3.10/lib2to3/fixes/fix_print.py +usr/lib/python3.10/lib2to3/fixes/fix_raise.py +usr/lib/python3.10/lib2to3/fixes/fix_raw_input.py +usr/lib/python3.10/lib2to3/fixes/fix_reduce.py +usr/lib/python3.10/lib2to3/fixes/fix_reload.py +usr/lib/python3.10/lib2to3/fixes/fix_renames.py +usr/lib/python3.10/lib2to3/fixes/fix_repr.py +usr/lib/python3.10/lib2to3/fixes/fix_set_literal.py +usr/lib/python3.10/lib2to3/fixes/fix_standarderror.py +usr/lib/python3.10/lib2to3/fixes/fix_sys_exc.py +usr/lib/python3.10/lib2to3/fixes/fix_throw.py +usr/lib/python3.10/lib2to3/fixes/fix_tuple_params.py +usr/lib/python3.10/lib2to3/fixes/fix_types.py +usr/lib/python3.10/lib2to3/fixes/fix_unicode.py +usr/lib/python3.10/lib2to3/fixes/fix_urllib.py +usr/lib/python3.10/lib2to3/fixes/fix_ws_comma.py +usr/lib/python3.10/lib2to3/fixes/fix_xrange.py +usr/lib/python3.10/lib2to3/fixes/fix_xreadlines.py +usr/lib/python3.10/lib2to3/fixes/fix_zip.py +usr/lib/python3.10/lib2to3/main.py +usr/lib/python3.10/lib2to3/patcomp.py +#usr/lib/python3.10/lib2to3/pgen2 +usr/lib/python3.10/lib2to3/pgen2/__init__.py +usr/lib/python3.10/lib2to3/pgen2/conv.py +usr/lib/python3.10/lib2to3/pgen2/driver.py +usr/lib/python3.10/lib2to3/pgen2/grammar.py +usr/lib/python3.10/lib2to3/pgen2/literals.py +usr/lib/python3.10/lib2to3/pgen2/parse.py +usr/lib/python3.10/lib2to3/pgen2/pgen.py +usr/lib/python3.10/lib2to3/pgen2/token.py +usr/lib/python3.10/lib2to3/pgen2/tokenize.py +usr/lib/python3.10/lib2to3/pygram.py +usr/lib/python3.10/lib2to3/pytree.py +usr/lib/python3.10/lib2to3/refactor.py +usr/lib/python3.10/lib2to3/tests +usr/lib/python3.10/lib2to3/tests/__init__.py +usr/lib/python3.10/lib2to3/tests/__main__.py +usr/lib/python3.10/lib2to3/tests/data +usr/lib/python3.10/lib2to3/tests/data/README +usr/lib/python3.10/lib2to3/tests/data/bom.py +usr/lib/python3.10/lib2to3/tests/data/crlf.py +usr/lib/python3.10/lib2to3/tests/data/different_encoding.py +usr/lib/python3.10/lib2to3/tests/data/false_encoding.py +usr/lib/python3.10/lib2to3/tests/data/fixers +usr/lib/python3.10/lib2to3/tests/data/fixers/bad_order.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/__init__.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/fix_explicit.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/fix_first.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/fix_last.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/fix_parrot.py +usr/lib/python3.10/lib2to3/tests/data/fixers/myfixes/fix_preorder.py +usr/lib/python3.10/lib2to3/tests/data/fixers/no_fixer_cls.py +usr/lib/python3.10/lib2to3/tests/data/fixers/parrot_example.py +usr/lib/python3.10/lib2to3/tests/data/infinite_recursion.py +usr/lib/python3.10/lib2to3/tests/data/py2_test_grammar.py +usr/lib/python3.10/lib2to3/tests/data/py3_test_grammar.py +usr/lib/python3.10/lib2to3/tests/pytree_idempotency.py +usr/lib/python3.10/lib2to3/tests/support.py +usr/lib/python3.10/lib2to3/tests/test_all_fixers.py +usr/lib/python3.10/lib2to3/tests/test_fixers.py +usr/lib/python3.10/lib2to3/tests/test_main.py +usr/lib/python3.10/lib2to3/tests/test_parser.py +usr/lib/python3.10/lib2to3/tests/test_pytree.py +usr/lib/python3.10/lib2to3/tests/test_refactor.py +usr/lib/python3.10/lib2to3/tests/test_util.py +usr/lib/python3.10/linecache.py +usr/lib/python3.10/locale.py +#usr/lib/python3.10/logging +usr/lib/python3.10/logging/__init__.py +usr/lib/python3.10/logging/config.py +usr/lib/python3.10/logging/handlers.py +usr/lib/python3.10/lzma.py +usr/lib/python3.10/mailbox.py +usr/lib/python3.10/mailcap.py +usr/lib/python3.10/mimetypes.py +usr/lib/python3.10/modulefinder.py +#usr/lib/python3.10/multiprocessing +usr/lib/python3.10/multiprocessing/__init__.py +usr/lib/python3.10/multiprocessing/connection.py +usr/lib/python3.10/multiprocessing/context.py +#usr/lib/python3.10/multiprocessing/dummy +usr/lib/python3.10/multiprocessing/dummy/__init__.py +usr/lib/python3.10/multiprocessing/dummy/connection.py +usr/lib/python3.10/multiprocessing/forkserver.py +usr/lib/python3.10/multiprocessing/heap.py +usr/lib/python3.10/multiprocessing/managers.py +usr/lib/python3.10/multiprocessing/pool.py +usr/lib/python3.10/multiprocessing/popen_fork.py +usr/lib/python3.10/multiprocessing/popen_forkserver.py +usr/lib/python3.10/multiprocessing/popen_spawn_posix.py +usr/lib/python3.10/multiprocessing/popen_spawn_win32.py +usr/lib/python3.10/multiprocessing/process.py +usr/lib/python3.10/multiprocessing/queues.py +usr/lib/python3.10/multiprocessing/reduction.py +usr/lib/python3.10/multiprocessing/resource_sharer.py +usr/lib/python3.10/multiprocessing/resource_tracker.py +usr/lib/python3.10/multiprocessing/shared_memory.py +usr/lib/python3.10/multiprocessing/sharedctypes.py +usr/lib/python3.10/multiprocessing/spawn.py +usr/lib/python3.10/multiprocessing/synchronize.py +usr/lib/python3.10/multiprocessing/util.py +usr/lib/python3.10/netrc.py +usr/lib/python3.10/nntplib.py +usr/lib/python3.10/ntpath.py +usr/lib/python3.10/nturl2path.py +usr/lib/python3.10/numbers.py +usr/lib/python3.10/opcode.py +usr/lib/python3.10/operator.py +usr/lib/python3.10/optparse.py +usr/lib/python3.10/os.py +usr/lib/python3.10/pathlib.py +usr/lib/python3.10/pdb.py +usr/lib/python3.10/pickle.py +usr/lib/python3.10/pickletools.py +usr/lib/python3.10/pipes.py +usr/lib/python3.10/pkgutil.py +usr/lib/python3.10/platform.py +usr/lib/python3.10/plistlib.py +usr/lib/python3.10/poplib.py +usr/lib/python3.10/posixpath.py +usr/lib/python3.10/pprint.py +usr/lib/python3.10/profile.py +usr/lib/python3.10/pstats.py +usr/lib/python3.10/pty.py +usr/lib/python3.10/py_compile.py +usr/lib/python3.10/pyclbr.py +usr/lib/python3.10/pydoc.py +#usr/lib/python3.10/pydoc_data +usr/lib/python3.10/pydoc_data/__init__.py +usr/lib/python3.10/pydoc_data/_pydoc.css +usr/lib/python3.10/pydoc_data/topics.py +usr/lib/python3.10/queue.py +usr/lib/python3.10/quopri.py +usr/lib/python3.10/random.py +usr/lib/python3.10/re.py +usr/lib/python3.10/reprlib.py +usr/lib/python3.10/rlcompleter.py +usr/lib/python3.10/runpy.py +usr/lib/python3.10/sched.py +usr/lib/python3.10/secrets.py +usr/lib/python3.10/selectors.py +usr/lib/python3.10/shelve.py +usr/lib/python3.10/shlex.py +usr/lib/python3.10/shutil.py +usr/lib/python3.10/signal.py +#usr/lib/python3.10/site-packages +usr/lib/python3.10/site-packages/README.txt +#usr/lib/python3.10/site-packages/_distutils_hack +usr/lib/python3.10/site-packages/_distutils_hack/__init__.py +usr/lib/python3.10/site-packages/_distutils_hack/override.py +usr/lib/python3.10/site-packages/distutils-precedence.pth +#usr/lib/python3.10/site-packages/pip +#usr/lib/python3.10/site-packages/pip-21.2.4.dist-info +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/INSTALLER +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/LICENSE.txt +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/METADATA +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/RECORD +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/REQUESTED +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/WHEEL +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/entry_points.txt +usr/lib/python3.10/site-packages/pip-21.2.4.dist-info/top_level.txt +usr/lib/python3.10/site-packages/pip/__init__.py +usr/lib/python3.10/site-packages/pip/__main__.py +#usr/lib/python3.10/site-packages/pip/_internal +usr/lib/python3.10/site-packages/pip/_internal/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/build_env.py +usr/lib/python3.10/site-packages/pip/_internal/cache.py +#usr/lib/python3.10/site-packages/pip/_internal/cli +usr/lib/python3.10/site-packages/pip/_internal/cli/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py +usr/lib/python3.10/site-packages/pip/_internal/cli/base_command.py +usr/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py +usr/lib/python3.10/site-packages/pip/_internal/cli/command_context.py +usr/lib/python3.10/site-packages/pip/_internal/cli/main.py +usr/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py +usr/lib/python3.10/site-packages/pip/_internal/cli/parser.py +usr/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py +usr/lib/python3.10/site-packages/pip/_internal/cli/req_command.py +usr/lib/python3.10/site-packages/pip/_internal/cli/spinners.py +usr/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py +#usr/lib/python3.10/site-packages/pip/_internal/commands +usr/lib/python3.10/site-packages/pip/_internal/commands/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/commands/cache.py +usr/lib/python3.10/site-packages/pip/_internal/commands/check.py +usr/lib/python3.10/site-packages/pip/_internal/commands/completion.py +usr/lib/python3.10/site-packages/pip/_internal/commands/configuration.py +usr/lib/python3.10/site-packages/pip/_internal/commands/debug.py +usr/lib/python3.10/site-packages/pip/_internal/commands/download.py +usr/lib/python3.10/site-packages/pip/_internal/commands/freeze.py +usr/lib/python3.10/site-packages/pip/_internal/commands/hash.py +usr/lib/python3.10/site-packages/pip/_internal/commands/help.py +usr/lib/python3.10/site-packages/pip/_internal/commands/index.py +usr/lib/python3.10/site-packages/pip/_internal/commands/install.py +usr/lib/python3.10/site-packages/pip/_internal/commands/list.py +usr/lib/python3.10/site-packages/pip/_internal/commands/search.py +usr/lib/python3.10/site-packages/pip/_internal/commands/show.py +usr/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py +usr/lib/python3.10/site-packages/pip/_internal/commands/wheel.py +usr/lib/python3.10/site-packages/pip/_internal/configuration.py +#usr/lib/python3.10/site-packages/pip/_internal/distributions +usr/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/distributions/base.py +usr/lib/python3.10/site-packages/pip/_internal/distributions/installed.py +usr/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py +usr/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py +usr/lib/python3.10/site-packages/pip/_internal/exceptions.py +usr/lib/python3.10/site-packages/pip/_internal/index +usr/lib/python3.10/site-packages/pip/_internal/index/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/index/collector.py +usr/lib/python3.10/site-packages/pip/_internal/index/package_finder.py +usr/lib/python3.10/site-packages/pip/_internal/index/sources.py +#usr/lib/python3.10/site-packages/pip/_internal/locations +usr/lib/python3.10/site-packages/pip/_internal/locations/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py +usr/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py +usr/lib/python3.10/site-packages/pip/_internal/locations/base.py +usr/lib/python3.10/site-packages/pip/_internal/main.py +#usr/lib/python3.10/site-packages/pip/_internal/metadata +usr/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/metadata/base.py +usr/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py +#usr/lib/python3.10/site-packages/pip/_internal/models +usr/lib/python3.10/site-packages/pip/_internal/models/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/models/candidate.py +usr/lib/python3.10/site-packages/pip/_internal/models/direct_url.py +usr/lib/python3.10/site-packages/pip/_internal/models/format_control.py +usr/lib/python3.10/site-packages/pip/_internal/models/index.py +usr/lib/python3.10/site-packages/pip/_internal/models/link.py +usr/lib/python3.10/site-packages/pip/_internal/models/scheme.py +usr/lib/python3.10/site-packages/pip/_internal/models/search_scope.py +usr/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py +usr/lib/python3.10/site-packages/pip/_internal/models/target_python.py +usr/lib/python3.10/site-packages/pip/_internal/models/wheel.py +usr/lib/python3.10/site-packages/pip/_internal/network +usr/lib/python3.10/site-packages/pip/_internal/network/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/network/auth.py +usr/lib/python3.10/site-packages/pip/_internal/network/cache.py +usr/lib/python3.10/site-packages/pip/_internal/network/download.py +usr/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py +usr/lib/python3.10/site-packages/pip/_internal/network/session.py +usr/lib/python3.10/site-packages/pip/_internal/network/utils.py +usr/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py +#usr/lib/python3.10/site-packages/pip/_internal/operations +usr/lib/python3.10/site-packages/pip/_internal/operations/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/operations/build +usr/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py +usr/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py +usr/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py +usr/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py +usr/lib/python3.10/site-packages/pip/_internal/operations/check.py +usr/lib/python3.10/site-packages/pip/_internal/operations/freeze.py +usr/lib/python3.10/site-packages/pip/_internal/operations/install +usr/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py +usr/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py +usr/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py +usr/lib/python3.10/site-packages/pip/_internal/operations/prepare.py +usr/lib/python3.10/site-packages/pip/_internal/pyproject.py +#usr/lib/python3.10/site-packages/pip/_internal/req +usr/lib/python3.10/site-packages/pip/_internal/req/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/req/constructors.py +usr/lib/python3.10/site-packages/pip/_internal/req/req_file.py +usr/lib/python3.10/site-packages/pip/_internal/req/req_install.py +usr/lib/python3.10/site-packages/pip/_internal/req/req_set.py +usr/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py +usr/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py +usr/lib/python3.10/site-packages/pip/_internal/resolution +usr/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/base.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/legacy +usr/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py +usr/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py +usr/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py +#usr/lib/python3.10/site-packages/pip/_internal/utils +usr/lib/python3.10/site-packages/pip/_internal/utils/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/utils/_log.py +usr/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py +usr/lib/python3.10/site-packages/pip/_internal/utils/compat.py +usr/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py +usr/lib/python3.10/site-packages/pip/_internal/utils/datetime.py +usr/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py +usr/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py +usr/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py +usr/lib/python3.10/site-packages/pip/_internal/utils/encoding.py +usr/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py +usr/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py +usr/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py +usr/lib/python3.10/site-packages/pip/_internal/utils/glibc.py +usr/lib/python3.10/site-packages/pip/_internal/utils/hashes.py +usr/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py +usr/lib/python3.10/site-packages/pip/_internal/utils/logging.py +usr/lib/python3.10/site-packages/pip/_internal/utils/misc.py +usr/lib/python3.10/site-packages/pip/_internal/utils/models.py +usr/lib/python3.10/site-packages/pip/_internal/utils/packaging.py +usr/lib/python3.10/site-packages/pip/_internal/utils/parallel.py +usr/lib/python3.10/site-packages/pip/_internal/utils/pkg_resources.py +usr/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py +usr/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py +usr/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py +usr/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py +usr/lib/python3.10/site-packages/pip/_internal/utils/urls.py +usr/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py +usr/lib/python3.10/site-packages/pip/_internal/utils/wheel.py +#usr/lib/python3.10/site-packages/pip/_internal/vcs +usr/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py +usr/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py +usr/lib/python3.10/site-packages/pip/_internal/vcs/git.py +usr/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py +usr/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py +usr/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py +usr/lib/python3.10/site-packages/pip/_internal/wheel_builder.py +usr/lib/python3.10/site-packages/pip/_vendor +usr/lib/python3.10/site-packages/pip/_vendor/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/appdirs.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py +usr/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py +#usr/lib/python3.10/site-packages/pip/_vendor/certifi +usr/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py +usr/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem +usr/lib/python3.10/site-packages/pip/_vendor/certifi/core.py +#usr/lib/python3.10/site-packages/pip/_vendor/chardet +usr/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py +#usr/lib/python3.10/site-packages/pip/_vendor/chardet/cli +usr/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/cli/chardetect.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/codingstatemachine.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/cp949prober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/eucjpprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py +#usr/lib/python3.10/site-packages/pip/_vendor/chardet/metadata +usr/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py +usr/lib/python3.10/site-packages/pip/_vendor/chardet/version.py +#usr/lib/python3.10/site-packages/pip/_vendor/colorama +usr/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py +usr/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py +usr/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py +usr/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py +usr/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py +#usr/lib/python3.10/site-packages/pip/_vendor/distlib +usr/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/misc.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/shutil.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/tarfile.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/database.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/index.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/t32.exe +usr/lib/python3.10/site-packages/pip/_vendor/distlib/t64.exe +usr/lib/python3.10/site-packages/pip/_vendor/distlib/util.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/version.py +usr/lib/python3.10/site-packages/pip/_vendor/distlib/w32.exe +usr/lib/python3.10/site-packages/pip/_vendor/distlib/w64.exe +usr/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py +usr/lib/python3.10/site-packages/pip/_vendor/distro.py +#usr/lib/python3.10/site-packages/pip/_vendor/html5lib +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_ihatexml.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py +#usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/serializer.py +#usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/sax.py +#usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/base.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/dom.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py +#usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/base.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/dom.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py +usr/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py +#usr/lib/python3.10/site-packages/pip/_vendor/idna +usr/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/codec.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/core.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py +usr/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py +#usr/lib/python3.10/site-packages/pip/_vendor/msgpack +usr/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/msgpack/_version.py +usr/lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py +usr/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py +usr/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py +#usr/lib/python3.10/site-packages/pip/_vendor/packaging +usr/lib/python3.10/site-packages/pip/_vendor/packaging/__about__.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/markers.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py +usr/lib/python3.10/site-packages/pip/_vendor/packaging/version.py +#usr/lib/python3.10/site-packages/pip/_vendor/pep517 +usr/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/build.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/check.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/colorlog.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/dirtools.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/envbuild.py +#usr/lib/python3.10/site-packages/pip/_vendor/pep517/in_process +usr/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/meta.py +usr/lib/python3.10/site-packages/pip/_vendor/pep517/wrappers.py +#usr/lib/python3.10/site-packages/pip/_vendor/pkg_resources +usr/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/pkg_resources/py31compat.py +#usr/lib/python3.10/site-packages/pip/_vendor/progress +usr/lib/python3.10/site-packages/pip/_vendor/progress/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/progress/bar.py +usr/lib/python3.10/site-packages/pip/_vendor/progress/counter.py +usr/lib/python3.10/site-packages/pip/_vendor/progress/spinner.py +usr/lib/python3.10/site-packages/pip/_vendor/pyparsing.py +#usr/lib/python3.10/site-packages/pip/_vendor/requests +usr/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/api.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/auth.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/certs.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/compat.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/help.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/models.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/packages.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/structures.py +usr/lib/python3.10/site-packages/pip/_vendor/requests/utils.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py +usr/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py +usr/lib/python3.10/site-packages/pip/_vendor/six.py +#usr/lib/python3.10/site-packages/pip/_vendor/tenacity +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/_asyncio.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/before_sleep.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/nap.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/tornadoweb.py +usr/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py +#usr/lib/python3.10/site-packages/pip/_vendor/tomli +usr/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py +usr/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3 +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py +#usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/queue.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py +usr/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py +usr/lib/python3.10/site-packages/pip/_vendor/vendor.txt +#usr/lib/python3.10/site-packages/pip/_vendor/webencodings +usr/lib/python3.10/site-packages/pip/_vendor/webencodings/__init__.py +usr/lib/python3.10/site-packages/pip/_vendor/webencodings/labels.py +usr/lib/python3.10/site-packages/pip/_vendor/webencodings/mklabels.py +usr/lib/python3.10/site-packages/pip/_vendor/webencodings/tests.py +usr/lib/python3.10/site-packages/pip/_vendor/webencodings/x_user_defined.py +usr/lib/python3.10/site-packages/pip/py.typed +#usr/lib/python3.10/site-packages/pkg_resources +usr/lib/python3.10/site-packages/pkg_resources/__init__.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor +usr/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py +#usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_compat.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_typing.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py +usr/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing.py +usr/lib/python3.10/site-packages/pkg_resources/extern +usr/lib/python3.10/site-packages/pkg_resources/extern/__init__.py +#usr/lib/python3.10/site-packages/pkg_resources/tests +usr/lib/python3.10/site-packages/pkg_resources/tests/data +usr/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source +usr/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +#usr/lib/python3.10/site-packages/setuptools +#usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/INSTALLER +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/LICENSE +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/METADATA +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/RECORD +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/REQUESTED +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/WHEEL +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/entry_points.txt +usr/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/top_level.txt +usr/lib/python3.10/site-packages/setuptools/__init__.py +usr/lib/python3.10/site-packages/setuptools/_deprecation_warning.py +usr/lib/python3.10/site-packages/setuptools/_distutils +usr/lib/python3.10/site-packages/setuptools/_distutils/__init__.py +usr/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py +usr/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/cmd.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command +usr/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_msi.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_wininst.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/build.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/check.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/config.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/register.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py +usr/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py +usr/lib/python3.10/site-packages/setuptools/_distutils/config.py +usr/lib/python3.10/site-packages/setuptools/_distutils/core.py +usr/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/debug.py +usr/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py +usr/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py +usr/lib/python3.10/site-packages/setuptools/_distutils/dist.py +usr/lib/python3.10/site-packages/setuptools/_distutils/errors.py +usr/lib/python3.10/site-packages/setuptools/_distutils/extension.py +usr/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py +usr/lib/python3.10/site-packages/setuptools/_distutils/file_util.py +usr/lib/python3.10/site-packages/setuptools/_distutils/filelist.py +usr/lib/python3.10/site-packages/setuptools/_distutils/log.py +usr/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/py35compat.py +usr/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py +usr/lib/python3.10/site-packages/setuptools/_distutils/spawn.py +usr/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py +usr/lib/python3.10/site-packages/setuptools/_distutils/text_file.py +usr/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py +usr/lib/python3.10/site-packages/setuptools/_distutils/util.py +usr/lib/python3.10/site-packages/setuptools/_distutils/version.py +usr/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py +usr/lib/python3.10/site-packages/setuptools/_imp.py +#usr/lib/python3.10/site-packages/setuptools/_vendor +usr/lib/python3.10/site-packages/setuptools/_vendor/__init__.py +#usr/lib/python3.10/site-packages/setuptools/_vendor/more_itertools +usr/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py +usr/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py +usr/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py +usr/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py +#usr/lib/python3.10/site-packages/setuptools/_vendor/packaging +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/_compat.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/_typing.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py +usr/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py +usr/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py +usr/lib/python3.10/site-packages/setuptools/archive_util.py +usr/lib/python3.10/site-packages/setuptools/build_meta.py +usr/lib/python3.10/site-packages/setuptools/cli-32.exe +usr/lib/python3.10/site-packages/setuptools/cli-64.exe +usr/lib/python3.10/site-packages/setuptools/cli.exe +#usr/lib/python3.10/site-packages/setuptools/command +usr/lib/python3.10/site-packages/setuptools/command/__init__.py +usr/lib/python3.10/site-packages/setuptools/command/alias.py +usr/lib/python3.10/site-packages/setuptools/command/bdist_egg.py +usr/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py +usr/lib/python3.10/site-packages/setuptools/command/build_clib.py +usr/lib/python3.10/site-packages/setuptools/command/build_ext.py +usr/lib/python3.10/site-packages/setuptools/command/build_py.py +usr/lib/python3.10/site-packages/setuptools/command/develop.py +usr/lib/python3.10/site-packages/setuptools/command/dist_info.py +usr/lib/python3.10/site-packages/setuptools/command/easy_install.py +usr/lib/python3.10/site-packages/setuptools/command/egg_info.py +usr/lib/python3.10/site-packages/setuptools/command/install.py +usr/lib/python3.10/site-packages/setuptools/command/install_egg_info.py +usr/lib/python3.10/site-packages/setuptools/command/install_lib.py +usr/lib/python3.10/site-packages/setuptools/command/install_scripts.py +#usr/lib/python3.10/site-packages/setuptools/command/launcher #manifest.xml -usr/lib/python3.8/site-packages/setuptools/command/py36compat.py -usr/lib/python3.8/site-packages/setuptools/command/register.py -usr/lib/python3.8/site-packages/setuptools/command/rotate.py -usr/lib/python3.8/site-packages/setuptools/command/saveopts.py -usr/lib/python3.8/site-packages/setuptools/command/sdist.py -usr/lib/python3.8/site-packages/setuptools/command/setopt.py -usr/lib/python3.8/site-packages/setuptools/command/test.py -usr/lib/python3.8/site-packages/setuptools/command/upload.py -usr/lib/python3.8/site-packages/setuptools/command/upload_docs.py -usr/lib/python3.8/site-packages/setuptools/config.py -usr/lib/python3.8/site-packages/setuptools/dep_util.py -usr/lib/python3.8/site-packages/setuptools/depends.py -usr/lib/python3.8/site-packages/setuptools/dist.py -usr/lib/python3.8/site-packages/setuptools/distutils_patch.py -usr/lib/python3.8/site-packages/setuptools/errors.py -usr/lib/python3.8/site-packages/setuptools/extension.py -usr/lib/python3.8/site-packages/setuptools/extern -usr/lib/python3.8/site-packages/setuptools/extern/__init__.py -usr/lib/python3.8/site-packages/setuptools/glob.py -usr/lib/python3.8/site-packages/setuptools/gui-32.exe -usr/lib/python3.8/site-packages/setuptools/gui-64.exe -usr/lib/python3.8/site-packages/setuptools/gui.exe -usr/lib/python3.8/site-packages/setuptools/installer.py -usr/lib/python3.8/site-packages/setuptools/launch.py -usr/lib/python3.8/site-packages/setuptools/lib2to3_ex.py -usr/lib/python3.8/site-packages/setuptools/monkey.py -usr/lib/python3.8/site-packages/setuptools/msvc.py -usr/lib/python3.8/site-packages/setuptools/namespaces.py -usr/lib/python3.8/site-packages/setuptools/package_index.py -usr/lib/python3.8/site-packages/setuptools/py27compat.py -usr/lib/python3.8/site-packages/setuptools/py31compat.py -usr/lib/python3.8/site-packages/setuptools/py33compat.py -usr/lib/python3.8/site-packages/setuptools/py34compat.py -usr/lib/python3.8/site-packages/setuptools/sandbox.py -#usr/lib/python3.8/site-packages/setuptools/script +usr/lib/python3.10/site-packages/setuptools/command/py36compat.py +usr/lib/python3.10/site-packages/setuptools/command/register.py +usr/lib/python3.10/site-packages/setuptools/command/rotate.py +usr/lib/python3.10/site-packages/setuptools/command/saveopts.py +usr/lib/python3.10/site-packages/setuptools/command/sdist.py +usr/lib/python3.10/site-packages/setuptools/command/setopt.py +usr/lib/python3.10/site-packages/setuptools/command/test.py +usr/lib/python3.10/site-packages/setuptools/command/upload.py +usr/lib/python3.10/site-packages/setuptools/command/upload_docs.py +usr/lib/python3.10/site-packages/setuptools/config.py +usr/lib/python3.10/site-packages/setuptools/dep_util.py +usr/lib/python3.10/site-packages/setuptools/depends.py +usr/lib/python3.10/site-packages/setuptools/dist.py +usr/lib/python3.10/site-packages/setuptools/errors.py +usr/lib/python3.10/site-packages/setuptools/extension.py +usr/lib/python3.10/site-packages/setuptools/extern +usr/lib/python3.10/site-packages/setuptools/extern/__init__.py +usr/lib/python3.10/site-packages/setuptools/glob.py +usr/lib/python3.10/site-packages/setuptools/gui-32.exe +usr/lib/python3.10/site-packages/setuptools/gui-64.exe +usr/lib/python3.10/site-packages/setuptools/gui.exe +usr/lib/python3.10/site-packages/setuptools/installer.py +usr/lib/python3.10/site-packages/setuptools/launch.py +usr/lib/python3.10/site-packages/setuptools/monkey.py +usr/lib/python3.10/site-packages/setuptools/msvc.py +usr/lib/python3.10/site-packages/setuptools/namespaces.py +usr/lib/python3.10/site-packages/setuptools/package_index.py +usr/lib/python3.10/site-packages/setuptools/py34compat.py +usr/lib/python3.10/site-packages/setuptools/sandbox.py +#usr/lib/python3.10/site-packages/setuptools/script #(dev).tmpl -usr/lib/python3.8/site-packages/setuptools/script.tmpl -usr/lib/python3.8/site-packages/setuptools/ssl_support.py -usr/lib/python3.8/site-packages/setuptools/unicode_utils.py -usr/lib/python3.8/site-packages/setuptools/version.py -usr/lib/python3.8/site-packages/setuptools/wheel.py -usr/lib/python3.8/site-packages/setuptools/windows_support.py -usr/lib/python3.8/site.py -usr/lib/python3.8/smtpd.py -usr/lib/python3.8/smtplib.py -usr/lib/python3.8/sndhdr.py -usr/lib/python3.8/socket.py -usr/lib/python3.8/socketserver.py -usr/lib/python3.8/sqlite3 -usr/lib/python3.8/sqlite3/__init__.py -usr/lib/python3.8/sqlite3/dbapi2.py -usr/lib/python3.8/sqlite3/dump.py -usr/lib/python3.8/sqlite3/test -usr/lib/python3.8/sre_compile.py -usr/lib/python3.8/sre_constants.py -usr/lib/python3.8/sre_parse.py -usr/lib/python3.8/ssl.py -usr/lib/python3.8/stat.py -usr/lib/python3.8/statistics.py -usr/lib/python3.8/string.py -usr/lib/python3.8/stringprep.py -usr/lib/python3.8/struct.py -usr/lib/python3.8/subprocess.py -usr/lib/python3.8/sunau.py -usr/lib/python3.8/symbol.py -usr/lib/python3.8/symtable.py -usr/lib/python3.8/sysconfig.py -usr/lib/python3.8/tabnanny.py -usr/lib/python3.8/tarfile.py -usr/lib/python3.8/telnetlib.py -usr/lib/python3.8/tempfile.py -usr/lib/python3.8/test -usr/lib/python3.8/textwrap.py -usr/lib/python3.8/this.py -usr/lib/python3.8/threading.py -usr/lib/python3.8/timeit.py -#usr/lib/python3.8/tkinter -usr/lib/python3.8/tkinter/__init__.py -usr/lib/python3.8/tkinter/__main__.py -usr/lib/python3.8/tkinter/colorchooser.py -usr/lib/python3.8/tkinter/commondialog.py -usr/lib/python3.8/tkinter/constants.py -usr/lib/python3.8/tkinter/dialog.py -usr/lib/python3.8/tkinter/dnd.py -usr/lib/python3.8/tkinter/filedialog.py -usr/lib/python3.8/tkinter/font.py -usr/lib/python3.8/tkinter/messagebox.py -usr/lib/python3.8/tkinter/scrolledtext.py -usr/lib/python3.8/tkinter/simpledialog.py -#usr/lib/python3.8/tkinter/test -usr/lib/python3.8/tkinter/tix.py -usr/lib/python3.8/tkinter/ttk.py -usr/lib/python3.8/token.py -usr/lib/python3.8/tokenize.py -usr/lib/python3.8/trace.py -usr/lib/python3.8/traceback.py -usr/lib/python3.8/tracemalloc.py -usr/lib/python3.8/tty.py -usr/lib/python3.8/turtle.py -#usr/lib/python3.8/turtledemo -usr/lib/python3.8/turtledemo/__init__.py -usr/lib/python3.8/turtledemo/__main__.py -usr/lib/python3.8/turtledemo/bytedesign.py -usr/lib/python3.8/turtledemo/chaos.py -usr/lib/python3.8/turtledemo/clock.py -usr/lib/python3.8/turtledemo/colormixer.py -usr/lib/python3.8/turtledemo/forest.py -usr/lib/python3.8/turtledemo/fractalcurves.py -usr/lib/python3.8/turtledemo/lindenmayer.py -usr/lib/python3.8/turtledemo/minimal_hanoi.py -usr/lib/python3.8/turtledemo/nim.py -usr/lib/python3.8/turtledemo/paint.py -usr/lib/python3.8/turtledemo/peace.py -usr/lib/python3.8/turtledemo/penrose.py -usr/lib/python3.8/turtledemo/planet_and_moon.py -usr/lib/python3.8/turtledemo/rosette.py -usr/lib/python3.8/turtledemo/round_dance.py -usr/lib/python3.8/turtledemo/sorting_animate.py -usr/lib/python3.8/turtledemo/tree.py -usr/lib/python3.8/turtledemo/turtle.cfg -usr/lib/python3.8/turtledemo/two_canvases.py -usr/lib/python3.8/turtledemo/yinyang.py -usr/lib/python3.8/types.py -usr/lib/python3.8/typing.py -usr/lib/python3.8/unittest -usr/lib/python3.8/unittest/__init__.py -usr/lib/python3.8/unittest/__main__.py -usr/lib/python3.8/unittest/async_case.py -usr/lib/python3.8/unittest/case.py -usr/lib/python3.8/unittest/loader.py -usr/lib/python3.8/unittest/main.py -usr/lib/python3.8/unittest/mock.py -usr/lib/python3.8/unittest/result.py -usr/lib/python3.8/unittest/runner.py -usr/lib/python3.8/unittest/signals.py -usr/lib/python3.8/unittest/suite.py -usr/lib/python3.8/unittest/test -usr/lib/python3.8/unittest/util.py -#usr/lib/python3.8/urllib -usr/lib/python3.8/urllib/__init__.py -usr/lib/python3.8/urllib/error.py -usr/lib/python3.8/urllib/parse.py -usr/lib/python3.8/urllib/request.py -usr/lib/python3.8/urllib/response.py -usr/lib/python3.8/urllib/robotparser.py -usr/lib/python3.8/uu.py -usr/lib/python3.8/uuid.py -#usr/lib/python3.8/venv -usr/lib/python3.8/venv/__init__.py -usr/lib/python3.8/venv/__main__.py -usr/lib/python3.8/venv/scripts -usr/lib/python3.8/venv/scripts/common -usr/lib/python3.8/venv/scripts/common/Activate.ps1 -usr/lib/python3.8/venv/scripts/common/activate -usr/lib/python3.8/venv/scripts/posix -usr/lib/python3.8/venv/scripts/posix/activate.csh -usr/lib/python3.8/venv/scripts/posix/activate.fish -usr/lib/python3.8/warnings.py -usr/lib/python3.8/wave.py -usr/lib/python3.8/weakref.py -usr/lib/python3.8/webbrowser.py -#usr/lib/python3.8/wsgiref -usr/lib/python3.8/wsgiref/__init__.py -usr/lib/python3.8/wsgiref/handlers.py -usr/lib/python3.8/wsgiref/headers.py -usr/lib/python3.8/wsgiref/simple_server.py -usr/lib/python3.8/wsgiref/util.py -usr/lib/python3.8/wsgiref/validate.py -usr/lib/python3.8/xdrlib.py -#usr/lib/python3.8/xml -usr/lib/python3.8/xml/__init__.py -#usr/lib/python3.8/xml/dom -usr/lib/python3.8/xml/dom/NodeFilter.py -usr/lib/python3.8/xml/dom/__init__.py -usr/lib/python3.8/xml/dom/domreg.py -usr/lib/python3.8/xml/dom/expatbuilder.py -usr/lib/python3.8/xml/dom/minicompat.py -usr/lib/python3.8/xml/dom/minidom.py -usr/lib/python3.8/xml/dom/pulldom.py -usr/lib/python3.8/xml/dom/xmlbuilder.py -#usr/lib/python3.8/xml/etree -usr/lib/python3.8/xml/etree/ElementInclude.py -usr/lib/python3.8/xml/etree/ElementPath.py -usr/lib/python3.8/xml/etree/ElementTree.py -usr/lib/python3.8/xml/etree/__init__.py -usr/lib/python3.8/xml/etree/cElementTree.py -#usr/lib/python3.8/xml/parsers -usr/lib/python3.8/xml/parsers/__init__.py -usr/lib/python3.8/xml/parsers/expat.py -#usr/lib/python3.8/xml/sax -usr/lib/python3.8/xml/sax/__init__.py -usr/lib/python3.8/xml/sax/_exceptions.py -usr/lib/python3.8/xml/sax/expatreader.py -usr/lib/python3.8/xml/sax/handler.py -usr/lib/python3.8/xml/sax/saxutils.py -usr/lib/python3.8/xml/sax/xmlreader.py -#usr/lib/python3.8/xmlrpc -usr/lib/python3.8/xmlrpc/__init__.py -usr/lib/python3.8/xmlrpc/client.py -usr/lib/python3.8/xmlrpc/server.py -usr/lib/python3.8/zipapp.py -usr/lib/python3.8/zipfile.py -usr/lib/python3.8/zipimport.py +usr/lib/python3.10/site-packages/setuptools/script.tmpl +usr/lib/python3.10/site-packages/setuptools/unicode_utils.py +usr/lib/python3.10/site-packages/setuptools/version.py +usr/lib/python3.10/site-packages/setuptools/wheel.py +usr/lib/python3.10/site-packages/setuptools/windows_support.py +usr/lib/python3.10/site.py +usr/lib/python3.10/smtpd.py +usr/lib/python3.10/smtplib.py +usr/lib/python3.10/sndhdr.py +usr/lib/python3.10/socket.py +usr/lib/python3.10/socketserver.py +usr/lib/python3.10/sqlite3 +usr/lib/python3.10/sqlite3/__init__.py +usr/lib/python3.10/sqlite3/dbapi2.py +usr/lib/python3.10/sqlite3/dump.py +usr/lib/python3.10/sqlite3/test +usr/lib/python3.10/sre_compile.py +usr/lib/python3.10/sre_constants.py +usr/lib/python3.10/sre_parse.py +usr/lib/python3.10/ssl.py +usr/lib/python3.10/stat.py +usr/lib/python3.10/statistics.py +usr/lib/python3.10/string.py +usr/lib/python3.10/stringprep.py +usr/lib/python3.10/struct.py +usr/lib/python3.10/subprocess.py +usr/lib/python3.10/sunau.py +usr/lib/python3.10/symtable.py +usr/lib/python3.10/sysconfig.py +usr/lib/python3.10/tabnanny.py +usr/lib/python3.10/tarfile.py +usr/lib/python3.10/telnetlib.py +usr/lib/python3.10/tempfile.py +usr/lib/python3.10/test +usr/lib/python3.10/textwrap.py +usr/lib/python3.10/this.py +usr/lib/python3.10/threading.py +usr/lib/python3.10/timeit.py +#usr/lib/python3.10/tkinter +usr/lib/python3.10/tkinter/__init__.py +usr/lib/python3.10/tkinter/__main__.py +usr/lib/python3.10/tkinter/colorchooser.py +usr/lib/python3.10/tkinter/commondialog.py +usr/lib/python3.10/tkinter/constants.py +usr/lib/python3.10/tkinter/dialog.py +usr/lib/python3.10/tkinter/dnd.py +usr/lib/python3.10/tkinter/filedialog.py +usr/lib/python3.10/tkinter/font.py +usr/lib/python3.10/tkinter/messagebox.py +usr/lib/python3.10/tkinter/scrolledtext.py +usr/lib/python3.10/tkinter/simpledialog.py +#usr/lib/python3.10/tkinter/test +usr/lib/python3.10/tkinter/tix.py +usr/lib/python3.10/tkinter/ttk.py +usr/lib/python3.10/token.py +usr/lib/python3.10/tokenize.py +usr/lib/python3.10/trace.py +usr/lib/python3.10/traceback.py +usr/lib/python3.10/tracemalloc.py +usr/lib/python3.10/tty.py +usr/lib/python3.10/turtle.py +#usr/lib/python3.10/turtledemo +usr/lib/python3.10/turtledemo/__init__.py +usr/lib/python3.10/turtledemo/__main__.py +usr/lib/python3.10/turtledemo/bytedesign.py +usr/lib/python3.10/turtledemo/chaos.py +usr/lib/python3.10/turtledemo/clock.py +usr/lib/python3.10/turtledemo/colormixer.py +usr/lib/python3.10/turtledemo/forest.py +usr/lib/python3.10/turtledemo/fractalcurves.py +usr/lib/python3.10/turtledemo/lindenmayer.py +usr/lib/python3.10/turtledemo/minimal_hanoi.py +usr/lib/python3.10/turtledemo/nim.py +usr/lib/python3.10/turtledemo/paint.py +usr/lib/python3.10/turtledemo/peace.py +usr/lib/python3.10/turtledemo/penrose.py +usr/lib/python3.10/turtledemo/planet_and_moon.py +usr/lib/python3.10/turtledemo/rosette.py +usr/lib/python3.10/turtledemo/round_dance.py +usr/lib/python3.10/turtledemo/sorting_animate.py +usr/lib/python3.10/turtledemo/tree.py +usr/lib/python3.10/turtledemo/turtle.cfg +usr/lib/python3.10/turtledemo/two_canvases.py +usr/lib/python3.10/turtledemo/yinyang.py +usr/lib/python3.10/types.py +usr/lib/python3.10/typing.py +usr/lib/python3.10/unittest +usr/lib/python3.10/unittest/__init__.py +usr/lib/python3.10/unittest/__main__.py +usr/lib/python3.10/unittest/_log.py +usr/lib/python3.10/unittest/async_case.py +usr/lib/python3.10/unittest/case.py +usr/lib/python3.10/unittest/loader.py +usr/lib/python3.10/unittest/main.py +usr/lib/python3.10/unittest/mock.py +usr/lib/python3.10/unittest/result.py +usr/lib/python3.10/unittest/runner.py +usr/lib/python3.10/unittest/signals.py +usr/lib/python3.10/unittest/suite.py +usr/lib/python3.10/unittest/test +usr/lib/python3.10/unittest/util.py +#usr/lib/python3.10/urllib +usr/lib/python3.10/urllib/__init__.py +usr/lib/python3.10/urllib/error.py +usr/lib/python3.10/urllib/parse.py +usr/lib/python3.10/urllib/request.py +usr/lib/python3.10/urllib/response.py +usr/lib/python3.10/urllib/robotparser.py +usr/lib/python3.10/uu.py +usr/lib/python3.10/uuid.py +#usr/lib/python3.10/venv +usr/lib/python3.10/venv/__init__.py +usr/lib/python3.10/venv/__main__.py +usr/lib/python3.10/venv/scripts +usr/lib/python3.10/venv/scripts/common +usr/lib/python3.10/venv/scripts/common/Activate.ps1 +usr/lib/python3.10/venv/scripts/common/activate +usr/lib/python3.10/venv/scripts/posix +usr/lib/python3.10/venv/scripts/posix/activate.csh +usr/lib/python3.10/venv/scripts/posix/activate.fish +usr/lib/python3.10/warnings.py +usr/lib/python3.10/wave.py +usr/lib/python3.10/weakref.py +usr/lib/python3.10/webbrowser.py +#usr/lib/python3.10/wsgiref +usr/lib/python3.10/wsgiref/__init__.py +usr/lib/python3.10/wsgiref/handlers.py +usr/lib/python3.10/wsgiref/headers.py +usr/lib/python3.10/wsgiref/simple_server.py +usr/lib/python3.10/wsgiref/util.py +usr/lib/python3.10/wsgiref/validate.py +usr/lib/python3.10/xdrlib.py +#usr/lib/python3.10/xml +usr/lib/python3.10/xml/__init__.py +#usr/lib/python3.10/xml/dom +usr/lib/python3.10/xml/dom/NodeFilter.py +usr/lib/python3.10/xml/dom/__init__.py +usr/lib/python3.10/xml/dom/domreg.py +usr/lib/python3.10/xml/dom/expatbuilder.py +usr/lib/python3.10/xml/dom/minicompat.py +usr/lib/python3.10/xml/dom/minidom.py +usr/lib/python3.10/xml/dom/pulldom.py +usr/lib/python3.10/xml/dom/xmlbuilder.py +#usr/lib/python3.10/xml/etree +usr/lib/python3.10/xml/etree/ElementInclude.py +usr/lib/python3.10/xml/etree/ElementPath.py +usr/lib/python3.10/xml/etree/ElementTree.py +usr/lib/python3.10/xml/etree/__init__.py +usr/lib/python3.10/xml/etree/cElementTree.py +#usr/lib/python3.10/xml/parsers +usr/lib/python3.10/xml/parsers/__init__.py +usr/lib/python3.10/xml/parsers/expat.py +#usr/lib/python3.10/xml/sax +usr/lib/python3.10/xml/sax/__init__.py +usr/lib/python3.10/xml/sax/_exceptions.py +usr/lib/python3.10/xml/sax/expatreader.py +usr/lib/python3.10/xml/sax/handler.py +usr/lib/python3.10/xml/sax/saxutils.py +usr/lib/python3.10/xml/sax/xmlreader.py +#usr/lib/python3.10/xmlrpc +usr/lib/python3.10/xmlrpc/__init__.py +usr/lib/python3.10/xmlrpc/client.py +usr/lib/python3.10/xmlrpc/server.py +usr/lib/python3.10/zipapp.py +usr/lib/python3.10/zipfile.py +usr/lib/python3.10/zipimport.py +#usr/lib/python3.10/zoneinfo +usr/lib/python3.10/zoneinfo/__init__.py +usr/lib/python3.10/zoneinfo/_common.py +usr/lib/python3.10/zoneinfo/_tzpath.py +usr/lib/python3.10/zoneinfo/_zoneinfo.py #usr/share/man/man1/python3.1 -#usr/share/man/man1/python3.8.1 +#usr/share/man/man1/python3.10.1 diff --git a/config/rootfiles/common/python3-build b/config/rootfiles/common/python3-build new file mode 100644 index 0000000000..61431ada56 --- /dev/null +++ b/config/rootfiles/common/python3-build @@ -0,0 +1,14 @@ +#usr/bin/pyproject-build +#usr/lib/python3.10/site-packages/build +#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/entry_points.txt +#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/build/__init__.py +#usr/lib/python3.10/site-packages/build/__main__.py +#usr/lib/python3.10/site-packages/build/env.py +#usr/lib/python3.10/site-packages/build/py.typed +#usr/lib/python3.10/site-packages/build/util.py diff --git a/config/rootfiles/common/python3-daemon b/config/rootfiles/common/python3-daemon index 653dee7d4f..24ec26c0b9 100644 --- a/config/rootfiles/common/python3-daemon +++ b/config/rootfiles/common/python3-daemon @@ -1,14 +1,13 @@ -#usr/lib/python3.8/site-packages/daemon -usr/lib/python3.8/site-packages/daemon/__init__.py -usr/lib/python3.8/site-packages/daemon/_metadata.py -usr/lib/python3.8/site-packages/daemon/daemon.py -usr/lib/python3.8/site-packages/daemon/pidfile.py -usr/lib/python3.8/site-packages/daemon/runner.py -#usr/lib/python3.8/site-packages/python_daemon-2.1.1-py3.8.egg-info -#usr/lib/python3.8/site-packages/python_daemon-2.1.1-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/python_daemon-2.1.1-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/python_daemon-2.1.1-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/python_daemon-2.1.1-py3.8.egg-info/not-zip-safe -#usr/lib/python3.8/site-packages/python_daemon-2.1.1-py3.8.egg-info/requires.txt -#usr/lib/python3.8/site-packages/python_daemon-2.1.1-py3.8.egg-info/top_level.txt -#usr/lib/python3.8/site-packages/python_daemon-2.1.1-py3.8.egg-info/version_info.json +#usr/lib/python3.10/site-packages/daemon +usr/lib/python3.10/site-packages/daemon/__init__.py +usr/lib/python3.10/site-packages/daemon/_metadata.py +usr/lib/python3.10/site-packages/daemon/daemon.py +usr/lib/python3.10/site-packages/daemon/pidfile.py +usr/lib/python3.10/site-packages/daemon/runner.py +#usr/lib/python3.10/site-packages/python_daemon-2.3.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/python_daemon-2.3.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/python_daemon-2.3.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/python_daemon-2.3.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/python_daemon-2.3.0-py3.10.egg-info/not-zip-safe +#usr/lib/python3.10/site-packages/python_daemon-2.3.0-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/python_daemon-2.3.0-py3.10.egg-info/top_level.txt diff --git a/config/rootfiles/common/python3-inotify b/config/rootfiles/common/python3-inotify index b1fae54aab..a28cec4997 100644 --- a/config/rootfiles/common/python3-inotify +++ b/config/rootfiles/common/python3-inotify @@ -1,17 +1,17 @@ -#usr/lib/python3.8/site-packages/inotify -#usr/lib/python3.8/site-packages/inotify-0.2.10-py3.8.egg-info -#usr/lib/python3.8/site-packages/inotify-0.2.10-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/inotify-0.2.10-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/inotify-0.2.10-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/inotify-0.2.10-py3.8.egg-info/not-zip-safe -#usr/lib/python3.8/site-packages/inotify-0.2.10-py3.8.egg-info/requires.txt -#usr/lib/python3.8/site-packages/inotify-0.2.10-py3.8.egg-info/top_level.txt -usr/lib/python3.8/site-packages/inotify/__init__.py -usr/lib/python3.8/site-packages/inotify/adapters.py -usr/lib/python3.8/site-packages/inotify/calls.py -usr/lib/python3.8/site-packages/inotify/constants.py -usr/lib/python3.8/site-packages/inotify/library.py -#usr/lib/python3.8/site-packages/inotify/resources -#usr/lib/python3.8/site-packages/inotify/resources/README.rst -#usr/lib/python3.8/site-packages/inotify/resources/requirements.txt -usr/lib/python3.8/site-packages/inotify/test_support.py +#usr/lib/python3.10/site-packages/inotify +#usr/lib/python3.10/site-packages/inotify-0.2.10-py3.10.egg-info +#usr/lib/python3.10/site-packages/inotify-0.2.10-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/inotify-0.2.10-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/inotify-0.2.10-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/inotify-0.2.10-py3.10.egg-info/not-zip-safe +#usr/lib/python3.10/site-packages/inotify-0.2.10-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/inotify-0.2.10-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/inotify/__init__.py +usr/lib/python3.10/site-packages/inotify/adapters.py +usr/lib/python3.10/site-packages/inotify/calls.py +usr/lib/python3.10/site-packages/inotify/constants.py +usr/lib/python3.10/site-packages/inotify/library.py +#usr/lib/python3.10/site-packages/inotify/resources +#usr/lib/python3.10/site-packages/inotify/resources/README.rst +#usr/lib/python3.10/site-packages/inotify/resources/requirements.txt +usr/lib/python3.10/site-packages/inotify/test_support.py diff --git a/config/rootfiles/common/python3-install b/config/rootfiles/common/python3-install new file mode 100644 index 0000000000..05460d7247 --- /dev/null +++ b/config/rootfiles/common/python3-install @@ -0,0 +1,28 @@ +#usr/lib/python3.10/site-packages/install +#usr/lib/python3.10/site-packages/install/__init__.py +#usr/lib/python3.10/site-packages/install/__main__.py +#usr/lib/python3.10/site-packages/install/_vendor +#usr/lib/python3.10/site-packages/install/_vendor/__init__.py +#usr/lib/python3.10/site-packages/install/_vendor/installer +#usr/lib/python3.10/site-packages/install/_vendor/installer/src +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/__init__.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/_compat +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/_compat/__init__.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/_compat/importlib_resources.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/_compat/typing.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/_core.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/_scripts +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/_scripts/__init__.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/destinations.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/exceptions.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/records.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/scripts.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/sources.py +#usr/lib/python3.10/site-packages/install/_vendor/installer/src/installer/utils.py +#usr/lib/python3.10/site-packages/python_install-0.0.3-py3.10.egg-info +#usr/lib/python3.10/site-packages/python_install-0.0.3-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/python_install-0.0.3-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/python_install-0.0.3-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/python_install-0.0.3-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/python_install-0.0.3-py3.10.egg-info/top_level.txt diff --git a/config/rootfiles/common/python3-packaging b/config/rootfiles/common/python3-packaging new file mode 100644 index 0000000000..075e214554 --- /dev/null +++ b/config/rootfiles/common/python3-packaging @@ -0,0 +1,19 @@ +#usr/lib/python3.10/site-packages/packaging +#usr/lib/python3.10/site-packages/packaging-21.3-py3.10.egg-info +#usr/lib/python3.10/site-packages/packaging-21.3-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/packaging-21.3-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/packaging-21.3-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/packaging-21.3-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/packaging-21.3-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/packaging/__about__.py +#usr/lib/python3.10/site-packages/packaging/__init__.py +#usr/lib/python3.10/site-packages/packaging/_manylinux.py +#usr/lib/python3.10/site-packages/packaging/_musllinux.py +#usr/lib/python3.10/site-packages/packaging/_structures.py +#usr/lib/python3.10/site-packages/packaging/markers.py +#usr/lib/python3.10/site-packages/packaging/py.typed +#usr/lib/python3.10/site-packages/packaging/requirements.py +#usr/lib/python3.10/site-packages/packaging/specifiers.py +#usr/lib/python3.10/site-packages/packaging/tags.py +#usr/lib/python3.10/site-packages/packaging/utils.py +#usr/lib/python3.10/site-packages/packaging/version.py diff --git a/config/rootfiles/common/python3-pep517 b/config/rootfiles/common/python3-pep517 new file mode 100644 index 0000000000..4adfa7137e --- /dev/null +++ b/config/rootfiles/common/python3-pep517 @@ -0,0 +1,14 @@ +#usr/lib/python3.10/site-packages/pep517 +#usr/lib/python3.10/site-packages/pep517-0.12.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/pep517/__init__.py +#usr/lib/python3.10/site-packages/pep517/build.py +#usr/lib/python3.10/site-packages/pep517/check.py +#usr/lib/python3.10/site-packages/pep517/colorlog.py +#usr/lib/python3.10/site-packages/pep517/compat.py +#usr/lib/python3.10/site-packages/pep517/dirtools.py +#usr/lib/python3.10/site-packages/pep517/envbuild.py +#usr/lib/python3.10/site-packages/pep517/in_process +#usr/lib/python3.10/site-packages/pep517/in_process/__init__.py +#usr/lib/python3.10/site-packages/pep517/in_process/_in_process.py +#usr/lib/python3.10/site-packages/pep517/meta.py +#usr/lib/python3.10/site-packages/pep517/wrappers.py diff --git a/config/rootfiles/common/python3-pycparser b/config/rootfiles/common/python3-pycparser new file mode 100644 index 0000000000..cee2cc7985 --- /dev/null +++ b/config/rootfiles/common/python3-pycparser @@ -0,0 +1,25 @@ +#usr/lib/python3.10/site-packages/pycparser +#usr/lib/python3.10/site-packages/pycparser-2.21-py3.10.egg-info +#usr/lib/python3.10/site-packages/pycparser-2.21-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/pycparser-2.21-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/pycparser-2.21-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/pycparser-2.21-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/pycparser/__init__.py +#usr/lib/python3.10/site-packages/pycparser/_ast_gen.py +#usr/lib/python3.10/site-packages/pycparser/_build_tables.py +#usr/lib/python3.10/site-packages/pycparser/_c_ast.cfg +#usr/lib/python3.10/site-packages/pycparser/ast_transforms.py +#usr/lib/python3.10/site-packages/pycparser/c_ast.py +#usr/lib/python3.10/site-packages/pycparser/c_generator.py +#usr/lib/python3.10/site-packages/pycparser/c_lexer.py +#usr/lib/python3.10/site-packages/pycparser/c_parser.py +#usr/lib/python3.10/site-packages/pycparser/lextab.py +#usr/lib/python3.10/site-packages/pycparser/ply +#usr/lib/python3.10/site-packages/pycparser/ply/__init__.py +#usr/lib/python3.10/site-packages/pycparser/ply/cpp.py +#usr/lib/python3.10/site-packages/pycparser/ply/ctokens.py +#usr/lib/python3.10/site-packages/pycparser/ply/lex.py +#usr/lib/python3.10/site-packages/pycparser/ply/yacc.py +#usr/lib/python3.10/site-packages/pycparser/ply/ygen.py +#usr/lib/python3.10/site-packages/pycparser/plyparser.py +#usr/lib/python3.10/site-packages/pycparser/yacctab.py diff --git a/config/rootfiles/common/python3-pyproject2setuppy b/config/rootfiles/common/python3-pyproject2setuppy new file mode 100644 index 0000000000..84b2243e86 --- /dev/null +++ b/config/rootfiles/common/python3-pyproject2setuppy @@ -0,0 +1,22 @@ +#usr/lib/python3.10/site-packages/pyproject2setuppy +#usr/lib/python3.10/site-packages/pyproject2setuppy-22-py3.10.egg-info +#usr/lib/python3.10/site-packages/pyproject2setuppy-22-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/pyproject2setuppy-22-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/pyproject2setuppy-22-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/pyproject2setuppy-22-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/pyproject2setuppy/__init__.py +#usr/lib/python3.10/site-packages/pyproject2setuppy/__init__.pyc +#usr/lib/python3.10/site-packages/pyproject2setuppy/__main__.py +#usr/lib/python3.10/site-packages/pyproject2setuppy/__main__.pyc +#usr/lib/python3.10/site-packages/pyproject2setuppy/common.py +#usr/lib/python3.10/site-packages/pyproject2setuppy/common.pyc +#usr/lib/python3.10/site-packages/pyproject2setuppy/flit.py +#usr/lib/python3.10/site-packages/pyproject2setuppy/flit.pyc +#usr/lib/python3.10/site-packages/pyproject2setuppy/main.py +#usr/lib/python3.10/site-packages/pyproject2setuppy/main.pyc +#usr/lib/python3.10/site-packages/pyproject2setuppy/pep621.py +#usr/lib/python3.10/site-packages/pyproject2setuppy/pep621.pyc +#usr/lib/python3.10/site-packages/pyproject2setuppy/poetry.py +#usr/lib/python3.10/site-packages/pyproject2setuppy/poetry.pyc +#usr/lib/python3.10/site-packages/pyproject2setuppy/setuptools.py +#usr/lib/python3.10/site-packages/pyproject2setuppy/setuptools.pyc diff --git a/config/rootfiles/common/python3-setuptools-rust b/config/rootfiles/common/python3-setuptools-rust new file mode 100644 index 0000000000..cc21721c50 --- /dev/null +++ b/config/rootfiles/common/python3-setuptools-rust @@ -0,0 +1,17 @@ +usr/lib/python3.10/site-packages/setuptools_rust +#usr/lib/python3.10/site-packages/setuptools_rust-1.1.2-py3.10.egg-info +#usr/lib/python3.10/site-packages/setuptools_rust-1.1.2-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/setuptools_rust-1.1.2-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/setuptools_rust-1.1.2-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/setuptools_rust-1.1.2-py3.10.egg-info/entry_points.txt +#usr/lib/python3.10/site-packages/setuptools_rust-1.1.2-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/setuptools_rust-1.1.2-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/setuptools_rust-1.1.2-py3.10.egg-info/zip-safe +usr/lib/python3.10/site-packages/setuptools_rust/__init__.py +usr/lib/python3.10/site-packages/setuptools_rust/build.py +usr/lib/python3.10/site-packages/setuptools_rust/clean.py +usr/lib/python3.10/site-packages/setuptools_rust/command.py +usr/lib/python3.10/site-packages/setuptools_rust/extension.py +usr/lib/python3.10/site-packages/setuptools_rust/setuptools_ext.py +usr/lib/python3.10/site-packages/setuptools_rust/utils.py +usr/lib/python3.10/site-packages/setuptools_rust/version.py diff --git a/config/rootfiles/common/python3-setuptools-scm b/config/rootfiles/common/python3-setuptools-scm index 5c0462e492..8f16d3e91a 100644 --- a/config/rootfiles/common/python3-setuptools-scm +++ b/config/rootfiles/common/python3-setuptools-scm @@ -1,22 +1,25 @@ -#usr/lib/python3.8/site-packages/setuptools_scm -#usr/lib/python3.8/site-packages/setuptools_scm-3.2.0-py3.8.egg-info -#usr/lib/python3.8/site-packages/setuptools_scm-3.2.0-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/setuptools_scm-3.2.0-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/setuptools_scm-3.2.0-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/setuptools_scm-3.2.0-py3.8.egg-info/entry_points.txt -#usr/lib/python3.8/site-packages/setuptools_scm-3.2.0-py3.8.egg-info/top_level.txt -#usr/lib/python3.8/site-packages/setuptools_scm-3.2.0-py3.8.egg-info/zip-safe -#usr/lib/python3.8/site-packages/setuptools_scm/__init__.py -#usr/lib/python3.8/site-packages/setuptools_scm/__main__.py -#usr/lib/python3.8/site-packages/setuptools_scm/config.py -#usr/lib/python3.8/site-packages/setuptools_scm/discover.py -#usr/lib/python3.8/site-packages/setuptools_scm/file_finder.py -#usr/lib/python3.8/site-packages/setuptools_scm/file_finder_git.py -#usr/lib/python3.8/site-packages/setuptools_scm/file_finder_hg.py -#usr/lib/python3.8/site-packages/setuptools_scm/git.py -#usr/lib/python3.8/site-packages/setuptools_scm/hacks.py -#usr/lib/python3.8/site-packages/setuptools_scm/hg.py -#usr/lib/python3.8/site-packages/setuptools_scm/integration.py -#usr/lib/python3.8/site-packages/setuptools_scm/utils.py -#usr/lib/python3.8/site-packages/setuptools_scm/version.py -#usr/lib/python3.8/site-packages/setuptools_scm/win_py31_compat.py +#usr/lib/python3.10/site-packages/setuptools_scm +#usr/lib/python3.10/site-packages/setuptools_scm-6.3.2-py3.10.egg-info +#usr/lib/python3.10/site-packages/setuptools_scm-6.3.2-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/setuptools_scm-6.3.2-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/setuptools_scm-6.3.2-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/setuptools_scm-6.3.2-py3.10.egg-info/entry_points.txt +#usr/lib/python3.10/site-packages/setuptools_scm-6.3.2-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/setuptools_scm-6.3.2-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/setuptools_scm-6.3.2-py3.10.egg-info/zip-safe +#usr/lib/python3.10/site-packages/setuptools_scm/__init__.py +#usr/lib/python3.10/site-packages/setuptools_scm/__main__.py +#usr/lib/python3.10/site-packages/setuptools_scm/_version_cls.py +#usr/lib/python3.10/site-packages/setuptools_scm/config.py +#usr/lib/python3.10/site-packages/setuptools_scm/discover.py +#usr/lib/python3.10/site-packages/setuptools_scm/file_finder.py +#usr/lib/python3.10/site-packages/setuptools_scm/file_finder_git.py +#usr/lib/python3.10/site-packages/setuptools_scm/file_finder_hg.py +#usr/lib/python3.10/site-packages/setuptools_scm/git.py +#usr/lib/python3.10/site-packages/setuptools_scm/hacks.py +#usr/lib/python3.10/site-packages/setuptools_scm/hg.py +#usr/lib/python3.10/site-packages/setuptools_scm/hg_git.py +#usr/lib/python3.10/site-packages/setuptools_scm/integration.py +#usr/lib/python3.10/site-packages/setuptools_scm/scm_workdir.py +#usr/lib/python3.10/site-packages/setuptools_scm/utils.py +#usr/lib/python3.10/site-packages/setuptools_scm/version.py diff --git a/config/rootfiles/common/python3-toml b/config/rootfiles/common/python3-toml new file mode 100644 index 0000000000..8ed13f3d2c --- /dev/null +++ b/config/rootfiles/common/python3-toml @@ -0,0 +1,11 @@ +#usr/lib/python3.10/site-packages/toml +#usr/lib/python3.10/site-packages/toml-0.10.2-py3.10.egg-info +#usr/lib/python3.10/site-packages/toml-0.10.2-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/toml-0.10.2-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/toml-0.10.2-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/toml-0.10.2-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/toml/__init__.py +#usr/lib/python3.10/site-packages/toml/decoder.py +#usr/lib/python3.10/site-packages/toml/encoder.py +#usr/lib/python3.10/site-packages/toml/ordered.py +#usr/lib/python3.10/site-packages/toml/tz.py diff --git a/config/rootfiles/common/python3-tomli b/config/rootfiles/common/python3-tomli new file mode 100644 index 0000000000..5c24ff0ead --- /dev/null +++ b/config/rootfiles/common/python3-tomli @@ -0,0 +1,11 @@ +#usr/lib/python3.10/site-packages/tomli +#usr/lib/python3.10/site-packages/tomli-2.0.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/tomli-2.0.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/tomli-2.0.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/tomli-2.0.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/tomli-2.0.0-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/tomli/__init__.py +#usr/lib/python3.10/site-packages/tomli/_parser.py +#usr/lib/python3.10/site-packages/tomli/_re.py +#usr/lib/python3.10/site-packages/tomli/_types.py +#usr/lib/python3.10/site-packages/tomli/py.typed diff --git a/config/rootfiles/common/sudo b/config/rootfiles/common/sudo index 80e83efa47..1cb0d2bf74 100644 --- a/config/rootfiles/common/sudo +++ b/config/rootfiles/common/sudo @@ -30,15 +30,18 @@ usr/lib/sudo/system_group.so #usr/sbin/sudo_sendlog usr/sbin/visudo #usr/share/doc/sudo -#usr/share/doc/sudo/CONTRIBUTORS +#usr/share/doc/sudo/CONTRIBUTING.md +#usr/share/doc/sudo/CONTRIBUTORS.md #usr/share/doc/sudo/ChangeLog -#usr/share/doc/sudo/HISTORY -#usr/share/doc/sudo/LICENSE +#usr/share/doc/sudo/HISTORY.md +#usr/share/doc/sudo/LICENSE.md #usr/share/doc/sudo/NEWS -#usr/share/doc/sudo/README -#usr/share/doc/sudo/TROUBLESHOOTING -#usr/share/doc/sudo/UPGRADE +#usr/share/doc/sudo/README.md +#usr/share/doc/sudo/SECURITY.md +#usr/share/doc/sudo/TROUBLESHOOTING.md +#usr/share/doc/sudo/UPGRADE.md #usr/share/doc/sudo/examples +#usr/share/doc/sudo/examples/cvtsudoers.conf #usr/share/doc/sudo/examples/pam.conf #usr/share/doc/sudo/examples/sudo.conf #usr/share/doc/sudo/examples/sudo_logsrvd.conf @@ -58,8 +61,10 @@ usr/sbin/visudo #usr/share/locale/eo/LC_MESSAGES/sudo.mo #usr/share/locale/eo/LC_MESSAGES/sudoers.mo #usr/share/locale/es/LC_MESSAGES/sudo.mo +#usr/share/locale/es/LC_MESSAGES/sudoers.mo #usr/share/locale/eu/LC_MESSAGES/sudo.mo #usr/share/locale/eu/LC_MESSAGES/sudoers.mo +#usr/share/locale/fa/LC_MESSAGES/sudo.mo #usr/share/locale/fi/LC_MESSAGES/sudo.mo #usr/share/locale/fi/LC_MESSAGES/sudoers.mo #usr/share/locale/fr/LC_MESSAGES/sudo.mo diff --git a/config/rootfiles/common/web-user-interface b/config/rootfiles/common/web-user-interface index a908053b1f..a5973f9e49 100644 --- a/config/rootfiles/common/web-user-interface +++ b/config/rootfiles/common/web-user-interface @@ -62,7 +62,6 @@ srv/web/ipfire/cgi-bin/netovpnrw.cgi srv/web/ipfire/cgi-bin/netovpnsrv.cgi srv/web/ipfire/cgi-bin/optionsfw.cgi srv/web/ipfire/cgi-bin/ovpnmain.cgi -srv/web/ipfire/cgi-bin/p2p-block.cgi srv/web/ipfire/cgi-bin/pakfire.cgi srv/web/ipfire/cgi-bin/pppsetup.cgi srv/web/ipfire/cgi-bin/proxy.cgi diff --git a/config/rootfiles/common/x86_64/binutils b/config/rootfiles/common/x86_64/binutils index 227841c644..1b34274250 100644 --- a/config/rootfiles/common/x86_64/binutils +++ b/config/rootfiles/common/x86_64/binutils @@ -16,7 +16,6 @@ usr/bin/strings #usr/bin/strip #usr/include/ansidecl.h #usr/include/bfd.h -#usr/include/bfd_stdint.h #usr/include/bfdlink.h #usr/include/ctf-api.h #usr/include/ctf.h @@ -160,7 +159,7 @@ usr/bin/strings #usr/lib/ldscripts/elf_x86_64.xu #usr/lib/ldscripts/elf_x86_64.xw #usr/lib/ldscripts/elf_x86_64.xwe -usr/lib/libbfd-2.36.1.so +usr/lib/libbfd-2.37.so #usr/lib/libbfd.a #usr/lib/libbfd.la #usr/lib/libbfd.so @@ -174,7 +173,7 @@ usr/lib/libctf-nobfd.so.0.0.0 #usr/lib/libctf.so usr/lib/libctf.so.0 usr/lib/libctf.so.0.0.0 -usr/lib/libopcodes-2.36.1.so +usr/lib/libopcodes-2.37.so #usr/lib/libopcodes.a #usr/lib/libopcodes.la #usr/lib/libopcodes.so diff --git a/config/rootfiles/common/x86_64/glibc b/config/rootfiles/common/x86_64/glibc index 74f7e38fd3..5014f8a88f 100644 --- a/config/rootfiles/common/x86_64/glibc +++ b/config/rootfiles/common/x86_64/glibc @@ -1,51 +1,33 @@ #etc/ld.so.cache etc/rpc -lib/ld-2.33.so lib/ld-linux-x86-64.so.2 -lib/libBrokenLocale-2.33.so lib/libBrokenLocale.so.1 -#lib/libSegFault.so -lib/libanl-2.33.so lib/libanl.so.1 -lib/libc-2.33.so lib/libc.so.6 -lib/libdl-2.33.so +#lib/libc_malloc_debug.so.0 lib/libdl.so.2 -lib/libm-2.33.so lib/libm.so.6 #lib/libmemusage.so -lib/libmvec-2.33.so lib/libmvec.so.1 -lib/libnsl-2.33.so lib/libnsl.so.1 -lib/libnss_compat-2.33.so lib/libnss_compat.so.2 -lib/libnss_db-2.33.so lib/libnss_db.so.2 -lib/libnss_dns-2.33.so lib/libnss_dns.so.2 -lib/libnss_files-2.33.so lib/libnss_files.so.2 -lib/libnss_hesiod-2.33.so lib/libnss_hesiod.so.2 #lib/libpcprofile.so -lib/libpthread-2.33.so lib/libpthread.so.0 -lib/libresolv-2.33.so lib/libresolv.so.2 -lib/librt-2.33.so lib/librt.so.1 -lib/libthread_db-1.0.so lib/libthread_db.so.1 -lib/libutil-2.33.so lib/libutil.so.1 sbin/ldconfig #sbin/sln -#usr/bin/catchsegv #usr/bin/gencat usr/bin/getconf usr/bin/getent #usr/bin/iconv +usr/bin/ld.so usr/bin/ldd usr/bin/locale #usr/bin/localedef @@ -76,12 +58,14 @@ usr/bin/locale #usr/include/bits #usr/include/bits/a.out.h #usr/include/bits/argp-ldbl.h +#usr/include/bits/atomic_wide_counter.h #usr/include/bits/byteswap.h #usr/include/bits/cmathcalls.h #usr/include/bits/confname.h #usr/include/bits/cpu-set.h #usr/include/bits/dirent.h #usr/include/bits/dirent_ext.h +#usr/include/bits/dl_find_object.h #usr/include/bits/dlfcn.h #usr/include/bits/elfclass.h #usr/include/bits/endian.h @@ -119,6 +103,7 @@ usr/bin/locale #usr/include/bits/libc-header-start.h #usr/include/bits/libm-simd-decl-stubs.h #usr/include/bits/link.h +#usr/include/bits/link_lavcurrent.h #usr/include/bits/local_lim.h #usr/include/bits/locale.h #usr/include/bits/long-double.h @@ -137,6 +122,8 @@ usr/bin/locale #usr/include/bits/msq.h #usr/include/bits/netdb.h #usr/include/bits/param.h +#usr/include/bits/platform +#usr/include/bits/platform/x86.h #usr/include/bits/poll.h #usr/include/bits/poll2.h #usr/include/bits/posix1_lim.h @@ -147,10 +134,13 @@ usr/bin/locale #usr/include/bits/procfs-id.h #usr/include/bits/procfs-prregset.h #usr/include/bits/procfs.h +#usr/include/bits/pthread_stack_min-dynamic.h +#usr/include/bits/pthread_stack_min.h #usr/include/bits/pthreadtypes-arch.h #usr/include/bits/pthreadtypes.h #usr/include/bits/ptrace-shared.h #usr/include/bits/resource.h +#usr/include/bits/rseq.h #usr/include/bits/sched.h #usr/include/bits/select.h #usr/include/bits/select2.h @@ -171,6 +161,7 @@ usr/bin/locale #usr/include/bits/signum-arch.h #usr/include/bits/signum-generic.h #usr/include/bits/sigstack.h +#usr/include/bits/sigstksz.h #usr/include/bits/sigthread.h #usr/include/bits/sockaddr.h #usr/include/bits/socket-constants.h @@ -199,6 +190,7 @@ usr/bin/locale #usr/include/bits/struct_mutex.h #usr/include/bits/struct_rwlock.h #usr/include/bits/struct_stat.h +#usr/include/bits/struct_stat_time64_helper.h #usr/include/bits/syscall.h #usr/include/bits/syslog-ldbl.h #usr/include/bits/syslog-path.h @@ -247,11 +239,17 @@ usr/bin/locale #usr/include/bits/types/struct___jmp_buf_tag.h #usr/include/bits/types/struct_iovec.h #usr/include/bits/types/struct_itimerspec.h +#usr/include/bits/types/struct_msqid64_ds.h +#usr/include/bits/types/struct_msqid64_ds_helper.h #usr/include/bits/types/struct_msqid_ds.h #usr/include/bits/types/struct_osockaddr.h #usr/include/bits/types/struct_rusage.h #usr/include/bits/types/struct_sched_param.h +#usr/include/bits/types/struct_semid64_ds.h +#usr/include/bits/types/struct_semid64_ds_helper.h #usr/include/bits/types/struct_semid_ds.h +#usr/include/bits/types/struct_shmid64_ds.h +#usr/include/bits/types/struct_shmid64_ds_helper.h #usr/include/bits/types/struct_shmid_ds.h #usr/include/bits/types/struct_sigstack.h #usr/include/bits/types/struct_statx.h @@ -294,6 +292,7 @@ usr/bin/locale #usr/include/error.h #usr/include/execinfo.h #usr/include/fcntl.h +#usr/include/features-time64.h #usr/include/features.h #usr/include/fenv.h #usr/include/finclude @@ -465,6 +464,7 @@ usr/bin/locale #usr/include/sys/reboot.h #usr/include/sys/reg.h #usr/include/sys/resource.h +#usr/include/sys/rseq.h #usr/include/sys/select.h #usr/include/sys/sem.h #usr/include/sys/sendfile.h @@ -783,6 +783,8 @@ usr/lib/gconv #usr/lib/gconv/UTF-7.so #usr/lib/gconv/VISCII.so #usr/lib/gconv/gconv-modules +#usr/lib/gconv/gconv-modules.d +#usr/lib/gconv/gconv-modules.d/gconv-modules-extra.conf #usr/lib/gconv/libCNS.so #usr/lib/gconv/libGB.so #usr/lib/gconv/libISOIR165.so @@ -795,17 +797,18 @@ usr/lib/gconv #usr/lib/glibc/getconf/POSIX_V6_LP64_OFF64 #usr/lib/glibc/getconf/POSIX_V7_LP64_OFF64 #usr/lib/glibc/getconf/XBS5_LP64_OFF64 +#usr/lib/grcrt1.o #usr/lib/libBrokenLocale.a #usr/lib/libBrokenLocale.so #usr/lib/libanl.a #usr/lib/libanl.so #usr/lib/libc.a #usr/lib/libc.so +#usr/lib/libc_malloc_debug.so #usr/lib/libc_nonshared.a #usr/lib/libdl.a -#usr/lib/libdl.so #usr/lib/libg.a -#usr/lib/libm-2.33.a +#usr/lib/libm-2.35.a #usr/lib/libm.a #usr/lib/libm.so #usr/lib/libmcheck.a @@ -813,19 +816,28 @@ usr/lib/gconv #usr/lib/libmvec.so #usr/lib/libnss_compat.so #usr/lib/libnss_db.so -#usr/lib/libnss_dns.so -#usr/lib/libnss_files.so #usr/lib/libnss_hesiod.so #usr/lib/libpthread.a -#usr/lib/libpthread.so #usr/lib/libresolv.a #usr/lib/libresolv.so #usr/lib/librt.a -#usr/lib/librt.so #usr/lib/libthread_db.so #usr/lib/libutil.a -#usr/lib/libutil.so usr/lib/locale +#usr/lib/locale/C.utf8 +#usr/lib/locale/C.utf8/LC_ADDRESS +#usr/lib/locale/C.utf8/LC_COLLATE +#usr/lib/locale/C.utf8/LC_CTYPE +#usr/lib/locale/C.utf8/LC_IDENTIFICATION +#usr/lib/locale/C.utf8/LC_MEASUREMENT +#usr/lib/locale/C.utf8/LC_MESSAGES +#usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES +#usr/lib/locale/C.utf8/LC_MONETARY +#usr/lib/locale/C.utf8/LC_NAME +#usr/lib/locale/C.utf8/LC_NUMERIC +#usr/lib/locale/C.utf8/LC_PAPER +#usr/lib/locale/C.utf8/LC_TELEPHONE +#usr/lib/locale/C.utf8/LC_TIME #usr/lib/locale/aa_DJ #usr/lib/locale/aa_DJ.utf8 #usr/lib/locale/aa_DJ.utf8/LC_ADDRESS @@ -7658,6 +7670,7 @@ usr/lib/locale #usr/lib/locale/zu_ZA/LC_PAPER #usr/lib/locale/zu_ZA/LC_TELEPHONE #usr/lib/locale/zu_ZA/LC_TIME +#usr/lib/rcrt1.o #usr/sbin/iconvconfig #usr/sbin/nscd #usr/sbin/zic @@ -7897,11 +7910,13 @@ usr/lib/locale #usr/share/i18n/charmaps/VISCII.gz #usr/share/i18n/charmaps/WINDOWS-31J.gz #usr/share/i18n/locales +#usr/share/i18n/locales/C #usr/share/i18n/locales/POSIX #usr/share/i18n/locales/aa_DJ #usr/share/i18n/locales/aa_ER #usr/share/i18n/locales/aa_ER@saaho #usr/share/i18n/locales/aa_ET +#usr/share/i18n/locales/ab_GE #usr/share/i18n/locales/af_ZA #usr/share/i18n/locales/agr_PE #usr/share/i18n/locales/ak_GH @@ -8263,6 +8278,7 @@ usr/lib/locale #usr/share/info/libc.info-15 #usr/share/info/libc.info-16 #usr/share/info/libc.info-17 +#usr/share/info/libc.info-18 #usr/share/info/libc.info-2 #usr/share/info/libc.info-3 #usr/share/info/libc.info-4 @@ -8383,7 +8399,5 @@ usr/lib/locale #usr/share/locale/zh_TW #usr/share/locale/zh_TW/LC_MESSAGES #usr/share/locale/zh_TW/LC_MESSAGES/libc.mo -#var/cache/ldconfig -#var/cache/ldconfig/aux-cache #var/db #var/db/Makefile diff --git a/config/rootfiles/common/x86_64/stage2 b/config/rootfiles/common/x86_64/stage2 index 0d613f76a1..ffdd0ce51c 100644 --- a/config/rootfiles/common/x86_64/stage2 +++ b/config/rootfiles/common/x86_64/stage2 @@ -133,7 +133,6 @@ usr/local/bin/update-location-database #usr/sbin usr/sbin/openvpn-metrics usr/sbin/ovpn-ccd-convert -usr/sbin/ovpn-collectd-convert #usr/share #usr/share/doc #usr/share/doc/licenses diff --git a/config/rootfiles/common/xtables-addons b/config/rootfiles/common/xtables-addons deleted file mode 100644 index 51b0d208d2..0000000000 --- a/config/rootfiles/common/xtables-addons +++ /dev/null @@ -1,44 +0,0 @@ -lib/xtables/libxt_ACCOUNT.so -lib/xtables/libxt_CHAOS.so -lib/xtables/libxt_DELUDE.so -lib/xtables/libxt_DHCPMAC.so -lib/xtables/libxt_DNETMAP.so -lib/xtables/libxt_ECHO.so -lib/xtables/libxt_IPMARK.so -lib/xtables/libxt_LOGMARK.so -lib/xtables/libxt_PROTO.so -lib/xtables/libxt_SYSRQ.so -lib/xtables/libxt_TARPIT.so -lib/xtables/libxt_condition.so -lib/xtables/libxt_dhcpmac.so -lib/xtables/libxt_fuzzy.so -lib/xtables/libxt_geoip.so -lib/xtables/libxt_gradm.so -lib/xtables/libxt_iface.so -lib/xtables/libxt_ipp2p.so -lib/xtables/libxt_ipv4options.so -lib/xtables/libxt_length2.so -lib/xtables/libxt_lscan.so -lib/xtables/libxt_pknock.so -lib/xtables/libxt_psd.so -lib/xtables/libxt_quota2.so -usr/bin/xt_geoip_query -#usr/lib/libxt_ACCOUNT_cl.la -#usr/lib/libxt_ACCOUNT_cl.so -usr/lib/libxt_ACCOUNT_cl.so.0 -usr/lib/libxt_ACCOUNT_cl.so.0.0.0 -#usr/libexec/xtables-addons -#usr/libexec/xtables-addons/xt_geoip_build -#usr/libexec/xtables-addons/xt_geoip_build_maxmind -#usr/libexec/xtables-addons/xt_geoip_dl -#usr/libexec/xtables-addons/xt_geoip_dl_maxmind -usr/sbin/iptaccount -usr/sbin/pknlusr -#usr/share/man/man1/xt_geoip_build.1 -#usr/share/man/man1/xt_geoip_build_maxmind.1 -#usr/share/man/man1/xt_geoip_dl.1 -#usr/share/man/man1/xt_geoip_dl_maxmind.1 -#usr/share/man/man1/xt_geoip_query.1 -#usr/share/man/man8/iptaccount.8 -#usr/share/man/man8/pknlusr.8 -#usr/share/man/man8/xtables-addons.8 diff --git a/config/rootfiles/common/zstd b/config/rootfiles/common/zstd index c0f4eee731..b4a2dbd951 100644 --- a/config/rootfiles/common/zstd +++ b/config/rootfiles/common/zstd @@ -10,7 +10,7 @@ usr/bin/zstdmt #usr/lib/libzstd.a #usr/lib/libzstd.so usr/lib/libzstd.so.1 -usr/lib/libzstd.so.1.5.1 +usr/lib/libzstd.so.1.5.2 #usr/lib/pkgconfig/libzstd.pc #usr/share/man/man1/unzstd.1 #usr/share/man/man1/zstd.1 diff --git a/config/rootfiles/core/164/core-files b/config/rootfiles/core/165/core-files similarity index 100% rename from config/rootfiles/core/164/core-files rename to config/rootfiles/core/165/core-files diff --git a/config/rootfiles/core/164/exclude b/config/rootfiles/core/165/exclude similarity index 100% rename from config/rootfiles/core/164/exclude rename to config/rootfiles/core/165/exclude diff --git a/config/rootfiles/core/165/filelists/aarch64/binutils b/config/rootfiles/core/165/filelists/aarch64/binutils new file mode 120000 index 0000000000..6da9d39e5e --- /dev/null +++ b/config/rootfiles/core/165/filelists/aarch64/binutils @@ -0,0 +1 @@ +../../../../common/aarch64/binutils \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/aarch64/gcc b/config/rootfiles/core/165/filelists/aarch64/gcc new file mode 120000 index 0000000000..97678cc16b --- /dev/null +++ b/config/rootfiles/core/165/filelists/aarch64/gcc @@ -0,0 +1 @@ +../../../../common/aarch64/gcc \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/aarch64/glibc b/config/rootfiles/core/165/filelists/aarch64/glibc new file mode 120000 index 0000000000..d13849ff91 --- /dev/null +++ b/config/rootfiles/core/165/filelists/aarch64/glibc @@ -0,0 +1 @@ +../../../../common/aarch64/glibc \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/armv6l/binutils b/config/rootfiles/core/165/filelists/armv6l/binutils new file mode 120000 index 0000000000..e4a14720ab --- /dev/null +++ b/config/rootfiles/core/165/filelists/armv6l/binutils @@ -0,0 +1 @@ +../../../../common/armv6l/binutils \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/armv6l/gcc b/config/rootfiles/core/165/filelists/armv6l/gcc new file mode 120000 index 0000000000..b8351ade3a --- /dev/null +++ b/config/rootfiles/core/165/filelists/armv6l/gcc @@ -0,0 +1 @@ +../../../../common/armv6l/gcc \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/armv6l/glibc b/config/rootfiles/core/165/filelists/armv6l/glibc new file mode 120000 index 0000000000..262a394f39 --- /dev/null +++ b/config/rootfiles/core/165/filelists/armv6l/glibc @@ -0,0 +1 @@ +../../../../common/armv6l/glibc \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/armv6l/python3 b/config/rootfiles/core/165/filelists/armv6l/python3 new file mode 120000 index 0000000000..605f806871 --- /dev/null +++ b/config/rootfiles/core/165/filelists/armv6l/python3 @@ -0,0 +1 @@ +../../../../common/armv6l/python3 \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/bash b/config/rootfiles/core/165/filelists/bash new file mode 120000 index 0000000000..de970cb1d1 --- /dev/null +++ b/config/rootfiles/core/165/filelists/bash @@ -0,0 +1 @@ +../../../common/bash \ No newline at end of file diff --git a/config/rootfiles/core/164/filelists/bind b/config/rootfiles/core/165/filelists/bind similarity index 100% rename from config/rootfiles/core/164/filelists/bind rename to config/rootfiles/core/165/filelists/bind diff --git a/config/rootfiles/core/165/filelists/curl b/config/rootfiles/core/165/filelists/curl new file mode 120000 index 0000000000..4b84bef53a --- /dev/null +++ b/config/rootfiles/core/165/filelists/curl @@ -0,0 +1 @@ +../../../common/curl \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/ddns b/config/rootfiles/core/165/filelists/ddns new file mode 120000 index 0000000000..739516420f --- /dev/null +++ b/config/rootfiles/core/165/filelists/ddns @@ -0,0 +1 @@ +../../../common/ddns \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/ethtool b/config/rootfiles/core/165/filelists/ethtool new file mode 120000 index 0000000000..494a53e9d6 --- /dev/null +++ b/config/rootfiles/core/165/filelists/ethtool @@ -0,0 +1 @@ +../../../common/ethtool \ No newline at end of file diff --git a/config/rootfiles/core/164/filelists/expat b/config/rootfiles/core/165/filelists/expat similarity index 100% rename from config/rootfiles/core/164/filelists/expat rename to config/rootfiles/core/165/filelists/expat diff --git a/config/rootfiles/core/165/filelists/files b/config/rootfiles/core/165/filelists/files new file mode 100644 index 0000000000..a5ae67f433 --- /dev/null +++ b/config/rootfiles/core/165/filelists/files @@ -0,0 +1,20 @@ +etc/rc.d/init.d/firewall +etc/rc.d/helper/oci-setup +opt/pakfire/etc/pakfire.conf +opt/pakfire/lib/functions.pl +srv/web/ipfire/cgi-bin/backup.cgi +srv/web/ipfire/cgi-bin/firewall.cgi +srv/web/ipfire/cgi-bin/logs.cgi/ovpnclients.dat +srv/web/ipfire/cgi-bin/media.cgi +srv/web/ipfire/cgi-bin/pakfire.cgi +srv/web/ipfire/cgi-bin/qos.cgi +srv/web/ipfire/cgi-bin/wirelessclient.cgi +srv/web/ipfire/html/themes/ipfire/include/css/style.css +usr/lib/firewall/firewall-lib.pl +usr/lib/firewall/rules.pl +usr/local/bin/update-location-database +usr/sbin/setup +var/ipfire/ids-functions.pl +var/ipfire/location-functions.pl +var/ipfire/main/manualpages +var/ipfire/menu.d/50-firewall.menu diff --git a/config/rootfiles/core/165/filelists/findutils b/config/rootfiles/core/165/filelists/findutils new file mode 120000 index 0000000000..545280ac5e --- /dev/null +++ b/config/rootfiles/core/165/filelists/findutils @@ -0,0 +1 @@ +../../../common/findutils \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/fireinfo b/config/rootfiles/core/165/filelists/fireinfo new file mode 120000 index 0000000000..c46115521f --- /dev/null +++ b/config/rootfiles/core/165/filelists/fireinfo @@ -0,0 +1 @@ +../../../common/fireinfo \ No newline at end of file diff --git a/config/rootfiles/core/164/filelists/gdbm b/config/rootfiles/core/165/filelists/gdbm similarity index 100% rename from config/rootfiles/core/164/filelists/gdbm rename to config/rootfiles/core/165/filelists/gdbm diff --git a/config/rootfiles/core/165/filelists/glib b/config/rootfiles/core/165/filelists/glib new file mode 120000 index 0000000000..44665746ad --- /dev/null +++ b/config/rootfiles/core/165/filelists/glib @@ -0,0 +1 @@ +../../../common/glib \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/harfbuzz b/config/rootfiles/core/165/filelists/harfbuzz new file mode 120000 index 0000000000..ffe1e0d0bd --- /dev/null +++ b/config/rootfiles/core/165/filelists/harfbuzz @@ -0,0 +1 @@ +../../../common/harfbuzz \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/iana-etc b/config/rootfiles/core/165/filelists/iana-etc new file mode 120000 index 0000000000..1f3d54dbd4 --- /dev/null +++ b/config/rootfiles/core/165/filelists/iana-etc @@ -0,0 +1 @@ +../../../common/iana-etc \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/iproute2 b/config/rootfiles/core/165/filelists/iproute2 new file mode 120000 index 0000000000..05f0f71fb5 --- /dev/null +++ b/config/rootfiles/core/165/filelists/iproute2 @@ -0,0 +1 @@ +../../../common/iproute2 \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/lcms2 b/config/rootfiles/core/165/filelists/lcms2 new file mode 120000 index 0000000000..f72a39451f --- /dev/null +++ b/config/rootfiles/core/165/filelists/lcms2 @@ -0,0 +1 @@ +../../../common/lcms2 \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/libarchive b/config/rootfiles/core/165/filelists/libarchive new file mode 120000 index 0000000000..551f1f7434 --- /dev/null +++ b/config/rootfiles/core/165/filelists/libarchive @@ -0,0 +1 @@ +../../../common/libarchive \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/libcap b/config/rootfiles/core/165/filelists/libcap new file mode 120000 index 0000000000..ed67d950a8 --- /dev/null +++ b/config/rootfiles/core/165/filelists/libcap @@ -0,0 +1 @@ +../../../common/libcap \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/libgpg-error b/config/rootfiles/core/165/filelists/libgpg-error new file mode 120000 index 0000000000..cad431339f --- /dev/null +++ b/config/rootfiles/core/165/filelists/libgpg-error @@ -0,0 +1 @@ +../../../common/libgpg-error \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/libloc b/config/rootfiles/core/165/filelists/libloc new file mode 120000 index 0000000000..ff4a92429c --- /dev/null +++ b/config/rootfiles/core/165/filelists/libloc @@ -0,0 +1 @@ +../../../common/libloc \ No newline at end of file diff --git a/config/rootfiles/core/164/filelists/libusb b/config/rootfiles/core/165/filelists/libusb similarity index 100% rename from config/rootfiles/core/164/filelists/libusb rename to config/rootfiles/core/165/filelists/libusb diff --git a/config/rootfiles/core/165/filelists/libxcrypt b/config/rootfiles/core/165/filelists/libxcrypt new file mode 120000 index 0000000000..ad93616b5e --- /dev/null +++ b/config/rootfiles/core/165/filelists/libxcrypt @@ -0,0 +1 @@ +../../../common/libxcrypt \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/lua b/config/rootfiles/core/165/filelists/lua new file mode 120000 index 0000000000..951f661c57 --- /dev/null +++ b/config/rootfiles/core/165/filelists/lua @@ -0,0 +1 @@ +../../../common/lua \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/mdadm b/config/rootfiles/core/165/filelists/mdadm new file mode 120000 index 0000000000..465808b209 --- /dev/null +++ b/config/rootfiles/core/165/filelists/mdadm @@ -0,0 +1 @@ +../../../common/mdadm \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/newt b/config/rootfiles/core/165/filelists/newt new file mode 120000 index 0000000000..fb3eb20c3e --- /dev/null +++ b/config/rootfiles/core/165/filelists/newt @@ -0,0 +1 @@ +../../../common/newt \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/openssl b/config/rootfiles/core/165/filelists/openssl new file mode 120000 index 0000000000..e011a9266c --- /dev/null +++ b/config/rootfiles/core/165/filelists/openssl @@ -0,0 +1 @@ +../../../common/openssl \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/p11-kit b/config/rootfiles/core/165/filelists/p11-kit new file mode 120000 index 0000000000..e652deb677 --- /dev/null +++ b/config/rootfiles/core/165/filelists/p11-kit @@ -0,0 +1 @@ +../../../common/p11-kit \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/pango b/config/rootfiles/core/165/filelists/pango new file mode 120000 index 0000000000..6c37231c7e --- /dev/null +++ b/config/rootfiles/core/165/filelists/pango @@ -0,0 +1 @@ +../../../common/pango \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/perl-HTTP-Date b/config/rootfiles/core/165/filelists/perl-HTTP-Date new file mode 120000 index 0000000000..c09f49e0fc --- /dev/null +++ b/config/rootfiles/core/165/filelists/perl-HTTP-Date @@ -0,0 +1 @@ +../../../common/perl-HTTP-Date \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/perl-HTTP-Message b/config/rootfiles/core/165/filelists/perl-HTTP-Message new file mode 120000 index 0000000000..13a7cf8049 --- /dev/null +++ b/config/rootfiles/core/165/filelists/perl-HTTP-Message @@ -0,0 +1 @@ +../../../common/perl-HTTP-Message \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/perl-LWP-Protocol-https b/config/rootfiles/core/165/filelists/perl-LWP-Protocol-https new file mode 120000 index 0000000000..b5b0354744 --- /dev/null +++ b/config/rootfiles/core/165/filelists/perl-LWP-Protocol-https @@ -0,0 +1 @@ +../../../common/perl-LWP-Protocol-https \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/perl-Net-HTTP b/config/rootfiles/core/165/filelists/perl-Net-HTTP new file mode 120000 index 0000000000..c6ab242fde --- /dev/null +++ b/config/rootfiles/core/165/filelists/perl-Net-HTTP @@ -0,0 +1 @@ +../../../common/perl-Net-HTTP \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/perl-Try-Tiny b/config/rootfiles/core/165/filelists/perl-Try-Tiny new file mode 120000 index 0000000000..3caec99a2d --- /dev/null +++ b/config/rootfiles/core/165/filelists/perl-Try-Tiny @@ -0,0 +1 @@ +../../../common/perl-Try-Tiny \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/perl-libwww b/config/rootfiles/core/165/filelists/perl-libwww new file mode 120000 index 0000000000..6b8bff6e17 --- /dev/null +++ b/config/rootfiles/core/165/filelists/perl-libwww @@ -0,0 +1 @@ +../../../common/perl-libwww \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/poppler b/config/rootfiles/core/165/filelists/poppler new file mode 120000 index 0000000000..39aa6c2638 --- /dev/null +++ b/config/rootfiles/core/165/filelists/poppler @@ -0,0 +1 @@ +../../../common/poppler \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/python3 b/config/rootfiles/core/165/filelists/python3 new file mode 120000 index 0000000000..0885b1c580 --- /dev/null +++ b/config/rootfiles/core/165/filelists/python3 @@ -0,0 +1 @@ +../../../common/python3 \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/python3-daemon b/config/rootfiles/core/165/filelists/python3-daemon new file mode 120000 index 0000000000..e8fbc7485b --- /dev/null +++ b/config/rootfiles/core/165/filelists/python3-daemon @@ -0,0 +1 @@ +../../../common/python3-daemon \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/python3-inotify b/config/rootfiles/core/165/filelists/python3-inotify new file mode 120000 index 0000000000..d2515bcba0 --- /dev/null +++ b/config/rootfiles/core/165/filelists/python3-inotify @@ -0,0 +1 @@ +../../../common/python3-inotify \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/sqlite b/config/rootfiles/core/165/filelists/sqlite new file mode 120000 index 0000000000..4ea5697669 --- /dev/null +++ b/config/rootfiles/core/165/filelists/sqlite @@ -0,0 +1 @@ +../../../common/sqlite \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/sudo b/config/rootfiles/core/165/filelists/sudo new file mode 120000 index 0000000000..0d3c45e042 --- /dev/null +++ b/config/rootfiles/core/165/filelists/sudo @@ -0,0 +1 @@ +../../../common/sudo \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/wpa_supplicant b/config/rootfiles/core/165/filelists/wpa_supplicant new file mode 120000 index 0000000000..1d04c03c01 --- /dev/null +++ b/config/rootfiles/core/165/filelists/wpa_supplicant @@ -0,0 +1 @@ +../../../common/wpa_supplicant \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/x86_64/binutils b/config/rootfiles/core/165/filelists/x86_64/binutils new file mode 120000 index 0000000000..7d0fda554d --- /dev/null +++ b/config/rootfiles/core/165/filelists/x86_64/binutils @@ -0,0 +1 @@ +../../../../common/x86_64/binutils \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/x86_64/gcc b/config/rootfiles/core/165/filelists/x86_64/gcc new file mode 120000 index 0000000000..d1616d377c --- /dev/null +++ b/config/rootfiles/core/165/filelists/x86_64/gcc @@ -0,0 +1 @@ +../../../../common/x86_64/gcc \ No newline at end of file diff --git a/config/rootfiles/core/165/filelists/x86_64/glibc b/config/rootfiles/core/165/filelists/x86_64/glibc new file mode 120000 index 0000000000..1119099669 --- /dev/null +++ b/config/rootfiles/core/165/filelists/x86_64/glibc @@ -0,0 +1 @@ +../../../../common/x86_64/glibc \ No newline at end of file diff --git a/config/rootfiles/core/164/filelists/zstd b/config/rootfiles/core/165/filelists/zstd similarity index 100% rename from config/rootfiles/core/164/filelists/zstd rename to config/rootfiles/core/165/filelists/zstd diff --git a/config/rootfiles/core/165/update.sh b/config/rootfiles/core/165/update.sh new file mode 100644 index 0000000000..8899ab7e96 --- /dev/null +++ b/config/rootfiles/core/165/update.sh @@ -0,0 +1,138 @@ +#!/bin/bash +############################################################################ +# # +# This file is part of the IPFire Firewall. # +# # +# IPFire is free software; you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation; either version 3 of the License, or # +# (at your option) any later version. # +# # +# IPFire is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with IPFire; if not, write to the Free Software # +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +# # +# Copyright (C) 2022 IPFire-Team . # +# # +############################################################################ +# +. /opt/pakfire/lib/functions.sh +/usr/local/bin/backupctrl exclude >/dev/null 2>&1 + +core=165 + +exit_with_error() { + # Set last succesfull installed core. + echo $(($core-1)) > /opt/pakfire/db/core/mine + # force fsck at next boot, this may fix free space on xfs + touch /forcefsck + # don't start pakfire again at error + killall -KILL pak_update + /usr/bin/logger -p syslog.emerg -t ipfire \ + "core-update-${core}: $1" + exit $2 +} + +# Remove old core updates from pakfire cache to save space... +for (( i=1; i<=$core; i++ )); do + rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire +done + +# Check diskspace on root +ROOTSPACE=`df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1` + +if [ $ROOTSPACE -lt 100000 ]; then + exit_with_error "ERROR cannot update because not enough free space on root." 2 + exit 2 +fi + +# Remove files +rm -rvf \ + /lib/xtables/libxt_ACCOUNT.so \ + /lib/xtables/libxt_CHAOS.so \ + /lib/xtables/libxt_condition.so \ + /lib/xtables/libxt_DELUDE.so \ + /lib/xtables/libxt_dhcpmac.so \ + /lib/xtables/libxt_DHCPMAC.so \ + /lib/xtables/libxt_DNETMAP.so \ + /lib/xtables/libxt_ECHO.so \ + /lib/xtables/libxt_fuzzy.so \ + /lib/xtables/libxt_geoip.so \ + /lib/xtables/libxt_gradm.so \ + /lib/xtables/libxt_iface.so \ + /lib/xtables/libxt_IPMARK.so \ + /lib/xtables/libxt_ipp2p.so \ + /lib/xtables/libxt_ipv4options.so \ + /lib/xtables/libxt_length2.so \ + /lib/xtables/libxt_LOGMARK.so \ + /lib/xtables/libxt_lscan.so \ + /lib/xtables/libxt_pknock.so \ + /lib/xtables/libxt_PROTO.so \ + /lib/xtables/libxt_psd.so \ + /lib/xtables/libxt_quota2.so \ + /lib/xtables/libxt_SYSRQ.so \ + /lib/xtables/libxt_TARPIT.so \ + /srv/web/ipfire/cgi-bin/p2p-block.cgi \ + /usr/bin/2to3-3.8 \ + /usr/bin/easy_install-3.8 \ + /usr/bin/idle3.8 \ + /usr/bin/pip3.8 \ + /usr/bin/pydoc3.8 \ + /usr/bin/python3.8 \ + /usr/bin/python3.8-config \ + /usr/bin/xt_geoip_query \ + /usr/lib/libpython3.8.so \ + /usr/lib/libpython3.8.so.1.0 \ + /usr/lib/libxt_ACCOUNT_cl.so* \ + /usr/lib/python3.8/ \ + /usr/sbin/iptaccount \ + /usr/sbin/ovpn-collectd-convert \ + /usr/sbin/pknlusr \ + /usr/share/xt_geoip/ \ + /var/ipfire/firewall/p2protocols + +# Stop services + +# Extract files +extract_files + +# update linker config +ldconfig + +# Update Language cache +/usr/local/bin/update-lang-cache + +# Filesytem cleanup +/usr/local/bin/filesystem-cleanup + +# Export location DB in new format. +/usr/bin/location export \ + --directory=/var/lib/location/ipset \ + --family=ipv4 \ + --format=ipset + +# Start services +telinit u +/etc/rc.d/init.d/firewall restart + +# This update needs a reboot... +touch /var/run/need_reboot + +# Finish +/etc/init.d/fireinfo start +sendprofile + +# Update grub config to display new core version +if [ -e /boot/grub/grub.cfg ]; then + grub-mkconfig -o /boot/grub/grub.cfg +fi + +sync + +# Don't report the exitcode last command +exit 0 diff --git a/config/rootfiles/oldcore/164/core-files b/config/rootfiles/oldcore/164/core-files new file mode 100644 index 0000000000..0dec37e538 --- /dev/null +++ b/config/rootfiles/oldcore/164/core-files @@ -0,0 +1,5 @@ +etc/system-release +etc/issue +etc/os-release +srv/web/ipfire/cgi-bin/credits.cgi +var/ipfire/langs diff --git a/config/rootfiles/oldcore/164/exclude b/config/rootfiles/oldcore/164/exclude new file mode 100644 index 0000000000..818039f4af --- /dev/null +++ b/config/rootfiles/oldcore/164/exclude @@ -0,0 +1,34 @@ +boot/config.txt +boot/grub/grub.cfg +boot/grub/grubenv +etc/alternatives +etc/collectd.custom +etc/default/grub +etc/ipsec.conf +etc/ipsec.secrets +etc/ipsec.user.conf +etc/ipsec.user.secrets +etc/localtime +etc/shadow +etc/snort/snort.conf +etc/ssl/openssl.cnf +etc/sudoers +etc/sysconfig/firewall.local +etc/sysconfig/rc.local +etc/udev/rules.d/30-persistent-network.rules +srv/web/ipfire/html/proxy.pac +usr/share/xt_geoip +var/ipfire/dma +var/ipfire/time +var/ipfire/firewall/locationblock +var/ipfire/fwhosts/customlocationgrp +var/ipfire/ovpn +var/ipfire/urlfilter/blacklist +var/ipfire/urlfilter/settings +var/lib/alternatives +var/lib/location/database.db +var/log/cache +var/log/dhcpcd.log +var/log/messages +var/state/dhcp/dhcpd.leases +var/updatecache diff --git a/config/rootfiles/core/164/filelists/aarch64/linux b/config/rootfiles/oldcore/164/filelists/aarch64/linux similarity index 100% rename from config/rootfiles/core/164/filelists/aarch64/linux rename to config/rootfiles/oldcore/164/filelists/aarch64/linux diff --git a/config/rootfiles/core/164/filelists/aarch64/linux-initrd b/config/rootfiles/oldcore/164/filelists/aarch64/linux-initrd similarity index 100% rename from config/rootfiles/core/164/filelists/aarch64/linux-initrd rename to config/rootfiles/oldcore/164/filelists/aarch64/linux-initrd diff --git a/config/rootfiles/core/164/filelists/aarch64/u-boot b/config/rootfiles/oldcore/164/filelists/aarch64/u-boot similarity index 100% rename from config/rootfiles/core/164/filelists/aarch64/u-boot rename to config/rootfiles/oldcore/164/filelists/aarch64/u-boot diff --git a/config/rootfiles/core/164/filelists/armv6l/linux b/config/rootfiles/oldcore/164/filelists/armv6l/linux similarity index 100% rename from config/rootfiles/core/164/filelists/armv6l/linux rename to config/rootfiles/oldcore/164/filelists/armv6l/linux diff --git a/config/rootfiles/core/164/filelists/armv6l/linux-initrd b/config/rootfiles/oldcore/164/filelists/armv6l/linux-initrd similarity index 100% rename from config/rootfiles/core/164/filelists/armv6l/linux-initrd rename to config/rootfiles/oldcore/164/filelists/armv6l/linux-initrd diff --git a/config/rootfiles/oldcore/164/filelists/bind b/config/rootfiles/oldcore/164/filelists/bind new file mode 120000 index 0000000000..48a0ebaefd --- /dev/null +++ b/config/rootfiles/oldcore/164/filelists/bind @@ -0,0 +1 @@ +../../../common/bind \ No newline at end of file diff --git a/config/rootfiles/core/164/filelists/core-files b/config/rootfiles/oldcore/164/filelists/core-files similarity index 100% rename from config/rootfiles/core/164/filelists/core-files rename to config/rootfiles/oldcore/164/filelists/core-files diff --git a/config/rootfiles/core/164/filelists/diffutils b/config/rootfiles/oldcore/164/filelists/diffutils similarity index 100% rename from config/rootfiles/core/164/filelists/diffutils rename to config/rootfiles/oldcore/164/filelists/diffutils diff --git a/config/rootfiles/oldcore/164/filelists/expat b/config/rootfiles/oldcore/164/filelists/expat new file mode 120000 index 0000000000..e1923cf639 --- /dev/null +++ b/config/rootfiles/oldcore/164/filelists/expat @@ -0,0 +1 @@ +../../../common/expat \ No newline at end of file diff --git a/config/rootfiles/core/164/filelists/files b/config/rootfiles/oldcore/164/filelists/files similarity index 100% rename from config/rootfiles/core/164/filelists/files rename to config/rootfiles/oldcore/164/filelists/files diff --git a/config/rootfiles/core/164/filelists/freetype b/config/rootfiles/oldcore/164/filelists/freetype similarity index 100% rename from config/rootfiles/core/164/filelists/freetype rename to config/rootfiles/oldcore/164/filelists/freetype diff --git a/config/rootfiles/oldcore/164/filelists/gdbm b/config/rootfiles/oldcore/164/filelists/gdbm new file mode 120000 index 0000000000..ecf63bf59e --- /dev/null +++ b/config/rootfiles/oldcore/164/filelists/gdbm @@ -0,0 +1 @@ +../../../common/gdbm \ No newline at end of file diff --git a/config/rootfiles/core/164/filelists/hdparm b/config/rootfiles/oldcore/164/filelists/hdparm similarity index 100% rename from config/rootfiles/core/164/filelists/hdparm rename to config/rootfiles/oldcore/164/filelists/hdparm diff --git a/config/rootfiles/core/164/filelists/ids-ruleset-sources b/config/rootfiles/oldcore/164/filelists/ids-ruleset-sources similarity index 100% rename from config/rootfiles/core/164/filelists/ids-ruleset-sources rename to config/rootfiles/oldcore/164/filelists/ids-ruleset-sources diff --git a/config/rootfiles/core/164/filelists/jq b/config/rootfiles/oldcore/164/filelists/jq similarity index 100% rename from config/rootfiles/core/164/filelists/jq rename to config/rootfiles/oldcore/164/filelists/jq diff --git a/config/rootfiles/core/164/filelists/kmod b/config/rootfiles/oldcore/164/filelists/kmod similarity index 100% rename from config/rootfiles/core/164/filelists/kmod rename to config/rootfiles/oldcore/164/filelists/kmod diff --git a/config/rootfiles/oldcore/164/filelists/libusb b/config/rootfiles/oldcore/164/filelists/libusb new file mode 120000 index 0000000000..edbe8c2150 --- /dev/null +++ b/config/rootfiles/oldcore/164/filelists/libusb @@ -0,0 +1 @@ +../../../common/libusb \ No newline at end of file diff --git a/config/rootfiles/core/164/filelists/libxml2 b/config/rootfiles/oldcore/164/filelists/libxml2 similarity index 100% rename from config/rootfiles/core/164/filelists/libxml2 rename to config/rootfiles/oldcore/164/filelists/libxml2 diff --git a/config/rootfiles/core/164/filelists/libxslt b/config/rootfiles/oldcore/164/filelists/libxslt similarity index 100% rename from config/rootfiles/core/164/filelists/libxslt rename to config/rootfiles/oldcore/164/filelists/libxslt diff --git a/config/rootfiles/core/164/filelists/libyang b/config/rootfiles/oldcore/164/filelists/libyang similarity index 100% rename from config/rootfiles/core/164/filelists/libyang rename to config/rootfiles/oldcore/164/filelists/libyang diff --git a/config/rootfiles/core/164/filelists/lvm2 b/config/rootfiles/oldcore/164/filelists/lvm2 similarity index 100% rename from config/rootfiles/core/164/filelists/lvm2 rename to config/rootfiles/oldcore/164/filelists/lvm2 diff --git a/config/rootfiles/core/164/filelists/oinkmaster b/config/rootfiles/oldcore/164/filelists/oinkmaster similarity index 100% rename from config/rootfiles/core/164/filelists/oinkmaster rename to config/rootfiles/oldcore/164/filelists/oinkmaster diff --git a/config/rootfiles/core/164/filelists/pciutils b/config/rootfiles/oldcore/164/filelists/pciutils similarity index 100% rename from config/rootfiles/core/164/filelists/pciutils rename to config/rootfiles/oldcore/164/filelists/pciutils diff --git a/config/rootfiles/core/164/filelists/pcre2 b/config/rootfiles/oldcore/164/filelists/pcre2 similarity index 100% rename from config/rootfiles/core/164/filelists/pcre2 rename to config/rootfiles/oldcore/164/filelists/pcre2 diff --git a/config/rootfiles/core/164/filelists/poppler-data b/config/rootfiles/oldcore/164/filelists/poppler-data similarity index 100% rename from config/rootfiles/core/164/filelists/poppler-data rename to config/rootfiles/oldcore/164/filelists/poppler-data diff --git a/config/rootfiles/core/164/filelists/shadow b/config/rootfiles/oldcore/164/filelists/shadow similarity index 100% rename from config/rootfiles/core/164/filelists/shadow rename to config/rootfiles/oldcore/164/filelists/shadow diff --git a/config/rootfiles/core/164/filelists/squid b/config/rootfiles/oldcore/164/filelists/squid similarity index 100% rename from config/rootfiles/core/164/filelists/squid rename to config/rootfiles/oldcore/164/filelists/squid diff --git a/config/rootfiles/core/164/filelists/tcl b/config/rootfiles/oldcore/164/filelists/tcl similarity index 100% rename from config/rootfiles/core/164/filelists/tcl rename to config/rootfiles/oldcore/164/filelists/tcl diff --git a/config/rootfiles/core/164/filelists/usbutils b/config/rootfiles/oldcore/164/filelists/usbutils similarity index 100% rename from config/rootfiles/core/164/filelists/usbutils rename to config/rootfiles/oldcore/164/filelists/usbutils diff --git a/config/rootfiles/core/164/filelists/x86_64/intel-microcode b/config/rootfiles/oldcore/164/filelists/x86_64/intel-microcode similarity index 100% rename from config/rootfiles/core/164/filelists/x86_64/intel-microcode rename to config/rootfiles/oldcore/164/filelists/x86_64/intel-microcode diff --git a/config/rootfiles/core/164/filelists/x86_64/linux b/config/rootfiles/oldcore/164/filelists/x86_64/linux similarity index 100% rename from config/rootfiles/core/164/filelists/x86_64/linux rename to config/rootfiles/oldcore/164/filelists/x86_64/linux diff --git a/config/rootfiles/core/164/filelists/x86_64/linux-initrd b/config/rootfiles/oldcore/164/filelists/x86_64/linux-initrd similarity index 100% rename from config/rootfiles/core/164/filelists/x86_64/linux-initrd rename to config/rootfiles/oldcore/164/filelists/x86_64/linux-initrd diff --git a/config/rootfiles/oldcore/164/filelists/zstd b/config/rootfiles/oldcore/164/filelists/zstd new file mode 120000 index 0000000000..d6d4a3bf13 --- /dev/null +++ b/config/rootfiles/oldcore/164/filelists/zstd @@ -0,0 +1 @@ +../../../common/zstd \ No newline at end of file diff --git a/config/rootfiles/core/164/update.sh b/config/rootfiles/oldcore/164/update.sh similarity index 100% rename from config/rootfiles/core/164/update.sh rename to config/rootfiles/oldcore/164/update.sh diff --git a/config/rootfiles/packages/aarch64/samba b/config/rootfiles/packages/aarch64/samba index ef03abb0f5..52425b8f5f 100644 --- a/config/rootfiles/packages/aarch64/samba +++ b/config/rootfiles/packages/aarch64/samba @@ -2,7 +2,6 @@ etc/rc.d/init.d/samba usr/bin/cifsdd usr/bin/dbwrap_tool usr/bin/dumpmscat -usr/bin/findsmb usr/bin/gentest usr/bin/ldbadd usr/bin/ldbdel @@ -12,7 +11,7 @@ usr/bin/ldbrename usr/bin/ldbsearch usr/bin/locktest usr/bin/masktest -usr/bin/mdfind +usr/bin/mdsearch usr/bin/mvxattr usr/bin/ndrdump usr/bin/net @@ -27,6 +26,7 @@ usr/bin/regshell usr/bin/regtree usr/bin/rpcclient usr/bin/samba-regedit +usr/bin/samba-tool usr/bin/sharesec usr/bin/smbcacls usr/bin/smbclient @@ -154,10 +154,11 @@ usr/lib/libndr-standard.so usr/lib/libndr-standard.so.0 usr/lib/libndr-standard.so.0.0.1 usr/lib/libndr.so -usr/lib/libndr.so.1 -usr/lib/libndr.so.1.0.1 +usr/lib/libndr.so.2 +usr/lib/libndr.so.2.0.0 usr/lib/libnetapi.so -usr/lib/libnetapi.so.0 +usr/lib/libnetapi.so.1 +usr/lib/libnetapi.so.1.0.0 usr/lib/libnss_winbind.so usr/lib/libnss_winbind.so.2 usr/lib/libnss_wins.so @@ -173,9 +174,9 @@ usr/lib/libsamba-hostconfig.so.0.0.1 usr/lib/libsamba-passdb.so usr/lib/libsamba-passdb.so.0 usr/lib/libsamba-passdb.so.0.28.0 -usr/lib/libsamba-policy.cpython-38-aarch64-linux-gnu.so -usr/lib/libsamba-policy.cpython-38-aarch64-linux-gnu.so.0 -usr/lib/libsamba-policy.cpython-38-aarch64-linux-gnu.so.0.0.1 +usr/lib/libsamba-policy.cpython-310-aarch64-linux-gnu.so +usr/lib/libsamba-policy.cpython-310-aarch64-linux-gnu.so.0 +usr/lib/libsamba-policy.cpython-310-aarch64-linux-gnu.so.0.0.1 usr/lib/libsamba-util.so usr/lib/libsamba-util.so.0 usr/lib/libsamba-util.so.0.0.1 @@ -205,394 +206,431 @@ usr/lib/libwbclient.so.0.15 #usr/lib/pkgconfig/netapi.pc #usr/lib/pkgconfig/samba-credentials.pc #usr/lib/pkgconfig/samba-hostconfig.pc -#usr/lib/pkgconfig/samba-policy.cpython-38-aarch64-linux-gnu.pc +#usr/lib/pkgconfig/samba-policy.cpython-310-aarch64-linux-gnu.pc #usr/lib/pkgconfig/samba-util.pc #usr/lib/pkgconfig/samdb.pc #usr/lib/pkgconfig/smbclient.pc #usr/lib/pkgconfig/wbclient.pc -usr/lib/python3.8/site-packages/_ldb_text.py -usr/lib/python3.8/site-packages/_tdb_text.py -usr/lib/python3.8/site-packages/_tevent.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/ldb.cpython-38-aarch64-linux-gnu.so -#usr/lib/python3.8/site-packages/samba -usr/lib/python3.8/site-packages/samba/__init__.py -usr/lib/python3.8/site-packages/samba/_glue.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/_ldb.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/auth.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/auth_util.py -usr/lib/python3.8/site-packages/samba/colour.py -usr/lib/python3.8/site-packages/samba/common.py -usr/lib/python3.8/site-packages/samba/credentials.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/crypto.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dbchecker.py -#usr/lib/python3.8/site-packages/samba/dcerpc -usr/lib/python3.8/site-packages/samba/dcerpc/__init__.py -usr/lib/python3.8/site-packages/samba/dcerpc/atsvc.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/auth.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/base.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dcerpc.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dfs.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dns.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dnsp.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dnsserver.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/drsblobs.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/drsuapi.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/echo.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/epmapper.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/idmap.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/initshutdown.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/irpc.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/krb5pac.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/lsa.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/mdssvc.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/messaging.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/mgmt.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/misc.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/nbt.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/netlogon.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/ntlmssp.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/preg.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/samr.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/security.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/server_id.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/smb_acl.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/spoolss.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/srvsvc.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/svcctl.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/unixinfo.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/winbind.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/windows_event_ids.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/winreg.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/winspool.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/witness.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/wkssvc.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/xattr.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/descriptor.py -usr/lib/python3.8/site-packages/samba/dnsresolver.py -usr/lib/python3.8/site-packages/samba/dnsserver.py -usr/lib/python3.8/site-packages/samba/domain_update.py -usr/lib/python3.8/site-packages/samba/drs_utils.py -#usr/lib/python3.8/site-packages/samba/emulate -usr/lib/python3.8/site-packages/samba/emulate/__init__.py -usr/lib/python3.8/site-packages/samba/emulate/traffic.py -usr/lib/python3.8/site-packages/samba/emulate/traffic_packets.py -usr/lib/python3.8/site-packages/samba/forest_update.py -usr/lib/python3.8/site-packages/samba/gensec.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/getopt.py -usr/lib/python3.8/site-packages/samba/gp_ext_loader.py -usr/lib/python3.8/site-packages/samba/gp_msgs_ext.py -#usr/lib/python3.8/site-packages/samba/gp_parse -usr/lib/python3.8/site-packages/samba/gp_parse/__init__.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_aas.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_csv.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_inf.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_ini.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_pol.py -usr/lib/python3.8/site-packages/samba/gp_scripts_ext.py -usr/lib/python3.8/site-packages/samba/gp_sec_ext.py -usr/lib/python3.8/site-packages/samba/gp_smb_conf_ext.py -usr/lib/python3.8/site-packages/samba/gp_sudoers_ext.py -usr/lib/python3.8/site-packages/samba/gpclass.py -usr/lib/python3.8/site-packages/samba/gpo.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/graph.py -usr/lib/python3.8/site-packages/samba/hostconfig.py -usr/lib/python3.8/site-packages/samba/idmap.py -usr/lib/python3.8/site-packages/samba/join.py -#usr/lib/python3.8/site-packages/samba/kcc -usr/lib/python3.8/site-packages/samba/kcc/__init__.py -usr/lib/python3.8/site-packages/samba/kcc/debug.py -usr/lib/python3.8/site-packages/samba/kcc/graph.py -usr/lib/python3.8/site-packages/samba/kcc/graph_utils.py -usr/lib/python3.8/site-packages/samba/kcc/kcc_utils.py -usr/lib/python3.8/site-packages/samba/kcc/ldif_import_export.py -usr/lib/python3.8/site-packages/samba/logger.py -usr/lib/python3.8/site-packages/samba/mdb_util.py -usr/lib/python3.8/site-packages/samba/messaging.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/ms_display_specifiers.py -usr/lib/python3.8/site-packages/samba/ms_forest_updates_markdown.py -usr/lib/python3.8/site-packages/samba/ms_schema.py -usr/lib/python3.8/site-packages/samba/ms_schema_markdown.py -usr/lib/python3.8/site-packages/samba/ndr.py -usr/lib/python3.8/site-packages/samba/net.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/netbios.cpython-38-aarch64-linux-gnu.so -#usr/lib/python3.8/site-packages/samba/netcmd -usr/lib/python3.8/site-packages/samba/netcmd/__init__.py -usr/lib/python3.8/site-packages/samba/netcmd/common.py -usr/lib/python3.8/site-packages/samba/netcmd/computer.py -usr/lib/python3.8/site-packages/samba/netcmd/contact.py -usr/lib/python3.8/site-packages/samba/netcmd/dbcheck.py -usr/lib/python3.8/site-packages/samba/netcmd/delegation.py -usr/lib/python3.8/site-packages/samba/netcmd/dns.py -usr/lib/python3.8/site-packages/samba/netcmd/domain.py -usr/lib/python3.8/site-packages/samba/netcmd/domain_backup.py -usr/lib/python3.8/site-packages/samba/netcmd/drs.py -usr/lib/python3.8/site-packages/samba/netcmd/dsacl.py -usr/lib/python3.8/site-packages/samba/netcmd/forest.py -usr/lib/python3.8/site-packages/samba/netcmd/fsmo.py -usr/lib/python3.8/site-packages/samba/netcmd/gpo.py -usr/lib/python3.8/site-packages/samba/netcmd/group.py -usr/lib/python3.8/site-packages/samba/netcmd/ldapcmp.py -usr/lib/python3.8/site-packages/samba/netcmd/main.py -usr/lib/python3.8/site-packages/samba/netcmd/nettime.py -usr/lib/python3.8/site-packages/samba/netcmd/ntacl.py -usr/lib/python3.8/site-packages/samba/netcmd/ou.py -usr/lib/python3.8/site-packages/samba/netcmd/processes.py -usr/lib/python3.8/site-packages/samba/netcmd/pso.py -usr/lib/python3.8/site-packages/samba/netcmd/rodc.py -usr/lib/python3.8/site-packages/samba/netcmd/schema.py -usr/lib/python3.8/site-packages/samba/netcmd/sites.py -usr/lib/python3.8/site-packages/samba/netcmd/spn.py -usr/lib/python3.8/site-packages/samba/netcmd/testparm.py -usr/lib/python3.8/site-packages/samba/netcmd/user.py -usr/lib/python3.8/site-packages/samba/netcmd/visualize.py -usr/lib/python3.8/site-packages/samba/ntacls.py -usr/lib/python3.8/site-packages/samba/ntstatus.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/param.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/policy.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/posix_eadb.cpython-38-aarch64-linux-gnu.so -#usr/lib/python3.8/site-packages/samba/provision -usr/lib/python3.8/site-packages/samba/provision/__init__.py -usr/lib/python3.8/site-packages/samba/provision/backend.py -usr/lib/python3.8/site-packages/samba/provision/common.py -usr/lib/python3.8/site-packages/samba/provision/kerberos.py -usr/lib/python3.8/site-packages/samba/provision/kerberos_implementation.py -usr/lib/python3.8/site-packages/samba/provision/sambadns.py -usr/lib/python3.8/site-packages/samba/registry.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/remove_dc.py -#usr/lib/python3.8/site-packages/samba/samba3 -usr/lib/python3.8/site-packages/samba/samba3/__init__.py -usr/lib/python3.8/site-packages/samba/samba3/libsmb_samba_cwrapper.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/libsmb_samba_internal.py -usr/lib/python3.8/site-packages/samba/samba3/mdscli.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/param.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/passdb.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/smbd.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samdb.py -usr/lib/python3.8/site-packages/samba/schema.py -usr/lib/python3.8/site-packages/samba/sd_utils.py -usr/lib/python3.8/site-packages/samba/security.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/sites.py -usr/lib/python3.8/site-packages/samba/subnets.py -#usr/lib/python3.8/site-packages/samba/subunit -usr/lib/python3.8/site-packages/samba/subunit/__init__.py -usr/lib/python3.8/site-packages/samba/subunit/run.py -usr/lib/python3.8/site-packages/samba/tdb_util.py -#usr/lib/python3.8/site-packages/samba/tests -#usr/lib/python3.8/site-packages/samba/tests/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_base.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_dsdb.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_pass_change.py -#usr/lib/python3.8/site-packages/samba/tests/auth.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_base.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_ncalrpc.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_netlogon.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_netlogon_bad_creds.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_pass_change.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_samlogon.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_winbind.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox -#usr/lib/python3.8/site-packages/samba/tests/blackbox/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/bug13653.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/check_output.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/downgradedatabase.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/mdfind.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/ndrdump.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/netads_json.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/samba_dnsupdate.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls_basic.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls_dfs_propagate_inherit.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls_propagate_inhertance.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcontrol.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcontrol_process.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_learner.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_replay.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_summary.py -#usr/lib/python3.8/site-packages/samba/tests/common.py -#usr/lib/python3.8/site-packages/samba/tests/complex_expressions.py -#usr/lib/python3.8/site-packages/samba/tests/core.py -#usr/lib/python3.8/site-packages/samba/tests/cred_opt.py -#usr/lib/python3.8/site-packages/samba/tests/credentials.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/array.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/bare.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/binding.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/createtrustrelax.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/dnsserver.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/integer.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/mdssvc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/misc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/raw_protocol.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/raw_testcase.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/registry.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/rpc_talloc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/rpcecho.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/sam.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/samr_change_password.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/srvsvc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/string_tests.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/testrpc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/unix.py -#usr/lib/python3.8/site-packages/samba/tests/dckeytab.py -#usr/lib/python3.8/site-packages/samba/tests/dns.py -#usr/lib/python3.8/site-packages/samba/tests/dns_base.py -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder.py -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder_helpers -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder_helpers/server.py -#usr/lib/python3.8/site-packages/samba/tests/dns_invalid.py -#usr/lib/python3.8/site-packages/samba/tests/dns_packet.py -#usr/lib/python3.8/site-packages/samba/tests/dns_tkey.py -#usr/lib/python3.8/site-packages/samba/tests/dns_wildcard.py -#usr/lib/python3.8/site-packages/samba/tests/docs.py -#usr/lib/python3.8/site-packages/samba/tests/domain_backup.py -#usr/lib/python3.8/site-packages/samba/tests/domain_backup_offline.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb_lock.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb_schema_attributes.py -#usr/lib/python3.8/site-packages/samba/tests/emulate -#usr/lib/python3.8/site-packages/samba/tests/emulate/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/emulate/traffic.py -#usr/lib/python3.8/site-packages/samba/tests/emulate/traffic_packet.py -#usr/lib/python3.8/site-packages/samba/tests/encrypted_secrets.py -#usr/lib/python3.8/site-packages/samba/tests/gensec.py -#usr/lib/python3.8/site-packages/samba/tests/get_opt.py -#usr/lib/python3.8/site-packages/samba/tests/getdcname.py -#usr/lib/python3.8/site-packages/samba/tests/glue.py -#usr/lib/python3.8/site-packages/samba/tests/gpo.py -#usr/lib/python3.8/site-packages/samba/tests/graph.py -#usr/lib/python3.8/site-packages/samba/tests/group_audit.py -#usr/lib/python3.8/site-packages/samba/tests/hostconfig.py -#usr/lib/python3.8/site-packages/samba/tests/join.py -#usr/lib/python3.8/site-packages/samba/tests/kcc -#usr/lib/python3.8/site-packages/samba/tests/kcc/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/graph.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/graph_utils.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/kcc_utils.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/ldif_import_export.py -#usr/lib/python3.8/site-packages/samba/tests/krb5 -#usr/lib/python3.8/site-packages/samba/tests/krb5/as_canonicalization_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/compatability_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kcrypto.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kdc_base_test.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kdc_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kdc_tgs_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/raw_testcase.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/rfc4120_constants.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/rfc4120_pyasn1.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/s4u_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/simple_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/xrealm_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5_credentials.py -#usr/lib/python3.8/site-packages/samba/tests/ldap_raw.py -#usr/lib/python3.8/site-packages/samba/tests/ldap_referrals.py -#usr/lib/python3.8/site-packages/samba/tests/libsmb.py -#usr/lib/python3.8/site-packages/samba/tests/loadparm.py -#usr/lib/python3.8/site-packages/samba/tests/lsa_string.py -#usr/lib/python3.8/site-packages/samba/tests/messaging.py -#usr/lib/python3.8/site-packages/samba/tests/net_join.py -#usr/lib/python3.8/site-packages/samba/tests/net_join_no_spnego.py -#usr/lib/python3.8/site-packages/samba/tests/netbios.py -#usr/lib/python3.8/site-packages/samba/tests/netcmd.py -#usr/lib/python3.8/site-packages/samba/tests/netlogonsvc.py -#usr/lib/python3.8/site-packages/samba/tests/ntacls.py -#usr/lib/python3.8/site-packages/samba/tests/ntacls_backup.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth_base.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth_krb5.py -#usr/lib/python3.8/site-packages/samba/tests/ntlmdisabled.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind_chauthtok.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind_warn_pwd_expire.py -#usr/lib/python3.8/site-packages/samba/tests/param.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_fl2003.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_fl2008.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_gpgme.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_ldap.py -#usr/lib/python3.8/site-packages/samba/tests/password_quality.py -#usr/lib/python3.8/site-packages/samba/tests/password_test.py -#usr/lib/python3.8/site-packages/samba/tests/policy.py -#usr/lib/python3.8/site-packages/samba/tests/posixacl.py -#usr/lib/python3.8/site-packages/samba/tests/prefork_restart.py -#usr/lib/python3.8/site-packages/samba/tests/process_limits.py -#usr/lib/python3.8/site-packages/samba/tests/provision.py -#usr/lib/python3.8/site-packages/samba/tests/pso.py -#usr/lib/python3.8/site-packages/samba/tests/py_credentials.py -#usr/lib/python3.8/site-packages/samba/tests/registry.py -#usr/lib/python3.8/site-packages/samba/tests/s3idmapdb.py -#usr/lib/python3.8/site-packages/samba/tests/s3param.py -#usr/lib/python3.8/site-packages/samba/tests/s3passdb.py -#usr/lib/python3.8/site-packages/samba/tests/s3registry.py -#usr/lib/python3.8/site-packages/samba/tests/s3windb.py -#usr/lib/python3.8/site-packages/samba/tests/samba3sam.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/base.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/computer.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/contact.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/demote.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/dnscmd.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/drs_clone_dc_data_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/dsacl.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/forest.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/fsmo.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/gpo.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/group.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/help.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/join.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/join_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/ntacl.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/ou.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/passwordsettings.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/processes.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/promote_dc_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/provision_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/provision_password_check.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/rodc.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/schema.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/sites.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/timecmd.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_check_password_script.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_base.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_gpg.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_userPassword.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_wdigest.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/visualize.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/visualize_drs.py -#usr/lib/python3.8/site-packages/samba/tests/samba_upgradedns_lmdb.py -#usr/lib/python3.8/site-packages/samba/tests/samdb.py -#usr/lib/python3.8/site-packages/samba/tests/samdb_api.py -#usr/lib/python3.8/site-packages/samba/tests/security.py -#usr/lib/python3.8/site-packages/samba/tests/segfault.py -#usr/lib/python3.8/site-packages/samba/tests/smb-notify.py -#usr/lib/python3.8/site-packages/samba/tests/smb.py -#usr/lib/python3.8/site-packages/samba/tests/smbd_base.py -#usr/lib/python3.8/site-packages/samba/tests/smbd_fuzztest.py -#usr/lib/python3.8/site-packages/samba/tests/source.py -#usr/lib/python3.8/site-packages/samba/tests/strings.py -#usr/lib/python3.8/site-packages/samba/tests/subunitrun.py -#usr/lib/python3.8/site-packages/samba/tests/tdb_util.py -#usr/lib/python3.8/site-packages/samba/tests/upgrade.py -#usr/lib/python3.8/site-packages/samba/tests/upgradeprovision.py -#usr/lib/python3.8/site-packages/samba/tests/upgradeprovisionneeddc.py -#usr/lib/python3.8/site-packages/samba/tests/usage.py -#usr/lib/python3.8/site-packages/samba/tests/xattr.py -#usr/lib/python3.8/site-packages/samba/trust_utils.py -usr/lib/python3.8/site-packages/samba/upgrade.py -usr/lib/python3.8/site-packages/samba/upgradehelpers.py -usr/lib/python3.8/site-packages/samba/uptodateness.py -usr/lib/python3.8/site-packages/samba/vgp_sudoers_ext.py -usr/lib/python3.8/site-packages/samba/werror.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/xattr.py -usr/lib/python3.8/site-packages/samba/xattr_native.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/xattr_tdb.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/talloc.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/tdb.cpython-38-aarch64-linux-gnu.so -usr/lib/python3.8/site-packages/tevent.py +usr/lib/python3.10/site-packages/_ldb_text.py +usr/lib/python3.10/site-packages/_tdb_text.py +usr/lib/python3.10/site-packages/_tevent.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/ldb.cpython-310-aarch64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba +usr/lib/python3.10/site-packages/samba/__init__.py +usr/lib/python3.10/site-packages/samba/_glue.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/_ldb.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/auth.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/auth_util.py +usr/lib/python3.10/site-packages/samba/colour.py +usr/lib/python3.10/site-packages/samba/common.py +usr/lib/python3.10/site-packages/samba/credentials.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/crypto.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dbchecker.py +#usr/lib/python3.10/site-packages/samba/dcerpc +usr/lib/python3.10/site-packages/samba/dcerpc/__init__.py +usr/lib/python3.10/site-packages/samba/dcerpc/atsvc.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/auth.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/base.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dcerpc.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dfs.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dns.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dnsp.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dnsserver.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/drsblobs.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/drsuapi.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/echo.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/epmapper.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/idmap.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/initshutdown.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/irpc.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/krb5ccache.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/krb5pac.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/lsa.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/mdssvc.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/messaging.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/mgmt.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/misc.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/nbt.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/netlogon.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/ntlmssp.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/preg.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/samr.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/security.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/server_id.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/smb_acl.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/spoolss.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/srvsvc.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/svcctl.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/unixinfo.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/winbind.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/windows_event_ids.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/winreg.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/winspool.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/witness.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/wkssvc.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/xattr.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/descriptor.py +usr/lib/python3.10/site-packages/samba/dnsresolver.py +usr/lib/python3.10/site-packages/samba/dnsserver.py +usr/lib/python3.10/site-packages/samba/domain_update.py +usr/lib/python3.10/site-packages/samba/drs_utils.py +usr/lib/python3.10/site-packages/samba/dsdb.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dsdb_dns.cpython-310-aarch64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba/emulate +usr/lib/python3.10/site-packages/samba/emulate/__init__.py +usr/lib/python3.10/site-packages/samba/emulate/traffic.py +usr/lib/python3.10/site-packages/samba/emulate/traffic_packets.py +usr/lib/python3.10/site-packages/samba/forest_update.py +usr/lib/python3.10/site-packages/samba/gensec.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/getopt.py +usr/lib/python3.10/site-packages/samba/gp_ext_loader.py +usr/lib/python3.10/site-packages/samba/gp_gnome_settings_ext.py +usr/lib/python3.10/site-packages/samba/gp_msgs_ext.py +#usr/lib/python3.10/site-packages/samba/gp_parse +usr/lib/python3.10/site-packages/samba/gp_parse/__init__.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_aas.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_csv.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_inf.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_ini.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_pol.py +usr/lib/python3.10/site-packages/samba/gp_scripts_ext.py +usr/lib/python3.10/site-packages/samba/gp_sec_ext.py +usr/lib/python3.10/site-packages/samba/gp_smb_conf_ext.py +usr/lib/python3.10/site-packages/samba/gp_sudoers_ext.py +usr/lib/python3.10/site-packages/samba/gpclass.py +usr/lib/python3.10/site-packages/samba/gpo.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/graph.py +usr/lib/python3.10/site-packages/samba/hostconfig.py +usr/lib/python3.10/site-packages/samba/idmap.py +usr/lib/python3.10/site-packages/samba/join.py +#usr/lib/python3.10/site-packages/samba/kcc +usr/lib/python3.10/site-packages/samba/kcc/__init__.py +usr/lib/python3.10/site-packages/samba/kcc/debug.py +usr/lib/python3.10/site-packages/samba/kcc/graph.py +usr/lib/python3.10/site-packages/samba/kcc/graph_utils.py +usr/lib/python3.10/site-packages/samba/kcc/kcc_utils.py +usr/lib/python3.10/site-packages/samba/kcc/ldif_import_export.py +usr/lib/python3.10/site-packages/samba/logger.py +usr/lib/python3.10/site-packages/samba/mdb_util.py +usr/lib/python3.10/site-packages/samba/messaging.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/ms_display_specifiers.py +usr/lib/python3.10/site-packages/samba/ms_forest_updates_markdown.py +usr/lib/python3.10/site-packages/samba/ms_schema.py +usr/lib/python3.10/site-packages/samba/ms_schema_markdown.py +usr/lib/python3.10/site-packages/samba/ndr.py +usr/lib/python3.10/site-packages/samba/net.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/netbios.cpython-310-aarch64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba/netcmd +usr/lib/python3.10/site-packages/samba/netcmd/__init__.py +usr/lib/python3.10/site-packages/samba/netcmd/common.py +usr/lib/python3.10/site-packages/samba/netcmd/computer.py +usr/lib/python3.10/site-packages/samba/netcmd/contact.py +usr/lib/python3.10/site-packages/samba/netcmd/dbcheck.py +usr/lib/python3.10/site-packages/samba/netcmd/delegation.py +usr/lib/python3.10/site-packages/samba/netcmd/dns.py +usr/lib/python3.10/site-packages/samba/netcmd/domain.py +usr/lib/python3.10/site-packages/samba/netcmd/domain_backup.py +usr/lib/python3.10/site-packages/samba/netcmd/drs.py +usr/lib/python3.10/site-packages/samba/netcmd/dsacl.py +usr/lib/python3.10/site-packages/samba/netcmd/forest.py +usr/lib/python3.10/site-packages/samba/netcmd/fsmo.py +usr/lib/python3.10/site-packages/samba/netcmd/gpo.py +usr/lib/python3.10/site-packages/samba/netcmd/group.py +usr/lib/python3.10/site-packages/samba/netcmd/ldapcmp.py +usr/lib/python3.10/site-packages/samba/netcmd/main.py +usr/lib/python3.10/site-packages/samba/netcmd/nettime.py +usr/lib/python3.10/site-packages/samba/netcmd/ntacl.py +usr/lib/python3.10/site-packages/samba/netcmd/ou.py +usr/lib/python3.10/site-packages/samba/netcmd/processes.py +usr/lib/python3.10/site-packages/samba/netcmd/pso.py +usr/lib/python3.10/site-packages/samba/netcmd/rodc.py +usr/lib/python3.10/site-packages/samba/netcmd/schema.py +usr/lib/python3.10/site-packages/samba/netcmd/sites.py +usr/lib/python3.10/site-packages/samba/netcmd/spn.py +usr/lib/python3.10/site-packages/samba/netcmd/testparm.py +usr/lib/python3.10/site-packages/samba/netcmd/user.py +usr/lib/python3.10/site-packages/samba/netcmd/visualize.py +usr/lib/python3.10/site-packages/samba/ntacls.py +usr/lib/python3.10/site-packages/samba/ntstatus.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/param.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/policy.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/posix_eadb.cpython-310-aarch64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba/provision +usr/lib/python3.10/site-packages/samba/provision/__init__.py +usr/lib/python3.10/site-packages/samba/provision/backend.py +usr/lib/python3.10/site-packages/samba/provision/common.py +usr/lib/python3.10/site-packages/samba/provision/kerberos.py +usr/lib/python3.10/site-packages/samba/provision/kerberos_implementation.py +usr/lib/python3.10/site-packages/samba/provision/sambadns.py +usr/lib/python3.10/site-packages/samba/registry.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/remove_dc.py +#usr/lib/python3.10/site-packages/samba/samba3 +usr/lib/python3.10/site-packages/samba/samba3/__init__.py +usr/lib/python3.10/site-packages/samba/samba3/libsmb_samba_cwrapper.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/libsmb_samba_internal.py +usr/lib/python3.10/site-packages/samba/samba3/mdscli.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/param.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/passdb.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/smbd.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samdb.py +usr/lib/python3.10/site-packages/samba/schema.py +usr/lib/python3.10/site-packages/samba/sd_utils.py +usr/lib/python3.10/site-packages/samba/security.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/sites.py +usr/lib/python3.10/site-packages/samba/subnets.py +#usr/lib/python3.10/site-packages/samba/subunit +usr/lib/python3.10/site-packages/samba/subunit/__init__.py +usr/lib/python3.10/site-packages/samba/subunit/run.py +usr/lib/python3.10/site-packages/samba/tdb_util.py +#usr/lib/python3.10/site-packages/samba/tests +#usr/lib/python3.10/site-packages/samba/tests/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_base.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_dsdb.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_pass_change.py +#usr/lib/python3.10/site-packages/samba/tests/auth.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_base.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_ncalrpc.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_netlogon.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_netlogon_bad_creds.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_pass_change.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_samlogon.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_winbind.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox +#usr/lib/python3.10/site-packages/samba/tests/blackbox/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/bug13653.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/check_output.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/downgradedatabase.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/mdsearch.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/ndrdump.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/netads_json.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/samba_dnsupdate.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls_basic.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls_dfs_propagate_inherit.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls_propagate_inhertance.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcontrol.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcontrol_process.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_learner.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_replay.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_summary.py +#usr/lib/python3.10/site-packages/samba/tests/common.py +#usr/lib/python3.10/site-packages/samba/tests/complex_expressions.py +#usr/lib/python3.10/site-packages/samba/tests/core.py +#usr/lib/python3.10/site-packages/samba/tests/cred_opt.py +#usr/lib/python3.10/site-packages/samba/tests/credentials.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/array.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/bare.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/binding.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/createtrustrelax.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/dnsserver.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/integer.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/lsa.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/mdssvc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/misc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/raw_protocol.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/raw_testcase.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/registry.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/rpc_talloc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/rpcecho.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/sam.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/samr_change_password.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/srvsvc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/string_tests.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/testrpc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/unix.py +#usr/lib/python3.10/site-packages/samba/tests/dckeytab.py +#usr/lib/python3.10/site-packages/samba/tests/dns.py +#usr/lib/python3.10/site-packages/samba/tests/dns_aging.py +#usr/lib/python3.10/site-packages/samba/tests/dns_base.py +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder.py +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder_helpers +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder_helpers/server.py +#usr/lib/python3.10/site-packages/samba/tests/dns_invalid.py +#usr/lib/python3.10/site-packages/samba/tests/dns_packet.py +#usr/lib/python3.10/site-packages/samba/tests/dns_tkey.py +#usr/lib/python3.10/site-packages/samba/tests/dns_wildcard.py +#usr/lib/python3.10/site-packages/samba/tests/docs.py +#usr/lib/python3.10/site-packages/samba/tests/domain_backup.py +#usr/lib/python3.10/site-packages/samba/tests/domain_backup_offline.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_api.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_dns.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_lock.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_schema_attributes.py +#usr/lib/python3.10/site-packages/samba/tests/emulate +#usr/lib/python3.10/site-packages/samba/tests/emulate/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/emulate/traffic.py +#usr/lib/python3.10/site-packages/samba/tests/emulate/traffic_packet.py +#usr/lib/python3.10/site-packages/samba/tests/encrypted_secrets.py +#usr/lib/python3.10/site-packages/samba/tests/gensec.py +#usr/lib/python3.10/site-packages/samba/tests/get_opt.py +#usr/lib/python3.10/site-packages/samba/tests/getdcname.py +#usr/lib/python3.10/site-packages/samba/tests/glue.py +#usr/lib/python3.10/site-packages/samba/tests/gpo.py +#usr/lib/python3.10/site-packages/samba/tests/gpo_member.py +#usr/lib/python3.10/site-packages/samba/tests/graph.py +#usr/lib/python3.10/site-packages/samba/tests/group_audit.py +#usr/lib/python3.10/site-packages/samba/tests/hostconfig.py +#usr/lib/python3.10/site-packages/samba/tests/imports.py +#usr/lib/python3.10/site-packages/samba/tests/join.py +#usr/lib/python3.10/site-packages/samba/tests/kcc +#usr/lib/python3.10/site-packages/samba/tests/kcc/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/graph.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/graph_utils.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/kcc_utils.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/ldif_import_export.py +#usr/lib/python3.10/site-packages/samba/tests/krb5 +#usr/lib/python3.10/site-packages/samba/tests/krb5/alias_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/as_canonicalization_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/as_req_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/compatability_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/fast_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kcrypto.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kdc_base_test.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kdc_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kdc_tgs_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/ms_kile_client_principal_lookup_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/raw_testcase.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/rfc4120_constants.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/rfc4120_pyasn1.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/rodc_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/s4u_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/salt_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/simple_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/spn_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_ccache.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_idmap_nss.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_ldap.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_min_domain_uid.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_rpc.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_smb.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/xrealm_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5_credentials.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_raw.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_referrals.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_spn.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_upn_sam_account.py +#usr/lib/python3.10/site-packages/samba/tests/libsmb.py +#usr/lib/python3.10/site-packages/samba/tests/loadparm.py +#usr/lib/python3.10/site-packages/samba/tests/lsa_string.py +#usr/lib/python3.10/site-packages/samba/tests/messaging.py +#usr/lib/python3.10/site-packages/samba/tests/ndr.py +#usr/lib/python3.10/site-packages/samba/tests/net_join.py +#usr/lib/python3.10/site-packages/samba/tests/net_join_no_spnego.py +#usr/lib/python3.10/site-packages/samba/tests/netbios.py +#usr/lib/python3.10/site-packages/samba/tests/netcmd.py +#usr/lib/python3.10/site-packages/samba/tests/netlogonsvc.py +#usr/lib/python3.10/site-packages/samba/tests/ntacls.py +#usr/lib/python3.10/site-packages/samba/tests/ntacls_backup.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth_base.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth_krb5.py +#usr/lib/python3.10/site-packages/samba/tests/ntlmdisabled.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind_chauthtok.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind_warn_pwd_expire.py +#usr/lib/python3.10/site-packages/samba/tests/param.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_fl2003.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_fl2008.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_gpgme.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_ldap.py +#usr/lib/python3.10/site-packages/samba/tests/password_quality.py +#usr/lib/python3.10/site-packages/samba/tests/password_test.py +#usr/lib/python3.10/site-packages/samba/tests/policy.py +#usr/lib/python3.10/site-packages/samba/tests/posixacl.py +#usr/lib/python3.10/site-packages/samba/tests/prefork_restart.py +#usr/lib/python3.10/site-packages/samba/tests/process_limits.py +#usr/lib/python3.10/site-packages/samba/tests/provision.py +#usr/lib/python3.10/site-packages/samba/tests/pso.py +#usr/lib/python3.10/site-packages/samba/tests/py_credentials.py +#usr/lib/python3.10/site-packages/samba/tests/registry.py +#usr/lib/python3.10/site-packages/samba/tests/s3_net_join.py +#usr/lib/python3.10/site-packages/samba/tests/s3idmapdb.py +#usr/lib/python3.10/site-packages/samba/tests/s3param.py +#usr/lib/python3.10/site-packages/samba/tests/s3passdb.py +#usr/lib/python3.10/site-packages/samba/tests/s3registry.py +#usr/lib/python3.10/site-packages/samba/tests/s3windb.py +#usr/lib/python3.10/site-packages/samba/tests/samba3sam.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/base.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/computer.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/contact.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/demote.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/dnscmd.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/drs_clone_dc_data_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/dsacl.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/forest.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/fsmo.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/gpo.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/gpo_exts.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/group.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/help.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/join.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/join_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/ntacl.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/ou.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/passwordsettings.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/processes.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/promote_dc_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_password_check.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_userPassword_crypt.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/rodc.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/schema.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/sites.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/timecmd.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_check_password_script.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_base.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_gpg.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_userPassword.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_wdigest.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/visualize.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/visualize_drs.py +#usr/lib/python3.10/site-packages/samba/tests/samba_upgradedns_lmdb.py +#usr/lib/python3.10/site-packages/samba/tests/samdb.py +#usr/lib/python3.10/site-packages/samba/tests/samdb_api.py +#usr/lib/python3.10/site-packages/samba/tests/sddl.py +#usr/lib/python3.10/site-packages/samba/tests/security.py +#usr/lib/python3.10/site-packages/samba/tests/segfault.py +#usr/lib/python3.10/site-packages/samba/tests/smb-notify.py +#usr/lib/python3.10/site-packages/samba/tests/smb.py +#usr/lib/python3.10/site-packages/samba/tests/smbd_base.py +#usr/lib/python3.10/site-packages/samba/tests/smbd_fuzztest.py +#usr/lib/python3.10/site-packages/samba/tests/source.py +#usr/lib/python3.10/site-packages/samba/tests/strings.py +#usr/lib/python3.10/site-packages/samba/tests/subunitrun.py +#usr/lib/python3.10/site-packages/samba/tests/tdb_util.py +#usr/lib/python3.10/site-packages/samba/tests/upgrade.py +#usr/lib/python3.10/site-packages/samba/tests/upgradeprovision.py +#usr/lib/python3.10/site-packages/samba/tests/upgradeprovisionneeddc.py +#usr/lib/python3.10/site-packages/samba/tests/usage.py +#usr/lib/python3.10/site-packages/samba/tests/xattr.py +usr/lib/python3.10/site-packages/samba/trust_utils.py +usr/lib/python3.10/site-packages/samba/upgrade.py +usr/lib/python3.10/site-packages/samba/upgradehelpers.py +usr/lib/python3.10/site-packages/samba/uptodateness.py +usr/lib/python3.10/site-packages/samba/vgp_access_ext.py +usr/lib/python3.10/site-packages/samba/vgp_files_ext.py +usr/lib/python3.10/site-packages/samba/vgp_issue_ext.py +usr/lib/python3.10/site-packages/samba/vgp_motd_ext.py +usr/lib/python3.10/site-packages/samba/vgp_openssh_ext.py +usr/lib/python3.10/site-packages/samba/vgp_startup_scripts_ext.py +usr/lib/python3.10/site-packages/samba/vgp_sudoers_ext.py +usr/lib/python3.10/site-packages/samba/werror.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/vgp_symlink_ext.py +usr/lib/python3.10/site-packages/samba/xattr.py +usr/lib/python3.10/site-packages/samba/xattr_native.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/xattr_tdb.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/talloc.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/tdb.cpython-310-aarch64-linux-gnu.so +usr/lib/python3.10/site-packages/tevent.py #usr/lib/samba usr/lib/samba/idmap usr/lib/samba/idmap/ad.so @@ -639,14 +677,16 @@ usr/lib/samba/libcliauth-samba4.so usr/lib/samba/libclidns-samba4.so usr/lib/samba/libcluster-samba4.so usr/lib/samba/libcmdline-contexts-samba4.so -usr/lib/samba/libcmdline-credentials-samba4.so +usr/lib/samba/libcmdline-samba4.so usr/lib/samba/libcmocka-samba4.so usr/lib/samba/libcom_err-samba4.so.0 usr/lib/samba/libcom_err-samba4.so.0.25 usr/lib/samba/libcommon-auth-samba4.so usr/lib/samba/libdbwrap-samba4.so +usr/lib/samba/libdcerpc-pkt-auth-samba4.so usr/lib/samba/libdcerpc-samba-samba4.so usr/lib/samba/libdcerpc-samba4.so +usr/lib/samba/libdnsserver-common-samba4.so usr/lib/samba/libdsdb-module-samba4.so usr/lib/samba/libevents-samba4.so usr/lib/samba/libflag-mapping-samba4.so @@ -681,7 +721,7 @@ usr/lib/samba/libldb-key-value-samba4.so usr/lib/samba/libldb-tdb-err-map-samba4.so usr/lib/samba/libldb-tdb-int-samba4.so usr/lib/samba/libldb.so.2 -usr/lib/samba/libldb.so.2.3.0 +usr/lib/samba/libldb.so.2.4.1 usr/lib/samba/libldbsamba-samba4.so usr/lib/samba/liblibcli-lsa3-samba4.so usr/lib/samba/liblibcli-netlogon3-samba4.so @@ -697,15 +737,13 @@ usr/lib/samba/libnet-keytab-samba4.so usr/lib/samba/libnetif-samba4.so usr/lib/samba/libnpa-tstream-samba4.so usr/lib/samba/libnss-info-samba4.so -usr/lib/samba/libpopt-samba3-cmdline-samba4.so -usr/lib/samba/libpopt-samba3-samba4.so usr/lib/samba/libposix-eadb-samba4.so usr/lib/samba/libprinter-driver-samba4.so usr/lib/samba/libprinting-migrate-samba4.so -usr/lib/samba/libpyldb-util.cpython-38-aarch64-linux-gnu.so.2 -usr/lib/samba/libpyldb-util.cpython-38-aarch64-linux-gnu.so.2.3.0 -usr/lib/samba/libpytalloc-util.cpython-38-aarch64-linux-gnu.so.2 -usr/lib/samba/libpytalloc-util.cpython-38-aarch64-linux-gnu.so.2.3.2 +usr/lib/samba/libpyldb-util.cpython-310-aarch64-linux-gnu.so.2 +usr/lib/samba/libpyldb-util.cpython-310-aarch64-linux-gnu.so.2.4.1 +usr/lib/samba/libpytalloc-util.cpython-310-aarch64-linux-gnu.so.2 +usr/lib/samba/libpytalloc-util.cpython-310-aarch64-linux-gnu.so.2.3.3 usr/lib/samba/libregistry-samba4.so usr/lib/samba/libreplace-samba4.so usr/lib/samba/libroken-samba4.so.19 @@ -713,8 +751,8 @@ usr/lib/samba/libroken-samba4.so.19.0.1 usr/lib/samba/libsamba-cluster-support-samba4.so usr/lib/samba/libsamba-debug-samba4.so usr/lib/samba/libsamba-modules-samba4.so -usr/lib/samba/libsamba-net.cpython-38-aarch64-linux-gnu-samba4.so -usr/lib/samba/libsamba-python.cpython-38-aarch64-linux-gnu-samba4.so +usr/lib/samba/libsamba-net.cpython-310-aarch64-linux-gnu-samba4.so +usr/lib/samba/libsamba-python.cpython-310-aarch64-linux-gnu-samba4.so usr/lib/samba/libsamba-security-samba4.so usr/lib/samba/libsamba-sockets-samba4.so usr/lib/samba/libsamba3-util-samba4.so @@ -734,16 +772,15 @@ usr/lib/samba/libsys-rw-samba4.so usr/lib/samba/libtalloc-report-printf-samba4.so usr/lib/samba/libtalloc-report-samba4.so usr/lib/samba/libtalloc.so.2 -usr/lib/samba/libtalloc.so.2.3.2 +usr/lib/samba/libtalloc.so.2.3.3 usr/lib/samba/libtdb-wrap-samba4.so usr/lib/samba/libtdb.so.1 -usr/lib/samba/libtdb.so.1.4.3 +usr/lib/samba/libtdb.so.1.4.4 usr/lib/samba/libtevent.so.0 -usr/lib/samba/libtevent.so.0.10.2 +usr/lib/samba/libtevent.so.0.11.0 usr/lib/samba/libtime-basic-samba4.so usr/lib/samba/libtorture-samba4.so usr/lib/samba/libtrusts-util-samba4.so -usr/lib/samba/libutil-cmdline-samba4.so usr/lib/samba/libutil-reg-samba4.so usr/lib/samba/libutil-setid-samba4.so usr/lib/samba/libutil-tdb-samba4.so @@ -800,6 +837,7 @@ usr/lib/samba/vfs/xattr_tdb.so usr/lib/security usr/lib/security/pam_winbind.so #usr/libexec/samba +usr/libexec/samba/samba-bgqd usr/libexec/samba/smbspool_krb5_wrapper usr/sbin/eventlogadm usr/sbin/nmbd diff --git a/config/rootfiles/packages/armv6l/borgbackup b/config/rootfiles/packages/armv6l/borgbackup index 1b2c782d8f..8a83ae6b13 100644 --- a/config/rootfiles/packages/armv6l/borgbackup +++ b/config/rootfiles/packages/armv6l/borgbackup @@ -1,91 +1,91 @@ usr/bin/borg usr/bin/borgfs -usr/lib/python3.8/site-packages/borg -usr/lib/python3.8/site-packages/borg/__init__.py -usr/lib/python3.8/site-packages/borg/__main__.py -usr/lib/python3.8/site-packages/borg/_version.py -usr/lib/python3.8/site-packages/borg/algorithms -usr/lib/python3.8/site-packages/borg/algorithms/__init__.py -usr/lib/python3.8/site-packages/borg/algorithms/checksums.cpython-38-arm-linux-gnueabi.so -#usr/lib/python3.8/site-packages/borg/algorithms/msgpack -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/__init__.py -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/_packer.cpp -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/_packer.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/_unpacker.cpp -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/_unpacker.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/_version.py -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/exceptions.py -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/fallback.py -usr/lib/python3.8/site-packages/borg/archive.py -usr/lib/python3.8/site-packages/borg/archiver.py -usr/lib/python3.8/site-packages/borg/cache.py -usr/lib/python3.8/site-packages/borg/chunker.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/borg/compress.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/borg/constants.py -usr/lib/python3.8/site-packages/borg/crypto -usr/lib/python3.8/site-packages/borg/crypto/__init__.py -usr/lib/python3.8/site-packages/borg/crypto/file_integrity.py -usr/lib/python3.8/site-packages/borg/crypto/key.py -usr/lib/python3.8/site-packages/borg/crypto/keymanager.py -usr/lib/python3.8/site-packages/borg/crypto/low_level.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/borg/crypto/nonces.py -usr/lib/python3.8/site-packages/borg/fuse.py -usr/lib/python3.8/site-packages/borg/hashindex.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/borg/helpers.py -usr/lib/python3.8/site-packages/borg/item.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/borg/locking.py -usr/lib/python3.8/site-packages/borg/logger.py -usr/lib/python3.8/site-packages/borg/lrucache.py -usr/lib/python3.8/site-packages/borg/nanorst.py -usr/lib/python3.8/site-packages/borg/paperkey.html -usr/lib/python3.8/site-packages/borg/patterns.py -usr/lib/python3.8/site-packages/borg/platform -usr/lib/python3.8/site-packages/borg/platform/__init__.py -usr/lib/python3.8/site-packages/borg/platform/base.py -usr/lib/python3.8/site-packages/borg/platform/linux.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/borg/platform/posix.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/borg/platform/syncfilerange.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/borg/remote.py -usr/lib/python3.8/site-packages/borg/repository.py -usr/lib/python3.8/site-packages/borg/selftest.py -usr/lib/python3.8/site-packages/borg/shellpattern.py -#usr/lib/python3.8/site-packages/borg/testsuite -usr/lib/python3.8/site-packages/borg/testsuite/__init__.py -usr/lib/python3.8/site-packages/borg/testsuite/archive.py -usr/lib/python3.8/site-packages/borg/testsuite/archiver.py -usr/lib/python3.8/site-packages/borg/testsuite/attic.tar.gz -usr/lib/python3.8/site-packages/borg/testsuite/benchmark.py -usr/lib/python3.8/site-packages/borg/testsuite/cache.py -usr/lib/python3.8/site-packages/borg/testsuite/checksums.py -usr/lib/python3.8/site-packages/borg/testsuite/chunker.py -usr/lib/python3.8/site-packages/borg/testsuite/compress.py -usr/lib/python3.8/site-packages/borg/testsuite/crypto.py -usr/lib/python3.8/site-packages/borg/testsuite/file_integrity.py -usr/lib/python3.8/site-packages/borg/testsuite/hashindex.py -usr/lib/python3.8/site-packages/borg/testsuite/helpers.py -usr/lib/python3.8/site-packages/borg/testsuite/item.py -usr/lib/python3.8/site-packages/borg/testsuite/key.py -usr/lib/python3.8/site-packages/borg/testsuite/locking.py -usr/lib/python3.8/site-packages/borg/testsuite/logger.py -usr/lib/python3.8/site-packages/borg/testsuite/lrucache.py -usr/lib/python3.8/site-packages/borg/testsuite/nanorst.py -usr/lib/python3.8/site-packages/borg/testsuite/nonces.py -usr/lib/python3.8/site-packages/borg/testsuite/patterns.py -usr/lib/python3.8/site-packages/borg/testsuite/platform.py -usr/lib/python3.8/site-packages/borg/testsuite/remote.py -usr/lib/python3.8/site-packages/borg/testsuite/repository.py -usr/lib/python3.8/site-packages/borg/testsuite/shellpattern.py -usr/lib/python3.8/site-packages/borg/testsuite/upgrader.py -usr/lib/python3.8/site-packages/borg/testsuite/version.py -usr/lib/python3.8/site-packages/borg/testsuite/xattr.py -usr/lib/python3.8/site-packages/borg/upgrader.py -usr/lib/python3.8/site-packages/borg/version.py -usr/lib/python3.8/site-packages/borg/xattr.py -#usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/PKG-INFO -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/SOURCES.txt -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/dependency_links.txt -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/entry_points.txt -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/not-zip-safe -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/requires.txt -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/borg +usr/lib/python3.10/site-packages/borg/__init__.py +usr/lib/python3.10/site-packages/borg/__main__.py +usr/lib/python3.10/site-packages/borg/_version.py +#usr/lib/python3.10/site-packages/borg/algorithms +usr/lib/python3.10/site-packages/borg/algorithms/__init__.py +usr/lib/python3.10/site-packages/borg/algorithms/checksums.cpython-310-arm-linux-gnu.so +#usr/lib/python3.10/site-packages/borg/algorithms/msgpack +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/__init__.py +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/_packer.cpp +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/_packer.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/_unpacker.cpp +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/_unpacker.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/_version.py +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/exceptions.py +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/fallback.py +usr/lib/python3.10/site-packages/borg/archive.py +usr/lib/python3.10/site-packages/borg/archiver.py +usr/lib/python3.10/site-packages/borg/cache.py +usr/lib/python3.10/site-packages/borg/chunker.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/site-packages/borg/compress.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/site-packages/borg/constants.py +#usr/lib/python3.10/site-packages/borg/crypto +usr/lib/python3.10/site-packages/borg/crypto/__init__.py +usr/lib/python3.10/site-packages/borg/crypto/file_integrity.py +usr/lib/python3.10/site-packages/borg/crypto/key.py +usr/lib/python3.10/site-packages/borg/crypto/keymanager.py +usr/lib/python3.10/site-packages/borg/crypto/low_level.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/site-packages/borg/crypto/nonces.py +usr/lib/python3.10/site-packages/borg/fuse.py +usr/lib/python3.10/site-packages/borg/hashindex.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/site-packages/borg/helpers.py +usr/lib/python3.10/site-packages/borg/item.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/site-packages/borg/locking.py +usr/lib/python3.10/site-packages/borg/logger.py +usr/lib/python3.10/site-packages/borg/lrucache.py +usr/lib/python3.10/site-packages/borg/nanorst.py +usr/lib/python3.10/site-packages/borg/paperkey.html +usr/lib/python3.10/site-packages/borg/patterns.py +#usr/lib/python3.10/site-packages/borg/platform +usr/lib/python3.10/site-packages/borg/platform/__init__.py +usr/lib/python3.10/site-packages/borg/platform/base.py +usr/lib/python3.10/site-packages/borg/platform/linux.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/site-packages/borg/platform/posix.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/site-packages/borg/platform/syncfilerange.cpython-310-arm-linux-gnu.so +usr/lib/python3.10/site-packages/borg/remote.py +usr/lib/python3.10/site-packages/borg/repository.py +usr/lib/python3.10/site-packages/borg/selftest.py +usr/lib/python3.10/site-packages/borg/shellpattern.py +#usr/lib/python3.10/site-packages/borg/testsuite +usr/lib/python3.10/site-packages/borg/testsuite/__init__.py +usr/lib/python3.10/site-packages/borg/testsuite/archive.py +usr/lib/python3.10/site-packages/borg/testsuite/archiver.py +usr/lib/python3.10/site-packages/borg/testsuite/attic.tar.gz +usr/lib/python3.10/site-packages/borg/testsuite/benchmark.py +usr/lib/python3.10/site-packages/borg/testsuite/cache.py +usr/lib/python3.10/site-packages/borg/testsuite/checksums.py +usr/lib/python3.10/site-packages/borg/testsuite/chunker.py +usr/lib/python3.10/site-packages/borg/testsuite/compress.py +usr/lib/python3.10/site-packages/borg/testsuite/crypto.py +usr/lib/python3.10/site-packages/borg/testsuite/file_integrity.py +usr/lib/python3.10/site-packages/borg/testsuite/hashindex.py +usr/lib/python3.10/site-packages/borg/testsuite/helpers.py +usr/lib/python3.10/site-packages/borg/testsuite/item.py +usr/lib/python3.10/site-packages/borg/testsuite/key.py +usr/lib/python3.10/site-packages/borg/testsuite/locking.py +usr/lib/python3.10/site-packages/borg/testsuite/logger.py +usr/lib/python3.10/site-packages/borg/testsuite/lrucache.py +usr/lib/python3.10/site-packages/borg/testsuite/nanorst.py +usr/lib/python3.10/site-packages/borg/testsuite/nonces.py +usr/lib/python3.10/site-packages/borg/testsuite/patterns.py +usr/lib/python3.10/site-packages/borg/testsuite/platform.py +usr/lib/python3.10/site-packages/borg/testsuite/remote.py +usr/lib/python3.10/site-packages/borg/testsuite/repository.py +usr/lib/python3.10/site-packages/borg/testsuite/shellpattern.py +usr/lib/python3.10/site-packages/borg/testsuite/upgrader.py +usr/lib/python3.10/site-packages/borg/testsuite/version.py +usr/lib/python3.10/site-packages/borg/testsuite/xattr.py +usr/lib/python3.10/site-packages/borg/upgrader.py +usr/lib/python3.10/site-packages/borg/version.py +usr/lib/python3.10/site-packages/borg/xattr.py +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/PKG-INFO +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/SOURCES.txt +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/dependency_links.txt +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/entry_points.txt +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/not-zip-safe +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/requires.txt +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/top_level.txt diff --git a/config/rootfiles/packages/armv6l/python3-msgpack b/config/rootfiles/packages/armv6l/python3-msgpack deleted file mode 100644 index 2bc5b4d0d3..0000000000 --- a/config/rootfiles/packages/armv6l/python3-msgpack +++ /dev/null @@ -1,12 +0,0 @@ -#usr/lib/python3.8/site-packages/msgpack -usr/lib/python3.8/site-packages/msgpack/__init__.py -usr/lib/python3.8/site-packages/msgpack/_packer.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/msgpack/_unpacker.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/msgpack/_version.py -usr/lib/python3.8/site-packages/msgpack/exceptions.py -usr/lib/python3.8/site-packages/msgpack/fallback.py -usr/lib/python3.8/site-packages/msgpack_python-0.5.6-py3.8.egg-info -usr/lib/python3.8/site-packages/msgpack_python-0.5.6-py3.8.egg-info/PKG-INFO -usr/lib/python3.8/site-packages/msgpack_python-0.5.6-py3.8.egg-info/SOURCES.txt -usr/lib/python3.8/site-packages/msgpack_python-0.5.6-py3.8.egg-info/dependency_links.txt -usr/lib/python3.8/site-packages/msgpack_python-0.5.6-py3.8.egg-info/top_level.txt diff --git a/config/rootfiles/packages/armv6l/python3-yaml b/config/rootfiles/packages/armv6l/python3-yaml index a0f641e70d..782cbca781 100644 --- a/config/rootfiles/packages/armv6l/python3-yaml +++ b/config/rootfiles/packages/armv6l/python3-yaml @@ -1,20 +1,20 @@ -#usr/lib/python3.8/site-packages/PyYAML-3.13-py3.8.egg-info -usr/lib/python3.8/site-packages/_yaml.cpython-38-arm-linux-gnueabi.so -#usr/lib/python3.8/site-packages/yaml -usr/lib/python3.8/site-packages/yaml/__init__.py -usr/lib/python3.8/site-packages/yaml/composer.py -usr/lib/python3.8/site-packages/yaml/constructor.py -usr/lib/python3.8/site-packages/yaml/cyaml.py -usr/lib/python3.8/site-packages/yaml/dumper.py -usr/lib/python3.8/site-packages/yaml/emitter.py -usr/lib/python3.8/site-packages/yaml/error.py -usr/lib/python3.8/site-packages/yaml/events.py -usr/lib/python3.8/site-packages/yaml/loader.py -usr/lib/python3.8/site-packages/yaml/nodes.py -usr/lib/python3.8/site-packages/yaml/parser.py -usr/lib/python3.8/site-packages/yaml/reader.py -usr/lib/python3.8/site-packages/yaml/representer.py -usr/lib/python3.8/site-packages/yaml/resolver.py -usr/lib/python3.8/site-packages/yaml/scanner.py -usr/lib/python3.8/site-packages/yaml/serializer.py -usr/lib/python3.8/site-packages/yaml/tokens.py +#usr/lib/python3.10/site-packages/PyYAML-3.13-py3.10.egg-info +usr/lib/python3.10/site-packages/_yaml.cpython-310-arm-linux-gnueabi.so +#usr/lib/python3.10/site-packages/yaml +usr/lib/python3.10/site-packages/yaml/__init__.py +usr/lib/python3.10/site-packages/yaml/composer.py +usr/lib/python3.10/site-packages/yaml/constructor.py +usr/lib/python3.10/site-packages/yaml/cyaml.py +usr/lib/python3.10/site-packages/yaml/dumper.py +usr/lib/python3.10/site-packages/yaml/emitter.py +usr/lib/python3.10/site-packages/yaml/error.py +usr/lib/python3.10/site-packages/yaml/events.py +usr/lib/python3.10/site-packages/yaml/loader.py +usr/lib/python3.10/site-packages/yaml/nodes.py +usr/lib/python3.10/site-packages/yaml/parser.py +usr/lib/python3.10/site-packages/yaml/reader.py +usr/lib/python3.10/site-packages/yaml/representer.py +usr/lib/python3.10/site-packages/yaml/resolver.py +usr/lib/python3.10/site-packages/yaml/scanner.py +usr/lib/python3.10/site-packages/yaml/serializer.py +usr/lib/python3.10/site-packages/yaml/tokens.py diff --git a/config/rootfiles/packages/armv6l/samba b/config/rootfiles/packages/armv6l/samba index 40f79eb046..da62d0369c 100644 --- a/config/rootfiles/packages/armv6l/samba +++ b/config/rootfiles/packages/armv6l/samba @@ -2,7 +2,6 @@ etc/rc.d/init.d/samba usr/bin/cifsdd usr/bin/dbwrap_tool usr/bin/dumpmscat -usr/bin/findsmb usr/bin/gentest usr/bin/ldbadd usr/bin/ldbdel @@ -12,7 +11,7 @@ usr/bin/ldbrename usr/bin/ldbsearch usr/bin/locktest usr/bin/masktest -usr/bin/mdfind +usr/bin/mdsearch usr/bin/mvxattr usr/bin/ndrdump usr/bin/net @@ -27,6 +26,7 @@ usr/bin/regshell usr/bin/regtree usr/bin/rpcclient usr/bin/samba-regedit +usr/bin/samba-tool usr/bin/sharesec usr/bin/smbcacls usr/bin/smbclient @@ -154,10 +154,11 @@ usr/lib/libndr-standard.so usr/lib/libndr-standard.so.0 usr/lib/libndr-standard.so.0.0.1 usr/lib/libndr.so -usr/lib/libndr.so.1 -usr/lib/libndr.so.1.0.1 +usr/lib/libndr.so.2 +usr/lib/libndr.so.2.0.0 usr/lib/libnetapi.so -usr/lib/libnetapi.so.0 +usr/lib/libnetapi.so.1 +usr/lib/libnetapi.so.1.0.0 usr/lib/libnss_winbind.so usr/lib/libnss_winbind.so.2 usr/lib/libnss_wins.so @@ -173,9 +174,9 @@ usr/lib/libsamba-hostconfig.so.0.0.1 usr/lib/libsamba-passdb.so usr/lib/libsamba-passdb.so.0 usr/lib/libsamba-passdb.so.0.28.0 -usr/lib/libsamba-policy.cpython-38-arm-linux-gnueabi.so -usr/lib/libsamba-policy.cpython-38-arm-linux-gnueabi.so.0 -usr/lib/libsamba-policy.cpython-38-arm-linux-gnueabi.so.0.0.1 +usr/lib/libsamba-policy.cpython-310-arm-linux-gnueabi.so +usr/lib/libsamba-policy.cpython-310-arm-linux-gnueabi.so.0 +usr/lib/libsamba-policy.cpython-310-arm-linux-gnueabi.so.0.0.1 usr/lib/libsamba-util.so usr/lib/libsamba-util.so.0 usr/lib/libsamba-util.so.0.0.1 @@ -205,394 +206,432 @@ usr/lib/libwbclient.so.0.15 #usr/lib/pkgconfig/netapi.pc #usr/lib/pkgconfig/samba-credentials.pc #usr/lib/pkgconfig/samba-hostconfig.pc -#usr/lib/pkgconfig/samba-policy.cpython-38-arm-linux-gnueabi.pc +#usr/lib/pkgconfig/samba-policy.cpython-310-arm-linux-gnueabi.pc #usr/lib/pkgconfig/samba-util.pc #usr/lib/pkgconfig/samdb.pc #usr/lib/pkgconfig/smbclient.pc #usr/lib/pkgconfig/wbclient.pc -usr/lib/python3.8/site-packages/_ldb_text.py -usr/lib/python3.8/site-packages/_tdb_text.py -usr/lib/python3.8/site-packages/_tevent.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/ldb.cpython-38-arm-linux-gnueabi.so -#usr/lib/python3.8/site-packages/samba -usr/lib/python3.8/site-packages/samba/__init__.py -usr/lib/python3.8/site-packages/samba/_glue.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/_ldb.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/auth.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/auth_util.py -usr/lib/python3.8/site-packages/samba/colour.py -usr/lib/python3.8/site-packages/samba/common.py -usr/lib/python3.8/site-packages/samba/credentials.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/crypto.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dbchecker.py -#usr/lib/python3.8/site-packages/samba/dcerpc -usr/lib/python3.8/site-packages/samba/dcerpc/__init__.py -usr/lib/python3.8/site-packages/samba/dcerpc/atsvc.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/auth.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/base.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/dcerpc.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/dfs.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/dns.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/dnsp.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/dnsserver.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/drsblobs.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/drsuapi.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/echo.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/epmapper.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/idmap.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/initshutdown.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/irpc.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/krb5pac.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/lsa.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/mdssvc.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/messaging.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/mgmt.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/misc.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/nbt.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/netlogon.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/ntlmssp.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/preg.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/samr.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/security.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/server_id.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/smb_acl.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/spoolss.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/srvsvc.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/svcctl.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/unixinfo.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/winbind.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/windows_event_ids.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/winreg.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/winspool.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/witness.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/wkssvc.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/dcerpc/xattr.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/descriptor.py -usr/lib/python3.8/site-packages/samba/dnsresolver.py -usr/lib/python3.8/site-packages/samba/dnsserver.py -usr/lib/python3.8/site-packages/samba/domain_update.py -usr/lib/python3.8/site-packages/samba/drs_utils.py -#usr/lib/python3.8/site-packages/samba/emulate -usr/lib/python3.8/site-packages/samba/emulate/__init__.py -usr/lib/python3.8/site-packages/samba/emulate/traffic.py -usr/lib/python3.8/site-packages/samba/emulate/traffic_packets.py -usr/lib/python3.8/site-packages/samba/forest_update.py -usr/lib/python3.8/site-packages/samba/gensec.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/getopt.py -usr/lib/python3.8/site-packages/samba/gp_ext_loader.py -usr/lib/python3.8/site-packages/samba/gp_msgs_ext.py -#usr/lib/python3.8/site-packages/samba/gp_parse -usr/lib/python3.8/site-packages/samba/gp_parse/__init__.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_aas.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_csv.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_inf.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_ini.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_pol.py -usr/lib/python3.8/site-packages/samba/gp_scripts_ext.py -usr/lib/python3.8/site-packages/samba/gp_sec_ext.py -usr/lib/python3.8/site-packages/samba/gp_smb_conf_ext.py -usr/lib/python3.8/site-packages/samba/gp_sudoers_ext.py -usr/lib/python3.8/site-packages/samba/gpclass.py -usr/lib/python3.8/site-packages/samba/gpo.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/graph.py -usr/lib/python3.8/site-packages/samba/hostconfig.py -usr/lib/python3.8/site-packages/samba/idmap.py -usr/lib/python3.8/site-packages/samba/join.py -#usr/lib/python3.8/site-packages/samba/kcc -usr/lib/python3.8/site-packages/samba/kcc/__init__.py -usr/lib/python3.8/site-packages/samba/kcc/debug.py -usr/lib/python3.8/site-packages/samba/kcc/graph.py -usr/lib/python3.8/site-packages/samba/kcc/graph_utils.py -usr/lib/python3.8/site-packages/samba/kcc/kcc_utils.py -usr/lib/python3.8/site-packages/samba/kcc/ldif_import_export.py -usr/lib/python3.8/site-packages/samba/logger.py -usr/lib/python3.8/site-packages/samba/mdb_util.py -usr/lib/python3.8/site-packages/samba/messaging.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/ms_display_specifiers.py -usr/lib/python3.8/site-packages/samba/ms_forest_updates_markdown.py -usr/lib/python3.8/site-packages/samba/ms_schema.py -usr/lib/python3.8/site-packages/samba/ms_schema_markdown.py -usr/lib/python3.8/site-packages/samba/ndr.py -usr/lib/python3.8/site-packages/samba/net.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/netbios.cpython-38-arm-linux-gnueabi.so -#usr/lib/python3.8/site-packages/samba/netcmd -usr/lib/python3.8/site-packages/samba/netcmd/__init__.py -usr/lib/python3.8/site-packages/samba/netcmd/common.py -usr/lib/python3.8/site-packages/samba/netcmd/computer.py -usr/lib/python3.8/site-packages/samba/netcmd/contact.py -usr/lib/python3.8/site-packages/samba/netcmd/dbcheck.py -usr/lib/python3.8/site-packages/samba/netcmd/delegation.py -usr/lib/python3.8/site-packages/samba/netcmd/dns.py -usr/lib/python3.8/site-packages/samba/netcmd/domain.py -usr/lib/python3.8/site-packages/samba/netcmd/domain_backup.py -usr/lib/python3.8/site-packages/samba/netcmd/drs.py -usr/lib/python3.8/site-packages/samba/netcmd/dsacl.py -usr/lib/python3.8/site-packages/samba/netcmd/forest.py -usr/lib/python3.8/site-packages/samba/netcmd/fsmo.py -usr/lib/python3.8/site-packages/samba/netcmd/gpo.py -usr/lib/python3.8/site-packages/samba/netcmd/group.py -usr/lib/python3.8/site-packages/samba/netcmd/ldapcmp.py -usr/lib/python3.8/site-packages/samba/netcmd/main.py -usr/lib/python3.8/site-packages/samba/netcmd/nettime.py -usr/lib/python3.8/site-packages/samba/netcmd/ntacl.py -usr/lib/python3.8/site-packages/samba/netcmd/ou.py -usr/lib/python3.8/site-packages/samba/netcmd/processes.py -usr/lib/python3.8/site-packages/samba/netcmd/pso.py -usr/lib/python3.8/site-packages/samba/netcmd/rodc.py -usr/lib/python3.8/site-packages/samba/netcmd/schema.py -usr/lib/python3.8/site-packages/samba/netcmd/sites.py -usr/lib/python3.8/site-packages/samba/netcmd/spn.py -usr/lib/python3.8/site-packages/samba/netcmd/testparm.py -usr/lib/python3.8/site-packages/samba/netcmd/user.py -usr/lib/python3.8/site-packages/samba/netcmd/visualize.py -usr/lib/python3.8/site-packages/samba/ntacls.py -usr/lib/python3.8/site-packages/samba/ntstatus.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/param.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/policy.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/posix_eadb.cpython-38-arm-linux-gnueabi.so -#usr/lib/python3.8/site-packages/samba/provision -usr/lib/python3.8/site-packages/samba/provision/__init__.py -usr/lib/python3.8/site-packages/samba/provision/backend.py -usr/lib/python3.8/site-packages/samba/provision/common.py -usr/lib/python3.8/site-packages/samba/provision/kerberos.py -usr/lib/python3.8/site-packages/samba/provision/kerberos_implementation.py -usr/lib/python3.8/site-packages/samba/provision/sambadns.py -usr/lib/python3.8/site-packages/samba/registry.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/remove_dc.py -#usr/lib/python3.8/site-packages/samba/samba3 -usr/lib/python3.8/site-packages/samba/samba3/__init__.py -usr/lib/python3.8/site-packages/samba/samba3/libsmb_samba_cwrapper.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/samba3/libsmb_samba_internal.py -usr/lib/python3.8/site-packages/samba/samba3/mdscli.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/samba3/param.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/samba3/passdb.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/samba3/smbd.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/samdb.py -usr/lib/python3.8/site-packages/samba/schema.py -usr/lib/python3.8/site-packages/samba/sd_utils.py -usr/lib/python3.8/site-packages/samba/security.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/sites.py -usr/lib/python3.8/site-packages/samba/subnets.py -#usr/lib/python3.8/site-packages/samba/subunit -usr/lib/python3.8/site-packages/samba/subunit/__init__.py -usr/lib/python3.8/site-packages/samba/subunit/run.py -usr/lib/python3.8/site-packages/samba/tdb_util.py -#usr/lib/python3.8/site-packages/samba/tests -#usr/lib/python3.8/site-packages/samba/tests/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_base.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_dsdb.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_pass_change.py -#usr/lib/python3.8/site-packages/samba/tests/auth.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_base.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_ncalrpc.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_netlogon.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_netlogon_bad_creds.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_pass_change.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_samlogon.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_winbind.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox -#usr/lib/python3.8/site-packages/samba/tests/blackbox/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/bug13653.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/check_output.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/downgradedatabase.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/mdfind.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/ndrdump.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/netads_json.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/samba_dnsupdate.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls_basic.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls_dfs_propagate_inherit.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls_propagate_inhertance.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcontrol.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcontrol_process.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_learner.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_replay.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_summary.py -#usr/lib/python3.8/site-packages/samba/tests/common.py -#usr/lib/python3.8/site-packages/samba/tests/complex_expressions.py -#usr/lib/python3.8/site-packages/samba/tests/core.py -#usr/lib/python3.8/site-packages/samba/tests/cred_opt.py -#usr/lib/python3.8/site-packages/samba/tests/credentials.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/array.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/bare.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/binding.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/createtrustrelax.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/dnsserver.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/integer.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/mdssvc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/misc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/raw_protocol.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/raw_testcase.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/registry.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/rpc_talloc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/rpcecho.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/sam.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/samr_change_password.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/srvsvc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/string_tests.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/testrpc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/unix.py -#usr/lib/python3.8/site-packages/samba/tests/dckeytab.py -#usr/lib/python3.8/site-packages/samba/tests/dns.py -#usr/lib/python3.8/site-packages/samba/tests/dns_base.py -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder.py -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder_helpers -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder_helpers/server.py -#usr/lib/python3.8/site-packages/samba/tests/dns_invalid.py -#usr/lib/python3.8/site-packages/samba/tests/dns_packet.py -#usr/lib/python3.8/site-packages/samba/tests/dns_tkey.py -#usr/lib/python3.8/site-packages/samba/tests/dns_wildcard.py -#usr/lib/python3.8/site-packages/samba/tests/docs.py -#usr/lib/python3.8/site-packages/samba/tests/domain_backup.py -#usr/lib/python3.8/site-packages/samba/tests/domain_backup_offline.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb_lock.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb_schema_attributes.py -#usr/lib/python3.8/site-packages/samba/tests/emulate -#usr/lib/python3.8/site-packages/samba/tests/emulate/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/emulate/traffic.py -#usr/lib/python3.8/site-packages/samba/tests/emulate/traffic_packet.py -#usr/lib/python3.8/site-packages/samba/tests/encrypted_secrets.py -#usr/lib/python3.8/site-packages/samba/tests/gensec.py -#usr/lib/python3.8/site-packages/samba/tests/get_opt.py -#usr/lib/python3.8/site-packages/samba/tests/getdcname.py -#usr/lib/python3.8/site-packages/samba/tests/glue.py -#usr/lib/python3.8/site-packages/samba/tests/gpo.py -#usr/lib/python3.8/site-packages/samba/tests/graph.py -#usr/lib/python3.8/site-packages/samba/tests/group_audit.py -#usr/lib/python3.8/site-packages/samba/tests/hostconfig.py -#usr/lib/python3.8/site-packages/samba/tests/join.py -#usr/lib/python3.8/site-packages/samba/tests/kcc -#usr/lib/python3.8/site-packages/samba/tests/kcc/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/graph.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/graph_utils.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/kcc_utils.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/ldif_import_export.py -#usr/lib/python3.8/site-packages/samba/tests/krb5 -#usr/lib/python3.8/site-packages/samba/tests/krb5/as_canonicalization_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/compatability_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kcrypto.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kdc_base_test.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kdc_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kdc_tgs_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/raw_testcase.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/rfc4120_constants.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/rfc4120_pyasn1.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/s4u_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/simple_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/xrealm_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5_credentials.py -#usr/lib/python3.8/site-packages/samba/tests/ldap_raw.py -#usr/lib/python3.8/site-packages/samba/tests/ldap_referrals.py -#usr/lib/python3.8/site-packages/samba/tests/libsmb.py -#usr/lib/python3.8/site-packages/samba/tests/loadparm.py -#usr/lib/python3.8/site-packages/samba/tests/lsa_string.py -#usr/lib/python3.8/site-packages/samba/tests/messaging.py -#usr/lib/python3.8/site-packages/samba/tests/net_join.py -#usr/lib/python3.8/site-packages/samba/tests/net_join_no_spnego.py -#usr/lib/python3.8/site-packages/samba/tests/netbios.py -#usr/lib/python3.8/site-packages/samba/tests/netcmd.py -#usr/lib/python3.8/site-packages/samba/tests/netlogonsvc.py -#usr/lib/python3.8/site-packages/samba/tests/ntacls.py -#usr/lib/python3.8/site-packages/samba/tests/ntacls_backup.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth_base.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth_krb5.py -#usr/lib/python3.8/site-packages/samba/tests/ntlmdisabled.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind_chauthtok.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind_warn_pwd_expire.py -#usr/lib/python3.8/site-packages/samba/tests/param.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_fl2003.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_fl2008.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_gpgme.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_ldap.py -#usr/lib/python3.8/site-packages/samba/tests/password_quality.py -#usr/lib/python3.8/site-packages/samba/tests/password_test.py -#usr/lib/python3.8/site-packages/samba/tests/policy.py -#usr/lib/python3.8/site-packages/samba/tests/posixacl.py -#usr/lib/python3.8/site-packages/samba/tests/prefork_restart.py -#usr/lib/python3.8/site-packages/samba/tests/process_limits.py -#usr/lib/python3.8/site-packages/samba/tests/provision.py -#usr/lib/python3.8/site-packages/samba/tests/pso.py -#usr/lib/python3.8/site-packages/samba/tests/py_credentials.py -#usr/lib/python3.8/site-packages/samba/tests/registry.py -#usr/lib/python3.8/site-packages/samba/tests/s3idmapdb.py -#usr/lib/python3.8/site-packages/samba/tests/s3param.py -#usr/lib/python3.8/site-packages/samba/tests/s3passdb.py -#usr/lib/python3.8/site-packages/samba/tests/s3registry.py -#usr/lib/python3.8/site-packages/samba/tests/s3windb.py -#usr/lib/python3.8/site-packages/samba/tests/samba3sam.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/base.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/computer.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/contact.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/demote.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/dnscmd.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/drs_clone_dc_data_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/dsacl.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/forest.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/fsmo.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/gpo.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/group.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/help.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/join.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/join_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/ntacl.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/ou.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/passwordsettings.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/processes.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/promote_dc_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/provision_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/provision_password_check.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/rodc.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/schema.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/sites.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/timecmd.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_check_password_script.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_base.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_gpg.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_userPassword.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_wdigest.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/visualize.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/visualize_drs.py -#usr/lib/python3.8/site-packages/samba/tests/samba_upgradedns_lmdb.py -#usr/lib/python3.8/site-packages/samba/tests/samdb.py -#usr/lib/python3.8/site-packages/samba/tests/samdb_api.py -#usr/lib/python3.8/site-packages/samba/tests/security.py -#usr/lib/python3.8/site-packages/samba/tests/segfault.py -#usr/lib/python3.8/site-packages/samba/tests/smb-notify.py -#usr/lib/python3.8/site-packages/samba/tests/smb.py -#usr/lib/python3.8/site-packages/samba/tests/smbd_base.py -#usr/lib/python3.8/site-packages/samba/tests/smbd_fuzztest.py -#usr/lib/python3.8/site-packages/samba/tests/source.py -#usr/lib/python3.8/site-packages/samba/tests/strings.py -#usr/lib/python3.8/site-packages/samba/tests/subunitrun.py -#usr/lib/python3.8/site-packages/samba/tests/tdb_util.py -#usr/lib/python3.8/site-packages/samba/tests/upgrade.py -#usr/lib/python3.8/site-packages/samba/tests/upgradeprovision.py -#usr/lib/python3.8/site-packages/samba/tests/upgradeprovisionneeddc.py -#usr/lib/python3.8/site-packages/samba/tests/usage.py -#usr/lib/python3.8/site-packages/samba/tests/xattr.py -#usr/lib/python3.8/site-packages/samba/trust_utils.py -usr/lib/python3.8/site-packages/samba/upgrade.py -usr/lib/python3.8/site-packages/samba/upgradehelpers.py -usr/lib/python3.8/site-packages/samba/uptodateness.py -usr/lib/python3.8/site-packages/samba/vgp_sudoers_ext.py -usr/lib/python3.8/site-packages/samba/werror.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/xattr.py -usr/lib/python3.8/site-packages/samba/xattr_native.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/samba/xattr_tdb.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/talloc.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/tdb.cpython-38-arm-linux-gnueabi.so -usr/lib/python3.8/site-packages/tevent.py +usr/lib/python3.10/site-packages/_ldb_text.py +usr/lib/python3.10/site-packages/_tdb_text.py +usr/lib/python3.10/site-packages/_tevent.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/ldb.cpython-310-arm-linux-gnueabi.so +#usr/lib/python3.10/site-packages/samba +usr/lib/python3.10/site-packages/samba/__init__.py +usr/lib/python3.10/site-packages/samba/_glue.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/_ldb.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/auth.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/auth_util.py +usr/lib/python3.10/site-packages/samba/colour.py +usr/lib/python3.10/site-packages/samba/common.py +usr/lib/python3.10/site-packages/samba/credentials.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/crypto.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dbchecker.py +#usr/lib/python3.10/site-packages/samba/dcerpc +usr/lib/python3.10/site-packages/samba/dcerpc/__init__.py +usr/lib/python3.10/site-packages/samba/dcerpc/atsvc.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/auth.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/base.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/dcerpc.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/dfs.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/dns.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/dnsp.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/dnsserver.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/drsblobs.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/drsuapi.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/echo.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/epmapper.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/idmap.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/initshutdown.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/irpc.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/krb5ccache.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/krb5pac.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/lsa.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/mdssvc.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/messaging.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/mgmt.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/misc.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/nbt.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/netlogon.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/ntlmssp.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/preg.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/samr.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/security.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/server_id.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/smb_acl.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/spoolss.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/srvsvc.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/svcctl.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/unixinfo.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/winbind.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/windows_event_ids.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/winreg.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/winspool.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/witness.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/wkssvc.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dcerpc/xattr.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/descriptor.py +usr/lib/python3.10/site-packages/samba/dnsresolver.py +usr/lib/python3.10/site-packages/samba/dnsserver.py +usr/lib/python3.10/site-packages/samba/domain_update.py +usr/lib/python3.10/site-packages/samba/drs_utils.py +usr/lib/python3.10/site-packages/samba/dsdb.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/dsdb_dns.cpython-310-arm-linux-gnueabi.so +#usr/lib/python3.10/site-packages/samba/emulate +usr/lib/python3.10/site-packages/samba/emulate/__init__.py +usr/lib/python3.10/site-packages/samba/emulate/traffic.py +usr/lib/python3.10/site-packages/samba/emulate/traffic_packets.py +usr/lib/python3.10/site-packages/samba/forest_update.py +usr/lib/python3.10/site-packages/samba/gensec.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/getopt.py +usr/lib/python3.10/site-packages/samba/gp_ext_loader.py +usr/lib/python3.10/site-packages/samba/gp_gnome_settings_ext.py +usr/lib/python3.10/site-packages/samba/gp_msgs_ext.py +#usr/lib/python3.10/site-packages/samba/gp_parse +usr/lib/python3.10/site-packages/samba/gp_parse/__init__.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_aas.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_csv.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_inf.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_ini.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_pol.py +usr/lib/python3.10/site-packages/samba/gp_scripts_ext.py +usr/lib/python3.10/site-packages/samba/gp_sec_ext.py +usr/lib/python3.10/site-packages/samba/gp_smb_conf_ext.py +usr/lib/python3.10/site-packages/samba/gp_sudoers_ext.py +usr/lib/python3.10/site-packages/samba/gpclass.py +usr/lib/python3.10/site-packages/samba/gpo.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/graph.py +usr/lib/python3.10/site-packages/samba/hostconfig.py +usr/lib/python3.10/site-packages/samba/idmap.py +usr/lib/python3.10/site-packages/samba/join.py +#usr/lib/python3.10/site-packages/samba/kcc +usr/lib/python3.10/site-packages/samba/kcc/__init__.py +usr/lib/python3.10/site-packages/samba/kcc/debug.py +usr/lib/python3.10/site-packages/samba/kcc/graph.py +usr/lib/python3.10/site-packages/samba/kcc/graph_utils.py +usr/lib/python3.10/site-packages/samba/kcc/kcc_utils.py +usr/lib/python3.10/site-packages/samba/kcc/ldif_import_export.py +usr/lib/python3.10/site-packages/samba/logger.py +usr/lib/python3.10/site-packages/samba/mdb_util.py +usr/lib/python3.10/site-packages/samba/messaging.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/ms_display_specifiers.py +usr/lib/python3.10/site-packages/samba/ms_forest_updates_markdown.py +usr/lib/python3.10/site-packages/samba/ms_schema.py +usr/lib/python3.10/site-packages/samba/ms_schema_markdown.py +usr/lib/python3.10/site-packages/samba/ndr.py +usr/lib/python3.10/site-packages/samba/net.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/net_s3.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/netbios.cpython-310-arm-linux-gnueabi.so +#usr/lib/python3.10/site-packages/samba/netcmd +usr/lib/python3.10/site-packages/samba/netcmd/__init__.py +usr/lib/python3.10/site-packages/samba/netcmd/common.py +usr/lib/python3.10/site-packages/samba/netcmd/computer.py +usr/lib/python3.10/site-packages/samba/netcmd/contact.py +usr/lib/python3.10/site-packages/samba/netcmd/dbcheck.py +usr/lib/python3.10/site-packages/samba/netcmd/delegation.py +usr/lib/python3.10/site-packages/samba/netcmd/dns.py +usr/lib/python3.10/site-packages/samba/netcmd/domain.py +usr/lib/python3.10/site-packages/samba/netcmd/domain_backup.py +usr/lib/python3.10/site-packages/samba/netcmd/drs.py +usr/lib/python3.10/site-packages/samba/netcmd/dsacl.py +usr/lib/python3.10/site-packages/samba/netcmd/forest.py +usr/lib/python3.10/site-packages/samba/netcmd/fsmo.py +usr/lib/python3.10/site-packages/samba/netcmd/gpo.py +usr/lib/python3.10/site-packages/samba/netcmd/group.py +usr/lib/python3.10/site-packages/samba/netcmd/ldapcmp.py +usr/lib/python3.10/site-packages/samba/netcmd/main.py +usr/lib/python3.10/site-packages/samba/netcmd/nettime.py +usr/lib/python3.10/site-packages/samba/netcmd/ntacl.py +usr/lib/python3.10/site-packages/samba/netcmd/ou.py +usr/lib/python3.10/site-packages/samba/netcmd/processes.py +usr/lib/python3.10/site-packages/samba/netcmd/pso.py +usr/lib/python3.10/site-packages/samba/netcmd/rodc.py +usr/lib/python3.10/site-packages/samba/netcmd/schema.py +usr/lib/python3.10/site-packages/samba/netcmd/sites.py +usr/lib/python3.10/site-packages/samba/netcmd/spn.py +usr/lib/python3.10/site-packages/samba/netcmd/testparm.py +usr/lib/python3.10/site-packages/samba/netcmd/user.py +usr/lib/python3.10/site-packages/samba/netcmd/visualize.py +usr/lib/python3.10/site-packages/samba/ntacls.py +usr/lib/python3.10/site-packages/samba/ntstatus.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/param.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/policy.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/posix_eadb.cpython-310-arm-linux-gnueabi.so +#usr/lib/python3.10/site-packages/samba/provision +usr/lib/python3.10/site-packages/samba/provision/__init__.py +usr/lib/python3.10/site-packages/samba/provision/backend.py +usr/lib/python3.10/site-packages/samba/provision/common.py +usr/lib/python3.10/site-packages/samba/provision/kerberos.py +usr/lib/python3.10/site-packages/samba/provision/kerberos_implementation.py +usr/lib/python3.10/site-packages/samba/provision/sambadns.py +usr/lib/python3.10/site-packages/samba/registry.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/remove_dc.py +#usr/lib/python3.10/site-packages/samba/samba3 +usr/lib/python3.10/site-packages/samba/samba3/__init__.py +usr/lib/python3.10/site-packages/samba/samba3/libsmb_samba_cwrapper.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/samba3/libsmb_samba_internal.py +usr/lib/python3.10/site-packages/samba/samba3/mdscli.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/samba3/param.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/samba3/passdb.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/samba3/smbd.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/samdb.py +usr/lib/python3.10/site-packages/samba/schema.py +usr/lib/python3.10/site-packages/samba/sd_utils.py +usr/lib/python3.10/site-packages/samba/security.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/sites.py +usr/lib/python3.10/site-packages/samba/subnets.py +#usr/lib/python3.10/site-packages/samba/subunit +usr/lib/python3.10/site-packages/samba/subunit/__init__.py +usr/lib/python3.10/site-packages/samba/subunit/run.py +usr/lib/python3.10/site-packages/samba/tdb_util.py +#usr/lib/python3.10/site-packages/samba/tests +#usr/lib/python3.10/site-packages/samba/tests/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_base.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_dsdb.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_pass_change.py +#usr/lib/python3.10/site-packages/samba/tests/auth.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_base.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_ncalrpc.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_netlogon.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_netlogon_bad_creds.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_pass_change.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_samlogon.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_winbind.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox +#usr/lib/python3.10/site-packages/samba/tests/blackbox/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/bug13653.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/check_output.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/downgradedatabase.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/mdsearch.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/ndrdump.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/netads_json.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/samba_dnsupdate.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls_basic.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls_dfs_propagate_inherit.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls_propagate_inhertance.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcontrol.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcontrol_process.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_learner.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_replay.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_summary.py +#usr/lib/python3.10/site-packages/samba/tests/common.py +#usr/lib/python3.10/site-packages/samba/tests/complex_expressions.py +#usr/lib/python3.10/site-packages/samba/tests/core.py +#usr/lib/python3.10/site-packages/samba/tests/cred_opt.py +#usr/lib/python3.10/site-packages/samba/tests/credentials.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/array.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/bare.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/binding.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/createtrustrelax.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/dnsserver.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/integer.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/lsa.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/mdssvc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/misc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/raw_protocol.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/raw_testcase.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/registry.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/rpc_talloc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/rpcecho.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/sam.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/samr_change_password.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/srvsvc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/string_tests.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/testrpc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/unix.py +#usr/lib/python3.10/site-packages/samba/tests/dckeytab.py +#usr/lib/python3.10/site-packages/samba/tests/dns.py +#usr/lib/python3.10/site-packages/samba/tests/dns_aging.py +#usr/lib/python3.10/site-packages/samba/tests/dns_base.py +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder.py +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder_helpers +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder_helpers/server.py +#usr/lib/python3.10/site-packages/samba/tests/dns_invalid.py +#usr/lib/python3.10/site-packages/samba/tests/dns_packet.py +#usr/lib/python3.10/site-packages/samba/tests/dns_tkey.py +#usr/lib/python3.10/site-packages/samba/tests/dns_wildcard.py +#usr/lib/python3.10/site-packages/samba/tests/docs.py +#usr/lib/python3.10/site-packages/samba/tests/domain_backup.py +#usr/lib/python3.10/site-packages/samba/tests/domain_backup_offline.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_api.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_dns.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_lock.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_schema_attributes.py +#usr/lib/python3.10/site-packages/samba/tests/emulate +#usr/lib/python3.10/site-packages/samba/tests/emulate/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/emulate/traffic.py +#usr/lib/python3.10/site-packages/samba/tests/emulate/traffic_packet.py +#usr/lib/python3.10/site-packages/samba/tests/encrypted_secrets.py +#usr/lib/python3.10/site-packages/samba/tests/gensec.py +#usr/lib/python3.10/site-packages/samba/tests/get_opt.py +#usr/lib/python3.10/site-packages/samba/tests/getdcname.py +#usr/lib/python3.10/site-packages/samba/tests/glue.py +#usr/lib/python3.10/site-packages/samba/tests/gpo.py +#usr/lib/python3.10/site-packages/samba/tests/gpo_member.py +#usr/lib/python3.10/site-packages/samba/tests/graph.py +#usr/lib/python3.10/site-packages/samba/tests/group_audit.py +#usr/lib/python3.10/site-packages/samba/tests/hostconfig.py +#usr/lib/python3.10/site-packages/samba/tests/imports.py +#usr/lib/python3.10/site-packages/samba/tests/join.py +#usr/lib/python3.10/site-packages/samba/tests/kcc +#usr/lib/python3.10/site-packages/samba/tests/kcc/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/graph.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/graph_utils.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/kcc_utils.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/ldif_import_export.py +#usr/lib/python3.10/site-packages/samba/tests/krb5 +#usr/lib/python3.10/site-packages/samba/tests/krb5/alias_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/as_canonicalization_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/as_req_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/compatability_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/fast_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kcrypto.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kdc_base_test.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kdc_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kdc_tgs_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/ms_kile_client_principal_lookup_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/raw_testcase.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/rfc4120_constants.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/rfc4120_pyasn1.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/rodc_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/s4u_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/salt_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/simple_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/spn_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_ccache.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_idmap_nss.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_ldap.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_min_domain_uid.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_rpc.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_smb.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/xrealm_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5_credentials.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_raw.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_referrals.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_spn.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_upn_sam_account.py +#usr/lib/python3.10/site-packages/samba/tests/libsmb.py +#usr/lib/python3.10/site-packages/samba/tests/loadparm.py +#usr/lib/python3.10/site-packages/samba/tests/lsa_string.py +#usr/lib/python3.10/site-packages/samba/tests/messaging.py +#usr/lib/python3.10/site-packages/samba/tests/ndr.py +#usr/lib/python3.10/site-packages/samba/tests/net_join.py +#usr/lib/python3.10/site-packages/samba/tests/net_join_no_spnego.py +#usr/lib/python3.10/site-packages/samba/tests/netbios.py +#usr/lib/python3.10/site-packages/samba/tests/netcmd.py +#usr/lib/python3.10/site-packages/samba/tests/netlogonsvc.py +#usr/lib/python3.10/site-packages/samba/tests/ntacls.py +#usr/lib/python3.10/site-packages/samba/tests/ntacls_backup.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth_base.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth_krb5.py +#usr/lib/python3.10/site-packages/samba/tests/ntlmdisabled.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind_chauthtok.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind_warn_pwd_expire.py +#usr/lib/python3.10/site-packages/samba/tests/param.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_fl2003.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_fl2008.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_gpgme.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_ldap.py +#usr/lib/python3.10/site-packages/samba/tests/password_quality.py +#usr/lib/python3.10/site-packages/samba/tests/password_test.py +#usr/lib/python3.10/site-packages/samba/tests/policy.py +#usr/lib/python3.10/site-packages/samba/tests/posixacl.py +#usr/lib/python3.10/site-packages/samba/tests/prefork_restart.py +#usr/lib/python3.10/site-packages/samba/tests/process_limits.py +#usr/lib/python3.10/site-packages/samba/tests/provision.py +#usr/lib/python3.10/site-packages/samba/tests/pso.py +#usr/lib/python3.10/site-packages/samba/tests/py_credentials.py +#usr/lib/python3.10/site-packages/samba/tests/registry.py +#usr/lib/python3.10/site-packages/samba/tests/s3_net_join.py +#usr/lib/python3.10/site-packages/samba/tests/s3idmapdb.py +#usr/lib/python3.10/site-packages/samba/tests/s3param.py +#usr/lib/python3.10/site-packages/samba/tests/s3passdb.py +#usr/lib/python3.10/site-packages/samba/tests/s3registry.py +#usr/lib/python3.10/site-packages/samba/tests/s3windb.py +#usr/lib/python3.10/site-packages/samba/tests/samba3sam.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/base.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/computer.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/contact.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/demote.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/dnscmd.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/drs_clone_dc_data_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/dsacl.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/forest.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/fsmo.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/gpo.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/gpo_exts.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/group.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/help.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/join.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/join_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/ntacl.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/ou.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/passwordsettings.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/processes.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/promote_dc_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_password_check.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_userPassword_crypt.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/rodc.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/schema.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/sites.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/timecmd.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_check_password_script.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_base.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_gpg.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_userPassword.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_wdigest.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/visualize.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/visualize_drs.py +#usr/lib/python3.10/site-packages/samba/tests/samba_upgradedns_lmdb.py +#usr/lib/python3.10/site-packages/samba/tests/samdb.py +#usr/lib/python3.10/site-packages/samba/tests/samdb_api.py +#usr/lib/python3.10/site-packages/samba/tests/sddl.py +#usr/lib/python3.10/site-packages/samba/tests/security.py +#usr/lib/python3.10/site-packages/samba/tests/segfault.py +#usr/lib/python3.10/site-packages/samba/tests/smb-notify.py +#usr/lib/python3.10/site-packages/samba/tests/smb.py +#usr/lib/python3.10/site-packages/samba/tests/smbd_base.py +#usr/lib/python3.10/site-packages/samba/tests/smbd_fuzztest.py +#usr/lib/python3.10/site-packages/samba/tests/source.py +#usr/lib/python3.10/site-packages/samba/tests/strings.py +#usr/lib/python3.10/site-packages/samba/tests/subunitrun.py +#usr/lib/python3.10/site-packages/samba/tests/tdb_util.py +#usr/lib/python3.10/site-packages/samba/tests/upgrade.py +#usr/lib/python3.10/site-packages/samba/tests/upgradeprovision.py +#usr/lib/python3.10/site-packages/samba/tests/upgradeprovisionneeddc.py +#usr/lib/python3.10/site-packages/samba/tests/usage.py +#usr/lib/python3.10/site-packages/samba/tests/xattr.py +usr/lib/python3.10/site-packages/samba/trust_utils.py +usr/lib/python3.10/site-packages/samba/upgrade.py +usr/lib/python3.10/site-packages/samba/upgradehelpers.py +usr/lib/python3.10/site-packages/samba/uptodateness.py +usr/lib/python3.10/site-packages/samba/vgp_access_ext.py +usr/lib/python3.10/site-packages/samba/vgp_files_ext.py +usr/lib/python3.10/site-packages/samba/vgp_issue_ext.py +usr/lib/python3.10/site-packages/samba/vgp_motd_ext.py +usr/lib/python3.10/site-packages/samba/vgp_openssh_ext.py +usr/lib/python3.10/site-packages/samba/vgp_startup_scripts_ext.py +usr/lib/python3.10/site-packages/samba/vgp_sudoers_ext.py +usr/lib/python3.10/site-packages/samba/vgp_symlink_ext.py +usr/lib/python3.10/site-packages/samba/werror.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/xattr.py +usr/lib/python3.10/site-packages/samba/xattr_native.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/samba/xattr_tdb.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/talloc.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/tdb.cpython-310-arm-linux-gnueabi.so +usr/lib/python3.10/site-packages/tevent.py #usr/lib/samba usr/lib/samba/idmap usr/lib/samba/idmap/ad.so @@ -639,14 +678,16 @@ usr/lib/samba/libcliauth-samba4.so usr/lib/samba/libclidns-samba4.so usr/lib/samba/libcluster-samba4.so usr/lib/samba/libcmdline-contexts-samba4.so -usr/lib/samba/libcmdline-credentials-samba4.so +usr/lib/samba/libcmdline-samba4.so usr/lib/samba/libcmocka-samba4.so usr/lib/samba/libcom_err-samba4.so.0 usr/lib/samba/libcom_err-samba4.so.0.25 usr/lib/samba/libcommon-auth-samba4.so usr/lib/samba/libdbwrap-samba4.so +usr/lib/samba/libdcerpc-pkt-auth-samba4.so usr/lib/samba/libdcerpc-samba-samba4.so usr/lib/samba/libdcerpc-samba4.so +usr/lib/samba/libdnsserver-common-samba4.so usr/lib/samba/libdsdb-module-samba4.so usr/lib/samba/libevents-samba4.so usr/lib/samba/libflag-mapping-samba4.so @@ -681,7 +722,7 @@ usr/lib/samba/libldb-key-value-samba4.so usr/lib/samba/libldb-tdb-err-map-samba4.so usr/lib/samba/libldb-tdb-int-samba4.so usr/lib/samba/libldb.so.2 -usr/lib/samba/libldb.so.2.3.0 +usr/lib/samba/libldb.so.2.4.1 usr/lib/samba/libldbsamba-samba4.so usr/lib/samba/liblibcli-lsa3-samba4.so usr/lib/samba/liblibcli-netlogon3-samba4.so @@ -697,15 +738,13 @@ usr/lib/samba/libnet-keytab-samba4.so usr/lib/samba/libnetif-samba4.so usr/lib/samba/libnpa-tstream-samba4.so usr/lib/samba/libnss-info-samba4.so -usr/lib/samba/libpopt-samba3-cmdline-samba4.so -usr/lib/samba/libpopt-samba3-samba4.so usr/lib/samba/libposix-eadb-samba4.so usr/lib/samba/libprinter-driver-samba4.so usr/lib/samba/libprinting-migrate-samba4.so -usr/lib/samba/libpyldb-util.cpython-38-arm-linux-gnueabi.so.2 -usr/lib/samba/libpyldb-util.cpython-38-arm-linux-gnueabi.so.2.3.0 -usr/lib/samba/libpytalloc-util.cpython-38-arm-linux-gnueabi.so.2 -usr/lib/samba/libpytalloc-util.cpython-38-arm-linux-gnueabi.so.2.3.2 +usr/lib/samba/libpyldb-util.cpython-310-arm-linux-gnueabi.so.2 +usr/lib/samba/libpyldb-util.cpython-310-arm-linux-gnueabi.so.2.4.1 +usr/lib/samba/libpytalloc-util.cpython-310-arm-linux-gnueabi.so.2 +usr/lib/samba/libpytalloc-util.cpython-310-arm-linux-gnueabi.so.2.3.3 usr/lib/samba/libregistry-samba4.so usr/lib/samba/libreplace-samba4.so usr/lib/samba/libroken-samba4.so.19 @@ -713,8 +752,8 @@ usr/lib/samba/libroken-samba4.so.19.0.1 usr/lib/samba/libsamba-cluster-support-samba4.so usr/lib/samba/libsamba-debug-samba4.so usr/lib/samba/libsamba-modules-samba4.so -usr/lib/samba/libsamba-net.cpython-38-arm-linux-gnueabi-samba4.so -usr/lib/samba/libsamba-python.cpython-38-arm-linux-gnueabi-samba4.so +usr/lib/samba/libsamba-net.cpython-310-arm-linux-gnueabi-samba4.so +usr/lib/samba/libsamba-python.cpython-310-arm-linux-gnueabi-samba4.so usr/lib/samba/libsamba-security-samba4.so usr/lib/samba/libsamba-sockets-samba4.so usr/lib/samba/libsamba3-util-samba4.so @@ -734,16 +773,15 @@ usr/lib/samba/libsys-rw-samba4.so usr/lib/samba/libtalloc-report-printf-samba4.so usr/lib/samba/libtalloc-report-samba4.so usr/lib/samba/libtalloc.so.2 -usr/lib/samba/libtalloc.so.2.3.2 +usr/lib/samba/libtalloc.so.2.3.3 usr/lib/samba/libtdb-wrap-samba4.so usr/lib/samba/libtdb.so.1 -usr/lib/samba/libtdb.so.1.4.3 +usr/lib/samba/libtdb.so.1.4.4 usr/lib/samba/libtevent.so.0 -usr/lib/samba/libtevent.so.0.10.2 +usr/lib/samba/libtevent.so.0.11.0 usr/lib/samba/libtime-basic-samba4.so usr/lib/samba/libtorture-samba4.so usr/lib/samba/libtrusts-util-samba4.so -usr/lib/samba/libutil-cmdline-samba4.so usr/lib/samba/libutil-reg-samba4.so usr/lib/samba/libutil-setid-samba4.so usr/lib/samba/libutil-tdb-samba4.so @@ -800,6 +838,7 @@ usr/lib/samba/vfs/xattr_tdb.so usr/lib/security usr/lib/security/pam_winbind.so #usr/libexec/samba +usr/libexec/samba/samba-bgqd usr/libexec/samba/smbspool_krb5_wrapper usr/sbin/eventlogadm usr/sbin/nmbd diff --git a/config/rootfiles/packages/aws-cli b/config/rootfiles/packages/aws-cli index dafd3ba680..1509d02fe7 100644 --- a/config/rootfiles/packages/aws-cli +++ b/config/rootfiles/packages/aws-cli @@ -3,4799 +3,4799 @@ usr/bin/aws.cmd usr/bin/aws_bash_completer usr/bin/aws_completer #usr/bin/aws_zsh_completer.sh -#usr/lib/python3.8/site-packages/awscli -#usr/lib/python3.8/site-packages/awscli-1.18.188-py3.8.egg-info -#usr/lib/python3.8/site-packages/awscli-1.18.188-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/awscli-1.18.188-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/awscli-1.18.188-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/awscli-1.18.188-py3.8.egg-info/requires.txt -#usr/lib/python3.8/site-packages/awscli-1.18.188-py3.8.egg-info/top_level.txt -usr/lib/python3.8/site-packages/awscli/__init__.py -usr/lib/python3.8/site-packages/awscli/__main__.py -usr/lib/python3.8/site-packages/awscli/alias.py -usr/lib/python3.8/site-packages/awscli/argparser.py -usr/lib/python3.8/site-packages/awscli/argprocess.py -usr/lib/python3.8/site-packages/awscli/arguments.py -usr/lib/python3.8/site-packages/awscli/bcdoc -usr/lib/python3.8/site-packages/awscli/bcdoc/__init__.py -usr/lib/python3.8/site-packages/awscli/bcdoc/docevents.py -usr/lib/python3.8/site-packages/awscli/bcdoc/docstringparser.py -usr/lib/python3.8/site-packages/awscli/bcdoc/restdoc.py -usr/lib/python3.8/site-packages/awscli/bcdoc/style.py -usr/lib/python3.8/site-packages/awscli/bcdoc/textwriter.py -usr/lib/python3.8/site-packages/awscli/clidocs.py -usr/lib/python3.8/site-packages/awscli/clidriver.py -usr/lib/python3.8/site-packages/awscli/commands.py -usr/lib/python3.8/site-packages/awscli/compat.py -usr/lib/python3.8/site-packages/awscli/completer.py -#usr/lib/python3.8/site-packages/awscli/customizations -usr/lib/python3.8/site-packages/awscli/customizations/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/addexamples.py -usr/lib/python3.8/site-packages/awscli/customizations/argrename.py -usr/lib/python3.8/site-packages/awscli/customizations/arguments.py -usr/lib/python3.8/site-packages/awscli/customizations/assumerole.py -usr/lib/python3.8/site-packages/awscli/customizations/awslambda.py -usr/lib/python3.8/site-packages/awscli/customizations/cliinputjson.py -#usr/lib/python3.8/site-packages/awscli/customizations/cloudformation -usr/lib/python3.8/site-packages/awscli/customizations/cloudformation/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudformation/artifact_exporter.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudformation/deploy.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudformation/deployer.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudformation/exceptions.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudformation/package.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudformation/yamlhelper.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudfront.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudsearch.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudsearchdomain.py -#usr/lib/python3.8/site-packages/awscli/customizations/cloudtrail -usr/lib/python3.8/site-packages/awscli/customizations/cloudtrail/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudtrail/subscribe.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudtrail/utils.py -usr/lib/python3.8/site-packages/awscli/customizations/cloudtrail/validation.py -#usr/lib/python3.8/site-packages/awscli/customizations/codeartifact -usr/lib/python3.8/site-packages/awscli/customizations/codeartifact/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/codeartifact/login.py -usr/lib/python3.8/site-packages/awscli/customizations/codecommit.py -#usr/lib/python3.8/site-packages/awscli/customizations/codedeploy -usr/lib/python3.8/site-packages/awscli/customizations/codedeploy/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/codedeploy/codedeploy.py -usr/lib/python3.8/site-packages/awscli/customizations/codedeploy/deregister.py -usr/lib/python3.8/site-packages/awscli/customizations/codedeploy/install.py -usr/lib/python3.8/site-packages/awscli/customizations/codedeploy/locationargs.py -usr/lib/python3.8/site-packages/awscli/customizations/codedeploy/push.py -usr/lib/python3.8/site-packages/awscli/customizations/codedeploy/register.py -usr/lib/python3.8/site-packages/awscli/customizations/codedeploy/systems.py -usr/lib/python3.8/site-packages/awscli/customizations/codedeploy/uninstall.py -usr/lib/python3.8/site-packages/awscli/customizations/codedeploy/utils.py -usr/lib/python3.8/site-packages/awscli/customizations/commands.py -#usr/lib/python3.8/site-packages/awscli/customizations/configservice -usr/lib/python3.8/site-packages/awscli/customizations/configservice/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/configservice/getstatus.py -usr/lib/python3.8/site-packages/awscli/customizations/configservice/putconfigurationrecorder.py -usr/lib/python3.8/site-packages/awscli/customizations/configservice/rename_cmd.py -usr/lib/python3.8/site-packages/awscli/customizations/configservice/subscribe.py -#usr/lib/python3.8/site-packages/awscli/customizations/configure -usr/lib/python3.8/site-packages/awscli/customizations/configure/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/configure/addmodel.py -usr/lib/python3.8/site-packages/awscli/customizations/configure/configure.py -usr/lib/python3.8/site-packages/awscli/customizations/configure/get.py -usr/lib/python3.8/site-packages/awscli/customizations/configure/list.py -usr/lib/python3.8/site-packages/awscli/customizations/configure/set.py -usr/lib/python3.8/site-packages/awscli/customizations/configure/writer.py -usr/lib/python3.8/site-packages/awscli/customizations/datapipeline -usr/lib/python3.8/site-packages/awscli/customizations/datapipeline/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/datapipeline/constants.py -usr/lib/python3.8/site-packages/awscli/customizations/datapipeline/createdefaultroles.py -usr/lib/python3.8/site-packages/awscli/customizations/datapipeline/listrunsformatter.py -usr/lib/python3.8/site-packages/awscli/customizations/datapipeline/translator.py -#usr/lib/python3.8/site-packages/awscli/customizations/dlm -usr/lib/python3.8/site-packages/awscli/customizations/dlm/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/dlm/constants.py -usr/lib/python3.8/site-packages/awscli/customizations/dlm/createdefaultrole.py -usr/lib/python3.8/site-packages/awscli/customizations/dlm/dlm.py -usr/lib/python3.8/site-packages/awscli/customizations/dlm/iam.py -usr/lib/python3.8/site-packages/awscli/customizations/dynamodb.py -#usr/lib/python3.8/site-packages/awscli/customizations/ec2 -usr/lib/python3.8/site-packages/awscli/customizations/ec2/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/ec2/addcount.py -usr/lib/python3.8/site-packages/awscli/customizations/ec2/bundleinstance.py -usr/lib/python3.8/site-packages/awscli/customizations/ec2/decryptpassword.py -usr/lib/python3.8/site-packages/awscli/customizations/ec2/paginate.py -usr/lib/python3.8/site-packages/awscli/customizations/ec2/protocolarg.py -usr/lib/python3.8/site-packages/awscli/customizations/ec2/runinstances.py -usr/lib/python3.8/site-packages/awscli/customizations/ec2/secgroupsimplify.py -usr/lib/python3.8/site-packages/awscli/customizations/ecr.py -usr/lib/python3.8/site-packages/awscli/customizations/ecr_public.py -#usr/lib/python3.8/site-packages/awscli/customizations/ecs -usr/lib/python3.8/site-packages/awscli/customizations/ecs/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/ecs/deploy.py -usr/lib/python3.8/site-packages/awscli/customizations/ecs/exceptions.py -usr/lib/python3.8/site-packages/awscli/customizations/ecs/filehelpers.py -#usr/lib/python3.8/site-packages/awscli/customizations/eks -usr/lib/python3.8/site-packages/awscli/customizations/eks/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/eks/exceptions.py -usr/lib/python3.8/site-packages/awscli/customizations/eks/get_token.py -usr/lib/python3.8/site-packages/awscli/customizations/eks/kubeconfig.py -usr/lib/python3.8/site-packages/awscli/customizations/eks/ordered_yaml.py -usr/lib/python3.8/site-packages/awscli/customizations/eks/update_kubeconfig.py -#usr/lib/python3.8/site-packages/awscli/customizations/emr -usr/lib/python3.8/site-packages/awscli/customizations/emr/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/addinstancegroups.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/addsteps.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/addtags.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/applicationutils.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/argumentschema.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/command.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/config.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/configutils.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/constants.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/createcluster.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/createdefaultroles.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/describecluster.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/emr.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/emrfsutils.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/emrutils.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/exceptions.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/hbase.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/hbaseutils.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/helptext.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/installapplications.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/instancefleetsutils.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/instancegroupsutils.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/listclusters.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/modifyclusterattributes.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/ssh.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/sshutils.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/steputils.py -usr/lib/python3.8/site-packages/awscli/customizations/emr/terminateclusters.py -usr/lib/python3.8/site-packages/awscli/customizations/flatten.py -#usr/lib/python3.8/site-packages/awscli/customizations/gamelift -usr/lib/python3.8/site-packages/awscli/customizations/gamelift/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/gamelift/getlog.py -usr/lib/python3.8/site-packages/awscli/customizations/gamelift/uploadbuild.py -usr/lib/python3.8/site-packages/awscli/customizations/generatecliskeleton.py -usr/lib/python3.8/site-packages/awscli/customizations/globalargs.py -#usr/lib/python3.8/site-packages/awscli/customizations/history -usr/lib/python3.8/site-packages/awscli/customizations/history/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/history/commands.py -usr/lib/python3.8/site-packages/awscli/customizations/history/constants.py -usr/lib/python3.8/site-packages/awscli/customizations/history/db.py -usr/lib/python3.8/site-packages/awscli/customizations/history/filters.py -usr/lib/python3.8/site-packages/awscli/customizations/history/list.py -usr/lib/python3.8/site-packages/awscli/customizations/history/show.py -usr/lib/python3.8/site-packages/awscli/customizations/iamvirtmfa.py -usr/lib/python3.8/site-packages/awscli/customizations/iot.py -usr/lib/python3.8/site-packages/awscli/customizations/iot_data.py -usr/lib/python3.8/site-packages/awscli/customizations/kms.py -usr/lib/python3.8/site-packages/awscli/customizations/mturk.py -usr/lib/python3.8/site-packages/awscli/customizations/opsworks.py -usr/lib/python3.8/site-packages/awscli/customizations/opsworkscm.py -usr/lib/python3.8/site-packages/awscli/customizations/paginate.py -usr/lib/python3.8/site-packages/awscli/customizations/preview.py -usr/lib/python3.8/site-packages/awscli/customizations/putmetricdata.py -usr/lib/python3.8/site-packages/awscli/customizations/rds.py -usr/lib/python3.8/site-packages/awscli/customizations/rekognition.py -usr/lib/python3.8/site-packages/awscli/customizations/removals.py -usr/lib/python3.8/site-packages/awscli/customizations/route53.py -#usr/lib/python3.8/site-packages/awscli/customizations/s3 -usr/lib/python3.8/site-packages/awscli/customizations/s3/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/comparator.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/fileformat.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/filegenerator.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/fileinfo.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/fileinfobuilder.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/filters.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/results.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/s3.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/s3handler.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/subcommands.py -#usr/lib/python3.8/site-packages/awscli/customizations/s3/syncstrategy -usr/lib/python3.8/site-packages/awscli/customizations/s3/syncstrategy/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/syncstrategy/base.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/syncstrategy/delete.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/syncstrategy/exacttimestamps.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/syncstrategy/register.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/syncstrategy/sizeonly.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/transferconfig.py -usr/lib/python3.8/site-packages/awscli/customizations/s3/utils.py -usr/lib/python3.8/site-packages/awscli/customizations/s3errormsg.py -usr/lib/python3.8/site-packages/awscli/customizations/s3events.py -usr/lib/python3.8/site-packages/awscli/customizations/s3uploader.py -usr/lib/python3.8/site-packages/awscli/customizations/sagemaker.py -usr/lib/python3.8/site-packages/awscli/customizations/scalarparse.py -#usr/lib/python3.8/site-packages/awscli/customizations/servicecatalog -usr/lib/python3.8/site-packages/awscli/customizations/servicecatalog/__init__.py -usr/lib/python3.8/site-packages/awscli/customizations/servicecatalog/exceptions.py -usr/lib/python3.8/site-packages/awscli/customizations/servicecatalog/generate.py -usr/lib/python3.8/site-packages/awscli/customizations/servicecatalog/generatebase.py -usr/lib/python3.8/site-packages/awscli/customizations/servicecatalog/generateproduct.py -usr/lib/python3.8/site-packages/awscli/customizations/servicecatalog/generateprovisioningartifact.py -usr/lib/python3.8/site-packages/awscli/customizations/servicecatalog/helptext.py -usr/lib/python3.8/site-packages/awscli/customizations/servicecatalog/utils.py -usr/lib/python3.8/site-packages/awscli/customizations/sessendemail.py -usr/lib/python3.8/site-packages/awscli/customizations/sessionmanager.py -usr/lib/python3.8/site-packages/awscli/customizations/sms_voice.py -usr/lib/python3.8/site-packages/awscli/customizations/streamingoutputarg.py -usr/lib/python3.8/site-packages/awscli/customizations/toplevelbool.py -usr/lib/python3.8/site-packages/awscli/customizations/translate.py -usr/lib/python3.8/site-packages/awscli/customizations/utils.py -usr/lib/python3.8/site-packages/awscli/customizations/waiters.py -#usr/lib/python3.8/site-packages/awscli/data -usr/lib/python3.8/site-packages/awscli/data/cli.json -usr/lib/python3.8/site-packages/awscli/errorhandler.py -usr/lib/python3.8/site-packages/awscli/examples -#usr/lib/python3.8/site-packages/awscli/examples/acm -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/create-certificate-authority-audit-report.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/create-certificate-authority.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/delete-certificate-authority.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/describe-certificate-authority-audit-report.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/describe-certificate-authority.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/get-certificate-authority-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/get-certificate-authority-csr.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/get-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/import-certificate-authority-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/issue-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/list-certificate-authorities.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/list-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/revoke-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/tag-certificate-authority.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/untag-certificate-authority.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm-pca/update-certificate-authority.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm/add-tags-to-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm/delete-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm/describe-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm/get-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm/list-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm/list-tags-for-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm/remove-tags-from-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm/request-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm/resend-validation-email.rst -#usr/lib/python3.8/site-packages/awscli/examples/acm/update-certificate-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/alexaforbusiness -#usr/lib/python3.8/site-packages/awscli/examples/alexaforbusiness/create-network-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/alexaforbusiness/delete-network-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/alexaforbusiness/get-network-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/alexaforbusiness/search-network-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/alexaforbusiness/update-network-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-api-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-base-path-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-domain-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-rest-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-stage.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-usage-plan-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/create-usage-plan.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-api-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-base-path-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-client-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-domain-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-integration-response.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-integration.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-method-response.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-method.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-rest-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-stage.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-usage-plan-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/delete-usage-plan.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/flush-stage-authorizers-cache.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/flush-stage-cache.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/generate-client-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-api-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-api-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-authorizers.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-base-path-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-base-path-mappings.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-client-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-client-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-deployments.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-domain-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-domain-names.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-export.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-integration-response.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-integration.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-method-response.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-method.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-model-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-models.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-rest-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-rest-apis.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-sdk.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-stage.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-stages.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-usage-plan-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-usage-plan-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-usage-plan.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-usage-plans.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/get-usage.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/import-rest-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/put-integration-response.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/put-integration.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/put-method-response.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/put-method.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/put-rest-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/test-invoke-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/test-invoke-method.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-api-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-base-path-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-client-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-domain-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-integration-response.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-integration.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-method-response.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-method.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-rest-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-stage.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-usage-plan.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigateway/update-usage.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewaymanagementapi -#usr/lib/python3.8/site-packages/awscli/examples/apigatewaymanagementapi/delete-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewaymanagementapi/get-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewaymanagementapi/post-to-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2 -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/create-api-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/create-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/create-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/create-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/create-domain-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/create-integration.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/create-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/create-stage.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/create-vpc-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-access-log-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-api-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-cors-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-domain-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-integration.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-route-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-stage.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/delete-vpc-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/export-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-api-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-api-mappings.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-apis.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-authorizers.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-deployments.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-domain-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-domain-names.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-integration.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-integrations.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-routes.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-stage.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-stages.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-vpc-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/get-vpc-links.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/import-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/reimport-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/update-api-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/update-api.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/update-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/update-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/update-domain-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/update-integration.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/update-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/update-stage.rst -#usr/lib/python3.8/site-packages/awscli/examples/apigatewayv2/update-vpc-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/appconfig -#usr/lib/python3.8/site-packages/awscli/examples/appconfig/get-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/appconfig/list-applications.rst -#usr/lib/python3.8/site-packages/awscli/examples/appconfig/list-configuration-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/appconfig/list-environments.rst -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling/delete-scaling-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling/delete-scheduled-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling/deregister-scalable-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling/describe-scalable-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling/describe-scaling-activities.rst -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling/describe-scaling-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling/describe-scheduled-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling/put-scaling-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling/put-scheduled-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/application-autoscaling/register-scalable-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/create-mesh.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/create-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/create-virtual-node.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/create-virtual-router.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/create-virtual-service.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/delete-mesh.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/delete-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/delete-virtual-node.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/delete-virtual-router.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/delete-virtual-service.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/describe-mesh.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/describe-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/describe-virtual-node.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/describe-virtual-router.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/describe-virtual-service.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/list-meshes.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/list-routes.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/list-virtual-nodes.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/list-virtual-routers.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/list-virtual-services.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/update-mesh.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/update-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/update-virtual-node.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/update-virtual-router.rst -#usr/lib/python3.8/site-packages/awscli/examples/appmesh/update-virtual-service.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena -#usr/lib/python3.8/site-packages/awscli/examples/athena/batch-get-named-query.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/batch-get-query-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/create-data-catalog.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/create-named-query.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/create-work-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/delete-data-catalog.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/delete-named-query.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/delete-work-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/get-data-catalog.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/get-database.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/get-named-query.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/get-query-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/get-query-results.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/get-table-metadata.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/get-work-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/list-data-catalogs.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/list-databases.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/list-named-queries.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/list-query-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/list-table-metadata.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/list-work-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/start-query-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/stop-query-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/update-data-catalog.rst -#usr/lib/python3.8/site-packages/awscli/examples/athena/update-work-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling-plans -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling-plans/create-scaling-plan.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling-plans/delete-scaling-plan.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling-plans/describe-scaling-plan-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling-plans/describe-scaling-plans.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling-plans/get-scaling-plan-resource-forecast-data.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling-plans/update-scaling-plan.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/attach-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/attach-load-balancer-target-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/attach-load-balancers.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/cancel-instance-refresh.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/complete-lifecycle-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/create-auto-scaling-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/create-launch-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/create-or-update-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/delete-auto-scaling-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/delete-launch-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/delete-lifecycle-hook.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/delete-notification-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/delete-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/delete-scheduled-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/delete-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-account-limits.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-adjustment-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-auto-scaling-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-auto-scaling-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-auto-scaling-notification-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-instance-refreshes.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-launch-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-lifecycle-hook-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-lifecycle-hooks.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-load-balancer-target-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-load-balancers.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-metric-collection-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-notification-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-scaling-activities.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-scaling-process-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-scheduled-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/describe-termination-policy-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/detach-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/detach-load-balancer-target-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/detach-load-balancers.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/disable-metrics-collection.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/enable-metrics-collection.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/enter-standby.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/execute-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/exit-standby.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/put-lifecycle-hook.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/put-notification-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/put-scaling-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/put-scheduled-update-group-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/record-lifecycle-action-heartbeat.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/resume-processes.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/set-desired-capacity.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/set-instance-health.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/set-instance-protection.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/start-instance-refresh.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/suspend-processes.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/terminate-instance-in-auto-scaling-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/autoscaling/update-auto-scaling-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/backup -#usr/lib/python3.8/site-packages/awscli/examples/backup/create-backup-plan.rst -#usr/lib/python3.8/site-packages/awscli/examples/backup/create-backup-vault.rst -#usr/lib/python3.8/site-packages/awscli/examples/backup/get-backup-plan-from-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/backup/get-backup-plan.rst -#usr/lib/python3.8/site-packages/awscli/examples/backup/list-backup-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch -#usr/lib/python3.8/site-packages/awscli/examples/batch/cancel-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/create-compute-environment.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/create-job-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/delete-compute-environment.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/delete-job-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/deregister-job-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/describe-compute-environments.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/describe-job-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/describe-job-queues.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/describe-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/list-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/register-job-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/submit-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/terminate-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/update-compute-environment.rst -#usr/lib/python3.8/site-packages/awscli/examples/batch/update-job-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets -#usr/lib/python3.8/site-packages/awscli/examples/budgets/create-budget.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/create-notification.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/create-subscriber.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/delete-budget.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/delete-notification.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/delete-subscriber.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/describe-budget.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/describe-budgets.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/describe-notifications-for-budget.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/describe-subscribers-for-notification.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/update-budget.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/update-notification.rst -#usr/lib/python3.8/site-packages/awscli/examples/budgets/update-subscriber.rst -#usr/lib/python3.8/site-packages/awscli/examples/ce -#usr/lib/python3.8/site-packages/awscli/examples/ce/get-cost-and-usage.rst -#usr/lib/python3.8/site-packages/awscli/examples/ce/get-dimension-values.rst -#usr/lib/python3.8/site-packages/awscli/examples/ce/get-reservation-coverage.rst -#usr/lib/python3.8/site-packages/awscli/examples/ce/get-reservation-purchase-recommendation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ce/get-reservation-utilization.rst -#usr/lib/python3.8/site-packages/awscli/examples/ce/get-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime -#usr/lib/python3.8/site-packages/awscli/examples/chime/associate-phone-number-with-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/associate-phone-numbers-with-voice-connector-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/associate-phone-numbers-with-voice-connector.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/associate-signin-delegate-groups-with-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/batch-create-room-membership.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/batch-delete-phone-number.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/batch-suspend-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/batch-unsuspend-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/batch-update-phone-number.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/batch-update-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/create-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/create-bot.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/create-phone-number-order.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/create-proxy-session.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/create-room-membership.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/create-room.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/create-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/create-voice-connector-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/create-voice-connector.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-phone-number.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-proxy-session.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-room-membership.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-room.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-voice-connector-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-voice-connector-origination.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-voice-connector-proxy.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-voice-connector-streaming-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-voice-connector-termination-credentials.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-voice-connector-termination.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/delete-voice-connector.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/disassociate-phone-number-from-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/disassociate-phone-numbers-from-voice-connector-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/disassociate-phone-numbers-from-voice-connector.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/disassociate-signin-delegate-groups-from-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-account-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-bot.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-global-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-phone-number-order.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-phone-number-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-phone-number.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-proxy-session.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-room.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-user-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-voice-connector-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-voice-connector-logging-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-voice-connector-origination.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-voice-connector-proxy.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-voice-connector-streaming-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-voice-connector-termination-health.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-voice-connector-termination.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/get-voice-connector.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/invite-users.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-accounts.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-bots.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-phone-number-orders.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-phone-numbers.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-proxy-sessions.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-room-memberships.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-rooms.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-users.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-voice-connector-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-voice-connector-termination-credentials.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/list-voice-connectors.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/logout-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/put-voice-connector-logging-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/put-voice-connector-origination.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/put-voice-connector-proxy.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/put-voice-connector-streaming-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/put-voice-connector-termination-credentials.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/put-voice-connector-termination.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/regenerate-security-token.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/reset-personal-pin.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/restore-phone-number.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/search-available-phone-numbers.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-account-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-bot.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-global-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-phone-number-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-phone-number.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-proxy-session.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-room-membership.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-room.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-user-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-voice-connector-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/chime/update-voice-connector.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloud9 -#usr/lib/python3.8/site-packages/awscli/examples/cloud9/create-environment-ec2.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloud9/create-environment-membership.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloud9/delete-environment-membership.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloud9/delete-environment.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloud9/describe-environment-memberships.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloud9/describe-environment-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloud9/describe-environments.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloud9/list-environments.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloud9/update-environment-membership.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloud9/update-environment.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/_deploy_description.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/_package_description.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/cancel-update-stack.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/continue-update-rollback.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/create-change-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/create-stack-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/create-stack-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/create-stack.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/delete-change-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/delete-stack-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/delete-stack-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/delete-stack.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/deploy.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/deregister-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-account-limits.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-change-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-stack-drift-detection-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-stack-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-stack-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-stack-resource-drifts.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-stack-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-stack-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-stack-set-operation.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-stack-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-stacks.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-type-registration.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/describe-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/detect-stack-drift.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/detect-stack-resource-drift.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/detect-stack-set-drift.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/estimate-template-cost.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/execute-change-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/get-stack-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/get-template-summary.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/get-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-change-sets.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-exports.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-imports.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-stack-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-stack-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-stack-set-operation-results.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-stack-set-operations.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-stack-sets.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-stacks.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-type-registrations.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-type-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/list-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/package.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/register-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/set-stack-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/set-type-default-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/signal-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/stop-stack-set-operation.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/update-stack-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/update-stack-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/update-stack.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/update-termination-protection.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/validate-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/wait -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/wait/change-set-create-complete.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/wait/stack-create-complete.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/wait/stack-delete-complete.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/wait/stack-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/wait/stack-import-complete.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/wait/stack-rollback-complete.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/wait/stack-update-complete.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudformation/wait/type-registration-complete.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/create-cloud-front-origin-access-identity.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/create-distribution-with-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/create-distribution.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/create-field-level-encryption-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/create-field-level-encryption-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/create-invalidation.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/create-public-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/delete-cloud-front-origin-access-identity.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/delete-distribution.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/delete-field-level-encryption-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/delete-field-level-encryption-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/delete-public-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-cloud-front-origin-access-identity-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-cloud-front-origin-access-identity.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-distribution-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-distribution.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-field-level-encryption-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-field-level-encryption-profile-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-field-level-encryption-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-field-level-encryption.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-invalidation.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-public-key-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/get-public-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/list-cloud-front-origin-access-identities.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/list-distributions.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/list-field-level-encryption-configs.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/list-field-level-encryption-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/list-invalidations.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/list-public-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/sign.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/update-cloud-front-origin-access-identity.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/update-distribution.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/update-field-level-encryption-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudfront/update-field-level-encryption-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudsearchdomain -#usr/lib/python3.8/site-packages/awscli/examples/cloudsearchdomain/upload-documents.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/add-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/create-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/create-trail.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/delete-trail.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/describe-trails.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/get-event-selectors.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/get-trail-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/list-public-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/list-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/lookup-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/put-event-selectors.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/remove-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/start-logging.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/stop-logging.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/update-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/update-trail.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudtrail/validate-logs.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/delete-alarms.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/describe-alarm-history.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/describe-alarms-for-metric.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/describe-alarms.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/disable-alarm-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/enable-alarm-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/get-metric-statistics.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/list-metrics.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/put-metric-alarm.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/put-metric-data.rst -#usr/lib/python3.8/site-packages/awscli/examples/cloudwatch/set-alarm-state.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/batch-delete-builds.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/batch-get-build-batches.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/batch-get-builds.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/batch-get-projects.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/batch-get-report-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/batch-get-reports.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/create-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/create-report-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/create-webhook.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/delete-build-batch.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/delete-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/delete-report-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/delete-report.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/delete-source-credentials.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/delete-webhook.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/describe-code-coverages.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/describe-test-cases.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/import-source-credentials.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/invalidate-project-cache.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-build-batches-for-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-build-batches.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-builds-for-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-builds.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-curated-environment-images.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-projects.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-report-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-reports-for-report-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-reports.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-shared-projects.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-shared-report-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/list-source-credentials.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/retry-build-batch.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/retry-build.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/start-build-batch.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/start-build.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/stop-build-batch.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/stop-build.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/update-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/update-report-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/codebuild/update-webhook.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/associate-approval-rule-template-with-repository.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/batch-associate-approval-rule-template-with-repositories.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/batch-describe-merge-conflicts.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/batch-disassociate-approval-rule-template-from-repositories.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/batch-get-commits.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/batch-get-repositories.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/create-approval-rule-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/create-branch.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/create-commit.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/create-pull-request-approval-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/create-pull-request.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/create-repository.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/create-unreferenced-merge-commit.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/credential-helper.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/delete-approval-rule-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/delete-branch.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/delete-comment-content.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/delete-file.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/delete-pull-request-approval-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/delete-repository.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/describe-merge-conflicts.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/describe-pull-request-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/disassociate-approval-rule-template-from-repository.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/evaluate-pull-request-approval-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-approval-rule-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-blob.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-branch.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-comment-reactions.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-comment.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-comments-for-compared-commit.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-comments-for-pull-request.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-commit.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-differences.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-file.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-folder.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-merge-commit.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-merge-conflicts.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-merge-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-pull-request-approval-states.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-pull-request-override-state.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-pull-request.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-repository-triggers.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/get-repository.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/list-approval-rule-templates.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/list-associated-approval-rule-templates-for-repository.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/list-branches.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/list-pull-requests.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/list-repositories-for-approval-rule-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/list-repositories.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/merge-branches-by-fast-forward.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/merge-branches-by-squash.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/merge-branches-by-three-way.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/merge-pull-request-by-fast-forward.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/merge-pull-request-by-squash.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/merge-pull-request-by-three-way.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/override-pull-request-approval-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/post-comment-for-compared-commit.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/post-comment-for-pull-request.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/post-comment-reply.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/put-comment-reaction.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/put-file.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/put-repository-triggers.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/test-repository-triggers.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-approval-rule-template-content.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-approval-rule-template-description.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-approval-rule-template-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-comment.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-default-branch.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-pull-request-approval-rule-content.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-pull-request-approval-state.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-pull-request-description.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-pull-request-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-pull-request-title.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-repository-description.rst -#usr/lib/python3.8/site-packages/awscli/examples/codecommit/update-repository-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/acknowledge-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/create-custom-action-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/create-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/delete-custom-action-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/delete-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/delete-webhook.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/deregister-webhook-with-third-party.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/disable-stage-transition.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/enable-stage-transition.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/get-job-details.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/get-pipeline-state.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/get-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/list-action-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/list-action-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/list-pipeline-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/list-pipelines.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/list-webhooks.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/poll-for-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/put-webhook.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/retry-stage-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/start-pipeline-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/stop-pipeline-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codepipeline/update-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/create-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/create-host.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/delete-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/delete-host.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/get-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/get-host.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/list-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/list-hosts.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-connections/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/create-notification-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/delete-notification-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/delete-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/describe-notification-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/list-event-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/list-notification-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/list-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/subscribe.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/unsubscribe.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar-notifications/update-notification-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/associate-team-member.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/create-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/create-user-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/delete-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/delete-user-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/describe-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/describe-user-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/disassociate-team-member.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/list-projects.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/list-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/list-tags-for-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/list-team-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/list-user-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/tag-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/untag-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/update-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/update-team-member.rst -#usr/lib/python3.8/site-packages/awscli/examples/codestar/update-user-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-identity -#usr/lib/python3.8/site-packages/awscli/examples/cognito-identity/create-identity-pool.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-identity/delete-identities.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-identity/delete-identity-pool.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-identity/describe-identity-pool.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-identity/get-identity-pool-roles.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-identity/list-identity-pools.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-identity/set-identity-pool-roles.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-identity/update-identity-pool.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/add-custom-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admim-disable-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admim-enable-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-add-user-to-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-confirm-sign-up.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-create-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-delete-user-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-delete-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-forget-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-get-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-get-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-initiate-auth.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-list-devices.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-list-groups-for-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-list-user-auth-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-remove-user-from-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-reset-user-password.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-set-user-mfa-preference.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-set-user-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-update-auth-event-feedback.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-update-device-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/admin-update-user-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/change-password.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/confirm-forgot-password.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/confirm-sign-up.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/create-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/create-user-import-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/create-user-pool-client.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/create-user-pool-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/create-user-pool.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/delete-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/delete-identity-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/delete-resource-server.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/delete-user-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/delete-user-pool-client.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/delete-user-pool-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/delete-user-pool.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/delete-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/describe-identity-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/describe-resource-server.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/describe-risk-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/describe-user-import-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/describe-user-pool-client.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/describe-user-pool-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/describe-user-pool.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/forget-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/forgot-password.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/get-csv-header.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/get-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/get-signing-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/get-ui-customization.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/list-user-import-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/list-user-pools.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/list-users-in-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/list-users.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/resend-confirmation-code.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/respond-to-auth-challenge.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/set-risk-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/set-ui-customization.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/set-user-mfa-preference.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/set-user-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/sign-up.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/start-user-import-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/stop-user-import-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/update-auth-event-feedback.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/update-device-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/update-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/update-resource-server.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/update-user-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/update-user-pool-client.rst -#usr/lib/python3.8/site-packages/awscli/examples/cognito-idp/update-user-pool.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/describe-entities-detection-v2-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/describe-icd10-cm-inference-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/describe-phi-detection-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/describe-rx-norm-inference-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/detect-entities-v2.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/detect-phi.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/infer-icd10-cm.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/infer-rx-norm.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/list-entities-detection-v2-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/list-icd10-cm-inference-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/list-phi-detection-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/list-rx-norm-inference-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/start-entities-detection-v2-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/start-icd10-cm-inference-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/start-phi-detection-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/start-rx-norm-inference-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/stop-entities-detection-v2-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/stop-icd10-cm-inference-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/stop-phi-detection-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/comprehendmedical/stop-rx-norm-inference-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice -#usr/lib/python3.8/site-packages/awscli/examples/configservice/delete-config-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/delete-delivery-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/delete-evaluation-results.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/deliver-config-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/describe-compliance-by-config-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/describe-compliance-by-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/describe-config-rule-evaluation-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/describe-config-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/describe-configuration-recorder-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/describe-configuration-recorders.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/describe-delivery-channel-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/describe-delivery-channels.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/get-compliance-details-by-config-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/get-compliance-details-by-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/get-compliance-summary-by-config-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/get-compliance-summary-by-resource-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/get-resource-config-history.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/get-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/list-discovered-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/put-config-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/put-configuration-recorder.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/put-delivery-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/start-config-rules-evaluation.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/start-configuration-recorder.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/stop-configuration-recorder.rst -#usr/lib/python3.8/site-packages/awscli/examples/configservice/subscribe.rst -#usr/lib/python3.8/site-packages/awscli/examples/configure -#usr/lib/python3.8/site-packages/awscli/examples/configure/_description.rst -#usr/lib/python3.8/site-packages/awscli/examples/configure/add-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/configure/get -#usr/lib/python3.8/site-packages/awscli/examples/configure/get/_description.rst -#usr/lib/python3.8/site-packages/awscli/examples/configure/get/_examples.rst -#usr/lib/python3.8/site-packages/awscli/examples/configure/set -#usr/lib/python3.8/site-packages/awscli/examples/configure/set/_description.rst -#usr/lib/python3.8/site-packages/awscli/examples/configure/set/_examples.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect -#usr/lib/python3.8/site-packages/awscli/examples/connect/create-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/delete-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/describe-user-hierarchy-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/describe-user-hierarchy-structure.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/describe-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/get-contact-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/list-contact-flows.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/list-hours-of-operations.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/list-phone-numbers.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/list-queues.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/list-routing-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/list-security-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/list-user-hierarchy-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/list-users.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/update-contact-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/update-user-hierarchy.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/update-user-identity-info.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/update-user-phone-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/update-user-routing-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/connect/update-user-security-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/cur -#usr/lib/python3.8/site-packages/awscli/examples/cur/delete-report-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/cur/describe-report-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/cur/put-report-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/activate-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/add-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/create-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/deactivate-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/delete-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/describe-pipelines.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/get-pipeline-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/list-pipelines.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/list-runs.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/put-pipeline-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/datapipeline/remove-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax -#usr/lib/python3.8/site-packages/awscli/examples/dax/create-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/create-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/create-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/decrease-replication-factor.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/delete-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/delete-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/delete-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/describe-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/describe-default-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/describe-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/describe-parameter-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/describe-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/describe-subnet-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/increase-replication-factor.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/list-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/dax/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy -#usr/lib/python3.8/site-packages/awscli/examples/deploy/add-tags-to-on-premises-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/batch-get-application-revisions.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/batch-get-applications.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/batch-get-deployment-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/batch-get-deployment-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/batch-get-deployments.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/batch-get-on-premises-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/continue-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/create-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/create-deployment-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/create-deployment-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/create-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/delete-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/delete-deployment-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/delete-deployment-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/delete-git-hub-account-token.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/deregister-on-premises-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/deregister.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/get-application-revision.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/get-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/get-deployment-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/get-deployment-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/get-deployment-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/get-deployment-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/get-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/get-on-premises-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/install.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/list-application-revisions.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/list-applications.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/list-deployment-configs.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/list-deployment-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/list-deployment-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/list-deployment-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/list-deployments.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/list-git-hub-account-token-names.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/list-on-premises-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/push.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/register-application-revision.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/register-on-premises-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/register.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/remove-tags-from-on-premises-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/stop-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/uninstall.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/update-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/update-deployment-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/deploy/wait -#usr/lib/python3.8/site-packages/awscli/examples/deploy/wait/deployment-successful.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective -#usr/lib/python3.8/site-packages/awscli/examples/detective/accept-invitation.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective/create-graph.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective/create-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective/delete-graph.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective/delete-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective/disassociate-membership.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective/get-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective/list-graphs.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective/list-invitations.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective/list-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/detective/reject-invitation.rst -#usr/lib/python3.8/site-packages/awscli/examples/devicefarm -#usr/lib/python3.8/site-packages/awscli/examples/devicefarm/create-device-pool.rst -#usr/lib/python3.8/site-packages/awscli/examples/devicefarm/create-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/devicefarm/create-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/devicefarm/get-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/devicefarm/list-projects.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/accept-direct-connect-gateway-association-proposal.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/allocate-connection-on-interconnect.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/allocate-hosted-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/allocate-private-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/allocate-public-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/allocate-transit-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/associate-connection-with-lag.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/associate-hosted-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/associate-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/confirm-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/confirm-private-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/confirm-public-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/confirm-transit-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/create-bgp-peer.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/create-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/create-direct-connect-gateway-association-proposal.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/create-direct-connect-gateway-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/create-direct-connect-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/create-interconnect.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/create-lag.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/create-private-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/create-public-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/create-transit-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/delete-bgp-peer.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/delete-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/delete-direct-connect-gateway-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/delete-direct-connect-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/delete-interconnect.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/delete-lag.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/delete-virtual-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-connection-loa.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-connections-on-interconnect.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-direct-connect-gateway-association-proposals.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-direct-connect-gateway-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-direct-connect-gateway-attachments.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-direct-connect-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-hosted-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-interconnect-loa.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-interconnects.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-lags.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-loa.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-locations.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-virtual-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/describe-virtual-interfaces.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/disassociate-connection-from-lag.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/update-direct-connect-gateway-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/update-lag.rst -#usr/lib/python3.8/site-packages/awscli/examples/directconnect/update-virtual-interface-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/discovery -#usr/lib/python3.8/site-packages/awscli/examples/discovery/describe-agents.rst -#usr/lib/python3.8/site-packages/awscli/examples/discovery/describe-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/discovery/list-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/dlm -#usr/lib/python3.8/site-packages/awscli/examples/dlm/create-default-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/dlm/create-lifecycle-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/dlm/delete-lifecycle-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/dlm/get-lifecycle-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/dlm/get-lifecycle-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/dlm/update-lifecycle-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms -#usr/lib/python3.8/site-packages/awscli/examples/dms/add-tags-to-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/create-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/create-event-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/create-replication-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/create-replication-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/create-replication-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/delete-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/delete-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/delete-event-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/delete-replication-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/delete-replication-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/delete-replication-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-account-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-endpoint-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-endpoints.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-event-categories.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-event-subscriptions.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-orderable-replication-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-refresh-schemas-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-replication-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-replication-subnet-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-replication-task-assessment-results.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-replication-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/describe-schemas.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/modify-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/modify-event-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/modify-replication-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/modify-replication-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/modify-replication-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/reboot-replication-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/refresh-schemas.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/reload-tables.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/remove-tags-from-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/start-replication-task-assessment.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/start-replication-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/stop-replication-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/dms/test-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb -#usr/lib/python3.8/site-packages/awscli/examples/docdb/add-tags-to-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/apply-pending-maintenance-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/copy-db-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/copy-db-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/create-db-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/create-db-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/create-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/create-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/create-db-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/delete-db-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/delete-db-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/delete-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/delete-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/delete-db-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-db-cluster-parameter-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-db-cluster-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-db-cluster-snapshot-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-db-cluster-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-db-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-db-engine-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-db-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-db-subnet-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-engine-default-cluster-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-event-categories.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-orderable-db-instance-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/describe-pending-maintenance-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/failover-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/modify-db-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/modify-db-cluster-snapshot-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/modify-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/modify-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/modify-db-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/reboot-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/remove-tags-from-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/reset-db-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/restore-db-cluster-from-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/restore-db-cluster-to-point-in-time.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/start-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/stop-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/wait -#usr/lib/python3.8/site-packages/awscli/examples/docdb/wait/db-instance-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/docdb/wait/db-instance-deleted.rst -#usr/lib/python3.8/site-packages/awscli/examples/ds -#usr/lib/python3.8/site-packages/awscli/examples/ds/describe-directories.rst -#usr/lib/python3.8/site-packages/awscli/examples/ds/describe-trusts.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/batch-get-item.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/batch-write-item.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/create-backup.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/create-global-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/create-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/delete-backup.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/delete-item.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/delete-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/describe-backup.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/describe-continuous-backups.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/describe-contributor-insights.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/describe-endpoints.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/describe-global-table-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/describe-global-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/describe-limits.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/describe-table-replica-auto-scaling.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/describe-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/describe-time-to-live.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/get-item.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/list-backups.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/list-contributor-insights.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/list-global-tables.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/list-tables.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/list-tags-of-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/put-item.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/query.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/restore-table-from-backup.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/restore-table-to-point-in-time.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/scan.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/transact-get-items.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/transact-write-items.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/update-continuous-backups.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/update-contributor-insights.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/update-global-table-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/update-global-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/update-item.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/update-table-replica-auto-scaling.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/update-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/update-time-to-live.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/wait -#usr/lib/python3.8/site-packages/awscli/examples/dynamodb/wait/table-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodbstreams -#usr/lib/python3.8/site-packages/awscli/examples/dynamodbstreams/describe-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodbstreams/get-records.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodbstreams/get-shard-iterator.rst -#usr/lib/python3.8/site-packages/awscli/examples/dynamodbstreams/list-streams.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2 -#usr/lib/python3.8/site-packages/awscli/examples/ec2-instance-connect -#usr/lib/python3.8/site-packages/awscli/examples/ec2-instance-connect/send-ssh-public-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/accept-reserved-instances-exchange-quote.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/accept-transit-gateway-peering-attachment.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/accept-transit-gateway-vpc-attachment.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/accept-vpc-endpoint-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/accept-vpc-peering-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/advertise-byoip-cidr.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/allocate-address.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/allocate-hosts.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/apply-security-groups-to-client-vpn-target-network.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/assign-ipv6-addresses.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/assign-private-ip-addresses.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/associate-address.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/associate-client-vpn-target-network.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/associate-dhcp-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/associate-iam-instance-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/associate-route-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/associate-subnet-cidr-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/associate-transit-gateway-multicast-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/associate-transit-gateway-route-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/associate-vpc-cidr-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/attach-classic-link-vpc.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/attach-internet-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/attach-network-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/attach-volume.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/attach-vpn-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/authorize-client-vpn-ingress.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/authorize-security-group-egress.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/authorize-security-group-ingress.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/bundle-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/cancel-bundle-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/cancel-capacity-reservation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/cancel-conversion-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/cancel-export-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/cancel-import-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/cancel-reserved-instances-listing.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/cancel-spot-fleet-requests.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/cancel-spot-instance-requests.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/confirm-product-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/copy-fpga-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/copy-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/copy-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-capacity-reservation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-client-vpn-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-client-vpn-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-customer-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-default-subnet.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-default-vpc.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-dhcp-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-egress-only-internet-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-fleet.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-flow-logs.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-fpga-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-instance-export-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-internet-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-key-pair.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-launch-template-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-launch-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-local-gateway-route-table-vpc-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-local-gateway-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-managed-prefix-list.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-nat-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-network-acl-entry.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-network-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-network-interface-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-network-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-placement-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-reserved-instances-listing.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-route-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-security-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-spot-datafeed-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-subnet.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-traffic-mirror-filter-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-traffic-mirror-filter.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-traffic-mirror-session.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-traffic-mirror-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-transit-gateway-peering-attachment.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-transit-gateway-prefix-list-reference.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-transit-gateway-route-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-transit-gateway-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-transit-gateway-vpc-attachment.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-transit-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-volume.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-vpc-endpoint-connection-notification.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-vpc-endpoint-service-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-vpc-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-vpc-peering-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-vpc.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-vpn-connection-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-vpn-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/create-vpn-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-client-vpn-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-client-vpn-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-customer-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-dhcp-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-egress-only-internet-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-fleets.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-flow-logs.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-fpga-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-internet-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-key-pair.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-launch-template-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-launch-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-local-gateway-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-managed-prefix-list.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-nat-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-network-acl-entry.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-network-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-network-interface-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-network-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-placement-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-queued-reserved-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-route-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-security-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-spot-datafeed-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-subnet.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-traffic-mirror-filter-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-traffic-mirror-filter.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-traffic-mirror-session.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-traffic-mirror-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-transit-gateway-multicast-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-transit-gateway-peering-attachment.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-transit-gateway-prefix-list-reference.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-transit-gateway-route-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-transit-gateway-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-transit-gateway-vpc-attachment.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-transit-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-volume.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-vpc-endpoint-connection-notifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-vpc-endpoint-service-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-vpc-endpoints.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-vpc-peering-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-vpc.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-vpn-connection-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-vpn-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/delete-vpn-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/deprovision-byoip-cidr.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/deregister-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/deregister-instance-event-notification-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/deregister-transit-gateway-multicast-group-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/deregister-transit-gateway-multicast-group-source.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-account-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-addresses.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-aggregate-id-format.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-availability-zones.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-bundle-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-byoip-cidrs.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-capacity-reservations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-classic-link-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-client-vpn-authorization-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-client-vpn-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-client-vpn-endpoints.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-client-vpn-routes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-client-vpn-target-networks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-conversion-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-customer-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-dhcp-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-egress-only-internet-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-elastic-gpus.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-export-image-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-export-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-fast-snapshot-restores.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-fleet-history.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-fleet-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-fleets.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-flow-logs.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-fpga-image-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-fpga-images.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-host-reservation-offerings.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-host-reservations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-hosts.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-iam-instance-profile-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-id-format.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-identity-id-format.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-image-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-images.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-import-image-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-import-snapshot-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-instance-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-instance-credit-specifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-instance-event-notification-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-instance-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-instance-type-offerings.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-instance-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-internet-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-ipv6-pools.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-key-pairs.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-launch-template-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-launch-templates.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-local-gateway-route-table-vpc-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-local-gateway-route-tables.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-local-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-managed-prefix-lists.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-moving-addresses.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-nat-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-network-acls.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-network-interface-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-network-interface-permissions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-network-interfaces.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-placement-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-prefix-lists.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-principal-id-format.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-public-ipv4-pools.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-regions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-reserved-instances-listings.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-reserved-instances-modifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-reserved-instances-offerings.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-reserved-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-route-tables.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-scheduled-instance-availability.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-scheduled-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-security-group-references.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-security-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-snapshot-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-spot-datafeed-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-spot-fleet-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-spot-fleet-request-history.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-spot-fleet-requests.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-spot-instance-requests.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-spot-price-history.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-stale-security-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-subnets.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-traffic-mirror-filters.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-traffic-mirror-sessions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-traffic-mirror-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-transit-gateway-attachments.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-transit-gateway-peering-attachments.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-transit-gateway-route-tables.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-transit-gateway-vpc-attachments.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-transit-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-volume-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-volume-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-volumes-modifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-volumes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpc-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpc-classic-link-dns-support.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpc-classic-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpc-endpoint-connection-notifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpc-endpoint-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpc-endpoint-service-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpc-endpoint-service-permissions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpc-endpoint-services.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpc-endpoints.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpc-peering-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpcs.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpn-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/describe-vpn-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/detach-classic-link-vpc.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/detach-internet-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/detach-network-interface.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/detach-volume.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/detach-vpn-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disable-ebs-encryption-by-default.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disable-fast-snapshot-restores.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disable-transit-gateway-route-table-propagation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disable-vgw-route-propagation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disable-vpc-classic-link-dns-support.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disable-vpc-classic-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disassociate-address.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disassociate-client-vpn-target-network.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disassociate-iam-instance-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disassociate-route-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disassociate-subnet-cidr-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disassociate-transit-gateway-multicast-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disassociate-transit-gateway-route-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/disassociate-vpc-cidr-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/enable-ebs-encryption-by-default.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/enable-fast-snapshot-restores.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/enable-transit-gateway-route-table-propagation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/enable-vgw-route-propagation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/enable-volume-io.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/enable-vpc-classic-link-dns-support.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/enable-vpc-classic-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/export-client-vpn-client-certificate-revocation-list.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/export-client-vpn-client-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/export-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-associated-ipv6-pool-cidrs.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-capacity-reservation-usage.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-console-output.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-console-screenshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-default-credit-specification.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-ebs-default-kms-key-id.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-ebs-encryption-by-default.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-groups-for-capacity-reservation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-host-reservation-purchase-preview.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-launch-template-data.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-managed-prefix-list-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-managed-prefix-list-entries.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-password-data.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-reserved-instances-exchange-quote.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-transit-gateway-attachment-propagations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-transit-gateway-multicast-domain-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-transit-gateway-prefix-list-references.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-transit-gateway-route-table-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/get-transit-gateway-route-table-propagations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/import-client-vpn-client-certificate-revocation-list.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/import-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/import-key-pair.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/import-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-availability-zone-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-capacity-reservation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-client-vpn-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-default-credit-specification.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-ebs-default-kms-key-id.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-fleet.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-fpga-image-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-hosts.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-id-format.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-identity-id-format.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-image-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-instance-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-instance-capacity-reservation-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-instance-credit-specification.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-instance-event-start-time.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-instance-metadata-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-instance-placement.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-launch-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-managed-prefix-list.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-network-interface-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-reserved-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-snapshot-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-spot-fleet-request.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-subnet-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-traffic-mirror-filter-network-services.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-traffic-mirror-filter-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-traffic-mirror-session.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-transit-gateway-prefix-list-reference.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-transit-gateway-vpc-attachment.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-transit-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-volume-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-volume.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpc-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpc-endpoint-connection-notification.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpc-endpoint-service-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpc-endpoint-service-permissions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpc-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpc-peering-connection-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpc-tenancy.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpn-connection-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpn-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpn-tunnel-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/modify-vpn-tunnel-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/monitor-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/move-address-to-vpc.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/provision-byoip-cidr.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/purchase-host-reservation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/purchase-reserved-instance-offering.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/purchase-reserved-instances-offering.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/purchase-scheduled-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reboot-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/register-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/register-instance-event-notification-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/register-transit-gateway-multicast-group-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/register-transit-gateway-multicast-group-source.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reject-transit-gateway-peering-attachment.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reject-transit-gateway-vpc-attachments.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reject-vpc-endpoint-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reject-vpc-peering-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/release-address.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/release-hosts.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/replace-iam-instance-profile-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/replace-network-acl-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/replace-network-acl-entry.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/replace-route-table-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/replace-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/replace-transit-gateway-route.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/report-instance-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/request-spot-fleet.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/request-spot-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reset-ebs-default-kms-key-id.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reset-fpga-image-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reset-image-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reset-instance-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reset-network-interface-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/reset-snapshot-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/restore-address-to-classic.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/restore-managed-prefix-list-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/revoke-client-vpn-ingress.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/revoke-security-group-egress.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/revoke-security-group-ingress.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/run-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/run-scheduled-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/search-local-gateway-routes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/search-transit-gateway-multicast-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/search-transit-gateway-routes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/send-diagnostic-interrupt.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/start-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/stop-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/terminate-client-vpn-connections.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/terminate-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/unassign-ipv6-addresses.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/unassign-private-ip-addresses.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/unmonitor-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/update-security-group-rule-descriptions-egress.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/update-security-group-rule-descriptions-ingress.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/bundle-task-complete.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/conversion-task-cancelled.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/conversion-task-completed.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/conversion-task-deleted.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/customer-gateway-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/export-task-cancelled.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/export-task-completed.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/image-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/image-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/instance-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/instance-running.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/instance-status-ok.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/instance-stopped.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/instance-terminated.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/key-pair-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/nat-gateway-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/network-interface-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/password-data-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/security-group-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/snapshot-completed.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/spot-instance-request-fulfilled.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/subnet-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/system-status-ok.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/volume-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/volume-deleted.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/volume-in-use.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/vpc-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/vpc-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/vpc-peering-connection-deleted.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/vpc-peering-connection-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/vpn-connection-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/wait/vpn-connection-deleted.rst -#usr/lib/python3.8/site-packages/awscli/examples/ec2/withdraw-byoip-cidr.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr -#usr/lib/python3.8/site-packages/awscli/examples/ecr-public -#usr/lib/python3.8/site-packages/awscli/examples/ecr-public/get-login-password_description.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/batch-check-layer-availability.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/batch-delete-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/batch-get-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/complete-layer-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/create-repository.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/delete-lifecycle-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/delete-repository-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/delete-repository.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/describe-image-scan-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/describe-images.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/describe-repositories.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/get-authorization-token.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/get-download-url-for-layer.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/get-lifecycle-policy-preview.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/get-lifecycle-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/get-login-password.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/get-login-password_description.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/get-login.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/get-login_description.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/get-repository-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/initiate-layer-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/list-images.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/put-image-scanning-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/put-image-tag-mutability.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/put-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/put-lifecycle-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/set-repository-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/start-image-scan.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/start-lifecycle-policy-preview.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecr/upload-layer-part.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs -#usr/lib/python3.8/site-packages/awscli/examples/ecs/create-capacity-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/create-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/create-service.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/create-task-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/delete-account-setting.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/delete-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/delete-capacity-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/delete-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/delete-service.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/delete-task-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/deregister-container-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/deregister-task-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/describe-capacity-providers.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/describe-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/describe-container-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/describe-services.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/describe-task-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/describe-task-sets.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/describe-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/list-account-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/list-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/list-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/list-container-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/list-services.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/list-task-definition-families.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/list-task-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/list-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/put-account-setting-default.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/put-account-setting.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/put-account-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/put-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/put-cluster-capacity-providers.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/register-task-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/run-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/start-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/stop-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/update-cluster-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/update-container-agent.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/update-container-instances-state.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/update-service-primary-task-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/update-service.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/update-task-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/ecs/wait -#usr/lib/python3.8/site-packages/awscli/examples/ecs/wait/services-stable.rst -#usr/lib/python3.8/site-packages/awscli/examples/efs -#usr/lib/python3.8/site-packages/awscli/examples/efs/create-file-system.rst -#usr/lib/python3.8/site-packages/awscli/examples/efs/create-mount-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/efs/delete-file-system.rst -#usr/lib/python3.8/site-packages/awscli/examples/efs/delete-mount-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/efs/describe-file-systems.rst -#usr/lib/python3.8/site-packages/awscli/examples/efs/describe-mount-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/efs/describe-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/efs/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/efs/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/efs/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks -#usr/lib/python3.8/site-packages/awscli/examples/eks/create-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/delete-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/describe-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/describe-update.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/get-token.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/list-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/list-updates.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/update-cluster-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/update-cluster-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/update-kubeconfig -#usr/lib/python3.8/site-packages/awscli/examples/eks/update-kubeconfig.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/update-kubeconfig/_description.rst -#usr/lib/python3.8/site-packages/awscli/examples/eks/wait.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/add-tags-to-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/authorize-cache-security-group-ingress.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/batch-apply-update-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/batch-stop-update-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/copy-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/create-cache-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/create-cache-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/create-cache-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/create-global-replication-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/create-replication-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/create-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/create-user-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/create-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/decrease-node-groups-in-global-replication-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/decrease-replica-count.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/delete-cache-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/delete-cache-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/delete-cache-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/delete-global-replication-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/delete-replication-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/delete-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/delete-user-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/delete-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-cache-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-cache-engine-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-cache-parameter-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-cache-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-cache-subnet-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-engine-default-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-global-replication-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-replication-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-reserved-cache-nodes-offerings.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-reserved-cache-nodes.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-service-updates.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-update-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-user-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/describe-users.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/disassociate-global-replication-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/increase-node-groups-in-global-replication-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/increase-replica-count.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/list-allowed-node-type-modifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/modify-cache-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/modify-cache-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/modify-cache-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/modify-global-replication-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/modify-replication-group-shard-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/modify-replication-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/modify-user-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/modify-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/purchase-reserved-cache-nodes-offering.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/reboot-cache-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/reset-cache-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/start-migration.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticache/test-failover.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/abort-environment-update.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/check-dns-availability.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/create-application-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/create-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/create-configuration-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/create-environment.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/create-storage-location.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/delete-application-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/delete-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/delete-configuration-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/delete-environment-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/describe-application-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/describe-applications.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/describe-configuration-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/describe-configuration-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/describe-environment-health.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/describe-environment-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/describe-environments.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/describe-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/describe-instances-health.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/list-available-solution-stacks.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/rebuild-environment.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/request-environment-info.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/restart-app-server.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/retrieve-environment-info.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/swap-environment-cnames.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/terminate-environment.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/update-application-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/update-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/update-configuration-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/update-environment.rst -#usr/lib/python3.8/site-packages/awscli/examples/elasticbeanstalk/validate-configuration-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/cancel-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/create-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/create-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/create-preset.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/delete-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/delete-preset.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/list-jobs-by-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/list-jobs-by-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/list-pipelines.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/list-presets.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/read-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/read-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/read-preset.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/update-pipeline-notifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/update-pipeline-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/elastictranscoder/update-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb -#usr/lib/python3.8/site-packages/awscli/examples/elb/add-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/apply-security-groups-to-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/attach-load-balancer-to-subnets.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/configure-health-check.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/create-app-cookie-stickiness-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/create-lb-cookie-stickiness-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/create-load-balancer-listeners.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/create-load-balancer-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/create-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/delete-load-balancer-listeners.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/delete-load-balancer-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/delete-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/deregister-instances-from-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/describe-account-limits.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/describe-instance-health.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/describe-load-balancer-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/describe-load-balancer-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/describe-load-balancer-policy-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/describe-load-balancers.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/describe-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/detach-load-balancer-from-subnets.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/disable-availability-zones-for-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/enable-availability-zones-for-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/modify-load-balancer-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/register-instances-with-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/remove-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/set-load-balancer-listener-ssl-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/set-load-balancer-policies-for-backend-server.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/set-load-balancer-policies-of-listener.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/wait -#usr/lib/python3.8/site-packages/awscli/examples/elb/wait/any-instance-in-service.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/wait/instance-deregistered.rst -#usr/lib/python3.8/site-packages/awscli/examples/elb/wait/instance-in-service.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2 -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/add-listener-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/add-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/create-listener.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/create-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/create-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/create-target-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/delete-listener.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/delete-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/delete-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/delete-target-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/deregister-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-account-limits.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-listener-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-listeners.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-load-balancer-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-load-balancers.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-ssl-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-target-group-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-target-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/describe-target-health.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/modify-listener.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/modify-load-balancer-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/modify-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/modify-target-group-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/modify-target-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/register-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/remove-listener-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/remove-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/set-ip-address-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/set-rule-priorities.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/set-security-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/set-subnets.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/wait -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/wait/load-balancer-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/wait/load-balancer-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/wait/load-balancers-deleted.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/wait/target-deregistered.rst -#usr/lib/python3.8/site-packages/awscli/examples/elbv2/wait/target-in-service.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr -#usr/lib/python3.8/site-packages/awscli/examples/emr/add-instance-fleet.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/add-steps.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/add-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/create-cluster-examples.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/create-cluster-synopsis.txt -#usr/lib/python3.8/site-packages/awscli/examples/emr/create-default-roles.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/create-security-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/delete-security-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/describe-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/describe-step.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/get.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/list-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/list-instance-fleets.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/list-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/list-security-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/list-steps.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/modify-cluster-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/modify-instance-fleet.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/put.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/remove-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/schedule-hbase-backup.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/socks.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/ssh.rst -#usr/lib/python3.8/site-packages/awscli/examples/emr/wait.rst -#usr/lib/python3.8/site-packages/awscli/examples/es -#usr/lib/python3.8/site-packages/awscli/examples/es/create-elasticsearch-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/es/describe-elasticsearch-domain-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/es/describe-elasticsearch-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/es/describe-elasticsearch-domains.rst -#usr/lib/python3.8/site-packages/awscli/examples/es/describe-reserved-elasticsearch-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/es/list-domain-names.rst -#usr/lib/python3.8/site-packages/awscli/examples/events -#usr/lib/python3.8/site-packages/awscli/examples/events/delete-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/describe-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/disable-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/enable-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/list-rule-names-by-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/list-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/list-targets-by-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/put-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/put-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/put-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/remove-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/events/test-event-pattern.rst -#usr/lib/python3.8/site-packages/awscli/examples/firehose -#usr/lib/python3.8/site-packages/awscli/examples/firehose/list-delivery-streams.rst -#usr/lib/python3.8/site-packages/awscli/examples/firehose/put-record-batch.rst -#usr/lib/python3.8/site-packages/awscli/examples/firehose/put-record.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms -#usr/lib/python3.8/site-packages/awscli/examples/fms/associate-admin-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/delete-notification-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/delete-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/disassociate-admin-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/get-admin-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/get-compliance-detail.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/get-notification-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/get-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/list-compliance-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/list-member-accounts.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/list-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/put-notification-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/fms/put-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/create-build.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/create-fleet.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/create-game-session-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/delete-build.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/delete-fleet.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/delete-game-session-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/describe-build.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/describe-ec2-instance-limits.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/describe-fleet-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/describe-fleet-capacity.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/describe-fleet-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/describe-fleet-port-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/describe-fleet-utilization.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/describe-game-session-queues.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/describe-runtime-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/list-builds.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/list-fleets.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/request-upload-credentials.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/start-fleet-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/stop-fleet-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/update-build.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/update-game-session-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/gamelift/upload-build.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier -#usr/lib/python3.8/site-packages/awscli/examples/glacier/abort-multipart-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/abort-vault-lock.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/add-tags-to-vault.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/complete-multipart-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/complete-vault-lock.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/create-vault.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/delete-archive.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/delete-vault-access-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/delete-vault-notifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/delete-vault.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/describe-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/describe-vault.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/get-data-retrieval-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/get-job-output.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/get-vault-access-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/get-vault-lock.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/get-vault-notifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/initiate-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/initiate-multipart-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/initiate-vault-lock.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/list-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/list-multipart-uploads.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/list-parts.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/list-provisioned-capacity.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/list-tags-for-vault.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/list-vaults.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/purchase-provisioned-capacity.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/remove-tags-from-vault.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/set-data-retrieval-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/set-vault-access-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/set-vault-notifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/upload-archive.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/upload-multipart-part.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/wait -#usr/lib/python3.8/site-packages/awscli/examples/glacier/wait/vault-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/glacier/wait/vault-not-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/advertise-byoip-cidr.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/create-accelerator.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/create-endpoint-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/create-listener.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/deprovision-byoip-cidr.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/describe-accelerator-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/describe-accelerator.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/describe-endpoint-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/describe-listener.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/list-accelerators.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/list-byoip-cidr.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/list-endpoint-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/list-listeners.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/provision-byoip-cidr.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/update-accelerator-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/update-accelerator.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/update-endpoint-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/update-listener.rst -#usr/lib/python3.8/site-packages/awscli/examples/globalaccelerator/withdraw-byoip-cidr.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue -#usr/lib/python3.8/site-packages/awscli/examples/glue/batch-stop-job-run.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/create-connection.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/create-database.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/create-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/create-table.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/delete-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/get-databases.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/get-job-run.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/get-job-runs.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/get-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/get-plan.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/get-tables.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/start-crawler.rst -#usr/lib/python3.8/site-packages/awscli/examples/glue/start-job-run.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/associate-role-to-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/associate-service-role-to-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-connector-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-connector-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-core-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-core-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-device-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-device-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-function-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-function-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-group-certificate-authority.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-group-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-logger-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-logger-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-resource-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-resource-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-software-update-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-subscription-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/create-subscription-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/delete-connector-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/delete-core-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/delete-device-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/delete-function-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/delete-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/delete-logger-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/delete-resource-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/delete-subscription-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/disassociate-role-from-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/disassociate-service-role-from-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-associated-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-bulk-deployment-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-connectivity-info.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-connector-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-connector-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-core-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-core-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-deployment-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-device-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-device-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-function-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-function-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-group-certificate-authority.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-group-certificate-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-group-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-logger-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-logger-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-resource-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-resource-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-service-role-for-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-subscription-definition-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/get-subscription-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-bulk-deployment-detailed-reports.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-bulk-deployments.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-connector-definition-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-connector-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-core-definition-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-core-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-deployments.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-device-definition-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-device-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-function-definition-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-function-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-group-certificate-authorities.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-group-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-logger-definition-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-logger-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-resource-definition-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-resource-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-subscription-definition-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-subscription-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/reset-deployments.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/start-bulk-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/stop-bulk-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/update-connectivity-info.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/update-connector-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/update-core-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/update-device-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/update-function-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/update-group-certificate-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/update-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/update-logger-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/update-resource-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/greengrass/update-subscription-definition.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/accept-invitation.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/archive-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/create-detector.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/create-filter.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/create-ip-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/create-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/create-publishing-destination.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/create-sample-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/create-threat-intel-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/decline-invitations.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/delete-detector.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/delete-filter.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/disable-organization-admin-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/disassociate-from-master-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/get-detector.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/get-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/get-ip-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/get-master-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/list-detectors.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/list-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/list-invitations.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/list-ip-sets.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/list-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/guardduty/update-ip-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/health -#usr/lib/python3.8/site-packages/awscli/examples/health/describe-affected-entities.rst -#usr/lib/python3.8/site-packages/awscli/examples/health/describe-event-details.rst -#usr/lib/python3.8/site-packages/awscli/examples/health/describe-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam -#usr/lib/python3.8/site-packages/awscli/examples/iam/add-client-id-to-open-id-connect-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/add-role-to-instance-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/add-user-to-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/attach-group-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/attach-role-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/attach-user-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/change-password.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-access-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-account-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-instance-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-login-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-open-id-connect-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-policy-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-saml-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-service-linked-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-service-specific-credential.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/create-virtual-mfa-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/deactivate-mfa-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/decode-authorization-message.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-access-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-account-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-account-password-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-group-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-instance-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-login-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-open-id-connect-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-policy-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-role-permissions-boundary.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-role-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-saml-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-server-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-service-linked-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-service-specific-credential.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-signing-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-ssh-public-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-user-permissions-boundary.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-user-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/delete-virtual-mfa-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/detach-group-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/detach-role-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/detach-user-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/enable-mfa-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/generate-credential-report.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/generate-organizations-access-report.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/generate-service-last-accessed-details.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-access-key-last-used.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-account-authorization-details.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-account-password-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-account-summary.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-context-keys-for-custom-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-context-keys-for-principal-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-credential-report.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-group-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-instance-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-login-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-open-id-connect-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-organizations-access-report.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-policy-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-role-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-saml-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-server-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-service-last-accessed-details-with-entities.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-service-last-accessed-details.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-service-linked-role-deletion-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-ssh-public-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-user-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/get-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-access-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-account-aliases.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-attached-group-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-attached-role-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-attached-user-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-entities-for-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-group-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-groups-for-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-instance-profiles-for-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-instance-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-mfa-devices.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-open-id-connect-providers.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-policies-granting-service-access.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-policy-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-role-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-role-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-roles.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-saml-providers.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-server-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-service-specific-credential.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-service-specific-credentials.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-signing-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-ssh-public-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-user-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-user-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-users.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/list-virtual-mfa-devices.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/put-group-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/put-role-permissions-boundary.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/put-role-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/put-user-permissions-boundary.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/put-user-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/remove-client-id-from-open-id-connect-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/remove-role-from-instance-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/remove-user-from-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/reset-service-specific-credential.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/resync-mfa-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/set-default-policy-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/set-security-token-service-preferences.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/simulate-custom-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/simulate-principal-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/tag-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/tag-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/untag-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/untag-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-access-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-account-password-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-assume-role-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-login-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-open-id-connect-provider-thumbprint.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-role-description.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-saml-provider.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-server-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-service-specific-credential.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-signing-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-ssh-public-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/update-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/upload-server-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/upload-signing-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/upload-ssh-public-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/wait -#usr/lib/python3.8/site-packages/awscli/examples/iam/wait/instance-profile-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/wait/policy-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/wait/role-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/iam/wait/user-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/create-component.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/create-distribution-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/create-image-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/create-image-recipe.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/create-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/create-infrastructure-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/delete-component.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/delete-image-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/delete-image-recipe.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/delete-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/delete-infrastructure-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/get-component-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/get-component.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/get-distribution-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/get-image-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/get-image-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/get-image-recipe-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/get-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/get-infrastructure-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/import-component.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/list-component-build-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/list-components.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/list-distribution-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/list-image-build-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/list-image-pipeline-images.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/list-image-recipes.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/list-images.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/list-infrastructure-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/put-component-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/put-image-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/put-image-recipe-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/start-image-pipeline-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/update-distribution-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/update-image-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/imagebuilder/update-infrastructure-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/importexport -#usr/lib/python3.8/site-packages/awscli/examples/importexport/cancel-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/importexport/create-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/importexport/get-shipping-label.rst -#usr/lib/python3.8/site-packages/awscli/examples/importexport/get-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/importexport/list-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/importexport/update-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector -#usr/lib/python3.8/site-packages/awscli/examples/inspector/add-attributes-to-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/create-assessment-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/create-assessment-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/create-resource-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/delete-assessment-run.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/delete-assessment-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/delete-assessment-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/describe-assessment-runs.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/describe-assessment-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/describe-assessment-templates.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/describe-cross-account-access-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/describe-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/describe-resource-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/describe-rules-packages.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/get-telemetry-metadata.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/list-assessment-run-agents.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/list-assessment-runs.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/list-assessment-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/list-assessment-templates.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/list-event-subscriptions.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/list-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/list-rules-packages.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/preview-agents.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/register-cross-account-access-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/remove-attributes-from-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/set-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/start-assessment-run.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/stop-assessment-run.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/subscribe-to-event.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/unsubscribe-from-event.rst -#usr/lib/python3.8/site-packages/awscli/examples/inspector/update-assessment-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot -#usr/lib/python3.8/site-packages/awscli/examples/iot-data -#usr/lib/python3.8/site-packages/awscli/examples/iot-data/delete-thing-shadow.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot-data/get-thing-shadow.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot-data/update-thing-shadow.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot-jobs-data -#usr/lib/python3.8/site-packages/awscli/examples/iot-jobs-data/describe-job-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot-jobs-data/get-pending-job-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot-jobs-data/start-next-pending-job-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot-jobs-data/update-job-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/accept-certificate-transfer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/add-thing-to-billing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/add-thing-to-thing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/associate-targets-with-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/attach-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/attach-security-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/attach-thing-principal.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/cancel-audit-mitigation-actions-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/cancel-audit-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/cancel-certificate-transfer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/cancel-job-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/cancel-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/clear-default-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/confirm-topic-rule-destination.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-audit-suppression.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-billing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-certificate-from-csr.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-dimension.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-domain-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-dynamic-thing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-keys-and-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-mitigation-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-ota-update.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-policy-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-provisioning-claim.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-provisioning-template-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-provisioning-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-role-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-scheduled-audit.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-security-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-thing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-thing-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-thing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-topic-rule-destination.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/create-topic-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-account-audit-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-audit-suppression.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-billing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-ca-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-dimension.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-domain-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-dynamic-thing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-job-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-mitigation-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-ota-update.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-policy-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-provisioning-template-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-provisioning-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-registration-code.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-role-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-scheduled-audit.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-security-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-thing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-thing-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-thing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-topic-rule-destination.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-topic-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/delete-v2-logging-level.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/deprecate-thing-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-account-audit-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-audit-finding.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-audit-mitigation-actions-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-audit-suppression.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-audit-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-billing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-ca-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-default-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-dimension.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-domain-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-event-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-index.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-job-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-mitigation-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-provisioning-template-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-provisioning-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-role-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-scheduled-audit.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-security-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-thing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-thing-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/describe-thing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/detach-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/detach-security-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/detach-thing-principal.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/disable-topic-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/enable-topic-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-cardinality.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-effective-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-indexing-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-job-document.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-ota-update.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-percentiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-policy-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-registration-code.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-statistics.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-topic-rule-destination.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-topic-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/get-v2-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-active-violations.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-attached-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-audit-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-audit-mitigation-actions-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-audit-mitigation-actions-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-audit-suppressions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-audit-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-authorizers.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-billing-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-ca-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-certificates-by-ca.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-dimensions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-domain-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-indices.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-job-executions-for-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-job-executions-for-thing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-mitigations-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-ota-updates.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-outgoing-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-policy-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-principal-things.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-provisioning-template-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-provisioning-templates.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-role-aliases.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-scheduled-audits.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-security-profiles-for-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-security-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-streams.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-targets-for-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-targets-for-security-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-thing-groups-for-thing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-thing-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-thing-principals.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-thing-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-things-in-billing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-things-in-thing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-things.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-topic-rule-destinations.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-topic-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-v2-logging-levels.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/list-violation-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/register-ca-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/register-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/register-thing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/reject-certificate-transfer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/remove-thing-from-billing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/remove-thing-from-thing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/replace-topic-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/search-index.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/set-default-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/set-default-policy-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/set-v2-logging-level.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/set-v2-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/start-audit-mitigation-actions-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/start-on-demand-audit-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/test-authorization.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/test-invoke-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/transfer-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-account-audit-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-audit-suppression.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-authorizer.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-billing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-ca-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-domain-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-dynamic-thing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-event-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-indexing-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-mitigation-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-provisioning-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-role-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-scheduled-audit.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-security-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-thing-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-thing-groups-for-thing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-thing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/update-topic-rule-destination.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot/validate-security-profile-behaviors.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/claim-devices-by-claim-code.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/describe-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/finalize-device-claim.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/get-device-methods.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/initiate-device-claim.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/invoke-device-method.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/list-device-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/list-devices.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/unclaim-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-devices/update-device-state.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/associate-device-with-placement.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/create-placement.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/create-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/delete-placement.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/delete-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/describe-placement.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/describe-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/disassociate-device-from-placement.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/get-devices-in-placement.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/list-placements.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/list-projects.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/update-placement.rst -#usr/lib/python3.8/site-packages/awscli/examples/iot1click-projects/update-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/batch-put-message.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/cancel-pipeline-reprocessing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/create-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/create-dataset-content.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/create-dataset.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/create-datastore.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/create-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/delete-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/delete-dataset-content.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/delete-dataset.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/delete-datastore.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/delete-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/describe-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/describe-dataset.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/describe-datastore.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/describe-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/describe-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/get-dataset-content.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/list-channels.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/list-dataset-contents.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/list-datasets.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/list-datastores.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/list-pipelines.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/put-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/run-pipeline-activity.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/sample-channel-data.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/start-pipeline-reprocessing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/update-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/update-dataset.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/update-datastore.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotanalytics/update-pipeline.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/batch-put-message.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/batch-update-detector.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/create-detector-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/create-input.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/delete-detector-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/delete-input.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/describe-detector-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/describe-detector.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/describe-input.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/describe-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/list-detector-model-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/list-detector-models.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/list-detectors.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/list-inputs.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/put-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/update-detector-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents-data/update-input.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/batch-put-message.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/batch-update-detector.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/create-detector-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/create-input.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/delete-detector-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/delete-input.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/describe-detector-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/describe-detector.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/describe-input.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/describe-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/list-detector-model-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/list-detector-models.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/list-detectors.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/list-inputs.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/put-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/update-detector-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotevents/update-input.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/associate-assets.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/batch-associate-project-assets.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/batch-disassociate-project-assets.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/batch-put-asset-property-value.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/create-access-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/create-asset-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/create-asset.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/create-dashboard.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/create-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/create-portal.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/create-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/delete-access-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/delete-asset-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/delete-asset.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/delete-dashboard.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/delete-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/delete-portal.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/delete-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/describe-access-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/describe-asset-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/describe-asset-property.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/describe-asset.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/describe-dashboard.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/describe-gateway-capability-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/describe-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/describe-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/describe-portal.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/describe-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/disassociate-assets.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/get-asset-property-aggregates.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/get-asset-property-value-history.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/get-asset-property-value.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/list-access-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/list-asset-models.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/list-assets.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/list-associated-assets.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/list-dashboards.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/list-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/list-portals.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/list-project-assets.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/list-projects.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/put-logging-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/update-access-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/update-asset-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/update-asset-property.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/update-asset.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/update-dashboard.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/update-gateway-capability-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/update-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/update-portal.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/update-project.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/wait -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/wait/asset-active.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/wait/asset-model-active.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/wait/asset-model-not-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/wait/asset-not-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/wait/portal-active.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotsitewise/wait/portal-not-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/associate-entity-to-thing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/create-flow-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/create-system-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/create-system-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/delete-flow-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/delete-namespace.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/delete-system-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/delete-system-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/deploy-system-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/deprecate-flow-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/deprecate-system-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/describe-namespace.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/dissociate-entity-from-thing.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/get-entities.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/get-flow-template-revisions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/get-flow-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/get-namespace-deletion-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/get-system-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/get-system-template-revisions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/get-system-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/get-upload-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/list-flow-execution-messages.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/search-entities.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/search-flow-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/search-flow-templates.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/search-system-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/search-system-templates.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/search-things.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/undeploy-system-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/update-flow-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/update-system-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/iotthingsgraph/upload-entity-definitions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs -#usr/lib/python3.8/site-packages/awscli/examples/ivs/batch-get-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/batch-get-stream-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/create-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/create-stream-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/delete-playback-key-pair.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/delete-stream-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/get-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/get-playback-key-pair.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/get-stream-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/get-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/import-playback-key-pair.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/list-channels.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/list-playback-key-pairs.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/list-stream-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/list-streams.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/put-metadata.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/stop-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ivs/update-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/kafka -#usr/lib/python3.8/site-packages/awscli/examples/kafka/create-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/kafka/create-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/kafka/describe-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/kafka/get-bootstrap-brokers.rst -#usr/lib/python3.8/site-packages/awscli/examples/kafka/list-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/kafka/update-broker-storage.rst -#usr/lib/python3.8/site-packages/awscli/examples/kafka/update-cluster-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/add-tags-to-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/create-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/decrease-stream-retention-period.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/delete-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/deregister-stream-consumer.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/describe-limits.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/describe-stream-consumer.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/describe-stream-summary.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/describe-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/disable-enhanced-monitoring.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/enable-enhanced-monitoring.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/get-records.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/get-shard-iterator.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/increase-stream-retention-period.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/list-shards.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/list-streams.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/list-tags-for-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/merge-shards.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/put-record.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/put-records.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/register-stream-consumer.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/remove-tags-from-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/split-shard.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/start-stream-encryption.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/stop-stream-encryption.rst -#usr/lib/python3.8/site-packages/awscli/examples/kinesis/update-shard-count.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms -#usr/lib/python3.8/site-packages/awscli/examples/kms/cancel-key-deletion.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/connect-custom-key-store.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/create-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/create-custom-key-store.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/create-grant.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/create-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/decrypt.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/delete-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/delete-custom-key-store.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/delete-imported-key-material.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/describe-custom-key-stores.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/describe-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/disable-key-rotation.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/disable-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/disconnect-custom-key-store.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/enable-key-rotation.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/enable-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/encrypt.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/generate-random.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/get-key-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/get-key-rotation-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/get-parameters-for-import.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/get-public-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/import-key-material.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/list-aliases.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/list-grants.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/list-key-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/list-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/list-resource-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/list-retirable-grants.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/put-key-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/re-encrypt.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/retire-grant.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/revoke-grant.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/schedule-key-deletion.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/sign.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/update-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/update-custom-key-store.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/update-key-description.rst -#usr/lib/python3.8/site-packages/awscli/examples/kms/verify.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda -#usr/lib/python3.8/site-packages/awscli/examples/lambda/add-layer-version-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/add-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/create-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/create-event-source-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/create-function.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/delete-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/delete-event-source-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/delete-function-concurrency.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/delete-function-event-invoke-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/delete-function.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/delete-layer-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/delete-provisioned-concurrency-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-account-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-event-source-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-function-concurrency.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-function-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-function-event-invoke-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-function.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-layer-version-by-arn.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-layer-version-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-layer-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/get-provisioned-concurrency-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/invoke.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/list-aliases.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/list-event-source-mappings.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/list-function-event-invoke-configs.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/list-functions.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/list-layer-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/list-layers.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/list-provisioned-concurrency-configs.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/list-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/list-versions-by-function.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/publish-layer-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/publish-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/put-function-concurrency.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/put-function-event-invoke-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/put-provisioned-concurrency-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/remove-layer-version-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/remove-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/update-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/update-event-source-mapping.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/update-function-code.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/update-function-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/lambda/update-function-event-invoke-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/create-license-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/delete-license-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/get-license-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/get-service-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/list-associations-for-license-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/list-license-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/list-license-specifications-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/list-resource-inventory.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/list-usage-for-license-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/update-license-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/update-license-specifications-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/license-manager/update-service-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/allocate-static-ip.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/attach-disk.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/attach-instances-to-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/attach-load-balancer-tls-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/attach-static-ip.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/close-instance-public-ports.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/copy-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-disk-from-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-disk-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-disk.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-domain-entry.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-instance-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-instances-from-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-key-pair.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-load-balancer-tls-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-relational-database-from-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-relational-database-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/create-relational-database.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-auto-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-disk-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-disk.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-domain-entry.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-instance-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-key-pair.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-known-host-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-load-balancer-tls-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-relational-database-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/delete-relational-database.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/detach-static-ip.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-active-names.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-auto-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-blueprints.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-bundles.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-cloud-formation-stack-records.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-disk-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-disk-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-disk.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-disks.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-domains.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-export-snapshot-record.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-instance-access-details.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-instance-metric-data.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-instance-port-states.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-instance-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-instance-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-instance-state.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-key-pair.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-key-pairs.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-load-balancer-tls-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-load-balancers.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-operation.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-operations-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-operations.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-regions.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database-blueprints.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database-bundles.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database-log-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database-log-streams.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database-master-user-password.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database-metric-data.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-database.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-relational-databases.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-static-ip.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/get-static-ips.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/is-vpc-peered.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/open-instance-public-ports.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/peer-vpc.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/reboot-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/reboot-relational-database.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/release-static-ip.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/start-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/start-relational-database.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/stop-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/stop-relational-database.rst -#usr/lib/python3.8/site-packages/awscli/examples/lightsail/unpeer-vpc.rst -#usr/lib/python3.8/site-packages/awscli/examples/logs -#usr/lib/python3.8/site-packages/awscli/examples/logs/create-log-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/logs/create-log-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/logs/delete-log-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/logs/delete-log-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/logs/delete-retention-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/logs/describe-log-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/logs/describe-log-streams.rst -#usr/lib/python3.8/site-packages/awscli/examples/logs/get-log-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/logs/put-log-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/logs/put-retention-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/add-flow-outputs.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/create-flow.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/delete-flow.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/describe-flow.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/grant-flow-entitlements.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/list-entitlements.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/list-flows.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/remove-flow-output.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/revoke-flow-entitlement.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/start-flow.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/stop-flow.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/update-flow-entitlement.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/update-flow-output.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconnect/update-flow-source.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/cancel-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/create-job-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/create-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/create-preset.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/create-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/delete-job-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/delete-preset.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/delete-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/describe-endpoints.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/get-job-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/get-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/get-preset.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/get-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/list-job-templates.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/list-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/list-presets.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/list-queues.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/update-job-template.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/update-preset.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediaconvert/update-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/medialive -#usr/lib/python3.8/site-packages/awscli/examples/medialive/create-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/medialive/create-input.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/create-asset.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/create-packaging-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/create-packaging-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/delete-asset.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/delete-packaging-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/delete-packaging-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/describe-asset.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/describe-packaging-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/describe-packaging-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/list-assets.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/list-packaging-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage-vod/list-packaging-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/create-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/create-origin-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/delete-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/delete-origin-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/describe-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/describe-origin-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/list-channels.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/list-origin-endpoints.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/rotate-ingest-endpoint-credentials.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/update-channel.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediapackage/update-origin-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore -#usr/lib/python3.8/site-packages/awscli/examples/mediastore-data -#usr/lib/python3.8/site-packages/awscli/examples/mediastore-data/delete-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore-data/describe-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore-data/get-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore-data/list-items.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore-data/put-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/create-container.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/delete-container-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/delete-container.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/delete-cors-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/delete-lifecycle-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/describe-container.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/describe-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/get-container-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/get-cors-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/get-lifecycle-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/get-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/list-containers.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/list-items.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/put-container-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/put-cors-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/put-lifecycle-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/put-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/start-access-logging.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/stop-access-logging.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediastore/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediatailor -#usr/lib/python3.8/site-packages/awscli/examples/mediatailor/delete-playback-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediatailor/get-playback-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediatailor/list-playback-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/mediatailor/put-playback-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/associate-customer-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/associate-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/create-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/create-global-network.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/create-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/create-site.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/delete-bucket-analytics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/delete-bucket-metrics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/delete-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/delete-global-network.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/delete-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/delete-public-access-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/delete-site.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/deregister-transit-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/describe-global-networks.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/disassociate-customer-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/disassociate-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/get-bucket-analytics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/get-bucket-metrics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/get-customer-gateway-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/get-devices.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/get-link-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/get-links.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/get-object-retention.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/get-public-access-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/get-sites.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/get-transit-gateway-registrations.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/list-bucket-analytics-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/list-bucket-metrics-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/put-bucket-metrics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/put-object-retention.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/put-public-access-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/register-transit-gateway.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/update-device.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/update-global-network.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/update-link.rst -#usr/lib/python3.8/site-packages/awscli/examples/networkmanager/update-site.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/assign-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/assign-volume.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/associate-elastic-ip.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/attach-elastic-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/create-app.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/create-deployment.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/create-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/create-layer.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/create-server.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/create-stack.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/create-user-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/delete-app.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/delete-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/delete-layer.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/delete-stack.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/delete-user-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/deregister-elastic-ip.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/deregister-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/deregister-rds-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/deregister-volume.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-apps.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-commands.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-deployments.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-elastic-ips.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-elastic-load-balancers.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-layers.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-load-based-auto-scaling.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-my-user-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-permissions.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-raid-arrays.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-rds-db-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-stack-provisioning-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-stack-summary.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-stacks.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-timebased-auto-scaling.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-user-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/describe-volumes.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/detach-elastic-load-balancer.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/disassociate-elastic-ip.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/get-hostname-suggestion.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/reboot-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/register-elastic-ip.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/register-rds-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/register-volume.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/register.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/set-load-based-auto-scaling.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/set-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/set-time-based-auto-scaling.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/start-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/start-stack.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/stop-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/stop-stack.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/unassign-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/unassign-volume.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/update-app.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/update-elastic-ip.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/update-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/update-layer.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/update-my-user-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/update-rds-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworks/update-volume.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/associate-node.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/create-backup.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/create-server.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/delete-backup.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/delete-server.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/describe-account-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/describe-backups.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/describe-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/describe-node-association-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/describe-servers.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/disassociate-node.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/restore-server.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/start-maintenance.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/update-server-engine-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/opsworkscm/update-server.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations -#usr/lib/python3.8/site-packages/awscli/examples/organizations/accept-handshake.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/attach-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/cancel-handshake.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/create-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/create-organization.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/create-organizational-unit.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/create-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/decline-handshake.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/delete-organization.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/delete-organizational-unit.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/delete-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/describe-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/describe-create-account-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/describe-handshake.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/describe-organization.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/describe-organizational-unit.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/describe-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/detach-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/disable-policy-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/enable-all-features.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/enable-policy-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/invite-account-to-organization.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/leave-organization.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-accounts-for-parent.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-accounts.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-children.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-create-account-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-handshakes-for-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-handshakes-for-organization.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-organizational-units-for-parent.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-parents.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-policies-for-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-roots.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/list-targets-for-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/move-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/remove-account-from-organization.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/update-organizational-unit.rst -#usr/lib/python3.8/site-packages/awscli/examples/organizations/update-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/pi -#usr/lib/python3.8/site-packages/awscli/examples/pi/describe-dimension-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/pi/get-resource-metrics.rst -#usr/lib/python3.8/site-packages/awscli/examples/pinpoint -#usr/lib/python3.8/site-packages/awscli/examples/pinpoint/create-app.rst -#usr/lib/python3.8/site-packages/awscli/examples/pinpoint/delete-app.rst -#usr/lib/python3.8/site-packages/awscli/examples/pinpoint/get-apps.rst -#usr/lib/python3.8/site-packages/awscli/examples/pinpoint/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/pinpoint/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/pinpoint/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/polly -#usr/lib/python3.8/site-packages/awscli/examples/polly/delete-lexicon.rst -#usr/lib/python3.8/site-packages/awscli/examples/polly/get-lexicon.rst -#usr/lib/python3.8/site-packages/awscli/examples/polly/get-speech-synthesis-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/polly/list-lexicons.rst -#usr/lib/python3.8/site-packages/awscli/examples/polly/list-speech-synthesis-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/polly/put-lexicon.rst -#usr/lib/python3.8/site-packages/awscli/examples/polly/start-speech-synthesis-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/pricing -#usr/lib/python3.8/site-packages/awscli/examples/pricing/describe-services.rst -#usr/lib/python3.8/site-packages/awscli/examples/pricing/get-attribute-values.rst -#usr/lib/python3.8/site-packages/awscli/examples/pricing/get-products.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb -#usr/lib/python3.8/site-packages/awscli/examples/qldb/cancel-journal-kinesis-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/create-ledger.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/delete-ledger.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/describe-journal-kinesis-stream.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/describe-journal-s3-export.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/describe-ledger.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/export-journal-to-s3.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/get-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/get-digest.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/get-revision.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/list-journal-kinesis-streams-for-ledger.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/list-journal-s3-exports-for-ledger.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/list-journal-s3-exports.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/list-ledgers.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/stream-journal-to-kinesis.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/qldb/update-ledger.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram -#usr/lib/python3.8/site-packages/awscli/examples/ram/accept-resource-share-invitation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/associate-resource-share.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/create-resource-share.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/delete-resource-share.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/disassociate-resource-share.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/enable-sharing-with-aws-organization.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/get-resource-policies.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/get-resource-share-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/get-resource-share-invitations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/get-resource-shares.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/list-principals.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/list-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/reject-resource-share-invitation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ram/update-resource-share.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds -#usr/lib/python3.8/site-packages/awscli/examples/rds-data -#usr/lib/python3.8/site-packages/awscli/examples/rds-data/batch-execute-statement.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds-data/begin-transaction.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds-data/commit-transaction.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds-data/execute-statement.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds-data/rollback-transaction.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/add-option-to-option-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/add-role-to-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/add-source-identifier-to-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/add-tags-to-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/authorize-db-security-group-ingress.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/backtrack-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/copy-db-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/copy-db-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/copy-db-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/copy-db-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/copy-option-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-db-cluster-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-db-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-db-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-db-instance-read-replica.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-db-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-db-security-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-db-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-db-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-event-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-global-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/create-option-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-db-cluster-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-db-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-db-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-db-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-db-security-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-db-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-db-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-event-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-global-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/delete-option-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-account-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-cluster-endpoints.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-cluster-parameter-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-cluster-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-cluster-snapshot-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-cluster-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-engine-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-instance-automated-backups.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-log-files.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-parameter-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-security-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-snapshot-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-db-subnet-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-engine-default-cluster-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-engine-default-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-event-categories.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-event-subscriptions.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-export-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-global-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-option-group-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-option-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-orderable-db-instance-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-pending-maintenance-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-reserved-db-instances-offerings.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-reserved-db-instances.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-source-regions.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/describe-valid-db-instance-modifications.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/download-db-log-file-portion.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/generate-auth-token.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-db-cluster-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-db-cluster-snapshot-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-db-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-db-snapshot-attribute.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-db-snapshot-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-db-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-db-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-event-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/modify-global-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/promote-read-replica.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/purchase-reserved-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/purchase-reserved-db-instances-offerings.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/reboot-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/remove-option-from-option-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/remove-role-from-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/remove-source-identifier-from-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/restore-db-cluster-from-s3.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/restore-db-cluster-from-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/restore-db-cluster-to-point-in-time.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/restore-db-instance-from-db-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/restore-db-instance-from-s3.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/restore-db-instance-to-point-in-time.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/start-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/start-export-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/stop-db-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/rds/stop-db-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift -#usr/lib/python3.8/site-packages/awscli/examples/redshift/accept-reserved-node-exchange.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/authorize-cluster-security-group-ingress.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/authorize-snapshot-access.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/batch-delete-cluster-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/batch-modify-cluster-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/cancel-resize.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/copy-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-cluster-security-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-cluster-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-event-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-hsm-client-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-hsm-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-snapshot-copy-grant.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-snapshot-schedule.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/create-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-cluster-security-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-cluster-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-event-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-hsm-client-certificate.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-hsm-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-scheduled-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-snapshot-copy-grant.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-snapshot-schedule.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/delete-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-account-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-cluster-db-revisions.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-cluster-parameter-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-cluster-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-cluster-security-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-cluster-snapshots.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-cluster-subnet-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-cluster-tracks.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-cluster-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-clusters.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-default-cluster-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-event-categories.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-event-subscriptions.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-events.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-hsm-client-certificates.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-hsm-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-logging-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-node-configuration-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-orderable-cluster-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-reserved-node-offerings.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-reserved-nodes.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-resize.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-scheduled-actions.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-snapshot-copy-grants.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-snapshot-schedules.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-storage.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-table-restore-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/describe-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/disable-snapshot-copy.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/enable-snapshot-copy.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/get-cluster-credentials.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/get-reserved-node-exchange-offerings.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-cluster-iam-roles.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-cluster-maintenance.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-cluster-snapshot-schedule.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-cluster-subnet-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-event-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-scheduled-action.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-snapshot-copy-retention-period.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/modify-snapshot-schedule.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/purchase-reserved-node-offering.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/reboot-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/reset-cluster-parameter-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/resize-cluster.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/restore-from-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/restore-table-from-cluster-snapshot.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/revoke-cluster-security-group-ingress.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/revoke-snapshot-access.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/rotate-encryption-key.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/wait -#usr/lib/python3.8/site-packages/awscli/examples/redshift/wait/cluster-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/wait/cluster-deleted.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/wait/cluster-restored.rst -#usr/lib/python3.8/site-packages/awscli/examples/redshift/wait/snapshot-available.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/compare-faces.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/create-collection.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/create-stream-processor.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/delete-collection.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/delete-faces.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/delete-stream-processor.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/describe-collection.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/describe-stream-processor.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/detect-faces.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/detect-labels.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/detect-moderation-labels.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/detect-text.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/get-celebrity-info.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/get-celebrity-recognition.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/get-content-moderation.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/get-face-detection.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/get-face-search.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/get-label-detection.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/get-person-tracking.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/index-faces.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/list-collections.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/list-faces.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/list-stream-processors.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/recognize-celebrities.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/search-faces-by-image.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/search-faces.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/start-celebrity-recognition.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/start-content-moderation.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/start-face-detection.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/start-face-search.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/start-label-detection.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/start-person-tracking.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/start-stream-processor.rst -#usr/lib/python3.8/site-packages/awscli/examples/rekognition/stop-stream-processor.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/create-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/delete-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/get-group-query.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/get-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/get-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/list-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/list-resource-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/search-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/tag.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/untag.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/update-group-query.rst -#usr/lib/python3.8/site-packages/awscli/examples/resource-groups/update-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/resourcegroupstaggingapi -#usr/lib/python3.8/site-packages/awscli/examples/resourcegroupstaggingapi/get-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/resourcegroupstaggingapi/get-tag-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/resourcegroupstaggingapi/get-tag-values.rst -#usr/lib/python3.8/site-packages/awscli/examples/resourcegroupstaggingapi/tag-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/resourcegroupstaggingapi/untag-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/batch-describe-simulation-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/cancel-simulation-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/create-deployment-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/create-fleet.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/create-robot-application-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/create-robot-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/create-robot.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/create-simulation-application-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/create-simulation-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/create-simulation-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/delete-fleet.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/delete-robot-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/delete-robot.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/delete-simulation-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/deregister-robot.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/describe-deployment-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/describe-fleet.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/describe-robot-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/describe-robot.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/describe-simulation-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/describe-simulation-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/list-deployment-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/list-fleets.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/list-robot-applications.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/list-robots.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/list-simulation-applications.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/list-simulation-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/register-robot.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/restart-simulation-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/sync-deployment-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/update-robot-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/robomaker/update-simulation-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53 -#usr/lib/python3.8/site-packages/awscli/examples/route53/change-resource-record-sets.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/change-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/create-health-check.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/create-hosted-zone.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/delete-health-check.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/delete-hosted-zone.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/get-change.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/get-health-check.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/get-hosted-zone.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/list-health-checks.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/list-hosted-zones-by-name.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/list-hosted-zones.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/list-query-logging-configs.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53/list-resource-record-sets.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/check-domain-availability.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/check-domain-transferability.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/delete-tags-for-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/disable-domain-auto-renew.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/disable-domain-transfer-lock.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/enable-domain-auto-renew.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/enable-domain-transfer-lock.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/get-contact-reachability-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/get-domain-detail.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/get-domain-suggestions.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/get-operation-detail.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/list-domains.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/list-operations.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/list-tags-for-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/register-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/renew-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/resend-contact-reachability-email.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/retrieve-domain-auth-code.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/transfer-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/update-domain-contact-privacy.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/update-domain-contact.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/update-domain-nameservers.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/update-tags-for-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53domains/view-billing.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/associate-resolver-endpoint-ip-address.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/associate-resolver-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/create-resolver-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/create-resolver-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/delete-resolver-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/delete-resolver-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/disassociate-resolver-endpoint-ip-address.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/disassociate-resolver-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/get-resolver-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/get-resolver-rule-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/get-resolver-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/list-resolver-endpoint-ip-addresses.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/list-resolver-endpoints.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/list-resolver-rule-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/list-resolver-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/put-resolver-rule-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/update-resolver-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/route53resolver/update-resolver-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3 -#usr/lib/python3.8/site-packages/awscli/examples/s3/_concepts.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3/cp.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3/ls.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3/mb.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3/mv.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3/presign.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3/rb.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3/rm.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3/sync.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3/website.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api -#usr/lib/python3.8/site-packages/awscli/examples/s3api/abort-multipart-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/complete-multipart-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/copy-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/create-bucket.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/create-multipart-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket-analytics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket-cors.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket-encryption.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket-inventory-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket-lifecycle.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket-metrics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket-replication.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket-tagging.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket-website.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-bucket.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-object-tagging.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-objects.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/delete-public-access-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-accelerate-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-analytics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-cors.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-encryption.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-inventory-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-lifecycle-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-lifecycle.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-location.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-logging.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-metrics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-notification-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-notification.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-policy-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-replication.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-request-payment.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-tagging.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-versioning.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-bucket-website.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-object-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-object-legal-hold.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-object-lock-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-object-retention.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-object-tagging.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-object-torrent.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/get-public-access-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/head-bucket.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/head-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/list-bucket-analytics-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/list-bucket-inventory-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/list-bucket-metrics-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/list-buckets.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/list-multipart-uploads.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/list-object-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/list-objects-v2.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/list-objects.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/list-parts.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-accelerate-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-analytics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-cors.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-encryption.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-inventory-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-lifecycle-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-lifecycle.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-logging.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-metrics-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-notification-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-notification.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-replication.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-request-payment.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-tagging.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-versioning.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-bucket-website.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-object-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-object-legal-hold.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-object-lock-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-object-retention.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-object-tagging.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/put-public-access-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/restore-object.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/select-object-content.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/upload-part-copy.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/upload-part.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/wait -#usr/lib/python3.8/site-packages/awscli/examples/s3api/wait/bucket-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/wait/bucket-not-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/wait/object-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3api/wait/object-not-exists.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control -#usr/lib/python3.8/site-packages/awscli/examples/s3control/create-access-point.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/create-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/delete-access-point-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/delete-access-point.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/delete-public-access-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/describe-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/get-access-point-policy-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/get-access-point-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/get-access-point.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/get-public-access-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/list-access-points.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/list-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/put-access-point-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/put-public-access-block.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/update-job-priority.rst -#usr/lib/python3.8/site-packages/awscli/examples/s3control/update-job-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/cancel-rotate-secret.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/create-secret.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/delete-resource-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/delete-secret.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/describe-secret.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/get-random-password.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/get-resource-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/get-secret-value.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/list-secret-version-ids.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/list-secrets.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/put-resource-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/put-secret-value.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/restore-secret.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/rotate-secret.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/update-secret-version-stage.rst -#usr/lib/python3.8/site-packages/awscli/examples/secretsmanager/update-secret.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/accept-invitation.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/batch-disable-standards.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/batch-enable-standards.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/batch-import-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/batch-update-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/create-action-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/create-insight.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/create-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/decline-invitations.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/delete-action-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/delete-insight.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/delete-invitations.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/delete-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/describe-action-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/describe-hub.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/describe-products.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/describe-standards-controls.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/describe-standards.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/disable-import-findings-for-product.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/disable-security-hub.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/disassociate-from-master-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/disassociate-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/enable-import-findings-for-product.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/enable-security-hub.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/get-enabled-standards.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/get-findings.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/get-insight-results.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/get-insights.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/get-invitations-count.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/get-master-account.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/get-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/invite-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/list-enabled-products-for-import.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/list-invitations.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/list-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/update-action-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/update-insight.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/update-security-hub-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/securityhub/update-standards-control.rst -#usr/lib/python3.8/site-packages/awscli/examples/serverlessrepo -#usr/lib/python3.8/site-packages/awscli/examples/serverlessrepo/put-application-policy.rst -#usr/lib/python3.8/site-packages/awscli/examples/service-quotas -#usr/lib/python3.8/site-packages/awscli/examples/service-quotas/get-aws-default-service-quota.rst -#usr/lib/python3.8/site-packages/awscli/examples/service-quotas/get-requested-service-quota-change.rst -#usr/lib/python3.8/site-packages/awscli/examples/service-quotas/get-service-quota.rst -#usr/lib/python3.8/site-packages/awscli/examples/service-quotas/list-aws-default-service-quotas.rst -#usr/lib/python3.8/site-packages/awscli/examples/service-quotas/list-requested-service-quota-change-history-by-quota.rst -#usr/lib/python3.8/site-packages/awscli/examples/service-quotas/list-requested-service-quota-change-history.rst -#usr/lib/python3.8/site-packages/awscli/examples/service-quotas/list-service-quotas.rst -#usr/lib/python3.8/site-packages/awscli/examples/service-quotas/list-services.rst -#usr/lib/python3.8/site-packages/awscli/examples/service-quotas/request-service-quota-increase.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/accept-portfolio-share.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/associate-principal-with-portfolio.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/associate-product-with-portfolio.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/associate-tag-option-with-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/copy-product.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/create-portfolio-share.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/create-portfolio.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/create-product.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/create-provisioning-artifact.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/create-tag-option.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/delete-portfolio-share.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/delete-portfolio.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/delete-product.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/delete-provisioning-artifact.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/delete-tag-option.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/describe-copy-product-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/describe-portfolio.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/describe-product-as-admin.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/describe-provisioned-product.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/describe-provisioning-artifact.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/describe-tag-option.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/disassociate-principal-from-portfolio.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/disassociate-product-from-portfolio.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/disassociate-tag-option-from-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/list-accepted-portfolio-shares.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/list-portfolio-access.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/list-portfolios-for-product.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/list-portfolios.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/list-principals-for-portfolio.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/list-provisioning-artifacts.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/list-resources-for-tag-option.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/list-tag-options.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/provision-product.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/reject-portfolio-share.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/scan-provisioned-products.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/search-products-as-admin.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/search-provisioned-products.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/update-portfolio.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/update-product.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/update-provisioning-artifact.rst -#usr/lib/python3.8/site-packages/awscli/examples/servicecatalog/update-tag-option.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses -#usr/lib/python3.8/site-packages/awscli/examples/ses/delete-identity.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/get-identity-dkim-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/get-identity-notification-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/get-identity-verification-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/get-send-quota.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/get-send-statistics.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/list-identities.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/send-email.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/send-raw-email.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/set-identity-dkim-enabled.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/set-identity-feedback-forwarding-enabled.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/set-identity-notification-topic.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/verify-domain-dkim.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/verify-domain-identity.rst -#usr/lib/python3.8/site-packages/awscli/examples/ses/verify-email-identity.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield -#usr/lib/python3.8/site-packages/awscli/examples/shield/associate-drt-log-bucket.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/associate-drt-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/create-protection.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/create-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/delete-protection.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/describe-attack.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/describe-drt-access.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/describe-emergency-contact-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/describe-protection.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/describe-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/disassociate-drt-log-bucket.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/disassociate-drt-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/get-subscription-state.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/list-attacks.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/list-protections.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/update-emergency-contact-settings.rst -#usr/lib/python3.8/site-packages/awscli/examples/shield/update-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/signer -#usr/lib/python3.8/site-packages/awscli/examples/signer/cancel-signing-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/signer/describe-signing-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/signer/get-signing-platform.rst -#usr/lib/python3.8/site-packages/awscli/examples/signer/get-signing-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/signer/list-signing-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/signer/list-signing-platforms.rst -#usr/lib/python3.8/site-packages/awscli/examples/signer/list-signing-profiles.rst -#usr/lib/python3.8/site-packages/awscli/examples/signer/put-signing-profile.rst -#usr/lib/python3.8/site-packages/awscli/examples/signer/start-signing-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/snowball -#usr/lib/python3.8/site-packages/awscli/examples/snowball/get-snowball-usage.rst -#usr/lib/python3.8/site-packages/awscli/examples/snowball/list-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns -#usr/lib/python3.8/site-packages/awscli/examples/sns/add-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/check-if-phone-number-is-opted-out.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/confirm-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/create-platform-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/create-platform-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/create-topic.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/delete-endpoint.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/delete-platform-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/delete-topic.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/get-endpoint-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/get-platform-application-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/get-sms-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/get-subscription-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/get-topic-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/list-endpoints-by-platform-application.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/list-phone-numbers-opted-out.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/list-platform-applications.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/list-subscriptions-by-topic.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/list-subscriptions.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/list-topics.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/opt-in-phone-number.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/publish.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/remove-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/set-endpoint-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/set-platform-application-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/set-sms-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/set-subscription-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/set-topic-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/subscribe.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/unsubscribe.rst -#usr/lib/python3.8/site-packages/awscli/examples/sns/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs -#usr/lib/python3.8/site-packages/awscli/examples/sqs/add-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/change-message-visibility-batch.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/change-message-visibility.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/create-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/delete-message-batch.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/delete-message.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/delete-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/get-queue-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/get-queue-url.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/list-dead-letter-source-queues.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/list-queue-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/list-queues.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/purge-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/receive-message.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/remove-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/send-message-batch.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/send-message.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/set-queue-attributes.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/tag-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/sqs/untag-queue.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm -#usr/lib/python3.8/site-packages/awscli/examples/ssm/add-tags-to-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/cancel-command.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/cancel-maintenance-window-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/create-activation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/create-association-batch.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/create-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/create-document.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/create-maintenance-window.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/create-ops-item.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/create-patch-baseline.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/create-resource-data-sync.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/delete-activation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/delete-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/delete-document.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/delete-inventory.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/delete-maintenance-window.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/delete-parameter.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/delete-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/delete-patch-baseline.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/delete-resource-data-sync.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/deregister-managed-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/deregister-patch-baseline-for-patch-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/deregister-target-from-maintenance-window.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/deregister-task-from-maintenance-window.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-activations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-association-execution-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-association-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-automation-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-automation-step-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-available-patches.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-document-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-document.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-effective-instance-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-effective-patches-for-patch-baseline.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-instance-associations-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-instance-information.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-instance-patch-states-for-patch-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-instance-patch-states.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-instance-patches.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-inventory-deletions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-maintenance-window-execution-task-invocations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-maintenance-window-execution-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-maintenance-window-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-maintenance-window-schedule.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-maintenance-window-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-maintenance-window-tasks.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-maintenance-windows-for-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-maintenance-windows.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-ops-items.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-patch-baselines.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-patch-group-state.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-patch-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-patch-properties.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/describe-sessions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-automation-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-calendar-state.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-command-invocation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-connection-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-default-patch-baseline.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-deployable-patch-snapshot-for-instance.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-document.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-inventory-schema.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-inventory.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-maintenance-window-execution-task-invocation.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-maintenance-window-execution-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-maintenance-window-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-maintenance-window-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-maintenance-window.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-ops-item.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-ops-summary.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-parameter-history.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-parameter.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-parameters-by-path.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-parameters.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-patch-baseline-for-patch-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-patch-baseline.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/get-service-setting.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/label-parameter-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-association-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-associations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-command-invocations.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-commands.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-compliance-items.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-compliance-summaries.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-document-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-documents.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-inventory-entries.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-resource-compliance-summaries.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-resource-data-sync.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/modify-document-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/put-compliance-items.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/put-inventory.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/put-parameter.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/register-default-patch-baseline.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/register-patch-baseline-for-patch-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/register-target-with-maintenance-window.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/register-task-with-maintenance-window.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/remove-tags-from-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/reset-service-setting.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/resume-session.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/send-automation-signal.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/send-command.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/start-associations-once.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/start-automation-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/start-session.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/stop-automation-execution.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/terminate-session.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-association-status.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-association.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-document-default-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-document.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-maintenance-window-target.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-maintenance-window-task.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-maintenance-window.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-managed-instance-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-ops-item.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-patch-baseline.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-resource-data-sync.rst -#usr/lib/python3.8/site-packages/awscli/examples/ssm/update-service-setting.rst -#usr/lib/python3.8/site-packages/awscli/examples/storagegateway -#usr/lib/python3.8/site-packages/awscli/examples/storagegateway/describe-gateway-information.rst -#usr/lib/python3.8/site-packages/awscli/examples/storagegateway/list-file-shares.rst -#usr/lib/python3.8/site-packages/awscli/examples/storagegateway/list-gateways.rst -#usr/lib/python3.8/site-packages/awscli/examples/storagegateway/list-volumes.rst -#usr/lib/python3.8/site-packages/awscli/examples/storagegateway/refresh-cache.rst -#usr/lib/python3.8/site-packages/awscli/examples/sts -#usr/lib/python3.8/site-packages/awscli/examples/sts/assume-role-with-saml.rst -#usr/lib/python3.8/site-packages/awscli/examples/sts/assume-role-with-web-identity.rst -#usr/lib/python3.8/site-packages/awscli/examples/sts/assume-role.rst -#usr/lib/python3.8/site-packages/awscli/examples/sts/get-caller-identity.rst -#usr/lib/python3.8/site-packages/awscli/examples/sts/get-session-token.rst -#usr/lib/python3.8/site-packages/awscli/examples/support -#usr/lib/python3.8/site-packages/awscli/examples/support/add-attachments-to-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/add-communication-to-case.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/create-case.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/describe-attachment.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/describe-cases.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/describe-communications.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/describe-services.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/describe-severity-levels.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/describe-trusted-advisor-check-refresh-statuses.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/describe-trusted-advisor-check-result.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/describe-trusted-advisor-check-summaries.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/describe-trusted-advisor-checks.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/refresh-trusted-advisor-check.rst -#usr/lib/python3.8/site-packages/awscli/examples/support/resolve-case.rst -#usr/lib/python3.8/site-packages/awscli/examples/swf -#usr/lib/python3.8/site-packages/awscli/examples/swf/count-closed-workflow-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/swf/count-open-workflow-executions.rst -#usr/lib/python3.8/site-packages/awscli/examples/swf/deprecate-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/swf/describe-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/swf/list-activity-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/swf/list-domains.rst -#usr/lib/python3.8/site-packages/awscli/examples/swf/list-workflow-types.rst -#usr/lib/python3.8/site-packages/awscli/examples/swf/register-domain.rst -#usr/lib/python3.8/site-packages/awscli/examples/swf/register-workflow-type.rst -#usr/lib/python3.8/site-packages/awscli/examples/textract -#usr/lib/python3.8/site-packages/awscli/examples/textract/analyze-document.rst -#usr/lib/python3.8/site-packages/awscli/examples/textract/detect-document-text.rst -#usr/lib/python3.8/site-packages/awscli/examples/textract/get-document-analysis.rst -#usr/lib/python3.8/site-packages/awscli/examples/textract/get-document-text-detection.rst -#usr/lib/python3.8/site-packages/awscli/examples/textract/start-document-analysis.rst -#usr/lib/python3.8/site-packages/awscli/examples/textract/start-document-text-detection.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/create-language-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/create-medical-vocabulary.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/create-vocabulary-filter.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/create-vocabulary.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/delete-language-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/delete-medical-transcription-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/delete-medical-vocabulary.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/delete-transcription-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/delete-vocabulary-filter.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/delete-vocabulary.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/describe-language-model.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/get-medical-transcription-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/get-medical-vocabulary.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/get-transcription-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/get-vocabulary-filter.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/get-vocabulary.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/list-language-models.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/list-medical-transcription-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/list-medical-vocabularies.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/list-transcription-jobs.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/list-vocabularies.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/list-vocabulary-filters.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/start-medical-transcription-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/start-transcription-job.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/update-medical-vocabulary.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/update-vocabulary-filter.rst -#usr/lib/python3.8/site-packages/awscli/examples/transcribe/update-vocabulary.rst -#usr/lib/python3.8/site-packages/awscli/examples/translate -#usr/lib/python3.8/site-packages/awscli/examples/translate/import-terminology.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf -#usr/lib/python3.8/site-packages/awscli/examples/waf-regional -#usr/lib/python3.8/site-packages/awscli/examples/waf-regional/associate-web-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf-regional/put-logging-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf-regional/update-byte-match-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf-regional/update-ip-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf-regional/update-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf-regional/update-size-constraint-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf-regional/update-sql-injection-match-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf-regional/update-web-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf-regional/update-xss-match-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf/put-logging-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf/update-byte-match-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf/update-ip-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf/update-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf/update-size-constraint-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf/update-sql-injection-match-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf/update-web-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/waf/update-xss-match-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2 -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/associate-web-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/check-capacity.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/create-ip-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/create-regex-pattern-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/create-rule-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/create-web-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/delete-ip-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/delete-logging-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/delete-regex-pattern-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/delete-rule-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/delete-web-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/describe-managed-rule-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/disassociate-web-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/get-ip-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/get-logging-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/get-rate-based-statement-managed-keys.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/get-regex-pattern-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/get-rule-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/get-sampled-requests.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/get-web-acl-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/get-web-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/list-available-managed-rule-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/list-ip-sets.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/list-logging-configurations.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/list-regex-pattern-sets.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/list-resources-for-web-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/list-rule-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/list-web-acls.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/put-logging-configuration.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/update-ip-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/update-regex-pattern-set.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/update-rule-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/wafv2/update-web-acl.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/abort-document-version-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/activate-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/add-resource-permissions.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/create-comment.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/create-custom-metadata.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/create-folder.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/create-labels.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/create-notification-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/create-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/deactivate-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/delete-comment.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/delete-custom-metadata.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/delete-document.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/delete-folder-contents.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/delete-folder.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/delete-labels.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/delete-notification-subscription.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/delete-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/describe-activities.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/describe-comments.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/describe-document-versions.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/describe-folder-contents.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/describe-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/describe-notification-subscriptions.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/describe-resource-permissions.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/describe-users.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/get-document-path.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/get-document-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/get-document.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/get-folder-path.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/get-folder.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/get-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/initiate-document-version-upload.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/remove-all-resource-permissions.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/remove-resource-permission.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/update-document-version.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/update-document.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/update-folder.rst -#usr/lib/python3.8/site-packages/awscli/examples/workdocs/update-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail -#usr/lib/python3.8/site-packages/awscli/examples/workmail/associate-delegate-to-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/associate-member-to-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/create-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/create-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/create-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/create-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/delete-access-control-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/delete-alias.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/delete-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/delete-mailbox-permissions.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/delete-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/delete-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/deregister-from-work-mail.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/describe-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/describe-organization.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/describe-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/describe-user.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/disassociate-delegate-from-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/disassociate-member-from-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/get-access-control-effect.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/get-mailbox-details.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/list-access-control-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/list-aliases.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/list-group-members.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/list-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/list-mailbox-permissions.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/list-organizations.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/list-resource-delegates.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/list-resources.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/list-tags-for-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/list-users.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/put-access-control-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/put-mailbox-permissions.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/register-to-work-mail.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/reset-password.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/tag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/untag-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/update-mailbox-quota.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/update-primary-email-address.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmail/update-resource.rst -#usr/lib/python3.8/site-packages/awscli/examples/workmailmessageflow -#usr/lib/python3.8/site-packages/awscli/examples/workmailmessageflow/get-raw-message-content.rst -#usr/lib/python3.8/site-packages/awscli/examples/workspaces -#usr/lib/python3.8/site-packages/awscli/examples/workspaces/create-workspaces.rst -#usr/lib/python3.8/site-packages/awscli/examples/workspaces/describe-tags.rst -#usr/lib/python3.8/site-packages/awscli/examples/workspaces/describe-workspace-bundles.rst -#usr/lib/python3.8/site-packages/awscli/examples/workspaces/describe-workspace-directories.rst -#usr/lib/python3.8/site-packages/awscli/examples/workspaces/describe-workspaces.rst -#usr/lib/python3.8/site-packages/awscli/examples/workspaces/migrate-workspace.rst -#usr/lib/python3.8/site-packages/awscli/examples/workspaces/terminate-workspaces.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray -#usr/lib/python3.8/site-packages/awscli/examples/xray/batch-traces-get.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/create-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/create-sampling-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/delete-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/delete-sampling-rule.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/get-encryption-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/get-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/get-groups.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/get-sampling-rules.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/get-sampling-targets.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/get-service-graph.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/get-trace-summaries.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/put-encryption-config.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/put-trace-segments.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/update-group.rst -#usr/lib/python3.8/site-packages/awscli/examples/xray/update-sampling-rule.rst -usr/lib/python3.8/site-packages/awscli/formatter.py -usr/lib/python3.8/site-packages/awscli/handlers.py -usr/lib/python3.8/site-packages/awscli/help.py -usr/lib/python3.8/site-packages/awscli/paramfile.py -usr/lib/python3.8/site-packages/awscli/plugin.py -usr/lib/python3.8/site-packages/awscli/schema.py -usr/lib/python3.8/site-packages/awscli/shorthand.py -usr/lib/python3.8/site-packages/awscli/table.py -usr/lib/python3.8/site-packages/awscli/testutils.py -usr/lib/python3.8/site-packages/awscli/text.py -usr/lib/python3.8/site-packages/awscli/topics -#usr/lib/python3.8/site-packages/awscli/topics/config-vars.rst -#usr/lib/python3.8/site-packages/awscli/topics/return-codes.rst -#usr/lib/python3.8/site-packages/awscli/topics/s3-config.rst -#usr/lib/python3.8/site-packages/awscli/topics/s3-faq.rst -#usr/lib/python3.8/site-packages/awscli/topics/topic-tags.json -usr/lib/python3.8/site-packages/awscli/topictags.py -usr/lib/python3.8/site-packages/awscli/utils.py +#usr/lib/python3.10/site-packages/awscli +#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info +#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/awscli/__init__.py +usr/lib/python3.10/site-packages/awscli/__main__.py +usr/lib/python3.10/site-packages/awscli/alias.py +usr/lib/python3.10/site-packages/awscli/argparser.py +usr/lib/python3.10/site-packages/awscli/argprocess.py +usr/lib/python3.10/site-packages/awscli/arguments.py +usr/lib/python3.10/site-packages/awscli/bcdoc +usr/lib/python3.10/site-packages/awscli/bcdoc/__init__.py +usr/lib/python3.10/site-packages/awscli/bcdoc/docevents.py +usr/lib/python3.10/site-packages/awscli/bcdoc/docstringparser.py +usr/lib/python3.10/site-packages/awscli/bcdoc/restdoc.py +usr/lib/python3.10/site-packages/awscli/bcdoc/style.py +usr/lib/python3.10/site-packages/awscli/bcdoc/textwriter.py +usr/lib/python3.10/site-packages/awscli/clidocs.py +usr/lib/python3.10/site-packages/awscli/clidriver.py +usr/lib/python3.10/site-packages/awscli/commands.py +usr/lib/python3.10/site-packages/awscli/compat.py +usr/lib/python3.10/site-packages/awscli/completer.py +#usr/lib/python3.10/site-packages/awscli/customizations +usr/lib/python3.10/site-packages/awscli/customizations/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/addexamples.py +usr/lib/python3.10/site-packages/awscli/customizations/argrename.py +usr/lib/python3.10/site-packages/awscli/customizations/arguments.py +usr/lib/python3.10/site-packages/awscli/customizations/assumerole.py +usr/lib/python3.10/site-packages/awscli/customizations/awslambda.py +usr/lib/python3.10/site-packages/awscli/customizations/cliinputjson.py +#usr/lib/python3.10/site-packages/awscli/customizations/cloudformation +usr/lib/python3.10/site-packages/awscli/customizations/cloudformation/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudformation/artifact_exporter.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudformation/deploy.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudformation/deployer.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudformation/exceptions.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudformation/package.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudformation/yamlhelper.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudfront.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudsearch.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudsearchdomain.py +#usr/lib/python3.10/site-packages/awscli/customizations/cloudtrail +usr/lib/python3.10/site-packages/awscli/customizations/cloudtrail/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudtrail/subscribe.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudtrail/utils.py +usr/lib/python3.10/site-packages/awscli/customizations/cloudtrail/validation.py +#usr/lib/python3.10/site-packages/awscli/customizations/codeartifact +usr/lib/python3.10/site-packages/awscli/customizations/codeartifact/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/codeartifact/login.py +usr/lib/python3.10/site-packages/awscli/customizations/codecommit.py +#usr/lib/python3.10/site-packages/awscli/customizations/codedeploy +usr/lib/python3.10/site-packages/awscli/customizations/codedeploy/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/codedeploy/codedeploy.py +usr/lib/python3.10/site-packages/awscli/customizations/codedeploy/deregister.py +usr/lib/python3.10/site-packages/awscli/customizations/codedeploy/install.py +usr/lib/python3.10/site-packages/awscli/customizations/codedeploy/locationargs.py +usr/lib/python3.10/site-packages/awscli/customizations/codedeploy/push.py +usr/lib/python3.10/site-packages/awscli/customizations/codedeploy/register.py +usr/lib/python3.10/site-packages/awscli/customizations/codedeploy/systems.py +usr/lib/python3.10/site-packages/awscli/customizations/codedeploy/uninstall.py +usr/lib/python3.10/site-packages/awscli/customizations/codedeploy/utils.py +usr/lib/python3.10/site-packages/awscli/customizations/commands.py +#usr/lib/python3.10/site-packages/awscli/customizations/configservice +usr/lib/python3.10/site-packages/awscli/customizations/configservice/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/configservice/getstatus.py +usr/lib/python3.10/site-packages/awscli/customizations/configservice/putconfigurationrecorder.py +usr/lib/python3.10/site-packages/awscli/customizations/configservice/rename_cmd.py +usr/lib/python3.10/site-packages/awscli/customizations/configservice/subscribe.py +#usr/lib/python3.10/site-packages/awscli/customizations/configure +usr/lib/python3.10/site-packages/awscli/customizations/configure/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/configure/addmodel.py +usr/lib/python3.10/site-packages/awscli/customizations/configure/configure.py +usr/lib/python3.10/site-packages/awscli/customizations/configure/get.py +usr/lib/python3.10/site-packages/awscli/customizations/configure/list.py +usr/lib/python3.10/site-packages/awscli/customizations/configure/set.py +usr/lib/python3.10/site-packages/awscli/customizations/configure/writer.py +usr/lib/python3.10/site-packages/awscli/customizations/datapipeline +usr/lib/python3.10/site-packages/awscli/customizations/datapipeline/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/datapipeline/constants.py +usr/lib/python3.10/site-packages/awscli/customizations/datapipeline/createdefaultroles.py +usr/lib/python3.10/site-packages/awscli/customizations/datapipeline/listrunsformatter.py +usr/lib/python3.10/site-packages/awscli/customizations/datapipeline/translator.py +#usr/lib/python3.10/site-packages/awscli/customizations/dlm +usr/lib/python3.10/site-packages/awscli/customizations/dlm/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/dlm/constants.py +usr/lib/python3.10/site-packages/awscli/customizations/dlm/createdefaultrole.py +usr/lib/python3.10/site-packages/awscli/customizations/dlm/dlm.py +usr/lib/python3.10/site-packages/awscli/customizations/dlm/iam.py +usr/lib/python3.10/site-packages/awscli/customizations/dynamodb.py +#usr/lib/python3.10/site-packages/awscli/customizations/ec2 +usr/lib/python3.10/site-packages/awscli/customizations/ec2/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/ec2/addcount.py +usr/lib/python3.10/site-packages/awscli/customizations/ec2/bundleinstance.py +usr/lib/python3.10/site-packages/awscli/customizations/ec2/decryptpassword.py +usr/lib/python3.10/site-packages/awscli/customizations/ec2/paginate.py +usr/lib/python3.10/site-packages/awscli/customizations/ec2/protocolarg.py +usr/lib/python3.10/site-packages/awscli/customizations/ec2/runinstances.py +usr/lib/python3.10/site-packages/awscli/customizations/ec2/secgroupsimplify.py +usr/lib/python3.10/site-packages/awscli/customizations/ecr.py +usr/lib/python3.10/site-packages/awscli/customizations/ecr_public.py +#usr/lib/python3.10/site-packages/awscli/customizations/ecs +usr/lib/python3.10/site-packages/awscli/customizations/ecs/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/ecs/deploy.py +usr/lib/python3.10/site-packages/awscli/customizations/ecs/exceptions.py +usr/lib/python3.10/site-packages/awscli/customizations/ecs/filehelpers.py +#usr/lib/python3.10/site-packages/awscli/customizations/eks +usr/lib/python3.10/site-packages/awscli/customizations/eks/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/eks/exceptions.py +usr/lib/python3.10/site-packages/awscli/customizations/eks/get_token.py +usr/lib/python3.10/site-packages/awscli/customizations/eks/kubeconfig.py +usr/lib/python3.10/site-packages/awscli/customizations/eks/ordered_yaml.py +usr/lib/python3.10/site-packages/awscli/customizations/eks/update_kubeconfig.py +#usr/lib/python3.10/site-packages/awscli/customizations/emr +usr/lib/python3.10/site-packages/awscli/customizations/emr/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/addinstancegroups.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/addsteps.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/addtags.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/applicationutils.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/argumentschema.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/command.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/config.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/configutils.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/constants.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/createcluster.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/createdefaultroles.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/describecluster.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/emr.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/emrfsutils.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/emrutils.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/exceptions.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/hbase.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/hbaseutils.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/helptext.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/installapplications.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/instancefleetsutils.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/instancegroupsutils.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/listclusters.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/modifyclusterattributes.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/ssh.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/sshutils.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/steputils.py +usr/lib/python3.10/site-packages/awscli/customizations/emr/terminateclusters.py +usr/lib/python3.10/site-packages/awscli/customizations/flatten.py +#usr/lib/python3.10/site-packages/awscli/customizations/gamelift +usr/lib/python3.10/site-packages/awscli/customizations/gamelift/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/gamelift/getlog.py +usr/lib/python3.10/site-packages/awscli/customizations/gamelift/uploadbuild.py +usr/lib/python3.10/site-packages/awscli/customizations/generatecliskeleton.py +usr/lib/python3.10/site-packages/awscli/customizations/globalargs.py +#usr/lib/python3.10/site-packages/awscli/customizations/history +usr/lib/python3.10/site-packages/awscli/customizations/history/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/history/commands.py +usr/lib/python3.10/site-packages/awscli/customizations/history/constants.py +usr/lib/python3.10/site-packages/awscli/customizations/history/db.py +usr/lib/python3.10/site-packages/awscli/customizations/history/filters.py +usr/lib/python3.10/site-packages/awscli/customizations/history/list.py +usr/lib/python3.10/site-packages/awscli/customizations/history/show.py +usr/lib/python3.10/site-packages/awscli/customizations/iamvirtmfa.py +usr/lib/python3.10/site-packages/awscli/customizations/iot.py +usr/lib/python3.10/site-packages/awscli/customizations/iot_data.py +usr/lib/python3.10/site-packages/awscli/customizations/kms.py +usr/lib/python3.10/site-packages/awscli/customizations/mturk.py +usr/lib/python3.10/site-packages/awscli/customizations/opsworks.py +usr/lib/python3.10/site-packages/awscli/customizations/opsworkscm.py +usr/lib/python3.10/site-packages/awscli/customizations/paginate.py +usr/lib/python3.10/site-packages/awscli/customizations/preview.py +usr/lib/python3.10/site-packages/awscli/customizations/putmetricdata.py +usr/lib/python3.10/site-packages/awscli/customizations/rds.py +usr/lib/python3.10/site-packages/awscli/customizations/rekognition.py +usr/lib/python3.10/site-packages/awscli/customizations/removals.py +usr/lib/python3.10/site-packages/awscli/customizations/route53.py +#usr/lib/python3.10/site-packages/awscli/customizations/s3 +usr/lib/python3.10/site-packages/awscli/customizations/s3/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/comparator.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/fileformat.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/filegenerator.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/fileinfo.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/fileinfobuilder.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/filters.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/results.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/s3.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/s3handler.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/subcommands.py +#usr/lib/python3.10/site-packages/awscli/customizations/s3/syncstrategy +usr/lib/python3.10/site-packages/awscli/customizations/s3/syncstrategy/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/syncstrategy/base.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/syncstrategy/delete.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/syncstrategy/exacttimestamps.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/syncstrategy/register.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/syncstrategy/sizeonly.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/transferconfig.py +usr/lib/python3.10/site-packages/awscli/customizations/s3/utils.py +usr/lib/python3.10/site-packages/awscli/customizations/s3errormsg.py +usr/lib/python3.10/site-packages/awscli/customizations/s3events.py +usr/lib/python3.10/site-packages/awscli/customizations/s3uploader.py +usr/lib/python3.10/site-packages/awscli/customizations/sagemaker.py +usr/lib/python3.10/site-packages/awscli/customizations/scalarparse.py +#usr/lib/python3.10/site-packages/awscli/customizations/servicecatalog +usr/lib/python3.10/site-packages/awscli/customizations/servicecatalog/__init__.py +usr/lib/python3.10/site-packages/awscli/customizations/servicecatalog/exceptions.py +usr/lib/python3.10/site-packages/awscli/customizations/servicecatalog/generate.py +usr/lib/python3.10/site-packages/awscli/customizations/servicecatalog/generatebase.py +usr/lib/python3.10/site-packages/awscli/customizations/servicecatalog/generateproduct.py +usr/lib/python3.10/site-packages/awscli/customizations/servicecatalog/generateprovisioningartifact.py +usr/lib/python3.10/site-packages/awscli/customizations/servicecatalog/helptext.py +usr/lib/python3.10/site-packages/awscli/customizations/servicecatalog/utils.py +usr/lib/python3.10/site-packages/awscli/customizations/sessendemail.py +usr/lib/python3.10/site-packages/awscli/customizations/sessionmanager.py +usr/lib/python3.10/site-packages/awscli/customizations/sms_voice.py +usr/lib/python3.10/site-packages/awscli/customizations/streamingoutputarg.py +usr/lib/python3.10/site-packages/awscli/customizations/toplevelbool.py +usr/lib/python3.10/site-packages/awscli/customizations/translate.py +usr/lib/python3.10/site-packages/awscli/customizations/utils.py +usr/lib/python3.10/site-packages/awscli/customizations/waiters.py +#usr/lib/python3.10/site-packages/awscli/data +usr/lib/python3.10/site-packages/awscli/data/cli.json +usr/lib/python3.10/site-packages/awscli/errorhandler.py +usr/lib/python3.10/site-packages/awscli/examples +#usr/lib/python3.10/site-packages/awscli/examples/acm +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/create-certificate-authority-audit-report.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/create-certificate-authority.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/delete-certificate-authority.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/describe-certificate-authority-audit-report.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/describe-certificate-authority.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/get-certificate-authority-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/get-certificate-authority-csr.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/get-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/import-certificate-authority-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/issue-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/list-certificate-authorities.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/list-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/revoke-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/tag-certificate-authority.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/untag-certificate-authority.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm-pca/update-certificate-authority.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm/add-tags-to-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm/delete-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm/describe-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm/get-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm/list-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm/list-tags-for-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm/remove-tags-from-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm/request-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm/resend-validation-email.rst +#usr/lib/python3.10/site-packages/awscli/examples/acm/update-certificate-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/alexaforbusiness +#usr/lib/python3.10/site-packages/awscli/examples/alexaforbusiness/create-network-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/alexaforbusiness/delete-network-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/alexaforbusiness/get-network-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/alexaforbusiness/search-network-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/alexaforbusiness/update-network-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-api-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-base-path-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-domain-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-rest-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-stage.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-usage-plan-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/create-usage-plan.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-api-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-base-path-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-client-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-domain-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-integration-response.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-integration.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-method-response.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-method.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-rest-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-stage.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-usage-plan-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/delete-usage-plan.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/flush-stage-authorizers-cache.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/flush-stage-cache.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/generate-client-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-api-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-api-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-authorizers.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-base-path-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-base-path-mappings.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-client-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-client-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-deployments.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-domain-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-domain-names.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-export.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-integration-response.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-integration.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-method-response.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-method.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-model-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-models.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-rest-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-rest-apis.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-sdk.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-stage.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-stages.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-usage-plan-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-usage-plan-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-usage-plan.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-usage-plans.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/get-usage.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/import-rest-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/put-integration-response.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/put-integration.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/put-method-response.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/put-method.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/put-rest-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/test-invoke-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/test-invoke-method.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-api-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-base-path-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-client-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-domain-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-integration-response.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-integration.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-method-response.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-method.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-rest-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-stage.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-usage-plan.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigateway/update-usage.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewaymanagementapi +#usr/lib/python3.10/site-packages/awscli/examples/apigatewaymanagementapi/delete-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewaymanagementapi/get-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewaymanagementapi/post-to-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2 +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/create-api-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/create-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/create-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/create-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/create-domain-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/create-integration.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/create-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/create-stage.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/create-vpc-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-access-log-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-api-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-cors-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-domain-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-integration.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-route-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-stage.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/delete-vpc-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/export-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-api-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-api-mappings.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-apis.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-authorizers.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-deployments.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-domain-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-domain-names.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-integration.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-integrations.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-routes.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-stage.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-stages.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-vpc-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/get-vpc-links.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/import-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/reimport-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-api-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-api.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-domain-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-integration.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-stage.rst +#usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-vpc-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/appconfig +#usr/lib/python3.10/site-packages/awscli/examples/appconfig/get-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/appconfig/list-applications.rst +#usr/lib/python3.10/site-packages/awscli/examples/appconfig/list-configuration-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/appconfig/list-environments.rst +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/delete-scaling-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/delete-scheduled-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/deregister-scalable-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/describe-scalable-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/describe-scaling-activities.rst +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/describe-scaling-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/describe-scheduled-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/put-scaling-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/put-scheduled-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/register-scalable-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/create-mesh.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/create-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/create-virtual-node.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/create-virtual-router.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/create-virtual-service.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/delete-mesh.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/delete-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/delete-virtual-node.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/delete-virtual-router.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/delete-virtual-service.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/describe-mesh.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/describe-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/describe-virtual-node.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/describe-virtual-router.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/describe-virtual-service.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/list-meshes.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/list-routes.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/list-virtual-nodes.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/list-virtual-routers.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/list-virtual-services.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/update-mesh.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/update-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/update-virtual-node.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/update-virtual-router.rst +#usr/lib/python3.10/site-packages/awscli/examples/appmesh/update-virtual-service.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena +#usr/lib/python3.10/site-packages/awscli/examples/athena/batch-get-named-query.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/batch-get-query-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/create-data-catalog.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/create-named-query.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/create-work-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/delete-data-catalog.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/delete-named-query.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/delete-work-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/get-data-catalog.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/get-database.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/get-named-query.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/get-query-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/get-query-results.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/get-table-metadata.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/get-work-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/list-data-catalogs.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/list-databases.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/list-named-queries.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/list-query-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/list-table-metadata.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/list-work-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/start-query-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/stop-query-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/update-data-catalog.rst +#usr/lib/python3.10/site-packages/awscli/examples/athena/update-work-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling-plans +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling-plans/create-scaling-plan.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling-plans/delete-scaling-plan.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling-plans/describe-scaling-plan-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling-plans/describe-scaling-plans.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling-plans/get-scaling-plan-resource-forecast-data.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling-plans/update-scaling-plan.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/attach-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/attach-load-balancer-target-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/attach-load-balancers.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/cancel-instance-refresh.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/complete-lifecycle-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/create-auto-scaling-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/create-launch-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/create-or-update-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-auto-scaling-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-launch-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-lifecycle-hook.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-notification-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-scheduled-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-account-limits.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-adjustment-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-auto-scaling-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-auto-scaling-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-auto-scaling-notification-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-instance-refreshes.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-launch-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-lifecycle-hook-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-lifecycle-hooks.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-load-balancer-target-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-load-balancers.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-metric-collection-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-notification-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-scaling-activities.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-scaling-process-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-scheduled-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-termination-policy-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/detach-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/detach-load-balancer-target-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/detach-load-balancers.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/disable-metrics-collection.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/enable-metrics-collection.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/enter-standby.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/execute-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/exit-standby.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/put-lifecycle-hook.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/put-notification-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/put-scaling-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/put-scheduled-update-group-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/record-lifecycle-action-heartbeat.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/resume-processes.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/set-desired-capacity.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/set-instance-health.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/set-instance-protection.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/start-instance-refresh.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/suspend-processes.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/terminate-instance-in-auto-scaling-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/update-auto-scaling-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/backup +#usr/lib/python3.10/site-packages/awscli/examples/backup/create-backup-plan.rst +#usr/lib/python3.10/site-packages/awscli/examples/backup/create-backup-vault.rst +#usr/lib/python3.10/site-packages/awscli/examples/backup/get-backup-plan-from-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/backup/get-backup-plan.rst +#usr/lib/python3.10/site-packages/awscli/examples/backup/list-backup-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch +#usr/lib/python3.10/site-packages/awscli/examples/batch/cancel-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/create-compute-environment.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/create-job-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/delete-compute-environment.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/delete-job-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/deregister-job-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/describe-compute-environments.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/describe-job-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/describe-job-queues.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/describe-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/list-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/register-job-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/submit-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/terminate-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/update-compute-environment.rst +#usr/lib/python3.10/site-packages/awscli/examples/batch/update-job-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets +#usr/lib/python3.10/site-packages/awscli/examples/budgets/create-budget.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/create-notification.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/create-subscriber.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/delete-budget.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/delete-notification.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/delete-subscriber.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/describe-budget.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/describe-budgets.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/describe-notifications-for-budget.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/describe-subscribers-for-notification.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/update-budget.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/update-notification.rst +#usr/lib/python3.10/site-packages/awscli/examples/budgets/update-subscriber.rst +#usr/lib/python3.10/site-packages/awscli/examples/ce +#usr/lib/python3.10/site-packages/awscli/examples/ce/get-cost-and-usage.rst +#usr/lib/python3.10/site-packages/awscli/examples/ce/get-dimension-values.rst +#usr/lib/python3.10/site-packages/awscli/examples/ce/get-reservation-coverage.rst +#usr/lib/python3.10/site-packages/awscli/examples/ce/get-reservation-purchase-recommendation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ce/get-reservation-utilization.rst +#usr/lib/python3.10/site-packages/awscli/examples/ce/get-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime +#usr/lib/python3.10/site-packages/awscli/examples/chime/associate-phone-number-with-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/associate-phone-numbers-with-voice-connector-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/associate-phone-numbers-with-voice-connector.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/associate-signin-delegate-groups-with-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/batch-create-room-membership.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/batch-delete-phone-number.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/batch-suspend-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/batch-unsuspend-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/batch-update-phone-number.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/batch-update-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/create-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/create-bot.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/create-phone-number-order.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/create-proxy-session.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/create-room-membership.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/create-room.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/create-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/create-voice-connector-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/create-voice-connector.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-phone-number.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-proxy-session.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-room-membership.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-room.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-voice-connector-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-voice-connector-origination.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-voice-connector-proxy.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-voice-connector-streaming-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-voice-connector-termination-credentials.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-voice-connector-termination.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/delete-voice-connector.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/disassociate-phone-number-from-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/disassociate-phone-numbers-from-voice-connector-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/disassociate-phone-numbers-from-voice-connector.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/disassociate-signin-delegate-groups-from-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-account-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-bot.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-global-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-phone-number-order.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-phone-number-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-phone-number.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-proxy-session.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-room.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-user-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-voice-connector-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-voice-connector-logging-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-voice-connector-origination.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-voice-connector-proxy.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-voice-connector-streaming-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-voice-connector-termination-health.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-voice-connector-termination.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/get-voice-connector.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/invite-users.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-accounts.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-bots.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-phone-number-orders.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-phone-numbers.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-proxy-sessions.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-room-memberships.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-rooms.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-users.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-voice-connector-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-voice-connector-termination-credentials.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/list-voice-connectors.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/logout-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/put-voice-connector-logging-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/put-voice-connector-origination.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/put-voice-connector-proxy.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/put-voice-connector-streaming-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/put-voice-connector-termination-credentials.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/put-voice-connector-termination.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/regenerate-security-token.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/reset-personal-pin.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/restore-phone-number.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/search-available-phone-numbers.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-account-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-bot.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-global-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-phone-number-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-phone-number.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-proxy-session.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-room-membership.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-room.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-user-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-voice-connector-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/chime/update-voice-connector.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloud9 +#usr/lib/python3.10/site-packages/awscli/examples/cloud9/create-environment-ec2.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloud9/create-environment-membership.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloud9/delete-environment-membership.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloud9/delete-environment.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloud9/describe-environment-memberships.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloud9/describe-environment-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloud9/describe-environments.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloud9/list-environments.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloud9/update-environment-membership.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloud9/update-environment.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/_deploy_description.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/_package_description.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/cancel-update-stack.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/continue-update-rollback.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/create-change-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/create-stack-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/create-stack-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/create-stack.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/delete-change-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/delete-stack-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/delete-stack-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/delete-stack.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/deploy.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/deregister-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-account-limits.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-change-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-drift-detection-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-resource-drifts.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-set-operation.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stacks.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-type-registration.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/detect-stack-drift.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/detect-stack-resource-drift.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/detect-stack-set-drift.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/estimate-template-cost.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/execute-change-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/get-stack-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/get-template-summary.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/get-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-change-sets.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-exports.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-imports.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-stack-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-stack-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-stack-set-operation-results.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-stack-set-operations.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-stack-sets.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-stacks.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-type-registrations.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-type-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/package.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/register-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/set-stack-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/set-type-default-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/signal-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/stop-stack-set-operation.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/update-stack-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/update-stack-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/update-stack.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/update-termination-protection.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/validate-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/wait +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/wait/change-set-create-complete.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/wait/stack-create-complete.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/wait/stack-delete-complete.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/wait/stack-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/wait/stack-import-complete.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/wait/stack-rollback-complete.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/wait/stack-update-complete.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/wait/type-registration-complete.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/create-cloud-front-origin-access-identity.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/create-distribution-with-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/create-distribution.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/create-field-level-encryption-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/create-field-level-encryption-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/create-invalidation.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/create-public-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/delete-cloud-front-origin-access-identity.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/delete-distribution.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/delete-field-level-encryption-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/delete-field-level-encryption-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/delete-public-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-cloud-front-origin-access-identity-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-cloud-front-origin-access-identity.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-distribution-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-distribution.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-field-level-encryption-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-field-level-encryption-profile-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-field-level-encryption-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-field-level-encryption.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-invalidation.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-public-key-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/get-public-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/list-cloud-front-origin-access-identities.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/list-distributions.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/list-field-level-encryption-configs.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/list-field-level-encryption-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/list-invalidations.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/list-public-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/sign.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/update-cloud-front-origin-access-identity.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/update-distribution.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/update-field-level-encryption-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudfront/update-field-level-encryption-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudsearchdomain +#usr/lib/python3.10/site-packages/awscli/examples/cloudsearchdomain/upload-documents.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/add-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/create-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/create-trail.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/delete-trail.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/describe-trails.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/get-event-selectors.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/get-trail-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/list-public-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/list-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/lookup-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/put-event-selectors.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/remove-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/start-logging.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/stop-logging.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/update-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/update-trail.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudtrail/validate-logs.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/delete-alarms.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/describe-alarm-history.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/describe-alarms-for-metric.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/describe-alarms.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/disable-alarm-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/enable-alarm-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/get-metric-statistics.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/list-metrics.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/put-metric-alarm.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/put-metric-data.rst +#usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/set-alarm-state.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/batch-delete-builds.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/batch-get-build-batches.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/batch-get-builds.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/batch-get-projects.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/batch-get-report-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/batch-get-reports.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/create-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/create-report-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/create-webhook.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/delete-build-batch.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/delete-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/delete-report-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/delete-report.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/delete-source-credentials.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/delete-webhook.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/describe-code-coverages.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/describe-test-cases.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/import-source-credentials.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/invalidate-project-cache.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-build-batches-for-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-build-batches.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-builds-for-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-builds.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-curated-environment-images.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-projects.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-report-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-reports-for-report-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-reports.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-shared-projects.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-shared-report-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/list-source-credentials.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/retry-build-batch.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/retry-build.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/start-build-batch.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/start-build.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/stop-build-batch.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/stop-build.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/update-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/update-report-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/codebuild/update-webhook.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/associate-approval-rule-template-with-repository.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/batch-associate-approval-rule-template-with-repositories.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/batch-describe-merge-conflicts.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/batch-disassociate-approval-rule-template-from-repositories.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/batch-get-commits.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/batch-get-repositories.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/create-approval-rule-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/create-branch.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/create-commit.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/create-pull-request-approval-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/create-pull-request.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/create-repository.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/create-unreferenced-merge-commit.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/credential-helper.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/delete-approval-rule-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/delete-branch.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/delete-comment-content.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/delete-file.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/delete-pull-request-approval-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/delete-repository.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/describe-merge-conflicts.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/describe-pull-request-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/disassociate-approval-rule-template-from-repository.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/evaluate-pull-request-approval-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-approval-rule-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-blob.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-branch.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-comment-reactions.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-comment.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-comments-for-compared-commit.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-comments-for-pull-request.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-commit.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-differences.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-file.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-folder.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-merge-commit.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-merge-conflicts.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-merge-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-pull-request-approval-states.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-pull-request-override-state.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-pull-request.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-repository-triggers.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/get-repository.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/list-approval-rule-templates.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/list-associated-approval-rule-templates-for-repository.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/list-branches.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/list-pull-requests.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/list-repositories-for-approval-rule-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/list-repositories.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/merge-branches-by-fast-forward.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/merge-branches-by-squash.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/merge-branches-by-three-way.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/merge-pull-request-by-fast-forward.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/merge-pull-request-by-squash.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/merge-pull-request-by-three-way.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/override-pull-request-approval-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/post-comment-for-compared-commit.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/post-comment-for-pull-request.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/post-comment-reply.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/put-comment-reaction.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/put-file.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/put-repository-triggers.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/test-repository-triggers.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-approval-rule-template-content.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-approval-rule-template-description.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-approval-rule-template-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-comment.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-default-branch.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-pull-request-approval-rule-content.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-pull-request-approval-state.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-pull-request-description.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-pull-request-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-pull-request-title.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-repository-description.rst +#usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-repository-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/acknowledge-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/create-custom-action-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/create-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/delete-custom-action-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/delete-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/delete-webhook.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/deregister-webhook-with-third-party.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/disable-stage-transition.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/enable-stage-transition.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/get-job-details.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/get-pipeline-state.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/get-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/list-action-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/list-action-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/list-pipeline-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/list-pipelines.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/list-webhooks.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/poll-for-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/put-webhook.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/retry-stage-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/start-pipeline-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/stop-pipeline-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codepipeline/update-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/create-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/create-host.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/delete-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/delete-host.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/get-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/get-host.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/list-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/list-hosts.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-connections/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/create-notification-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/delete-notification-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/delete-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/describe-notification-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/list-event-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/list-notification-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/list-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/subscribe.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/unsubscribe.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar-notifications/update-notification-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/associate-team-member.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/create-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/create-user-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/delete-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/delete-user-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/describe-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/describe-user-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/disassociate-team-member.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/list-projects.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/list-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/list-tags-for-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/list-team-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/list-user-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/tag-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/untag-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/update-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/update-team-member.rst +#usr/lib/python3.10/site-packages/awscli/examples/codestar/update-user-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-identity +#usr/lib/python3.10/site-packages/awscli/examples/cognito-identity/create-identity-pool.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-identity/delete-identities.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-identity/delete-identity-pool.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-identity/describe-identity-pool.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-identity/get-identity-pool-roles.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-identity/list-identity-pools.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-identity/set-identity-pool-roles.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-identity/update-identity-pool.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/add-custom-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admim-disable-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admim-enable-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-add-user-to-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-confirm-sign-up.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-create-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-delete-user-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-delete-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-forget-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-get-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-get-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-initiate-auth.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-list-devices.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-list-groups-for-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-list-user-auth-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-remove-user-from-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-reset-user-password.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-set-user-mfa-preference.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-set-user-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-update-auth-event-feedback.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-update-device-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/admin-update-user-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/change-password.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/confirm-forgot-password.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/confirm-sign-up.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/create-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/create-user-import-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/create-user-pool-client.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/create-user-pool-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/create-user-pool.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/delete-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/delete-identity-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/delete-resource-server.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/delete-user-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/delete-user-pool-client.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/delete-user-pool-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/delete-user-pool.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/delete-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/describe-identity-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/describe-resource-server.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/describe-risk-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/describe-user-import-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/describe-user-pool-client.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/describe-user-pool-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/describe-user-pool.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/forget-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/forgot-password.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/get-csv-header.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/get-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/get-signing-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/get-ui-customization.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/list-user-import-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/list-user-pools.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/list-users-in-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/list-users.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/resend-confirmation-code.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/respond-to-auth-challenge.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/set-risk-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/set-ui-customization.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/set-user-mfa-preference.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/set-user-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/sign-up.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/start-user-import-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/stop-user-import-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/update-auth-event-feedback.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/update-device-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/update-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/update-resource-server.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/update-user-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/update-user-pool-client.rst +#usr/lib/python3.10/site-packages/awscli/examples/cognito-idp/update-user-pool.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/describe-entities-detection-v2-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/describe-icd10-cm-inference-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/describe-phi-detection-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/describe-rx-norm-inference-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/detect-entities-v2.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/detect-phi.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/infer-icd10-cm.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/infer-rx-norm.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/list-entities-detection-v2-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/list-icd10-cm-inference-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/list-phi-detection-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/list-rx-norm-inference-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/start-entities-detection-v2-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/start-icd10-cm-inference-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/start-phi-detection-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/start-rx-norm-inference-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/stop-entities-detection-v2-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/stop-icd10-cm-inference-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/stop-phi-detection-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/comprehendmedical/stop-rx-norm-inference-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice +#usr/lib/python3.10/site-packages/awscli/examples/configservice/delete-config-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/delete-delivery-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/delete-evaluation-results.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/deliver-config-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/describe-compliance-by-config-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/describe-compliance-by-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/describe-config-rule-evaluation-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/describe-config-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/describe-configuration-recorder-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/describe-configuration-recorders.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/describe-delivery-channel-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/describe-delivery-channels.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/get-compliance-details-by-config-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/get-compliance-details-by-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/get-compliance-summary-by-config-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/get-compliance-summary-by-resource-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/get-resource-config-history.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/get-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/list-discovered-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/put-config-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/put-configuration-recorder.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/put-delivery-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/start-config-rules-evaluation.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/start-configuration-recorder.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/stop-configuration-recorder.rst +#usr/lib/python3.10/site-packages/awscli/examples/configservice/subscribe.rst +#usr/lib/python3.10/site-packages/awscli/examples/configure +#usr/lib/python3.10/site-packages/awscli/examples/configure/_description.rst +#usr/lib/python3.10/site-packages/awscli/examples/configure/add-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/configure/get +#usr/lib/python3.10/site-packages/awscli/examples/configure/get/_description.rst +#usr/lib/python3.10/site-packages/awscli/examples/configure/get/_examples.rst +#usr/lib/python3.10/site-packages/awscli/examples/configure/set +#usr/lib/python3.10/site-packages/awscli/examples/configure/set/_description.rst +#usr/lib/python3.10/site-packages/awscli/examples/configure/set/_examples.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect +#usr/lib/python3.10/site-packages/awscli/examples/connect/create-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/delete-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/describe-user-hierarchy-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/describe-user-hierarchy-structure.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/describe-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/get-contact-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/list-contact-flows.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/list-hours-of-operations.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/list-phone-numbers.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/list-queues.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/list-routing-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/list-security-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/list-user-hierarchy-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/list-users.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/update-contact-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/update-user-hierarchy.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/update-user-identity-info.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/update-user-phone-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/update-user-routing-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/connect/update-user-security-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/cur +#usr/lib/python3.10/site-packages/awscli/examples/cur/delete-report-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/cur/describe-report-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/cur/put-report-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/activate-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/add-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/create-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/deactivate-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/delete-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/describe-pipelines.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/get-pipeline-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/list-pipelines.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/list-runs.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/put-pipeline-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/datapipeline/remove-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax +#usr/lib/python3.10/site-packages/awscli/examples/dax/create-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/create-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/create-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/decrease-replication-factor.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/delete-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/delete-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/delete-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/describe-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/describe-default-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/describe-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/describe-parameter-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/describe-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/describe-subnet-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/increase-replication-factor.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/list-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/dax/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy +#usr/lib/python3.10/site-packages/awscli/examples/deploy/add-tags-to-on-premises-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/batch-get-application-revisions.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/batch-get-applications.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/batch-get-deployment-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/batch-get-deployment-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/batch-get-deployments.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/batch-get-on-premises-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/continue-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/create-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/create-deployment-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/create-deployment-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/create-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/delete-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/delete-deployment-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/delete-deployment-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/delete-git-hub-account-token.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/deregister-on-premises-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/deregister.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/get-application-revision.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/get-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/get-deployment-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/get-deployment-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/get-deployment-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/get-deployment-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/get-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/get-on-premises-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/install.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/list-application-revisions.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/list-applications.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/list-deployment-configs.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/list-deployment-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/list-deployment-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/list-deployment-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/list-deployments.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/list-git-hub-account-token-names.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/list-on-premises-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/push.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/register-application-revision.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/register-on-premises-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/register.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/remove-tags-from-on-premises-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/stop-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/uninstall.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/update-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/update-deployment-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/deploy/wait +#usr/lib/python3.10/site-packages/awscli/examples/deploy/wait/deployment-successful.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective +#usr/lib/python3.10/site-packages/awscli/examples/detective/accept-invitation.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective/create-graph.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective/create-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective/delete-graph.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective/delete-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective/disassociate-membership.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective/get-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective/list-graphs.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective/list-invitations.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective/list-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/detective/reject-invitation.rst +#usr/lib/python3.10/site-packages/awscli/examples/devicefarm +#usr/lib/python3.10/site-packages/awscli/examples/devicefarm/create-device-pool.rst +#usr/lib/python3.10/site-packages/awscli/examples/devicefarm/create-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/devicefarm/create-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/devicefarm/get-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/devicefarm/list-projects.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/accept-direct-connect-gateway-association-proposal.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/allocate-connection-on-interconnect.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/allocate-hosted-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/allocate-private-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/allocate-public-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/allocate-transit-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/associate-connection-with-lag.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/associate-hosted-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/associate-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/confirm-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/confirm-private-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/confirm-public-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/confirm-transit-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/create-bgp-peer.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/create-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/create-direct-connect-gateway-association-proposal.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/create-direct-connect-gateway-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/create-direct-connect-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/create-interconnect.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/create-lag.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/create-private-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/create-public-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/create-transit-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/delete-bgp-peer.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/delete-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/delete-direct-connect-gateway-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/delete-direct-connect-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/delete-interconnect.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/delete-lag.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/delete-virtual-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-connection-loa.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-connections-on-interconnect.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-direct-connect-gateway-association-proposals.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-direct-connect-gateway-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-direct-connect-gateway-attachments.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-direct-connect-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-hosted-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-interconnect-loa.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-interconnects.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-lags.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-loa.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-locations.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-virtual-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/describe-virtual-interfaces.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/disassociate-connection-from-lag.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/update-direct-connect-gateway-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/update-lag.rst +#usr/lib/python3.10/site-packages/awscli/examples/directconnect/update-virtual-interface-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/discovery +#usr/lib/python3.10/site-packages/awscli/examples/discovery/describe-agents.rst +#usr/lib/python3.10/site-packages/awscli/examples/discovery/describe-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/discovery/list-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/dlm +#usr/lib/python3.10/site-packages/awscli/examples/dlm/create-default-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/dlm/create-lifecycle-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/dlm/delete-lifecycle-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/dlm/get-lifecycle-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/dlm/get-lifecycle-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/dlm/update-lifecycle-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms +#usr/lib/python3.10/site-packages/awscli/examples/dms/add-tags-to-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/create-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/create-event-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/create-replication-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/create-replication-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/create-replication-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/delete-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/delete-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/delete-event-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/delete-replication-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/delete-replication-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/delete-replication-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-account-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-endpoint-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-endpoints.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-event-categories.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-event-subscriptions.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-orderable-replication-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-refresh-schemas-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-replication-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-replication-subnet-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-replication-task-assessment-results.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-replication-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/describe-schemas.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/modify-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/modify-event-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/modify-replication-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/modify-replication-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/modify-replication-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/reboot-replication-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/refresh-schemas.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/reload-tables.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/remove-tags-from-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/start-replication-task-assessment.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/start-replication-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/stop-replication-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/dms/test-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb +#usr/lib/python3.10/site-packages/awscli/examples/docdb/add-tags-to-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/apply-pending-maintenance-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/copy-db-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/copy-db-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/create-db-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/create-db-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/create-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/create-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/create-db-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/delete-db-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/delete-db-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/delete-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/delete-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/delete-db-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-db-cluster-parameter-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-db-cluster-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-db-cluster-snapshot-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-db-cluster-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-db-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-db-engine-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-db-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-db-subnet-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-engine-default-cluster-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-event-categories.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-orderable-db-instance-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/describe-pending-maintenance-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/failover-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/modify-db-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/modify-db-cluster-snapshot-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/modify-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/modify-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/modify-db-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/reboot-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/remove-tags-from-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/reset-db-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/restore-db-cluster-from-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/restore-db-cluster-to-point-in-time.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/start-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/stop-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/wait +#usr/lib/python3.10/site-packages/awscli/examples/docdb/wait/db-instance-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/docdb/wait/db-instance-deleted.rst +#usr/lib/python3.10/site-packages/awscli/examples/ds +#usr/lib/python3.10/site-packages/awscli/examples/ds/describe-directories.rst +#usr/lib/python3.10/site-packages/awscli/examples/ds/describe-trusts.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/batch-get-item.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/batch-write-item.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/create-backup.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/create-global-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/create-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/delete-backup.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/delete-item.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/delete-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/describe-backup.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/describe-continuous-backups.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/describe-contributor-insights.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/describe-endpoints.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/describe-global-table-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/describe-global-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/describe-limits.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/describe-table-replica-auto-scaling.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/describe-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/describe-time-to-live.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/get-item.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/list-backups.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/list-contributor-insights.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/list-global-tables.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/list-tables.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/list-tags-of-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/put-item.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/query.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/restore-table-from-backup.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/restore-table-to-point-in-time.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/scan.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/transact-get-items.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/transact-write-items.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/update-continuous-backups.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/update-contributor-insights.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/update-global-table-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/update-global-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/update-item.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/update-table-replica-auto-scaling.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/update-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/update-time-to-live.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/wait +#usr/lib/python3.10/site-packages/awscli/examples/dynamodb/wait/table-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodbstreams +#usr/lib/python3.10/site-packages/awscli/examples/dynamodbstreams/describe-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodbstreams/get-records.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodbstreams/get-shard-iterator.rst +#usr/lib/python3.10/site-packages/awscli/examples/dynamodbstreams/list-streams.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2 +#usr/lib/python3.10/site-packages/awscli/examples/ec2-instance-connect +#usr/lib/python3.10/site-packages/awscli/examples/ec2-instance-connect/send-ssh-public-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/accept-reserved-instances-exchange-quote.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/accept-transit-gateway-peering-attachment.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/accept-transit-gateway-vpc-attachment.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/accept-vpc-endpoint-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/accept-vpc-peering-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/advertise-byoip-cidr.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/allocate-address.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/allocate-hosts.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/apply-security-groups-to-client-vpn-target-network.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/assign-ipv6-addresses.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/assign-private-ip-addresses.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-address.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-client-vpn-target-network.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-dhcp-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-iam-instance-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-route-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-subnet-cidr-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-transit-gateway-multicast-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-transit-gateway-route-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-vpc-cidr-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/attach-classic-link-vpc.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/attach-internet-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/attach-network-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/attach-volume.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/attach-vpn-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/authorize-client-vpn-ingress.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/authorize-security-group-egress.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/authorize-security-group-ingress.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/bundle-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-bundle-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-capacity-reservation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-conversion-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-export-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-import-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-reserved-instances-listing.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-spot-fleet-requests.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-spot-instance-requests.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/confirm-product-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/copy-fpga-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/copy-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/copy-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-capacity-reservation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-client-vpn-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-client-vpn-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-customer-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-default-subnet.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-default-vpc.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-dhcp-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-egress-only-internet-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-fleet.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-flow-logs.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-fpga-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-instance-export-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-internet-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-key-pair.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-launch-template-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-launch-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-local-gateway-route-table-vpc-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-local-gateway-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-managed-prefix-list.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-nat-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-network-acl-entry.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-network-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-network-interface-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-network-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-placement-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-reserved-instances-listing.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-route-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-security-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-spot-datafeed-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-subnet.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-traffic-mirror-filter-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-traffic-mirror-filter.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-traffic-mirror-session.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-traffic-mirror-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-peering-attachment.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-prefix-list-reference.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-route-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-vpc-attachment.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-volume.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpc-endpoint-connection-notification.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpc-endpoint-service-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpc-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpc-peering-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpc.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpn-connection-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpn-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpn-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-client-vpn-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-client-vpn-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-customer-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-dhcp-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-egress-only-internet-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-fleets.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-flow-logs.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-fpga-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-internet-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-key-pair.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-launch-template-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-launch-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-local-gateway-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-managed-prefix-list.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-nat-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-acl-entry.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-interface-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-placement-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-queued-reserved-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-route-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-security-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-spot-datafeed-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-subnet.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-traffic-mirror-filter-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-traffic-mirror-filter.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-traffic-mirror-session.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-traffic-mirror-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-multicast-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-peering-attachment.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-prefix-list-reference.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-route-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-vpc-attachment.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-volume.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-vpc-endpoint-connection-notifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-vpc-endpoint-service-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-vpc-endpoints.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-vpc-peering-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-vpc.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-vpn-connection-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-vpn-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-vpn-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/deprovision-byoip-cidr.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/deregister-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/deregister-instance-event-notification-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/deregister-transit-gateway-multicast-group-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/deregister-transit-gateway-multicast-group-source.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-account-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-addresses.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-aggregate-id-format.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-availability-zones.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-bundle-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-byoip-cidrs.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-capacity-reservations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-classic-link-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-client-vpn-authorization-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-client-vpn-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-client-vpn-endpoints.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-client-vpn-routes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-client-vpn-target-networks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-conversion-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-customer-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-dhcp-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-egress-only-internet-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-elastic-gpus.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-export-image-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-export-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-fast-snapshot-restores.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-fleet-history.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-fleet-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-fleets.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-flow-logs.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-fpga-image-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-fpga-images.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-host-reservation-offerings.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-host-reservations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-hosts.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-iam-instance-profile-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-id-format.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-identity-id-format.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-image-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-images.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-import-image-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-import-snapshot-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-credit-specifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-event-notification-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-type-offerings.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-internet-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-ipv6-pools.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-key-pairs.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-launch-template-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-launch-templates.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-local-gateway-route-table-vpc-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-local-gateway-route-tables.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-local-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-managed-prefix-lists.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-moving-addresses.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-nat-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-acls.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-interface-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-interface-permissions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-interfaces.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-placement-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-prefix-lists.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-principal-id-format.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-public-ipv4-pools.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-regions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-reserved-instances-listings.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-reserved-instances-modifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-reserved-instances-offerings.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-reserved-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-route-tables.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-scheduled-instance-availability.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-scheduled-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-security-group-references.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-security-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-snapshot-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-spot-datafeed-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-spot-fleet-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-spot-fleet-request-history.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-spot-fleet-requests.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-spot-instance-requests.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-spot-price-history.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-stale-security-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-subnets.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-traffic-mirror-filters.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-traffic-mirror-sessions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-traffic-mirror-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-attachments.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-peering-attachments.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-route-tables.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-vpc-attachments.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-volume-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-volume-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-volumes-modifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-volumes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpc-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpc-classic-link-dns-support.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpc-classic-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpc-endpoint-connection-notifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpc-endpoint-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpc-endpoint-service-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpc-endpoint-service-permissions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpc-endpoint-services.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpc-endpoints.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpc-peering-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpcs.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpn-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-vpn-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/detach-classic-link-vpc.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/detach-internet-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/detach-network-interface.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/detach-volume.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/detach-vpn-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-ebs-encryption-by-default.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-fast-snapshot-restores.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-transit-gateway-route-table-propagation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-vgw-route-propagation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-vpc-classic-link-dns-support.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-vpc-classic-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-address.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-client-vpn-target-network.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-iam-instance-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-route-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-subnet-cidr-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-transit-gateway-multicast-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-transit-gateway-route-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-vpc-cidr-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-ebs-encryption-by-default.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-fast-snapshot-restores.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-transit-gateway-route-table-propagation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-vgw-route-propagation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-volume-io.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-vpc-classic-link-dns-support.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-vpc-classic-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/export-client-vpn-client-certificate-revocation-list.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/export-client-vpn-client-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/export-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-associated-ipv6-pool-cidrs.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-capacity-reservation-usage.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-console-output.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-console-screenshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-default-credit-specification.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-ebs-default-kms-key-id.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-ebs-encryption-by-default.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-groups-for-capacity-reservation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-host-reservation-purchase-preview.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-launch-template-data.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-managed-prefix-list-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-managed-prefix-list-entries.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-password-data.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-reserved-instances-exchange-quote.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-transit-gateway-attachment-propagations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-transit-gateway-multicast-domain-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-transit-gateway-prefix-list-references.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-transit-gateway-route-table-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-transit-gateway-route-table-propagations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/import-client-vpn-client-certificate-revocation-list.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/import-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/import-key-pair.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/import-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-availability-zone-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-capacity-reservation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-client-vpn-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-default-credit-specification.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-ebs-default-kms-key-id.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-fleet.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-fpga-image-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-hosts.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-id-format.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-identity-id-format.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-image-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-capacity-reservation-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-credit-specification.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-event-start-time.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-metadata-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-placement.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-launch-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-managed-prefix-list.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-network-interface-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-reserved-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-snapshot-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-spot-fleet-request.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-subnet-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-traffic-mirror-filter-network-services.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-traffic-mirror-filter-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-traffic-mirror-session.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-transit-gateway-prefix-list-reference.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-transit-gateway-vpc-attachment.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-transit-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-volume-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-volume.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpc-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpc-endpoint-connection-notification.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpc-endpoint-service-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpc-endpoint-service-permissions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpc-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpc-peering-connection-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpc-tenancy.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpn-connection-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpn-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpn-tunnel-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpn-tunnel-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/monitor-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/move-address-to-vpc.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/provision-byoip-cidr.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/purchase-host-reservation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/purchase-reserved-instance-offering.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/purchase-reserved-instances-offering.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/purchase-scheduled-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reboot-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/register-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/register-instance-event-notification-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/register-transit-gateway-multicast-group-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/register-transit-gateway-multicast-group-source.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reject-transit-gateway-peering-attachment.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reject-transit-gateway-vpc-attachments.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reject-vpc-endpoint-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reject-vpc-peering-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/release-address.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/release-hosts.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/replace-iam-instance-profile-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/replace-network-acl-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/replace-network-acl-entry.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/replace-route-table-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/replace-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/replace-transit-gateway-route.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/report-instance-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/request-spot-fleet.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/request-spot-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-ebs-default-kms-key-id.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-fpga-image-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-image-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-instance-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-network-interface-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-snapshot-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/restore-address-to-classic.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/restore-managed-prefix-list-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/revoke-client-vpn-ingress.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/revoke-security-group-egress.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/revoke-security-group-ingress.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/run-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/run-scheduled-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/search-local-gateway-routes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/search-transit-gateway-multicast-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/search-transit-gateway-routes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/send-diagnostic-interrupt.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/start-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/stop-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/terminate-client-vpn-connections.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/terminate-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/unassign-ipv6-addresses.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/unassign-private-ip-addresses.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/unmonitor-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/update-security-group-rule-descriptions-egress.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/update-security-group-rule-descriptions-ingress.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/bundle-task-complete.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/conversion-task-cancelled.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/conversion-task-completed.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/conversion-task-deleted.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/customer-gateway-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/export-task-cancelled.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/export-task-completed.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/image-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/image-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/instance-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/instance-running.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/instance-status-ok.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/instance-stopped.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/instance-terminated.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/key-pair-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/nat-gateway-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/network-interface-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/password-data-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/security-group-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/snapshot-completed.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/spot-instance-request-fulfilled.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/subnet-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/system-status-ok.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/volume-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/volume-deleted.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/volume-in-use.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/vpc-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/vpc-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/vpc-peering-connection-deleted.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/vpc-peering-connection-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/vpn-connection-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/wait/vpn-connection-deleted.rst +#usr/lib/python3.10/site-packages/awscli/examples/ec2/withdraw-byoip-cidr.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr +#usr/lib/python3.10/site-packages/awscli/examples/ecr-public +#usr/lib/python3.10/site-packages/awscli/examples/ecr-public/get-login-password_description.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/batch-check-layer-availability.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/batch-delete-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/batch-get-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/complete-layer-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/create-repository.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/delete-lifecycle-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/delete-repository-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/delete-repository.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/describe-image-scan-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/describe-images.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/describe-repositories.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/get-authorization-token.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/get-download-url-for-layer.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/get-lifecycle-policy-preview.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/get-lifecycle-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/get-login-password.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/get-login-password_description.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/get-login.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/get-login_description.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/get-repository-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/initiate-layer-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/list-images.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/put-image-scanning-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/put-image-tag-mutability.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/put-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/put-lifecycle-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/set-repository-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/start-image-scan.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/start-lifecycle-policy-preview.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecr/upload-layer-part.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs +#usr/lib/python3.10/site-packages/awscli/examples/ecs/create-capacity-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/create-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/create-service.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/create-task-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/delete-account-setting.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/delete-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/delete-capacity-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/delete-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/delete-service.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/delete-task-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/deregister-container-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/deregister-task-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/describe-capacity-providers.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/describe-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/describe-container-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/describe-services.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/describe-task-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/describe-task-sets.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/describe-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/list-account-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/list-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/list-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/list-container-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/list-services.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/list-task-definition-families.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/list-task-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/list-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/put-account-setting-default.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/put-account-setting.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/put-account-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/put-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/put-cluster-capacity-providers.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/register-task-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/run-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/start-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/stop-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/update-cluster-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/update-container-agent.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/update-container-instances-state.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/update-service-primary-task-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/update-service.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/update-task-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/ecs/wait +#usr/lib/python3.10/site-packages/awscli/examples/ecs/wait/services-stable.rst +#usr/lib/python3.10/site-packages/awscli/examples/efs +#usr/lib/python3.10/site-packages/awscli/examples/efs/create-file-system.rst +#usr/lib/python3.10/site-packages/awscli/examples/efs/create-mount-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/efs/delete-file-system.rst +#usr/lib/python3.10/site-packages/awscli/examples/efs/delete-mount-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/efs/describe-file-systems.rst +#usr/lib/python3.10/site-packages/awscli/examples/efs/describe-mount-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/efs/describe-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/efs/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/efs/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/efs/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks +#usr/lib/python3.10/site-packages/awscli/examples/eks/create-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/delete-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/describe-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/describe-update.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/get-token.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/list-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/list-updates.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/update-cluster-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/update-cluster-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/update-kubeconfig +#usr/lib/python3.10/site-packages/awscli/examples/eks/update-kubeconfig.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/update-kubeconfig/_description.rst +#usr/lib/python3.10/site-packages/awscli/examples/eks/wait.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/add-tags-to-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/authorize-cache-security-group-ingress.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/batch-apply-update-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/batch-stop-update-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/copy-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/create-cache-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/create-cache-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/create-cache-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/create-global-replication-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/create-replication-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/create-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/create-user-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/create-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/decrease-node-groups-in-global-replication-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/decrease-replica-count.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/delete-cache-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/delete-cache-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/delete-cache-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/delete-global-replication-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/delete-replication-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/delete-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/delete-user-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/delete-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-cache-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-cache-engine-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-cache-parameter-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-cache-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-cache-subnet-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-engine-default-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-global-replication-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-replication-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-reserved-cache-nodes-offerings.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-reserved-cache-nodes.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-service-updates.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-update-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-user-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/describe-users.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/disassociate-global-replication-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/increase-node-groups-in-global-replication-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/increase-replica-count.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/list-allowed-node-type-modifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/modify-cache-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/modify-cache-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/modify-cache-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/modify-global-replication-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/modify-replication-group-shard-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/modify-replication-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/modify-user-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/modify-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/purchase-reserved-cache-nodes-offering.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/reboot-cache-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/reset-cache-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/start-migration.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticache/test-failover.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/abort-environment-update.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/check-dns-availability.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/create-application-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/create-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/create-configuration-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/create-environment.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/create-storage-location.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/delete-application-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/delete-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/delete-configuration-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/delete-environment-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/describe-application-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/describe-applications.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/describe-configuration-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/describe-configuration-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/describe-environment-health.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/describe-environment-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/describe-environments.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/describe-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/describe-instances-health.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/list-available-solution-stacks.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/rebuild-environment.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/request-environment-info.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/restart-app-server.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/retrieve-environment-info.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/swap-environment-cnames.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/terminate-environment.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/update-application-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/update-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/update-configuration-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/update-environment.rst +#usr/lib/python3.10/site-packages/awscli/examples/elasticbeanstalk/validate-configuration-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/cancel-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/create-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/create-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/create-preset.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/delete-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/delete-preset.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/list-jobs-by-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/list-jobs-by-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/list-pipelines.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/list-presets.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/read-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/read-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/read-preset.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/update-pipeline-notifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/update-pipeline-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/elastictranscoder/update-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb +#usr/lib/python3.10/site-packages/awscli/examples/elb/add-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/apply-security-groups-to-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/attach-load-balancer-to-subnets.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/configure-health-check.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/create-app-cookie-stickiness-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/create-lb-cookie-stickiness-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/create-load-balancer-listeners.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/create-load-balancer-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/create-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/delete-load-balancer-listeners.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/delete-load-balancer-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/delete-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/deregister-instances-from-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/describe-account-limits.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/describe-instance-health.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/describe-load-balancer-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/describe-load-balancer-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/describe-load-balancer-policy-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/describe-load-balancers.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/describe-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/detach-load-balancer-from-subnets.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/disable-availability-zones-for-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/enable-availability-zones-for-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/modify-load-balancer-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/register-instances-with-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/remove-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/set-load-balancer-listener-ssl-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/set-load-balancer-policies-for-backend-server.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/set-load-balancer-policies-of-listener.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/wait +#usr/lib/python3.10/site-packages/awscli/examples/elb/wait/any-instance-in-service.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/wait/instance-deregistered.rst +#usr/lib/python3.10/site-packages/awscli/examples/elb/wait/instance-in-service.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2 +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/add-listener-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/add-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/create-listener.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/create-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/create-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/create-target-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/delete-listener.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/delete-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/delete-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/delete-target-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/deregister-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-account-limits.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-listener-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-listeners.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-load-balancer-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-load-balancers.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-ssl-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-target-group-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-target-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/describe-target-health.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/modify-listener.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/modify-load-balancer-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/modify-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/modify-target-group-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/modify-target-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/register-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/remove-listener-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/remove-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/set-ip-address-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/set-rule-priorities.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/set-security-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/set-subnets.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/wait +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/wait/load-balancer-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/wait/load-balancer-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/wait/load-balancers-deleted.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/wait/target-deregistered.rst +#usr/lib/python3.10/site-packages/awscli/examples/elbv2/wait/target-in-service.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr +#usr/lib/python3.10/site-packages/awscli/examples/emr/add-instance-fleet.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/add-steps.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/add-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/create-cluster-examples.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/create-cluster-synopsis.txt +#usr/lib/python3.10/site-packages/awscli/examples/emr/create-default-roles.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/create-security-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/delete-security-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/describe-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/describe-step.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/get.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/list-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/list-instance-fleets.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/list-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/list-security-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/list-steps.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/modify-cluster-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/modify-instance-fleet.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/put.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/remove-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/schedule-hbase-backup.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/socks.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/ssh.rst +#usr/lib/python3.10/site-packages/awscli/examples/emr/wait.rst +#usr/lib/python3.10/site-packages/awscli/examples/es +#usr/lib/python3.10/site-packages/awscli/examples/es/create-elasticsearch-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/es/describe-elasticsearch-domain-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/es/describe-elasticsearch-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/es/describe-elasticsearch-domains.rst +#usr/lib/python3.10/site-packages/awscli/examples/es/describe-reserved-elasticsearch-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/es/list-domain-names.rst +#usr/lib/python3.10/site-packages/awscli/examples/events +#usr/lib/python3.10/site-packages/awscli/examples/events/delete-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/describe-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/disable-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/enable-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/list-rule-names-by-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/list-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/list-targets-by-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/put-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/put-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/put-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/remove-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/events/test-event-pattern.rst +#usr/lib/python3.10/site-packages/awscli/examples/firehose +#usr/lib/python3.10/site-packages/awscli/examples/firehose/list-delivery-streams.rst +#usr/lib/python3.10/site-packages/awscli/examples/firehose/put-record-batch.rst +#usr/lib/python3.10/site-packages/awscli/examples/firehose/put-record.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms +#usr/lib/python3.10/site-packages/awscli/examples/fms/associate-admin-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/delete-notification-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/delete-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/disassociate-admin-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/get-admin-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/get-compliance-detail.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/get-notification-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/get-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/list-compliance-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/list-member-accounts.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/list-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/put-notification-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/fms/put-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/create-build.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/create-fleet.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/create-game-session-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/delete-build.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/delete-fleet.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/delete-game-session-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/describe-build.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/describe-ec2-instance-limits.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/describe-fleet-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/describe-fleet-capacity.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/describe-fleet-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/describe-fleet-port-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/describe-fleet-utilization.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/describe-game-session-queues.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/describe-runtime-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/list-builds.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/list-fleets.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/request-upload-credentials.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/start-fleet-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/stop-fleet-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/update-build.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/update-game-session-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/gamelift/upload-build.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier +#usr/lib/python3.10/site-packages/awscli/examples/glacier/abort-multipart-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/abort-vault-lock.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/add-tags-to-vault.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/complete-multipart-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/complete-vault-lock.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/create-vault.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/delete-archive.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/delete-vault-access-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/delete-vault-notifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/delete-vault.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/describe-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/describe-vault.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/get-data-retrieval-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/get-job-output.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/get-vault-access-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/get-vault-lock.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/get-vault-notifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/initiate-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/initiate-multipart-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/initiate-vault-lock.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/list-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/list-multipart-uploads.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/list-parts.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/list-provisioned-capacity.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/list-tags-for-vault.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/list-vaults.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/purchase-provisioned-capacity.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/remove-tags-from-vault.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/set-data-retrieval-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/set-vault-access-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/set-vault-notifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/upload-archive.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/upload-multipart-part.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/wait +#usr/lib/python3.10/site-packages/awscli/examples/glacier/wait/vault-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/glacier/wait/vault-not-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/advertise-byoip-cidr.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/create-accelerator.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/create-endpoint-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/create-listener.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/deprovision-byoip-cidr.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-accelerator-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-accelerator.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-endpoint-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-listener.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-accelerators.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-byoip-cidr.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-endpoint-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-listeners.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/provision-byoip-cidr.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-accelerator-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-accelerator.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-endpoint-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-listener.rst +#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/withdraw-byoip-cidr.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue +#usr/lib/python3.10/site-packages/awscli/examples/glue/batch-stop-job-run.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/create-connection.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/create-database.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/create-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/create-table.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/delete-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/get-databases.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/get-job-run.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/get-job-runs.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/get-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/get-plan.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/get-tables.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/start-crawler.rst +#usr/lib/python3.10/site-packages/awscli/examples/glue/start-job-run.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/associate-role-to-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/associate-service-role-to-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-connector-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-connector-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-core-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-core-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-device-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-device-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-function-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-function-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-group-certificate-authority.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-group-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-logger-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-logger-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-resource-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-resource-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-software-update-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-subscription-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/create-subscription-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/delete-connector-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/delete-core-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/delete-device-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/delete-function-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/delete-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/delete-logger-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/delete-resource-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/delete-subscription-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/disassociate-role-from-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/disassociate-service-role-from-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-associated-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-bulk-deployment-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-connectivity-info.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-connector-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-connector-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-core-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-core-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-deployment-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-device-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-device-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-function-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-function-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-group-certificate-authority.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-group-certificate-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-group-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-logger-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-logger-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-resource-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-resource-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-service-role-for-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-subscription-definition-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-subscription-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-bulk-deployment-detailed-reports.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-bulk-deployments.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-connector-definition-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-connector-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-core-definition-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-core-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-deployments.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-device-definition-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-device-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-function-definition-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-function-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-group-certificate-authorities.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-group-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-logger-definition-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-logger-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-resource-definition-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-resource-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-subscription-definition-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-subscription-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/reset-deployments.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/start-bulk-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/stop-bulk-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-connectivity-info.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-connector-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-core-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-device-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-function-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-group-certificate-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-logger-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-resource-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-subscription-definition.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/accept-invitation.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/archive-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/create-detector.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/create-filter.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/create-ip-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/create-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/create-publishing-destination.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/create-sample-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/create-threat-intel-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/decline-invitations.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/delete-detector.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/delete-filter.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/disable-organization-admin-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/disassociate-from-master-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/get-detector.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/get-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/get-ip-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/get-master-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/list-detectors.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/list-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/list-invitations.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/list-ip-sets.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/list-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/guardduty/update-ip-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/health +#usr/lib/python3.10/site-packages/awscli/examples/health/describe-affected-entities.rst +#usr/lib/python3.10/site-packages/awscli/examples/health/describe-event-details.rst +#usr/lib/python3.10/site-packages/awscli/examples/health/describe-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam +#usr/lib/python3.10/site-packages/awscli/examples/iam/add-client-id-to-open-id-connect-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/add-role-to-instance-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/add-user-to-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/attach-group-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/attach-role-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/attach-user-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/change-password.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-access-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-account-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-instance-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-login-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-open-id-connect-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-policy-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-saml-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-service-linked-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-service-specific-credential.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/create-virtual-mfa-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/deactivate-mfa-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/decode-authorization-message.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-access-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-account-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-account-password-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-group-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-instance-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-login-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-open-id-connect-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-policy-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-role-permissions-boundary.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-role-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-saml-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-server-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-service-linked-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-service-specific-credential.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-signing-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-ssh-public-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-user-permissions-boundary.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-user-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/delete-virtual-mfa-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/detach-group-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/detach-role-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/detach-user-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/enable-mfa-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/generate-credential-report.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/generate-organizations-access-report.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/generate-service-last-accessed-details.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-access-key-last-used.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-account-authorization-details.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-account-password-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-account-summary.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-context-keys-for-custom-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-context-keys-for-principal-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-credential-report.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-group-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-instance-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-login-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-open-id-connect-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-organizations-access-report.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-policy-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-role-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-saml-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-server-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-service-last-accessed-details-with-entities.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-service-last-accessed-details.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-service-linked-role-deletion-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-ssh-public-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-user-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/get-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-access-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-account-aliases.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-attached-group-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-attached-role-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-attached-user-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-entities-for-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-group-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-groups-for-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-instance-profiles-for-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-instance-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-mfa-devices.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-open-id-connect-providers.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-policies-granting-service-access.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-policy-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-role-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-role-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-roles.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-saml-providers.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-server-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-service-specific-credential.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-service-specific-credentials.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-signing-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-ssh-public-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-user-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-user-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-users.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/list-virtual-mfa-devices.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/put-group-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/put-role-permissions-boundary.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/put-role-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/put-user-permissions-boundary.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/put-user-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/remove-client-id-from-open-id-connect-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/remove-role-from-instance-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/remove-user-from-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/reset-service-specific-credential.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/resync-mfa-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/set-default-policy-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/set-security-token-service-preferences.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/simulate-custom-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/simulate-principal-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/tag-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/tag-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/untag-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/untag-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-access-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-account-password-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-assume-role-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-login-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-open-id-connect-provider-thumbprint.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-role-description.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-saml-provider.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-server-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-service-specific-credential.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-signing-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-ssh-public-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/update-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/upload-server-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/upload-signing-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/upload-ssh-public-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/wait +#usr/lib/python3.10/site-packages/awscli/examples/iam/wait/instance-profile-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/wait/policy-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/wait/role-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/iam/wait/user-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/create-component.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/create-distribution-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/create-image-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/create-image-recipe.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/create-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/create-infrastructure-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/delete-component.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/delete-image-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/delete-image-recipe.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/delete-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/delete-infrastructure-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/get-component-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/get-component.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/get-distribution-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/get-image-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/get-image-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/get-image-recipe-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/get-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/get-infrastructure-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/import-component.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/list-component-build-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/list-components.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/list-distribution-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/list-image-build-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/list-image-pipeline-images.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/list-image-recipes.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/list-images.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/list-infrastructure-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/put-component-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/put-image-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/put-image-recipe-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/start-image-pipeline-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/update-distribution-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/update-image-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/imagebuilder/update-infrastructure-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/importexport +#usr/lib/python3.10/site-packages/awscli/examples/importexport/cancel-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/importexport/create-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/importexport/get-shipping-label.rst +#usr/lib/python3.10/site-packages/awscli/examples/importexport/get-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/importexport/list-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/importexport/update-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector +#usr/lib/python3.10/site-packages/awscli/examples/inspector/add-attributes-to-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/create-assessment-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/create-assessment-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/create-resource-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/delete-assessment-run.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/delete-assessment-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/delete-assessment-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/describe-assessment-runs.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/describe-assessment-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/describe-assessment-templates.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/describe-cross-account-access-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/describe-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/describe-resource-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/describe-rules-packages.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/get-telemetry-metadata.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/list-assessment-run-agents.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/list-assessment-runs.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/list-assessment-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/list-assessment-templates.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/list-event-subscriptions.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/list-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/list-rules-packages.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/preview-agents.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/register-cross-account-access-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/remove-attributes-from-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/set-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/start-assessment-run.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/stop-assessment-run.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/subscribe-to-event.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/unsubscribe-from-event.rst +#usr/lib/python3.10/site-packages/awscli/examples/inspector/update-assessment-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot +#usr/lib/python3.10/site-packages/awscli/examples/iot-data +#usr/lib/python3.10/site-packages/awscli/examples/iot-data/delete-thing-shadow.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot-data/get-thing-shadow.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot-data/update-thing-shadow.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot-jobs-data +#usr/lib/python3.10/site-packages/awscli/examples/iot-jobs-data/describe-job-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot-jobs-data/get-pending-job-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot-jobs-data/start-next-pending-job-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot-jobs-data/update-job-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/accept-certificate-transfer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/add-thing-to-billing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/add-thing-to-thing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/associate-targets-with-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/attach-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/attach-security-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/attach-thing-principal.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/cancel-audit-mitigation-actions-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/cancel-audit-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/cancel-certificate-transfer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/cancel-job-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/cancel-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/clear-default-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/confirm-topic-rule-destination.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-audit-suppression.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-billing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-certificate-from-csr.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-dimension.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-domain-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-dynamic-thing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-keys-and-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-mitigation-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-ota-update.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-policy-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-provisioning-claim.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-provisioning-template-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-provisioning-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-role-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-scheduled-audit.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-security-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-thing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-thing-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-thing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-topic-rule-destination.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/create-topic-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-account-audit-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-audit-suppression.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-billing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-ca-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-dimension.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-domain-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-dynamic-thing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-job-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-mitigation-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-ota-update.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-policy-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-provisioning-template-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-provisioning-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-registration-code.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-role-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-scheduled-audit.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-security-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-thing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-thing-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-thing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-topic-rule-destination.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-topic-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-v2-logging-level.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/deprecate-thing-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-account-audit-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-audit-finding.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-audit-mitigation-actions-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-audit-suppression.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-audit-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-billing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-ca-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-default-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-dimension.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-domain-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-event-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-index.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-job-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-mitigation-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-provisioning-template-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-provisioning-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-role-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-scheduled-audit.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-security-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-thing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-thing-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-thing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/detach-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/detach-security-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/detach-thing-principal.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/disable-topic-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/enable-topic-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-cardinality.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-effective-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-indexing-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-job-document.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-ota-update.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-percentiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-policy-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-registration-code.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-statistics.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-topic-rule-destination.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-topic-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/get-v2-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-active-violations.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-attached-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-audit-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-audit-mitigation-actions-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-audit-mitigation-actions-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-audit-suppressions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-audit-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-authorizers.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-billing-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-ca-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-certificates-by-ca.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-dimensions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-domain-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-indices.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-job-executions-for-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-job-executions-for-thing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-mitigations-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-ota-updates.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-outgoing-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-policy-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-principal-things.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-provisioning-template-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-provisioning-templates.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-role-aliases.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-scheduled-audits.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-security-profiles-for-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-security-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-streams.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-targets-for-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-targets-for-security-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-thing-groups-for-thing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-thing-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-thing-principals.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-thing-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-things-in-billing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-things-in-thing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-things.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-topic-rule-destinations.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-topic-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-v2-logging-levels.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/list-violation-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/register-ca-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/register-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/register-thing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/reject-certificate-transfer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/remove-thing-from-billing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/remove-thing-from-thing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/replace-topic-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/search-index.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/set-default-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/set-default-policy-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/set-v2-logging-level.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/set-v2-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/start-audit-mitigation-actions-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/start-on-demand-audit-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/test-authorization.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/test-invoke-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/transfer-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-account-audit-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-audit-suppression.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-authorizer.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-billing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-ca-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-domain-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-dynamic-thing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-event-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-indexing-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-mitigation-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-provisioning-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-role-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-scheduled-audit.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-security-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-thing-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-thing-groups-for-thing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-thing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/update-topic-rule-destination.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot/validate-security-profile-behaviors.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/claim-devices-by-claim-code.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/describe-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/finalize-device-claim.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/get-device-methods.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/initiate-device-claim.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/invoke-device-method.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/list-device-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/list-devices.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/unclaim-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-devices/update-device-state.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/associate-device-with-placement.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/create-placement.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/create-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/delete-placement.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/delete-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/describe-placement.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/describe-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/disassociate-device-from-placement.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/get-devices-in-placement.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/list-placements.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/list-projects.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/update-placement.rst +#usr/lib/python3.10/site-packages/awscli/examples/iot1click-projects/update-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/batch-put-message.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/cancel-pipeline-reprocessing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/create-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/create-dataset-content.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/create-dataset.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/create-datastore.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/create-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/delete-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/delete-dataset-content.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/delete-dataset.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/delete-datastore.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/delete-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/describe-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/describe-dataset.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/describe-datastore.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/describe-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/describe-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/get-dataset-content.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/list-channels.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/list-dataset-contents.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/list-datasets.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/list-datastores.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/list-pipelines.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/put-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/run-pipeline-activity.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/sample-channel-data.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/start-pipeline-reprocessing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/update-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/update-dataset.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/update-datastore.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotanalytics/update-pipeline.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/batch-put-message.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/batch-update-detector.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/create-detector-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/create-input.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/delete-detector-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/delete-input.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/describe-detector-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/describe-detector.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/describe-input.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/describe-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/list-detector-model-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/list-detector-models.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/list-detectors.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/list-inputs.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/put-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/update-detector-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents-data/update-input.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/batch-put-message.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/batch-update-detector.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/create-detector-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/create-input.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/delete-detector-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/delete-input.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/describe-detector-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/describe-detector.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/describe-input.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/describe-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/list-detector-model-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/list-detector-models.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/list-detectors.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/list-inputs.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/put-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/update-detector-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotevents/update-input.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/associate-assets.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/batch-associate-project-assets.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/batch-disassociate-project-assets.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/batch-put-asset-property-value.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/create-access-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/create-asset-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/create-asset.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/create-dashboard.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/create-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/create-portal.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/create-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/delete-access-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/delete-asset-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/delete-asset.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/delete-dashboard.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/delete-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/delete-portal.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/delete-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/describe-access-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/describe-asset-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/describe-asset-property.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/describe-asset.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/describe-dashboard.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/describe-gateway-capability-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/describe-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/describe-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/describe-portal.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/describe-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/disassociate-assets.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/get-asset-property-aggregates.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/get-asset-property-value-history.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/get-asset-property-value.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/list-access-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/list-asset-models.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/list-assets.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/list-associated-assets.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/list-dashboards.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/list-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/list-portals.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/list-project-assets.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/list-projects.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/put-logging-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/update-access-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/update-asset-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/update-asset-property.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/update-asset.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/update-dashboard.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/update-gateway-capability-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/update-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/update-portal.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/update-project.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/wait +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/wait/asset-active.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/wait/asset-model-active.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/wait/asset-model-not-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/wait/asset-not-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/wait/portal-active.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotsitewise/wait/portal-not-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/associate-entity-to-thing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/create-flow-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/create-system-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/create-system-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/delete-flow-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/delete-namespace.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/delete-system-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/delete-system-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/deploy-system-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/deprecate-flow-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/deprecate-system-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/describe-namespace.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/dissociate-entity-from-thing.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/get-entities.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/get-flow-template-revisions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/get-flow-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/get-namespace-deletion-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/get-system-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/get-system-template-revisions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/get-system-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/get-upload-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/list-flow-execution-messages.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/search-entities.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/search-flow-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/search-flow-templates.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/search-system-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/search-system-templates.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/search-things.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/undeploy-system-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/update-flow-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/update-system-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/upload-entity-definitions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs +#usr/lib/python3.10/site-packages/awscli/examples/ivs/batch-get-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/batch-get-stream-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/create-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/create-stream-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/delete-playback-key-pair.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/delete-stream-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/get-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/get-playback-key-pair.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/get-stream-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/get-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/import-playback-key-pair.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/list-channels.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/list-playback-key-pairs.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/list-stream-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/list-streams.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/put-metadata.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/stop-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ivs/update-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/kafka +#usr/lib/python3.10/site-packages/awscli/examples/kafka/create-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/kafka/create-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/kafka/describe-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/kafka/get-bootstrap-brokers.rst +#usr/lib/python3.10/site-packages/awscli/examples/kafka/list-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/kafka/update-broker-storage.rst +#usr/lib/python3.10/site-packages/awscli/examples/kafka/update-cluster-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/add-tags-to-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/create-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/decrease-stream-retention-period.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/delete-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/deregister-stream-consumer.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/describe-limits.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/describe-stream-consumer.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/describe-stream-summary.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/describe-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/disable-enhanced-monitoring.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/enable-enhanced-monitoring.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/get-records.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/get-shard-iterator.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/increase-stream-retention-period.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/list-shards.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/list-streams.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/list-tags-for-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/merge-shards.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/put-record.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/put-records.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/register-stream-consumer.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/remove-tags-from-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/split-shard.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/start-stream-encryption.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/stop-stream-encryption.rst +#usr/lib/python3.10/site-packages/awscli/examples/kinesis/update-shard-count.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms +#usr/lib/python3.10/site-packages/awscli/examples/kms/cancel-key-deletion.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/connect-custom-key-store.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/create-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/create-custom-key-store.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/create-grant.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/create-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/decrypt.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/delete-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/delete-custom-key-store.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/delete-imported-key-material.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/describe-custom-key-stores.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/describe-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/disable-key-rotation.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/disable-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/disconnect-custom-key-store.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/enable-key-rotation.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/enable-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/encrypt.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/generate-random.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/get-key-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/get-key-rotation-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/get-parameters-for-import.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/get-public-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/import-key-material.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/list-aliases.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/list-grants.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/list-key-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/list-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/list-resource-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/list-retirable-grants.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/put-key-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/re-encrypt.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/retire-grant.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/revoke-grant.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/schedule-key-deletion.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/sign.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/update-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/update-custom-key-store.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/update-key-description.rst +#usr/lib/python3.10/site-packages/awscli/examples/kms/verify.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda +#usr/lib/python3.10/site-packages/awscli/examples/lambda/add-layer-version-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/add-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/create-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/create-event-source-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/create-function.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/delete-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/delete-event-source-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/delete-function-concurrency.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/delete-function-event-invoke-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/delete-function.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/delete-layer-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/delete-provisioned-concurrency-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-account-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-event-source-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-function-concurrency.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-function-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-function-event-invoke-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-function.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-layer-version-by-arn.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-layer-version-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-layer-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/get-provisioned-concurrency-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/invoke.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/list-aliases.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/list-event-source-mappings.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/list-function-event-invoke-configs.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/list-functions.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/list-layer-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/list-layers.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/list-provisioned-concurrency-configs.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/list-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/list-versions-by-function.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/publish-layer-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/publish-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/put-function-concurrency.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/put-function-event-invoke-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/put-provisioned-concurrency-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/remove-layer-version-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/remove-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/update-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/update-event-source-mapping.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/update-function-code.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/update-function-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/lambda/update-function-event-invoke-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/create-license-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/delete-license-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/get-license-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/get-service-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/list-associations-for-license-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/list-license-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/list-license-specifications-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/list-resource-inventory.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/list-usage-for-license-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/update-license-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/update-license-specifications-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/license-manager/update-service-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/allocate-static-ip.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/attach-disk.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/attach-instances-to-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/attach-load-balancer-tls-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/attach-static-ip.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/close-instance-public-ports.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/copy-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-disk-from-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-disk-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-disk.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-domain-entry.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-instance-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-instances-from-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-key-pair.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-load-balancer-tls-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-relational-database-from-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-relational-database-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/create-relational-database.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-auto-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-disk-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-disk.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-domain-entry.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-instance-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-key-pair.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-known-host-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-load-balancer-tls-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-relational-database-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/delete-relational-database.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/detach-static-ip.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-active-names.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-auto-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-blueprints.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-bundles.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-cloud-formation-stack-records.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-disk-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-disk-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-disk.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-disks.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-domains.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-export-snapshot-record.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-instance-access-details.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-instance-metric-data.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-instance-port-states.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-instance-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-instance-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-instance-state.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-key-pair.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-key-pairs.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-load-balancer-tls-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-load-balancers.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-operation.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-operations-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-operations.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-regions.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database-blueprints.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database-bundles.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database-log-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database-log-streams.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database-master-user-password.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database-metric-data.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-database.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-relational-databases.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-static-ip.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/get-static-ips.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/is-vpc-peered.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/open-instance-public-ports.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/peer-vpc.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/reboot-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/reboot-relational-database.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/release-static-ip.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/start-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/start-relational-database.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/stop-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/stop-relational-database.rst +#usr/lib/python3.10/site-packages/awscli/examples/lightsail/unpeer-vpc.rst +#usr/lib/python3.10/site-packages/awscli/examples/logs +#usr/lib/python3.10/site-packages/awscli/examples/logs/create-log-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/logs/create-log-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/logs/delete-log-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/logs/delete-log-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/logs/delete-retention-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/logs/describe-log-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/logs/describe-log-streams.rst +#usr/lib/python3.10/site-packages/awscli/examples/logs/get-log-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/logs/put-log-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/logs/put-retention-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/add-flow-outputs.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/create-flow.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/delete-flow.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/describe-flow.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/grant-flow-entitlements.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/list-entitlements.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/list-flows.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/remove-flow-output.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/revoke-flow-entitlement.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/start-flow.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/stop-flow.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/update-flow-entitlement.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/update-flow-output.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconnect/update-flow-source.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/cancel-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/create-job-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/create-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/create-preset.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/create-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/delete-job-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/delete-preset.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/delete-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/describe-endpoints.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/get-job-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/get-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/get-preset.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/get-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/list-job-templates.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/list-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/list-presets.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/list-queues.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/update-job-template.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/update-preset.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediaconvert/update-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/medialive +#usr/lib/python3.10/site-packages/awscli/examples/medialive/create-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/medialive/create-input.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/create-asset.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/create-packaging-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/create-packaging-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/delete-asset.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/delete-packaging-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/delete-packaging-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/describe-asset.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/describe-packaging-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/describe-packaging-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/list-assets.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/list-packaging-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage-vod/list-packaging-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/create-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/create-origin-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/delete-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/delete-origin-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/describe-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/describe-origin-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/list-channels.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/list-origin-endpoints.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/rotate-ingest-endpoint-credentials.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/update-channel.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediapackage/update-origin-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore +#usr/lib/python3.10/site-packages/awscli/examples/mediastore-data +#usr/lib/python3.10/site-packages/awscli/examples/mediastore-data/delete-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore-data/describe-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore-data/get-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore-data/list-items.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore-data/put-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/create-container.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/delete-container-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/delete-container.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/delete-cors-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/delete-lifecycle-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/describe-container.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/describe-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/get-container-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/get-cors-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/get-lifecycle-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/get-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/list-containers.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/list-items.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/put-container-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/put-cors-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/put-lifecycle-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/put-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/start-access-logging.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/stop-access-logging.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediastore/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediatailor +#usr/lib/python3.10/site-packages/awscli/examples/mediatailor/delete-playback-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediatailor/get-playback-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediatailor/list-playback-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/mediatailor/put-playback-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/associate-customer-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/associate-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/create-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/create-global-network.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/create-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/create-site.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-bucket-analytics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-bucket-metrics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-global-network.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-public-access-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-site.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/deregister-transit-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/describe-global-networks.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/disassociate-customer-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/disassociate-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-bucket-analytics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-bucket-metrics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-customer-gateway-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-devices.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-link-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-links.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-object-retention.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-public-access-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-sites.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-transit-gateway-registrations.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/list-bucket-analytics-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/list-bucket-metrics-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/put-bucket-metrics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/put-object-retention.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/put-public-access-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/register-transit-gateway.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/update-device.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/update-global-network.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/update-link.rst +#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/update-site.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/assign-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/assign-volume.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/associate-elastic-ip.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/attach-elastic-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/create-app.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/create-deployment.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/create-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/create-layer.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/create-server.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/create-stack.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/create-user-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/delete-app.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/delete-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/delete-layer.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/delete-stack.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/delete-user-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/deregister-elastic-ip.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/deregister-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/deregister-rds-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/deregister-volume.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-apps.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-commands.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-deployments.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-elastic-ips.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-elastic-load-balancers.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-layers.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-load-based-auto-scaling.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-my-user-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-permissions.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-raid-arrays.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-rds-db-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-stack-provisioning-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-stack-summary.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-stacks.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-timebased-auto-scaling.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-user-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/describe-volumes.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/detach-elastic-load-balancer.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/disassociate-elastic-ip.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/get-hostname-suggestion.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/reboot-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/register-elastic-ip.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/register-rds-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/register-volume.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/register.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/set-load-based-auto-scaling.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/set-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/set-time-based-auto-scaling.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/start-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/start-stack.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/stop-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/stop-stack.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/unassign-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/unassign-volume.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/update-app.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/update-elastic-ip.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/update-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/update-layer.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/update-my-user-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/update-rds-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworks/update-volume.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/associate-node.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/create-backup.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/create-server.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/delete-backup.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/delete-server.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/describe-account-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/describe-backups.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/describe-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/describe-node-association-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/describe-servers.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/disassociate-node.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/restore-server.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/start-maintenance.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/update-server-engine-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/opsworkscm/update-server.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations +#usr/lib/python3.10/site-packages/awscli/examples/organizations/accept-handshake.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/attach-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/cancel-handshake.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/create-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/create-organization.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/create-organizational-unit.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/create-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/decline-handshake.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/delete-organization.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/delete-organizational-unit.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/delete-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/describe-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/describe-create-account-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/describe-handshake.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/describe-organization.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/describe-organizational-unit.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/describe-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/detach-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/disable-policy-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/enable-all-features.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/enable-policy-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/invite-account-to-organization.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/leave-organization.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-accounts-for-parent.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-accounts.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-children.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-create-account-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-handshakes-for-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-handshakes-for-organization.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-organizational-units-for-parent.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-parents.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-policies-for-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-roots.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/list-targets-for-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/move-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/remove-account-from-organization.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/update-organizational-unit.rst +#usr/lib/python3.10/site-packages/awscli/examples/organizations/update-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/pi +#usr/lib/python3.10/site-packages/awscli/examples/pi/describe-dimension-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/pi/get-resource-metrics.rst +#usr/lib/python3.10/site-packages/awscli/examples/pinpoint +#usr/lib/python3.10/site-packages/awscli/examples/pinpoint/create-app.rst +#usr/lib/python3.10/site-packages/awscli/examples/pinpoint/delete-app.rst +#usr/lib/python3.10/site-packages/awscli/examples/pinpoint/get-apps.rst +#usr/lib/python3.10/site-packages/awscli/examples/pinpoint/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/pinpoint/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/pinpoint/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/polly +#usr/lib/python3.10/site-packages/awscli/examples/polly/delete-lexicon.rst +#usr/lib/python3.10/site-packages/awscli/examples/polly/get-lexicon.rst +#usr/lib/python3.10/site-packages/awscli/examples/polly/get-speech-synthesis-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/polly/list-lexicons.rst +#usr/lib/python3.10/site-packages/awscli/examples/polly/list-speech-synthesis-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/polly/put-lexicon.rst +#usr/lib/python3.10/site-packages/awscli/examples/polly/start-speech-synthesis-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/pricing +#usr/lib/python3.10/site-packages/awscli/examples/pricing/describe-services.rst +#usr/lib/python3.10/site-packages/awscli/examples/pricing/get-attribute-values.rst +#usr/lib/python3.10/site-packages/awscli/examples/pricing/get-products.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb +#usr/lib/python3.10/site-packages/awscli/examples/qldb/cancel-journal-kinesis-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/create-ledger.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/delete-ledger.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/describe-journal-kinesis-stream.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/describe-journal-s3-export.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/describe-ledger.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/export-journal-to-s3.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/get-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/get-digest.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/get-revision.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/list-journal-kinesis-streams-for-ledger.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/list-journal-s3-exports-for-ledger.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/list-journal-s3-exports.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/list-ledgers.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/stream-journal-to-kinesis.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/qldb/update-ledger.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram +#usr/lib/python3.10/site-packages/awscli/examples/ram/accept-resource-share-invitation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/associate-resource-share.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/create-resource-share.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/delete-resource-share.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/disassociate-resource-share.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/enable-sharing-with-aws-organization.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/get-resource-policies.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/get-resource-share-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/get-resource-share-invitations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/get-resource-shares.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/list-principals.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/list-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/reject-resource-share-invitation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ram/update-resource-share.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds +#usr/lib/python3.10/site-packages/awscli/examples/rds-data +#usr/lib/python3.10/site-packages/awscli/examples/rds-data/batch-execute-statement.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds-data/begin-transaction.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds-data/commit-transaction.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds-data/execute-statement.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds-data/rollback-transaction.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/add-option-to-option-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/add-role-to-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/add-source-identifier-to-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/add-tags-to-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/authorize-db-security-group-ingress.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/backtrack-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/copy-db-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/copy-db-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/copy-db-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/copy-db-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/copy-option-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-db-cluster-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-db-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-db-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-db-instance-read-replica.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-db-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-db-security-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-db-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-db-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-event-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-global-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/create-option-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-cluster-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-security-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-event-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-global-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-option-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-account-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-cluster-endpoints.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-cluster-parameter-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-cluster-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-cluster-snapshot-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-cluster-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-engine-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-instance-automated-backups.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-log-files.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-parameter-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-security-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-snapshot-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-subnet-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-engine-default-cluster-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-engine-default-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-event-categories.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-event-subscriptions.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-export-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-global-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-option-group-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-option-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-orderable-db-instance-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-pending-maintenance-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-reserved-db-instances-offerings.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-reserved-db-instances.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-source-regions.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-valid-db-instance-modifications.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/download-db-log-file-portion.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/generate-auth-token.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-cluster-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-cluster-snapshot-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-snapshot-attribute.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-snapshot-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-event-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-global-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/promote-read-replica.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/purchase-reserved-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/purchase-reserved-db-instances-offerings.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/reboot-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/remove-option-from-option-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/remove-role-from-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/remove-source-identifier-from-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-cluster-from-s3.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-cluster-from-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-cluster-to-point-in-time.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-instance-from-db-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-instance-from-s3.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-instance-to-point-in-time.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/start-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/start-export-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/stop-db-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/rds/stop-db-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift +#usr/lib/python3.10/site-packages/awscli/examples/redshift/accept-reserved-node-exchange.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/authorize-cluster-security-group-ingress.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/authorize-snapshot-access.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/batch-delete-cluster-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/batch-modify-cluster-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/cancel-resize.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/copy-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-cluster-security-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-cluster-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-event-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-hsm-client-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-hsm-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-snapshot-copy-grant.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-snapshot-schedule.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/create-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-cluster-security-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-cluster-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-event-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-hsm-client-certificate.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-hsm-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-scheduled-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-snapshot-copy-grant.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-snapshot-schedule.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/delete-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-account-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-cluster-db-revisions.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-cluster-parameter-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-cluster-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-cluster-security-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-cluster-snapshots.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-cluster-subnet-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-cluster-tracks.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-cluster-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-clusters.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-default-cluster-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-event-categories.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-event-subscriptions.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-events.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-hsm-client-certificates.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-hsm-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-logging-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-node-configuration-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-orderable-cluster-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-reserved-node-offerings.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-reserved-nodes.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-resize.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-scheduled-actions.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-snapshot-copy-grants.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-snapshot-schedules.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-storage.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-table-restore-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/describe-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/disable-snapshot-copy.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/enable-snapshot-copy.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/get-cluster-credentials.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/get-reserved-node-exchange-offerings.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-cluster-iam-roles.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-cluster-maintenance.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-cluster-snapshot-schedule.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-cluster-subnet-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-event-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-scheduled-action.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-snapshot-copy-retention-period.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/modify-snapshot-schedule.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/purchase-reserved-node-offering.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/reboot-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/reset-cluster-parameter-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/resize-cluster.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/restore-from-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/restore-table-from-cluster-snapshot.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/revoke-cluster-security-group-ingress.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/revoke-snapshot-access.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/rotate-encryption-key.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/wait +#usr/lib/python3.10/site-packages/awscli/examples/redshift/wait/cluster-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/wait/cluster-deleted.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/wait/cluster-restored.rst +#usr/lib/python3.10/site-packages/awscli/examples/redshift/wait/snapshot-available.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/compare-faces.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/create-collection.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/create-stream-processor.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/delete-collection.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/delete-faces.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/delete-stream-processor.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/describe-collection.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/describe-stream-processor.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/detect-faces.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/detect-labels.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/detect-moderation-labels.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/detect-text.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/get-celebrity-info.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/get-celebrity-recognition.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/get-content-moderation.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/get-face-detection.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/get-face-search.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/get-label-detection.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/get-person-tracking.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/index-faces.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/list-collections.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/list-faces.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/list-stream-processors.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/recognize-celebrities.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/search-faces-by-image.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/search-faces.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/start-celebrity-recognition.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/start-content-moderation.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/start-face-detection.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/start-face-search.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/start-label-detection.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/start-person-tracking.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/start-stream-processor.rst +#usr/lib/python3.10/site-packages/awscli/examples/rekognition/stop-stream-processor.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/create-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/delete-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/get-group-query.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/get-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/get-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/list-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/list-resource-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/search-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/tag.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/untag.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/update-group-query.rst +#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/update-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/resourcegroupstaggingapi +#usr/lib/python3.10/site-packages/awscli/examples/resourcegroupstaggingapi/get-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/resourcegroupstaggingapi/get-tag-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/resourcegroupstaggingapi/get-tag-values.rst +#usr/lib/python3.10/site-packages/awscli/examples/resourcegroupstaggingapi/tag-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/resourcegroupstaggingapi/untag-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/batch-describe-simulation-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/cancel-simulation-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/create-deployment-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/create-fleet.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/create-robot-application-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/create-robot-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/create-robot.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/create-simulation-application-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/create-simulation-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/create-simulation-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/delete-fleet.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/delete-robot-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/delete-robot.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/delete-simulation-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/deregister-robot.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/describe-deployment-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/describe-fleet.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/describe-robot-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/describe-robot.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/describe-simulation-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/describe-simulation-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/list-deployment-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/list-fleets.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/list-robot-applications.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/list-robots.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/list-simulation-applications.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/list-simulation-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/register-robot.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/restart-simulation-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/sync-deployment-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/update-robot-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/robomaker/update-simulation-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53 +#usr/lib/python3.10/site-packages/awscli/examples/route53/change-resource-record-sets.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/change-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/create-health-check.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/create-hosted-zone.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/delete-health-check.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/delete-hosted-zone.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/get-change.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/get-health-check.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/get-hosted-zone.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/list-health-checks.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/list-hosted-zones-by-name.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/list-hosted-zones.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/list-query-logging-configs.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53/list-resource-record-sets.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/check-domain-availability.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/check-domain-transferability.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/delete-tags-for-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/disable-domain-auto-renew.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/disable-domain-transfer-lock.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/enable-domain-auto-renew.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/enable-domain-transfer-lock.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/get-contact-reachability-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/get-domain-detail.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/get-domain-suggestions.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/get-operation-detail.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/list-domains.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/list-operations.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/list-tags-for-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/register-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/renew-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/resend-contact-reachability-email.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/retrieve-domain-auth-code.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/transfer-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/update-domain-contact-privacy.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/update-domain-contact.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/update-domain-nameservers.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/update-tags-for-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53domains/view-billing.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/associate-resolver-endpoint-ip-address.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/associate-resolver-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/create-resolver-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/create-resolver-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/delete-resolver-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/delete-resolver-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/disassociate-resolver-endpoint-ip-address.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/disassociate-resolver-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-resolver-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-resolver-rule-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-resolver-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-resolver-endpoint-ip-addresses.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-resolver-endpoints.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-resolver-rule-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-resolver-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/put-resolver-rule-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/update-resolver-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/update-resolver-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3 +#usr/lib/python3.10/site-packages/awscli/examples/s3/_concepts.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3/cp.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3/ls.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3/mb.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3/mv.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3/presign.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3/rb.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3/rm.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3/sync.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3/website.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api +#usr/lib/python3.10/site-packages/awscli/examples/s3api/abort-multipart-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/complete-multipart-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/copy-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/create-bucket.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/create-multipart-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket-analytics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket-cors.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket-encryption.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket-inventory-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket-lifecycle.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket-metrics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket-replication.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket-tagging.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket-website.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-bucket.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-object-tagging.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-objects.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/delete-public-access-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-accelerate-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-analytics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-cors.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-encryption.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-inventory-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-lifecycle-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-lifecycle.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-location.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-logging.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-metrics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-notification-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-notification.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-policy-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-replication.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-request-payment.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-tagging.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-versioning.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-bucket-website.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-object-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-object-legal-hold.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-object-lock-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-object-retention.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-object-tagging.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-object-torrent.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/get-public-access-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/head-bucket.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/head-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/list-bucket-analytics-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/list-bucket-inventory-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/list-bucket-metrics-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/list-buckets.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/list-multipart-uploads.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/list-object-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/list-objects-v2.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/list-objects.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/list-parts.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-accelerate-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-analytics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-cors.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-encryption.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-inventory-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-lifecycle-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-lifecycle.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-logging.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-metrics-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-notification-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-notification.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-replication.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-request-payment.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-tagging.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-versioning.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-bucket-website.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-object-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-object-legal-hold.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-object-lock-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-object-retention.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-object-tagging.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/put-public-access-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/restore-object.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/select-object-content.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/upload-part-copy.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/upload-part.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/wait +#usr/lib/python3.10/site-packages/awscli/examples/s3api/wait/bucket-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/wait/bucket-not-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/wait/object-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3api/wait/object-not-exists.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control +#usr/lib/python3.10/site-packages/awscli/examples/s3control/create-access-point.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/create-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/delete-access-point-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/delete-access-point.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/delete-public-access-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/describe-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/get-access-point-policy-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/get-access-point-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/get-access-point.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/get-public-access-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/list-access-points.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/list-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/put-access-point-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/put-public-access-block.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/update-job-priority.rst +#usr/lib/python3.10/site-packages/awscli/examples/s3control/update-job-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/cancel-rotate-secret.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/create-secret.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/delete-resource-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/delete-secret.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/describe-secret.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/get-random-password.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/get-resource-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/get-secret-value.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/list-secret-version-ids.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/list-secrets.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/put-resource-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/put-secret-value.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/restore-secret.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/rotate-secret.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/update-secret-version-stage.rst +#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/update-secret.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/accept-invitation.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/batch-disable-standards.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/batch-enable-standards.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/batch-import-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/batch-update-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/create-action-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/create-insight.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/create-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/decline-invitations.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/delete-action-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/delete-insight.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/delete-invitations.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/delete-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-action-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-hub.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-products.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-standards-controls.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-standards.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/disable-import-findings-for-product.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/disable-security-hub.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/disassociate-from-master-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/disassociate-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/enable-import-findings-for-product.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/enable-security-hub.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-enabled-standards.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-findings.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-insight-results.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-insights.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-invitations-count.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-master-account.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/invite-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/list-enabled-products-for-import.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/list-invitations.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/list-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/update-action-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/update-insight.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/update-security-hub-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/securityhub/update-standards-control.rst +#usr/lib/python3.10/site-packages/awscli/examples/serverlessrepo +#usr/lib/python3.10/site-packages/awscli/examples/serverlessrepo/put-application-policy.rst +#usr/lib/python3.10/site-packages/awscli/examples/service-quotas +#usr/lib/python3.10/site-packages/awscli/examples/service-quotas/get-aws-default-service-quota.rst +#usr/lib/python3.10/site-packages/awscli/examples/service-quotas/get-requested-service-quota-change.rst +#usr/lib/python3.10/site-packages/awscli/examples/service-quotas/get-service-quota.rst +#usr/lib/python3.10/site-packages/awscli/examples/service-quotas/list-aws-default-service-quotas.rst +#usr/lib/python3.10/site-packages/awscli/examples/service-quotas/list-requested-service-quota-change-history-by-quota.rst +#usr/lib/python3.10/site-packages/awscli/examples/service-quotas/list-requested-service-quota-change-history.rst +#usr/lib/python3.10/site-packages/awscli/examples/service-quotas/list-service-quotas.rst +#usr/lib/python3.10/site-packages/awscli/examples/service-quotas/list-services.rst +#usr/lib/python3.10/site-packages/awscli/examples/service-quotas/request-service-quota-increase.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/accept-portfolio-share.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/associate-principal-with-portfolio.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/associate-product-with-portfolio.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/associate-tag-option-with-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/copy-product.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/create-portfolio-share.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/create-portfolio.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/create-product.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/create-provisioning-artifact.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/create-tag-option.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/delete-portfolio-share.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/delete-portfolio.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/delete-product.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/delete-provisioning-artifact.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/delete-tag-option.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/describe-copy-product-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/describe-portfolio.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/describe-product-as-admin.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/describe-provisioned-product.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/describe-provisioning-artifact.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/describe-tag-option.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/disassociate-principal-from-portfolio.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/disassociate-product-from-portfolio.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/disassociate-tag-option-from-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/list-accepted-portfolio-shares.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/list-portfolio-access.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/list-portfolios-for-product.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/list-portfolios.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/list-principals-for-portfolio.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/list-provisioning-artifacts.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/list-resources-for-tag-option.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/list-tag-options.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/provision-product.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/reject-portfolio-share.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/scan-provisioned-products.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/search-products-as-admin.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/search-provisioned-products.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/update-portfolio.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/update-product.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/update-provisioning-artifact.rst +#usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/update-tag-option.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses +#usr/lib/python3.10/site-packages/awscli/examples/ses/delete-identity.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/get-identity-dkim-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/get-identity-notification-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/get-identity-verification-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/get-send-quota.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/get-send-statistics.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/list-identities.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/send-email.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/send-raw-email.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/set-identity-dkim-enabled.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/set-identity-feedback-forwarding-enabled.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/set-identity-notification-topic.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/verify-domain-dkim.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/verify-domain-identity.rst +#usr/lib/python3.10/site-packages/awscli/examples/ses/verify-email-identity.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield +#usr/lib/python3.10/site-packages/awscli/examples/shield/associate-drt-log-bucket.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/associate-drt-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/create-protection.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/create-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/delete-protection.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/describe-attack.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/describe-drt-access.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/describe-emergency-contact-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/describe-protection.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/describe-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/disassociate-drt-log-bucket.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/disassociate-drt-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/get-subscription-state.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/list-attacks.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/list-protections.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/update-emergency-contact-settings.rst +#usr/lib/python3.10/site-packages/awscli/examples/shield/update-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/signer +#usr/lib/python3.10/site-packages/awscli/examples/signer/cancel-signing-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/signer/describe-signing-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/signer/get-signing-platform.rst +#usr/lib/python3.10/site-packages/awscli/examples/signer/get-signing-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/signer/list-signing-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/signer/list-signing-platforms.rst +#usr/lib/python3.10/site-packages/awscli/examples/signer/list-signing-profiles.rst +#usr/lib/python3.10/site-packages/awscli/examples/signer/put-signing-profile.rst +#usr/lib/python3.10/site-packages/awscli/examples/signer/start-signing-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/snowball +#usr/lib/python3.10/site-packages/awscli/examples/snowball/get-snowball-usage.rst +#usr/lib/python3.10/site-packages/awscli/examples/snowball/list-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns +#usr/lib/python3.10/site-packages/awscli/examples/sns/add-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/check-if-phone-number-is-opted-out.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/confirm-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/create-platform-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/create-platform-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/create-topic.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/delete-endpoint.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/delete-platform-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/delete-topic.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/get-endpoint-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/get-platform-application-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/get-sms-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/get-subscription-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/get-topic-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/list-endpoints-by-platform-application.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/list-phone-numbers-opted-out.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/list-platform-applications.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/list-subscriptions-by-topic.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/list-subscriptions.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/list-topics.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/opt-in-phone-number.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/publish.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/remove-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/set-endpoint-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/set-platform-application-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/set-sms-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/set-subscription-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/set-topic-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/subscribe.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/unsubscribe.rst +#usr/lib/python3.10/site-packages/awscli/examples/sns/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs +#usr/lib/python3.10/site-packages/awscli/examples/sqs/add-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/change-message-visibility-batch.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/change-message-visibility.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/create-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/delete-message-batch.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/delete-message.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/delete-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/get-queue-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/get-queue-url.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/list-dead-letter-source-queues.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/list-queue-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/list-queues.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/purge-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/receive-message.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/remove-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/send-message-batch.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/send-message.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/set-queue-attributes.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/tag-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/sqs/untag-queue.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm +#usr/lib/python3.10/site-packages/awscli/examples/ssm/add-tags-to-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/cancel-command.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/cancel-maintenance-window-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/create-activation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/create-association-batch.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/create-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/create-document.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/create-maintenance-window.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/create-ops-item.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/create-patch-baseline.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/create-resource-data-sync.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/delete-activation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/delete-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/delete-document.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/delete-inventory.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/delete-maintenance-window.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/delete-parameter.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/delete-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/delete-patch-baseline.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/delete-resource-data-sync.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/deregister-managed-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/deregister-patch-baseline-for-patch-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/deregister-target-from-maintenance-window.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/deregister-task-from-maintenance-window.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-activations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-association-execution-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-association-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-automation-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-automation-step-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-available-patches.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-document-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-document.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-effective-instance-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-effective-patches-for-patch-baseline.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-instance-associations-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-instance-information.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-instance-patch-states-for-patch-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-instance-patch-states.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-instance-patches.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-inventory-deletions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-maintenance-window-execution-task-invocations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-maintenance-window-execution-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-maintenance-window-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-maintenance-window-schedule.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-maintenance-window-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-maintenance-window-tasks.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-maintenance-windows-for-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-maintenance-windows.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-ops-items.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-patch-baselines.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-patch-group-state.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-patch-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-patch-properties.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-sessions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-automation-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-calendar-state.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-command-invocation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-connection-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-default-patch-baseline.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-deployable-patch-snapshot-for-instance.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-document.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-inventory-schema.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-inventory.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-maintenance-window-execution-task-invocation.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-maintenance-window-execution-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-maintenance-window-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-maintenance-window-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-maintenance-window.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-ops-item.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-ops-summary.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-parameter-history.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-parameter.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-parameters-by-path.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-parameters.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-patch-baseline-for-patch-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-patch-baseline.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/get-service-setting.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/label-parameter-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-association-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-associations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-command-invocations.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-commands.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-compliance-items.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-compliance-summaries.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-document-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-documents.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-inventory-entries.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-resource-compliance-summaries.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-resource-data-sync.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/modify-document-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/put-compliance-items.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/put-inventory.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/put-parameter.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/register-default-patch-baseline.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/register-patch-baseline-for-patch-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/register-target-with-maintenance-window.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/register-task-with-maintenance-window.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/remove-tags-from-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/reset-service-setting.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/resume-session.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/send-automation-signal.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/send-command.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/start-associations-once.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/start-automation-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/start-session.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/stop-automation-execution.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/terminate-session.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-association-status.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-association.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-document-default-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-document.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-maintenance-window-target.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-maintenance-window-task.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-maintenance-window.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-managed-instance-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-ops-item.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-patch-baseline.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-resource-data-sync.rst +#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-service-setting.rst +#usr/lib/python3.10/site-packages/awscli/examples/storagegateway +#usr/lib/python3.10/site-packages/awscli/examples/storagegateway/describe-gateway-information.rst +#usr/lib/python3.10/site-packages/awscli/examples/storagegateway/list-file-shares.rst +#usr/lib/python3.10/site-packages/awscli/examples/storagegateway/list-gateways.rst +#usr/lib/python3.10/site-packages/awscli/examples/storagegateway/list-volumes.rst +#usr/lib/python3.10/site-packages/awscli/examples/storagegateway/refresh-cache.rst +#usr/lib/python3.10/site-packages/awscli/examples/sts +#usr/lib/python3.10/site-packages/awscli/examples/sts/assume-role-with-saml.rst +#usr/lib/python3.10/site-packages/awscli/examples/sts/assume-role-with-web-identity.rst +#usr/lib/python3.10/site-packages/awscli/examples/sts/assume-role.rst +#usr/lib/python3.10/site-packages/awscli/examples/sts/get-caller-identity.rst +#usr/lib/python3.10/site-packages/awscli/examples/sts/get-session-token.rst +#usr/lib/python3.10/site-packages/awscli/examples/support +#usr/lib/python3.10/site-packages/awscli/examples/support/add-attachments-to-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/add-communication-to-case.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/create-case.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/describe-attachment.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/describe-cases.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/describe-communications.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/describe-services.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/describe-severity-levels.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/describe-trusted-advisor-check-refresh-statuses.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/describe-trusted-advisor-check-result.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/describe-trusted-advisor-check-summaries.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/describe-trusted-advisor-checks.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/refresh-trusted-advisor-check.rst +#usr/lib/python3.10/site-packages/awscli/examples/support/resolve-case.rst +#usr/lib/python3.10/site-packages/awscli/examples/swf +#usr/lib/python3.10/site-packages/awscli/examples/swf/count-closed-workflow-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/swf/count-open-workflow-executions.rst +#usr/lib/python3.10/site-packages/awscli/examples/swf/deprecate-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/swf/describe-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/swf/list-activity-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/swf/list-domains.rst +#usr/lib/python3.10/site-packages/awscli/examples/swf/list-workflow-types.rst +#usr/lib/python3.10/site-packages/awscli/examples/swf/register-domain.rst +#usr/lib/python3.10/site-packages/awscli/examples/swf/register-workflow-type.rst +#usr/lib/python3.10/site-packages/awscli/examples/textract +#usr/lib/python3.10/site-packages/awscli/examples/textract/analyze-document.rst +#usr/lib/python3.10/site-packages/awscli/examples/textract/detect-document-text.rst +#usr/lib/python3.10/site-packages/awscli/examples/textract/get-document-analysis.rst +#usr/lib/python3.10/site-packages/awscli/examples/textract/get-document-text-detection.rst +#usr/lib/python3.10/site-packages/awscli/examples/textract/start-document-analysis.rst +#usr/lib/python3.10/site-packages/awscli/examples/textract/start-document-text-detection.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/create-language-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/create-medical-vocabulary.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/create-vocabulary-filter.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/create-vocabulary.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/delete-language-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/delete-medical-transcription-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/delete-medical-vocabulary.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/delete-transcription-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/delete-vocabulary-filter.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/delete-vocabulary.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/describe-language-model.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/get-medical-transcription-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/get-medical-vocabulary.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/get-transcription-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/get-vocabulary-filter.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/get-vocabulary.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/list-language-models.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/list-medical-transcription-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/list-medical-vocabularies.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/list-transcription-jobs.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/list-vocabularies.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/list-vocabulary-filters.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/start-medical-transcription-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/start-transcription-job.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/update-medical-vocabulary.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/update-vocabulary-filter.rst +#usr/lib/python3.10/site-packages/awscli/examples/transcribe/update-vocabulary.rst +#usr/lib/python3.10/site-packages/awscli/examples/translate +#usr/lib/python3.10/site-packages/awscli/examples/translate/import-terminology.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf +#usr/lib/python3.10/site-packages/awscli/examples/waf-regional +#usr/lib/python3.10/site-packages/awscli/examples/waf-regional/associate-web-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf-regional/put-logging-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf-regional/update-byte-match-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf-regional/update-ip-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf-regional/update-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf-regional/update-size-constraint-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf-regional/update-sql-injection-match-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf-regional/update-web-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf-regional/update-xss-match-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf/put-logging-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf/update-byte-match-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf/update-ip-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf/update-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf/update-size-constraint-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf/update-sql-injection-match-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf/update-web-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/waf/update-xss-match-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2 +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/associate-web-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/check-capacity.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/create-ip-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/create-regex-pattern-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/create-rule-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/create-web-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/delete-ip-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/delete-logging-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/delete-regex-pattern-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/delete-rule-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/delete-web-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/describe-managed-rule-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/disassociate-web-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/get-ip-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/get-logging-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/get-rate-based-statement-managed-keys.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/get-regex-pattern-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/get-rule-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/get-sampled-requests.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/get-web-acl-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/get-web-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/list-available-managed-rule-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/list-ip-sets.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/list-logging-configurations.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/list-regex-pattern-sets.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/list-resources-for-web-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/list-rule-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/list-web-acls.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/put-logging-configuration.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/update-ip-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/update-regex-pattern-set.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/update-rule-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/wafv2/update-web-acl.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/abort-document-version-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/activate-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/add-resource-permissions.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/create-comment.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/create-custom-metadata.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/create-folder.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/create-labels.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/create-notification-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/create-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/deactivate-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/delete-comment.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/delete-custom-metadata.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/delete-document.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/delete-folder-contents.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/delete-folder.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/delete-labels.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/delete-notification-subscription.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/delete-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/describe-activities.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/describe-comments.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/describe-document-versions.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/describe-folder-contents.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/describe-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/describe-notification-subscriptions.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/describe-resource-permissions.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/describe-users.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/get-document-path.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/get-document-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/get-document.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/get-folder-path.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/get-folder.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/get-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/initiate-document-version-upload.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/remove-all-resource-permissions.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/remove-resource-permission.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/update-document-version.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/update-document.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/update-folder.rst +#usr/lib/python3.10/site-packages/awscli/examples/workdocs/update-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail +#usr/lib/python3.10/site-packages/awscli/examples/workmail/associate-delegate-to-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/associate-member-to-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/create-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/create-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/create-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/create-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/delete-access-control-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/delete-alias.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/delete-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/delete-mailbox-permissions.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/delete-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/delete-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/deregister-from-work-mail.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/describe-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/describe-organization.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/describe-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/describe-user.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/disassociate-delegate-from-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/disassociate-member-from-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/get-access-control-effect.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/get-mailbox-details.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/list-access-control-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/list-aliases.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/list-group-members.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/list-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/list-mailbox-permissions.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/list-organizations.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/list-resource-delegates.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/list-resources.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/list-tags-for-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/list-users.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/put-access-control-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/put-mailbox-permissions.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/register-to-work-mail.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/reset-password.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/tag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/untag-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/update-mailbox-quota.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/update-primary-email-address.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmail/update-resource.rst +#usr/lib/python3.10/site-packages/awscli/examples/workmailmessageflow +#usr/lib/python3.10/site-packages/awscli/examples/workmailmessageflow/get-raw-message-content.rst +#usr/lib/python3.10/site-packages/awscli/examples/workspaces +#usr/lib/python3.10/site-packages/awscli/examples/workspaces/create-workspaces.rst +#usr/lib/python3.10/site-packages/awscli/examples/workspaces/describe-tags.rst +#usr/lib/python3.10/site-packages/awscli/examples/workspaces/describe-workspace-bundles.rst +#usr/lib/python3.10/site-packages/awscli/examples/workspaces/describe-workspace-directories.rst +#usr/lib/python3.10/site-packages/awscli/examples/workspaces/describe-workspaces.rst +#usr/lib/python3.10/site-packages/awscli/examples/workspaces/migrate-workspace.rst +#usr/lib/python3.10/site-packages/awscli/examples/workspaces/terminate-workspaces.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray +#usr/lib/python3.10/site-packages/awscli/examples/xray/batch-traces-get.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/create-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/create-sampling-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/delete-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/delete-sampling-rule.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/get-encryption-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/get-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/get-groups.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/get-sampling-rules.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/get-sampling-targets.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/get-service-graph.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/get-trace-summaries.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/put-encryption-config.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/put-trace-segments.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/update-group.rst +#usr/lib/python3.10/site-packages/awscli/examples/xray/update-sampling-rule.rst +usr/lib/python3.10/site-packages/awscli/formatter.py +usr/lib/python3.10/site-packages/awscli/handlers.py +usr/lib/python3.10/site-packages/awscli/help.py +usr/lib/python3.10/site-packages/awscli/paramfile.py +usr/lib/python3.10/site-packages/awscli/plugin.py +usr/lib/python3.10/site-packages/awscli/schema.py +usr/lib/python3.10/site-packages/awscli/shorthand.py +usr/lib/python3.10/site-packages/awscli/table.py +usr/lib/python3.10/site-packages/awscli/testutils.py +usr/lib/python3.10/site-packages/awscli/text.py +usr/lib/python3.10/site-packages/awscli/topics +#usr/lib/python3.10/site-packages/awscli/topics/config-vars.rst +#usr/lib/python3.10/site-packages/awscli/topics/return-codes.rst +#usr/lib/python3.10/site-packages/awscli/topics/s3-config.rst +#usr/lib/python3.10/site-packages/awscli/topics/s3-faq.rst +#usr/lib/python3.10/site-packages/awscli/topics/topic-tags.json +usr/lib/python3.10/site-packages/awscli/topictags.py +usr/lib/python3.10/site-packages/awscli/utils.py diff --git a/config/rootfiles/packages/borgbackup b/config/rootfiles/packages/borgbackup index 7fed290a01..dccaf4711a 100644 --- a/config/rootfiles/packages/borgbackup +++ b/config/rootfiles/packages/borgbackup @@ -1,91 +1,91 @@ usr/bin/borg usr/bin/borgfs -#usr/lib/python3.8/site-packages/borg -usr/lib/python3.8/site-packages/borg/__init__.py -usr/lib/python3.8/site-packages/borg/__main__.py -usr/lib/python3.8/site-packages/borg/_version.py -#usr/lib/python3.8/site-packages/borg/algorithms -usr/lib/python3.8/site-packages/borg/algorithms/__init__.py -usr/lib/python3.8/site-packages/borg/algorithms/checksums.cpython-38-xxxMACHINExxx-linux-gnu.so -#usr/lib/python3.8/site-packages/borg/algorithms/msgpack -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/__init__.py -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/_packer.cpp -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/_packer.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/_unpacker.cpp -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/_unpacker.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/_version.py -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/exceptions.py -usr/lib/python3.8/site-packages/borg/algorithms/msgpack/fallback.py -usr/lib/python3.8/site-packages/borg/archive.py -usr/lib/python3.8/site-packages/borg/archiver.py -usr/lib/python3.8/site-packages/borg/cache.py -usr/lib/python3.8/site-packages/borg/chunker.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/borg/compress.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/borg/constants.py -#usr/lib/python3.8/site-packages/borg/crypto -usr/lib/python3.8/site-packages/borg/crypto/__init__.py -usr/lib/python3.8/site-packages/borg/crypto/file_integrity.py -usr/lib/python3.8/site-packages/borg/crypto/key.py -usr/lib/python3.8/site-packages/borg/crypto/keymanager.py -usr/lib/python3.8/site-packages/borg/crypto/low_level.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/borg/crypto/nonces.py -usr/lib/python3.8/site-packages/borg/fuse.py -usr/lib/python3.8/site-packages/borg/hashindex.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/borg/helpers.py -usr/lib/python3.8/site-packages/borg/item.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/borg/locking.py -usr/lib/python3.8/site-packages/borg/logger.py -usr/lib/python3.8/site-packages/borg/lrucache.py -usr/lib/python3.8/site-packages/borg/nanorst.py -usr/lib/python3.8/site-packages/borg/paperkey.html -usr/lib/python3.8/site-packages/borg/patterns.py -#usr/lib/python3.8/site-packages/borg/platform -usr/lib/python3.8/site-packages/borg/platform/__init__.py -usr/lib/python3.8/site-packages/borg/platform/base.py -usr/lib/python3.8/site-packages/borg/platform/linux.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/borg/platform/posix.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/borg/platform/syncfilerange.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/borg/remote.py -usr/lib/python3.8/site-packages/borg/repository.py -usr/lib/python3.8/site-packages/borg/selftest.py -usr/lib/python3.8/site-packages/borg/shellpattern.py -#usr/lib/python3.8/site-packages/borg/testsuite -usr/lib/python3.8/site-packages/borg/testsuite/__init__.py -usr/lib/python3.8/site-packages/borg/testsuite/archive.py -usr/lib/python3.8/site-packages/borg/testsuite/archiver.py -usr/lib/python3.8/site-packages/borg/testsuite/attic.tar.gz -usr/lib/python3.8/site-packages/borg/testsuite/benchmark.py -usr/lib/python3.8/site-packages/borg/testsuite/cache.py -usr/lib/python3.8/site-packages/borg/testsuite/checksums.py -usr/lib/python3.8/site-packages/borg/testsuite/chunker.py -usr/lib/python3.8/site-packages/borg/testsuite/compress.py -usr/lib/python3.8/site-packages/borg/testsuite/crypto.py -usr/lib/python3.8/site-packages/borg/testsuite/file_integrity.py -usr/lib/python3.8/site-packages/borg/testsuite/hashindex.py -usr/lib/python3.8/site-packages/borg/testsuite/helpers.py -usr/lib/python3.8/site-packages/borg/testsuite/item.py -usr/lib/python3.8/site-packages/borg/testsuite/key.py -usr/lib/python3.8/site-packages/borg/testsuite/locking.py -usr/lib/python3.8/site-packages/borg/testsuite/logger.py -usr/lib/python3.8/site-packages/borg/testsuite/lrucache.py -usr/lib/python3.8/site-packages/borg/testsuite/nanorst.py -usr/lib/python3.8/site-packages/borg/testsuite/nonces.py -usr/lib/python3.8/site-packages/borg/testsuite/patterns.py -usr/lib/python3.8/site-packages/borg/testsuite/platform.py -usr/lib/python3.8/site-packages/borg/testsuite/remote.py -usr/lib/python3.8/site-packages/borg/testsuite/repository.py -usr/lib/python3.8/site-packages/borg/testsuite/shellpattern.py -usr/lib/python3.8/site-packages/borg/testsuite/upgrader.py -usr/lib/python3.8/site-packages/borg/testsuite/version.py -usr/lib/python3.8/site-packages/borg/testsuite/xattr.py -usr/lib/python3.8/site-packages/borg/upgrader.py -usr/lib/python3.8/site-packages/borg/version.py -usr/lib/python3.8/site-packages/borg/xattr.py -#usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/PKG-INFO -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/SOURCES.txt -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/dependency_links.txt -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/entry_points.txt -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/not-zip-safe -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/requires.txt -usr/lib/python3.8/site-packages/borgbackup-1.1.13-py3.8.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/borg +usr/lib/python3.10/site-packages/borg/__init__.py +usr/lib/python3.10/site-packages/borg/__main__.py +usr/lib/python3.10/site-packages/borg/_version.py +#usr/lib/python3.10/site-packages/borg/algorithms +usr/lib/python3.10/site-packages/borg/algorithms/__init__.py +usr/lib/python3.10/site-packages/borg/algorithms/checksums.cpython-310-xxxMACHINExxx-linux-gnu.so +#usr/lib/python3.10/site-packages/borg/algorithms/msgpack +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/__init__.py +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/_packer.cpp +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/_packer.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/_unpacker.cpp +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/_unpacker.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/_version.py +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/exceptions.py +usr/lib/python3.10/site-packages/borg/algorithms/msgpack/fallback.py +usr/lib/python3.10/site-packages/borg/archive.py +usr/lib/python3.10/site-packages/borg/archiver.py +usr/lib/python3.10/site-packages/borg/cache.py +usr/lib/python3.10/site-packages/borg/chunker.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/site-packages/borg/compress.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/site-packages/borg/constants.py +#usr/lib/python3.10/site-packages/borg/crypto +usr/lib/python3.10/site-packages/borg/crypto/__init__.py +usr/lib/python3.10/site-packages/borg/crypto/file_integrity.py +usr/lib/python3.10/site-packages/borg/crypto/key.py +usr/lib/python3.10/site-packages/borg/crypto/keymanager.py +usr/lib/python3.10/site-packages/borg/crypto/low_level.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/site-packages/borg/crypto/nonces.py +usr/lib/python3.10/site-packages/borg/fuse.py +usr/lib/python3.10/site-packages/borg/hashindex.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/site-packages/borg/helpers.py +usr/lib/python3.10/site-packages/borg/item.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/site-packages/borg/locking.py +usr/lib/python3.10/site-packages/borg/logger.py +usr/lib/python3.10/site-packages/borg/lrucache.py +usr/lib/python3.10/site-packages/borg/nanorst.py +usr/lib/python3.10/site-packages/borg/paperkey.html +usr/lib/python3.10/site-packages/borg/patterns.py +#usr/lib/python3.10/site-packages/borg/platform +usr/lib/python3.10/site-packages/borg/platform/__init__.py +usr/lib/python3.10/site-packages/borg/platform/base.py +usr/lib/python3.10/site-packages/borg/platform/linux.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/site-packages/borg/platform/posix.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/site-packages/borg/platform/syncfilerange.cpython-310-xxxMACHINExxx-linux-gnu.so +usr/lib/python3.10/site-packages/borg/remote.py +usr/lib/python3.10/site-packages/borg/repository.py +usr/lib/python3.10/site-packages/borg/selftest.py +usr/lib/python3.10/site-packages/borg/shellpattern.py +#usr/lib/python3.10/site-packages/borg/testsuite +usr/lib/python3.10/site-packages/borg/testsuite/__init__.py +usr/lib/python3.10/site-packages/borg/testsuite/archive.py +usr/lib/python3.10/site-packages/borg/testsuite/archiver.py +usr/lib/python3.10/site-packages/borg/testsuite/attic.tar.gz +usr/lib/python3.10/site-packages/borg/testsuite/benchmark.py +usr/lib/python3.10/site-packages/borg/testsuite/cache.py +usr/lib/python3.10/site-packages/borg/testsuite/checksums.py +usr/lib/python3.10/site-packages/borg/testsuite/chunker.py +usr/lib/python3.10/site-packages/borg/testsuite/compress.py +usr/lib/python3.10/site-packages/borg/testsuite/crypto.py +usr/lib/python3.10/site-packages/borg/testsuite/file_integrity.py +usr/lib/python3.10/site-packages/borg/testsuite/hashindex.py +usr/lib/python3.10/site-packages/borg/testsuite/helpers.py +usr/lib/python3.10/site-packages/borg/testsuite/item.py +usr/lib/python3.10/site-packages/borg/testsuite/key.py +usr/lib/python3.10/site-packages/borg/testsuite/locking.py +usr/lib/python3.10/site-packages/borg/testsuite/logger.py +usr/lib/python3.10/site-packages/borg/testsuite/lrucache.py +usr/lib/python3.10/site-packages/borg/testsuite/nanorst.py +usr/lib/python3.10/site-packages/borg/testsuite/nonces.py +usr/lib/python3.10/site-packages/borg/testsuite/patterns.py +usr/lib/python3.10/site-packages/borg/testsuite/platform.py +usr/lib/python3.10/site-packages/borg/testsuite/remote.py +usr/lib/python3.10/site-packages/borg/testsuite/repository.py +usr/lib/python3.10/site-packages/borg/testsuite/shellpattern.py +usr/lib/python3.10/site-packages/borg/testsuite/upgrader.py +usr/lib/python3.10/site-packages/borg/testsuite/version.py +usr/lib/python3.10/site-packages/borg/testsuite/xattr.py +usr/lib/python3.10/site-packages/borg/upgrader.py +usr/lib/python3.10/site-packages/borg/version.py +usr/lib/python3.10/site-packages/borg/xattr.py +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/PKG-INFO +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/SOURCES.txt +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/dependency_links.txt +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/entry_points.txt +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/not-zip-safe +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/requires.txt +usr/lib/python3.10/site-packages/borgbackup-1.1.17-py3.10.egg-info/top_level.txt diff --git a/config/rootfiles/packages/cups b/config/rootfiles/packages/cups index f9d15bc8bb..3974aa2a14 100644 --- a/config/rootfiles/packages/cups +++ b/config/rootfiles/packages/cups @@ -91,6 +91,7 @@ usr/lib/cups/notifier/rss usr/lib/libcups.so.2 #usr/lib/libcupsimage.so usr/lib/libcupsimage.so.2 +#usr/lib/pkgconfig/cups.pc usr/sbin/cupsaccept usr/sbin/cupsctl usr/sbin/cupsd @@ -102,6 +103,8 @@ usr/sbin/lpadmin usr/sbin/lpc usr/sbin/lpinfo usr/sbin/lpmove +#usr/share/applications +#usr/share/applications/cups.desktop usr/share/cups usr/share/cups/banners usr/share/cups/data @@ -176,6 +179,7 @@ usr/share/cups/ipptool/print-job-hold.test usr/share/cups/ipptool/print-job-letter.test usr/share/cups/ipptool/print-job-manual.test usr/share/cups/ipptool/print-job-media-col.test +usr/share/cups/ipptool/print-job-media-needed.test usr/share/cups/ipptool/print-job-password.test usr/share/cups/ipptool/print-job.test usr/share/cups/ipptool/print-uri.test @@ -216,6 +220,72 @@ usr/share/cups/templates/class.tmpl usr/share/cups/templates/classes-header.tmpl usr/share/cups/templates/classes.tmpl usr/share/cups/templates/command.tmpl +usr/share/cups/templates/da +usr/share/cups/templates/da/add-class.tmpl +usr/share/cups/templates/da/add-printer.tmpl +usr/share/cups/templates/da/admin.tmpl +usr/share/cups/templates/da/choose-device.tmpl +usr/share/cups/templates/da/choose-make.tmpl +usr/share/cups/templates/da/choose-model.tmpl +usr/share/cups/templates/da/choose-serial.tmpl +usr/share/cups/templates/da/choose-uri.tmpl +usr/share/cups/templates/da/class-added.tmpl +usr/share/cups/templates/da/class-confirm.tmpl +usr/share/cups/templates/da/class-deleted.tmpl +usr/share/cups/templates/da/class-jobs-header.tmpl +usr/share/cups/templates/da/class-modified.tmpl +usr/share/cups/templates/da/class.tmpl +usr/share/cups/templates/da/classes-header.tmpl +usr/share/cups/templates/da/classes.tmpl +usr/share/cups/templates/da/command.tmpl +usr/share/cups/templates/da/edit-config.tmpl +usr/share/cups/templates/da/error-op.tmpl +usr/share/cups/templates/da/error.tmpl +usr/share/cups/templates/da/header.tmpl +usr/share/cups/templates/da/help-header.tmpl +usr/share/cups/templates/da/help-printable.tmpl +usr/share/cups/templates/da/help-trailer.tmpl +usr/share/cups/templates/da/job-cancel.tmpl +usr/share/cups/templates/da/job-hold.tmpl +usr/share/cups/templates/da/job-move.tmpl +usr/share/cups/templates/da/job-moved.tmpl +usr/share/cups/templates/da/job-release.tmpl +usr/share/cups/templates/da/job-restart.tmpl +usr/share/cups/templates/da/jobs-header.tmpl +usr/share/cups/templates/da/jobs.tmpl +usr/share/cups/templates/da/list-available-printers.tmpl +usr/share/cups/templates/da/modify-class.tmpl +usr/share/cups/templates/da/modify-printer.tmpl +usr/share/cups/templates/da/norestart.tmpl +usr/share/cups/templates/da/option-boolean.tmpl +usr/share/cups/templates/da/option-conflict.tmpl +usr/share/cups/templates/da/option-header.tmpl +usr/share/cups/templates/da/option-pickmany.tmpl +usr/share/cups/templates/da/option-pickone.tmpl +usr/share/cups/templates/da/option-trailer.tmpl +usr/share/cups/templates/da/pager.tmpl +usr/share/cups/templates/da/printer-accept.tmpl +usr/share/cups/templates/da/printer-added.tmpl +usr/share/cups/templates/da/printer-cancel-jobs.tmpl +usr/share/cups/templates/da/printer-configured.tmpl +usr/share/cups/templates/da/printer-confirm.tmpl +usr/share/cups/templates/da/printer-default.tmpl +usr/share/cups/templates/da/printer-deleted.tmpl +usr/share/cups/templates/da/printer-jobs-header.tmpl +usr/share/cups/templates/da/printer-modified.tmpl +usr/share/cups/templates/da/printer-reject.tmpl +usr/share/cups/templates/da/printer-start.tmpl +usr/share/cups/templates/da/printer-stop.tmpl +usr/share/cups/templates/da/printer.tmpl +usr/share/cups/templates/da/printers-header.tmpl +usr/share/cups/templates/da/printers.tmpl +usr/share/cups/templates/da/restart.tmpl +usr/share/cups/templates/da/search.tmpl +usr/share/cups/templates/da/set-printer-options-header.tmpl +usr/share/cups/templates/da/set-printer-options-trailer.tmpl +usr/share/cups/templates/da/test-page.tmpl +usr/share/cups/templates/da/trailer.tmpl +usr/share/cups/templates/da/users.tmpl usr/share/cups/templates/de usr/share/cups/templates/de/add-class.tmpl usr/share/cups/templates/de/add-printer.tmpl @@ -666,17 +736,20 @@ usr/share/doc/cups usr/share/doc/cups/apple-touch-icon.png usr/share/doc/cups/cups-printable.css usr/share/doc/cups/cups.css +usr/share/doc/cups/da +usr/share/doc/cups/da/index.html usr/share/doc/cups/de usr/share/doc/cups/de/index.html usr/share/doc/cups/es usr/share/doc/cups/es/index.html +usr/share/doc/cups/fr +usr/share/doc/cups/fr/index.html usr/share/doc/cups/help usr/share/doc/cups/help/accounting.html usr/share/doc/cups/help/admin.html usr/share/doc/cups/help/api-admin.html usr/share/doc/cups/help/api-filter.html usr/share/doc/cups/help/api-ppd.html -usr/share/doc/cups/help/api-raster.html usr/share/doc/cups/help/cgi.html usr/share/doc/cups/help/cupspm.html usr/share/doc/cups/help/encryption.html @@ -745,22 +818,15 @@ usr/share/doc/cups/help/spec-raster.html usr/share/doc/cups/help/spec-stp.html usr/share/doc/cups/help/translation.html usr/share/doc/cups/images -usr/share/doc/cups/images/color-wheel.png usr/share/doc/cups/images/cups-block-diagram.png usr/share/doc/cups/images/cups-command-chain.png -usr/share/doc/cups/images/cups-icon.png usr/share/doc/cups/images/cups-postscript-chain.png usr/share/doc/cups/images/cups-raster-chain.png usr/share/doc/cups/images/cups.png -usr/share/doc/cups/images/generic.png -usr/share/doc/cups/images/left.gif usr/share/doc/cups/images/raster-organization.png usr/share/doc/cups/images/raster.png -usr/share/doc/cups/images/right.gif usr/share/doc/cups/images/sample-image.png -usr/share/doc/cups/images/sel.gif usr/share/doc/cups/images/smiley.jpg -usr/share/doc/cups/images/unsel.gif usr/share/doc/cups/images/wait.gif usr/share/doc/cups/index.html usr/share/doc/cups/ja @@ -770,8 +836,23 @@ usr/share/doc/cups/pt_BR/index.html usr/share/doc/cups/robots.txt usr/share/doc/cups/ru usr/share/doc/cups/ru/index.html +usr/share/icons +usr/share/icons/hicolor +usr/share/icons/hicolor/128x128 +usr/share/icons/hicolor/128x128/apps +usr/share/icons/hicolor/128x128/apps/cups.png +usr/share/icons/hicolor/16x16 +usr/share/icons/hicolor/16x16/apps +usr/share/icons/hicolor/16x16/apps/cups.png +usr/share/icons/hicolor/32x32 +usr/share/icons/hicolor/32x32/apps +usr/share/icons/hicolor/32x32/apps/cups.png +usr/share/icons/hicolor/64x64 +usr/share/icons/hicolor/64x64/apps +usr/share/icons/hicolor/64x64/apps/cups.png usr/share/locale/ca/cups_ca.po usr/share/locale/cs/cups_cs.po +usr/share/locale/da/cups_da.po usr/share/locale/de/cups_de.po usr/share/locale/en usr/share/locale/en/cups_en.po diff --git a/config/rootfiles/packages/fetchmail b/config/rootfiles/packages/fetchmail index 9a6492f0bb..107ceb6e2e 100644 --- a/config/rootfiles/packages/fetchmail +++ b/config/rootfiles/packages/fetchmail @@ -2,7 +2,7 @@ etc/rc.d/init.d/fetchmail root/.fetchmailrc usr/bin/fetchmail #usr/bin/fetchmailconf -#usr/lib/python3.8/site-packages/fetchmailconf.py +#usr/lib/python3.10/site-packages/fetchmailconf.py #usr/share/man/man1/fetchmail.1 #usr/share/man/man1/fetchmailconf.1 var/ipfire/backup/addons/includes/fetchmail diff --git a/config/rootfiles/packages/gptfdisk b/config/rootfiles/packages/gptfdisk new file mode 100644 index 0000000000..a1a8540218 --- /dev/null +++ b/config/rootfiles/packages/gptfdisk @@ -0,0 +1,4 @@ +usr/sbin/cgdisk +usr/sbin/fixparts +usr/sbin/gdisk +usr/sbin/sgdisk diff --git a/config/rootfiles/packages/iotop b/config/rootfiles/packages/iotop index 541d6b3eed..c2a2813a7b 100644 --- a/config/rootfiles/packages/iotop +++ b/config/rootfiles/packages/iotop @@ -1,12 +1,12 @@ -usr/lib/python3.8/site-packages/iotop -#usr/lib/python3.8/site-packages/iotop-0.6-py3.8.egg-info -#usr/lib/python3.8/site-packages/iotop/__init__.py -#usr/lib/python3.8/site-packages/iotop/data.py -#usr/lib/python3.8/site-packages/iotop/genetlink.py -#usr/lib/python3.8/site-packages/iotop/ioprio.py -#usr/lib/python3.8/site-packages/iotop/netlink.py -#usr/lib/python3.8/site-packages/iotop/ui.py -#usr/lib/python3.8/site-packages/iotop/version.py -#usr/lib/python3.8/site-packages/iotop/vmstat.py +usr/lib/python3.10/site-packages/iotop +#usr/lib/python3.10/site-packages/iotop-0.6-py3.10.egg-info +#usr/lib/python3.10/site-packages/iotop/__init__.py +#usr/lib/python3.10/site-packages/iotop/data.py +#usr/lib/python3.10/site-packages/iotop/genetlink.py +#usr/lib/python3.10/site-packages/iotop/ioprio.py +#usr/lib/python3.10/site-packages/iotop/netlink.py +#usr/lib/python3.10/site-packages/iotop/ui.py +#usr/lib/python3.10/site-packages/iotop/version.py +#usr/lib/python3.10/site-packages/iotop/vmstat.py usr/sbin/iotop #usr/share/man/man8/iotop.8 diff --git a/config/rootfiles/packages/libnfsidmap b/config/rootfiles/packages/libnfsidmap deleted file mode 100644 index 0c9d3ab12c..0000000000 --- a/config/rootfiles/packages/libnfsidmap +++ /dev/null @@ -1,15 +0,0 @@ -#usr/include/nfsidmap.h -#usr/lib/libnfsidmap -#usr/lib/libnfsidmap.la -#usr/lib/libnfsidmap.so -usr/lib/libnfsidmap.so.0 -usr/lib/libnfsidmap.so.0.3.0 -#usr/lib/libnfsidmap/nsswitch.la -usr/lib/libnfsidmap/nsswitch.so -#usr/lib/libnfsidmap/static.la -usr/lib/libnfsidmap/static.so -#usr/lib/libnfsidmap/umich_ldap.la -usr/lib/libnfsidmap/umich_ldap.so -#usr/lib/pkgconfig/libnfsidmap.pc -#usr/share/man/man3/nfs4_uid_to_name.3 -#usr/share/man/man5/idmapd.conf.5 diff --git a/config/rootfiles/packages/nfs b/config/rootfiles/packages/nfs index dba272c8a9..e05c12d126 100644 --- a/config/rootfiles/packages/nfs +++ b/config/rootfiles/packages/nfs @@ -4,16 +4,27 @@ sbin/mount.nfs4 sbin/nfsdcltrack sbin/umount.nfs sbin/umount.nfs4 +#usr/include/nfsidmap.h #usr/include/nfsidmap_plugin.h +#usr/lib/libnfsidmap #usr/lib/libnfsidmap.a +#usr/lib/libnfsidmap.la +usr/lib/libnfsidmap.so usr/lib/libnfsidmap.so.1 usr/lib/libnfsidmap.so.1.0.0 #usr/lib/libnfsidmap/nsswitch.a +#usr/lib/libnfsidmap/nsswitch.la +usr/lib/libnfsidmap/nsswitch.so #usr/lib/libnfsidmap/regex.a #usr/lib/libnfsidmap/regex.la usr/lib/libnfsidmap/regex.so #usr/lib/libnfsidmap/static.a +#usr/lib/libnfsidmap/static.la +usr/lib/libnfsidmap/static.so #usr/lib/libnfsidmap/umich_ldap.a +#usr/lib/libnfsidmap/umich_ldap.la +usr/lib/libnfsidmap/umich_ldap.so +#usr/lib/pkgconfig/libnfsidmap.pc #usr/sbin/blkmapd usr/sbin/exportfs usr/sbin/mountstats @@ -32,7 +43,9 @@ usr/sbin/rpcdebug usr/sbin/showmount usr/sbin/sm-notify usr/sbin/start-statd +#usr/share/man/man3/nfs4_uid_to_name.3 #usr/share/man/man5/exports.5 +#usr/share/man/man5/idmapd.conf.5 #usr/share/man/man5/nfs.5 #usr/share/man/man5/nfs.conf.5 #usr/share/man/man5/nfsmount.conf.5 diff --git a/config/rootfiles/packages/oci-cli b/config/rootfiles/packages/oci-cli new file mode 100644 index 0000000000..8f500d8882 --- /dev/null +++ b/config/rootfiles/packages/oci-cli @@ -0,0 +1,1687 @@ +usr/bin/create_backup_from_onprem +usr/bin/oci +usr/lib/python3.10/site-packages/common_util +usr/lib/python3.10/site-packages/common_util/__init__.py +usr/lib/python3.10/site-packages/common_util/ignored_commands.py +usr/lib/python3.10/site-packages/oci_cli +usr/lib/python3.10/site-packages/oci_cli-3.4.2-py3.10.egg-info +usr/lib/python3.10/site-packages/oci_cli-3.4.2-py3.10.egg-info/PKG-INFO +usr/lib/python3.10/site-packages/oci_cli-3.4.2-py3.10.egg-info/SOURCES.txt +usr/lib/python3.10/site-packages/oci_cli-3.4.2-py3.10.egg-info/dependency_links.txt +usr/lib/python3.10/site-packages/oci_cli-3.4.2-py3.10.egg-info/entry_points.txt +usr/lib/python3.10/site-packages/oci_cli-3.4.2-py3.10.egg-info/requires.txt +usr/lib/python3.10/site-packages/oci_cli-3.4.2-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/oci_cli/__init__.py +usr/lib/python3.10/site-packages/oci_cli/aliasing +usr/lib/python3.10/site-packages/oci_cli/aliasing/__init__.py +usr/lib/python3.10/site-packages/oci_cli/aliasing/command_group_with_alias.py +usr/lib/python3.10/site-packages/oci_cli/aliasing/parameter_alias.py +usr/lib/python3.10/site-packages/oci_cli/bin +usr/lib/python3.10/site-packages/oci_cli/bin/OciTabExpansion.ps1 +usr/lib/python3.10/site-packages/oci_cli/bin/oci_autocomplete.sh +usr/lib/python3.10/site-packages/oci_cli/cli.py +usr/lib/python3.10/site-packages/oci_cli/cli_clients.py +usr/lib/python3.10/site-packages/oci_cli/cli_constants.py +usr/lib/python3.10/site-packages/oci_cli/cli_exceptions.py +usr/lib/python3.10/site-packages/oci_cli/cli_metrics.py +usr/lib/python3.10/site-packages/oci_cli/cli_root.py +usr/lib/python3.10/site-packages/oci_cli/cli_session.py +usr/lib/python3.10/site-packages/oci_cli/cli_setup.py +usr/lib/python3.10/site-packages/oci_cli/cli_setup_bootstrap.py +usr/lib/python3.10/site-packages/oci_cli/cli_util.py +usr/lib/python3.10/site-packages/oci_cli/custom_types +usr/lib/python3.10/site-packages/oci_cli/custom_types/__init__.py +usr/lib/python3.10/site-packages/oci_cli/custom_types/cli_case_insensitive_choice.py +usr/lib/python3.10/site-packages/oci_cli/custom_types/cli_complex_type.py +usr/lib/python3.10/site-packages/oci_cli/custom_types/cli_datetime.py +usr/lib/python3.10/site-packages/oci_cli/custom_types/cli_from_json.py +usr/lib/python3.10/site-packages/oci_cli/custom_types/object_storage_bulk_operation_output.py +usr/lib/python3.10/site-packages/oci_cli/dynamic_loader.py +usr/lib/python3.10/site-packages/oci_cli/file_filters +usr/lib/python3.10/site-packages/oci_cli/file_filters/__init__.py +usr/lib/python3.10/site-packages/oci_cli/file_filters/file_filter_collection.py +usr/lib/python3.10/site-packages/oci_cli/file_filters/file_path_filter.py +usr/lib/python3.10/site-packages/oci_cli/final_command_processor.py +usr/lib/python3.10/site-packages/oci_cli/formatting.py +usr/lib/python3.10/site-packages/oci_cli/help_text_producer +usr/lib/python3.10/site-packages/oci_cli/help_text_producer/__init__.py +usr/lib/python3.10/site-packages/oci_cli/help_text_producer/help_text_producer.py +usr/lib/python3.10/site-packages/oci_cli/json_skeleton_utils.py +usr/lib/python3.10/site-packages/oci_cli/oci_template.py +usr/lib/python3.10/site-packages/oci_cli/raw_request_cli.py +usr/lib/python3.10/site-packages/oci_cli/scripts +usr/lib/python3.10/site-packages/oci_cli/scripts/__init__.py +usr/lib/python3.10/site-packages/oci_cli/scripts/database +usr/lib/python3.10/site-packages/oci_cli/scripts/database/__init__.py +usr/lib/python3.10/site-packages/oci_cli/scripts/database/dbaas.py +usr/lib/python3.10/site-packages/oci_cli/service_mapping.py +usr/lib/python3.10/site-packages/oci_cli/string_utils.py +usr/lib/python3.10/site-packages/oci_cli/util +usr/lib/python3.10/site-packages/oci_cli/util/__init__.py +usr/lib/python3.10/site-packages/oci_cli/util/pymd5.py +usr/lib/python3.10/site-packages/oci_cli/version.py +usr/lib/python3.10/site-packages/services +usr/lib/python3.10/site-packages/services/__init__.py +usr/lib/python3.10/site-packages/services/ai_anomaly_detection +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/__init__.py +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/src +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/src/__init__.py +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/src/oci_cli_anomaly_detection +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/src/oci_cli_anomaly_detection/__init__.py +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/src/oci_cli_anomaly_detection/anomalydetection_cli_extended.py +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/src/oci_cli_anomaly_detection/generated +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/src/oci_cli_anomaly_detection/generated/__init__.py +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/src/oci_cli_anomaly_detection/generated/anomalydetection_cli.py +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/src/oci_cli_anomaly_detection/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/tests +usr/lib/python3.10/site-packages/services/ai_anomaly_detection/tests/__init__.py +usr/lib/python3.10/site-packages/services/ai_language +usr/lib/python3.10/site-packages/services/ai_language/__init__.py +usr/lib/python3.10/site-packages/services/ai_language/src +usr/lib/python3.10/site-packages/services/ai_language/src/__init__.py +usr/lib/python3.10/site-packages/services/ai_language/src/oci_cli_ai_service_language +usr/lib/python3.10/site-packages/services/ai_language/src/oci_cli_ai_service_language/__init__.py +usr/lib/python3.10/site-packages/services/ai_language/src/oci_cli_ai_service_language/aiservicelanguage_cli_extended.py +usr/lib/python3.10/site-packages/services/ai_language/src/oci_cli_ai_service_language/generated +usr/lib/python3.10/site-packages/services/ai_language/src/oci_cli_ai_service_language/generated/__init__.py +usr/lib/python3.10/site-packages/services/ai_language/src/oci_cli_ai_service_language/generated/aiservicelanguage_cli.py +usr/lib/python3.10/site-packages/services/ai_language/src/oci_cli_ai_service_language/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/ai_language/tests +usr/lib/python3.10/site-packages/services/ai_language/tests/__init__.py +usr/lib/python3.10/site-packages/services/analytics +usr/lib/python3.10/site-packages/services/analytics/__init__.py +usr/lib/python3.10/site-packages/services/analytics/src +usr/lib/python3.10/site-packages/services/analytics/src/__init__.py +usr/lib/python3.10/site-packages/services/analytics/src/oci_cli_analytics +usr/lib/python3.10/site-packages/services/analytics/src/oci_cli_analytics/__init__.py +usr/lib/python3.10/site-packages/services/analytics/src/oci_cli_analytics/analytics_cli_extended.py +usr/lib/python3.10/site-packages/services/analytics/src/oci_cli_analytics/generated +usr/lib/python3.10/site-packages/services/analytics/src/oci_cli_analytics/generated/__init__.py +usr/lib/python3.10/site-packages/services/analytics/src/oci_cli_analytics/generated/analytics_cli.py +usr/lib/python3.10/site-packages/services/analytics/src/oci_cli_analytics/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/analytics/tests +usr/lib/python3.10/site-packages/services/analytics/tests/__init__.py +usr/lib/python3.10/site-packages/services/announcements_service +usr/lib/python3.10/site-packages/services/announcements_service/__init__.py +usr/lib/python3.10/site-packages/services/announcements_service/src +usr/lib/python3.10/site-packages/services/announcements_service/src/__init__.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcement +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcement/__init__.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcement/announcement_cli_extended.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcement/generated +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcement/generated/__init__.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcement/generated/announcement_cli.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcement/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_preferences +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_preferences/__init__.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_preferences/announcementspreferences_cli_extended.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_preferences/generated +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_preferences/generated/__init__.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_preferences/generated/announcementspreferences_cli.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_preferences/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_service +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_service/__init__.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_service/generated +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_service/generated/__init__.py +usr/lib/python3.10/site-packages/services/announcements_service/src/oci_cli_announcements_service/generated/announce_service_cli.py +usr/lib/python3.10/site-packages/services/announcements_service/tests +usr/lib/python3.10/site-packages/services/announcements_service/tests/__init__.py +usr/lib/python3.10/site-packages/services/apigateway +usr/lib/python3.10/site-packages/services/apigateway/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src +usr/lib/python3.10/site-packages/services/apigateway/src/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_api_gateway +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_api_gateway/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_api_gateway/api_gateway_cli_extended.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_api_gateway/generated +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_api_gateway/generated/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_api_gateway/generated/apigateway_cli.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_api_gateway/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_apigateway +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_apigateway/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_apigateway/generated +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_apigateway/generated/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_apigateway/generated/api_gateway_service_cli.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_deployment +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_deployment/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_deployment/apigateway_deployment_extended.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_deployment/generated +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_deployment/generated/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_deployment/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_deployment/generated/deployment_cli.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_gateway +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_gateway/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_gateway/apigateway_gateway_extended.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_gateway/generated +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_gateway/generated/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_gateway/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_gateway/generated/gateway_cli.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_work_requests +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_work_requests/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_work_requests/apigateway_workrequest_extended.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_work_requests/generated +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_work_requests/generated/__init__.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_work_requests/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/apigateway/src/oci_cli_work_requests/generated/workrequests_cli.py +usr/lib/python3.10/site-packages/services/apigateway/tests +usr/lib/python3.10/site-packages/services/apigateway/tests/__init__.py +usr/lib/python3.10/site-packages/services/apm_config +usr/lib/python3.10/site-packages/services/apm_config/__init__.py +usr/lib/python3.10/site-packages/services/apm_config/src +usr/lib/python3.10/site-packages/services/apm_config/src/__init__.py +usr/lib/python3.10/site-packages/services/apm_config/src/oci_cli_config +usr/lib/python3.10/site-packages/services/apm_config/src/oci_cli_config/__init__.py +usr/lib/python3.10/site-packages/services/apm_config/src/oci_cli_config/config_cli_extended.py +usr/lib/python3.10/site-packages/services/apm_config/src/oci_cli_config/generated +usr/lib/python3.10/site-packages/services/apm_config/src/oci_cli_config/generated/__init__.py +usr/lib/python3.10/site-packages/services/apm_config/src/oci_cli_config/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/apm_config/src/oci_cli_config/generated/config_cli.py +usr/lib/python3.10/site-packages/services/apm_config/tests +usr/lib/python3.10/site-packages/services/apm_config/tests/__init__.py +usr/lib/python3.10/site-packages/services/apm_control_plane +usr/lib/python3.10/site-packages/services/apm_control_plane/__init__.py +usr/lib/python3.10/site-packages/services/apm_control_plane/src +usr/lib/python3.10/site-packages/services/apm_control_plane/src/__init__.py +usr/lib/python3.10/site-packages/services/apm_control_plane/src/oci_cli_apm_domain +usr/lib/python3.10/site-packages/services/apm_control_plane/src/oci_cli_apm_domain/__init__.py +usr/lib/python3.10/site-packages/services/apm_control_plane/src/oci_cli_apm_domain/generated +usr/lib/python3.10/site-packages/services/apm_control_plane/src/oci_cli_apm_domain/generated/__init__.py +usr/lib/python3.10/site-packages/services/apm_control_plane/src/oci_cli_apm_domain/generated/apmdomain_cli.py +usr/lib/python3.10/site-packages/services/apm_control_plane/src/oci_cli_apm_domain/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/apm_control_plane/tests +usr/lib/python3.10/site-packages/services/apm_control_plane/tests/__init__.py +usr/lib/python3.10/site-packages/services/apm_synthetics +usr/lib/python3.10/site-packages/services/apm_synthetics/__init__.py +usr/lib/python3.10/site-packages/services/apm_synthetics/src +usr/lib/python3.10/site-packages/services/apm_synthetics/src/__init__.py +usr/lib/python3.10/site-packages/services/apm_synthetics/src/oci_cli_apm_synthetic +usr/lib/python3.10/site-packages/services/apm_synthetics/src/oci_cli_apm_synthetic/__init__.py +usr/lib/python3.10/site-packages/services/apm_synthetics/src/oci_cli_apm_synthetic/apmsynthetic_cli_extended.py +usr/lib/python3.10/site-packages/services/apm_synthetics/src/oci_cli_apm_synthetic/generated +usr/lib/python3.10/site-packages/services/apm_synthetics/src/oci_cli_apm_synthetic/generated/__init__.py +usr/lib/python3.10/site-packages/services/apm_synthetics/src/oci_cli_apm_synthetic/generated/apmsynthetic_cli.py +usr/lib/python3.10/site-packages/services/apm_synthetics/src/oci_cli_apm_synthetic/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/apm_synthetics/tests +usr/lib/python3.10/site-packages/services/apm_synthetics/tests/__init__.py +usr/lib/python3.10/site-packages/services/apm_traces +usr/lib/python3.10/site-packages/services/apm_traces/__init__.py +usr/lib/python3.10/site-packages/services/apm_traces/src +usr/lib/python3.10/site-packages/services/apm_traces/src/__init__.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_apm_traces +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_apm_traces/__init__.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_apm_traces/generated +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_apm_traces/generated/__init__.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_apm_traces/generated/apm_traces_service_cli.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_query +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_query/__init__.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_query/generated +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_query/generated/__init__.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_query/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_query/generated/query_cli.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_query/query_cli_extended.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_trace +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_trace/__init__.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_trace/generated +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_trace/generated/__init__.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_trace/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/apm_traces/src/oci_cli_trace/generated/trace_cli.py +usr/lib/python3.10/site-packages/services/apm_traces/tests +usr/lib/python3.10/site-packages/services/apm_traces/tests/__init__.py +usr/lib/python3.10/site-packages/services/application_migration +usr/lib/python3.10/site-packages/services/application_migration/__init__.py +usr/lib/python3.10/site-packages/services/application_migration/src +usr/lib/python3.10/site-packages/services/application_migration/src/__init__.py +usr/lib/python3.10/site-packages/services/application_migration/src/oci_cli_application_migration +usr/lib/python3.10/site-packages/services/application_migration/src/oci_cli_application_migration/__init__.py +usr/lib/python3.10/site-packages/services/application_migration/src/oci_cli_application_migration/applicationmigration_cli_extended.py +usr/lib/python3.10/site-packages/services/application_migration/src/oci_cli_application_migration/generated +usr/lib/python3.10/site-packages/services/application_migration/src/oci_cli_application_migration/generated/__init__.py +usr/lib/python3.10/site-packages/services/application_migration/src/oci_cli_application_migration/generated/applicationmigration_cli.py +usr/lib/python3.10/site-packages/services/application_migration/src/oci_cli_application_migration/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/application_migration/tests +usr/lib/python3.10/site-packages/services/application_migration/tests/__init__.py +usr/lib/python3.10/site-packages/services/appmgmt_control +usr/lib/python3.10/site-packages/services/appmgmt_control/__init__.py +usr/lib/python3.10/site-packages/services/appmgmt_control/src +usr/lib/python3.10/site-packages/services/appmgmt_control/src/__init__.py +usr/lib/python3.10/site-packages/services/appmgmt_control/src/oci_cli_appmgmt_control +usr/lib/python3.10/site-packages/services/appmgmt_control/src/oci_cli_appmgmt_control/__init__.py +usr/lib/python3.10/site-packages/services/appmgmt_control/src/oci_cli_appmgmt_control/appmgmtcontrol_cli_extended.py +usr/lib/python3.10/site-packages/services/appmgmt_control/src/oci_cli_appmgmt_control/generated +usr/lib/python3.10/site-packages/services/appmgmt_control/src/oci_cli_appmgmt_control/generated/__init__.py +usr/lib/python3.10/site-packages/services/appmgmt_control/src/oci_cli_appmgmt_control/generated/appmgmtcontrol_cli.py +usr/lib/python3.10/site-packages/services/appmgmt_control/src/oci_cli_appmgmt_control/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/appmgmt_control/tests +usr/lib/python3.10/site-packages/services/appmgmt_control/tests/__init__.py +usr/lib/python3.10/site-packages/services/artifacts +usr/lib/python3.10/site-packages/services/artifacts/__init__.py +usr/lib/python3.10/site-packages/services/artifacts/src +usr/lib/python3.10/site-packages/services/artifacts/src/__init__.py +usr/lib/python3.10/site-packages/services/artifacts/src/oci_cli_artifacts +usr/lib/python3.10/site-packages/services/artifacts/src/oci_cli_artifacts/__init__.py +usr/lib/python3.10/site-packages/services/artifacts/src/oci_cli_artifacts/artifacts_cli_extended.py +usr/lib/python3.10/site-packages/services/artifacts/src/oci_cli_artifacts/generated +usr/lib/python3.10/site-packages/services/artifacts/src/oci_cli_artifacts/generated/__init__.py +usr/lib/python3.10/site-packages/services/artifacts/src/oci_cli_artifacts/generated/artifacts_cli.py +usr/lib/python3.10/site-packages/services/artifacts/src/oci_cli_artifacts/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/artifacts/tests +usr/lib/python3.10/site-packages/services/artifacts/tests/__init__.py +usr/lib/python3.10/site-packages/services/audit +usr/lib/python3.10/site-packages/services/audit/__init__.py +usr/lib/python3.10/site-packages/services/audit/src +usr/lib/python3.10/site-packages/services/audit/src/__init__.py +usr/lib/python3.10/site-packages/services/audit/src/oci_cli_audit +usr/lib/python3.10/site-packages/services/audit/src/oci_cli_audit/__init__.py +usr/lib/python3.10/site-packages/services/audit/src/oci_cli_audit/audit_cli_extended.py +usr/lib/python3.10/site-packages/services/audit/src/oci_cli_audit/generated +usr/lib/python3.10/site-packages/services/audit/src/oci_cli_audit/generated/__init__.py +usr/lib/python3.10/site-packages/services/audit/src/oci_cli_audit/generated/audit_cli.py +usr/lib/python3.10/site-packages/services/audit/src/oci_cli_audit/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/audit/tests +usr/lib/python3.10/site-packages/services/audit/tests/__init__.py +usr/lib/python3.10/site-packages/services/autoscaling +usr/lib/python3.10/site-packages/services/autoscaling/__init__.py +usr/lib/python3.10/site-packages/services/autoscaling/src +usr/lib/python3.10/site-packages/services/autoscaling/src/__init__.py +usr/lib/python3.10/site-packages/services/autoscaling/src/oci_cli_auto_scaling +usr/lib/python3.10/site-packages/services/autoscaling/src/oci_cli_auto_scaling/__init__.py +usr/lib/python3.10/site-packages/services/autoscaling/src/oci_cli_auto_scaling/autoscaling_cli_extended.py +usr/lib/python3.10/site-packages/services/autoscaling/src/oci_cli_auto_scaling/generated +usr/lib/python3.10/site-packages/services/autoscaling/src/oci_cli_auto_scaling/generated/__init__.py +usr/lib/python3.10/site-packages/services/autoscaling/src/oci_cli_auto_scaling/generated/autoscaling_cli.py +usr/lib/python3.10/site-packages/services/autoscaling/src/oci_cli_auto_scaling/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/autoscaling/tests +usr/lib/python3.10/site-packages/services/autoscaling/tests/__init__.py +usr/lib/python3.10/site-packages/services/bastion +usr/lib/python3.10/site-packages/services/bastion/__init__.py +usr/lib/python3.10/site-packages/services/bastion/src +usr/lib/python3.10/site-packages/services/bastion/src/__init__.py +usr/lib/python3.10/site-packages/services/bastion/src/oci_cli_bastion +usr/lib/python3.10/site-packages/services/bastion/src/oci_cli_bastion/__init__.py +usr/lib/python3.10/site-packages/services/bastion/src/oci_cli_bastion/bastion_cli_extended.py +usr/lib/python3.10/site-packages/services/bastion/src/oci_cli_bastion/generated +usr/lib/python3.10/site-packages/services/bastion/src/oci_cli_bastion/generated/__init__.py +usr/lib/python3.10/site-packages/services/bastion/src/oci_cli_bastion/generated/bastion_cli.py +usr/lib/python3.10/site-packages/services/bastion/src/oci_cli_bastion/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/bastion/tests +usr/lib/python3.10/site-packages/services/bastion/tests/__init__.py +usr/lib/python3.10/site-packages/services/bds +usr/lib/python3.10/site-packages/services/bds/__init__.py +usr/lib/python3.10/site-packages/services/bds/src +usr/lib/python3.10/site-packages/services/bds/src/__init__.py +usr/lib/python3.10/site-packages/services/bds/src/oci_cli_bds +usr/lib/python3.10/site-packages/services/bds/src/oci_cli_bds/__init__.py +usr/lib/python3.10/site-packages/services/bds/src/oci_cli_bds/bds_cli_extended.py +usr/lib/python3.10/site-packages/services/bds/src/oci_cli_bds/generated +usr/lib/python3.10/site-packages/services/bds/src/oci_cli_bds/generated/__init__.py +usr/lib/python3.10/site-packages/services/bds/src/oci_cli_bds/generated/bds_cli.py +usr/lib/python3.10/site-packages/services/bds/src/oci_cli_bds/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/bds/tests +usr/lib/python3.10/site-packages/services/bds/tests/__init__.py +usr/lib/python3.10/site-packages/services/blockchain +usr/lib/python3.10/site-packages/services/blockchain/__init__.py +usr/lib/python3.10/site-packages/services/blockchain/src +usr/lib/python3.10/site-packages/services/blockchain/src/__init__.py +usr/lib/python3.10/site-packages/services/blockchain/src/oci_cli_blockchain_platform +usr/lib/python3.10/site-packages/services/blockchain/src/oci_cli_blockchain_platform/__init__.py +usr/lib/python3.10/site-packages/services/blockchain/src/oci_cli_blockchain_platform/blockchain_cli_extended.py +usr/lib/python3.10/site-packages/services/blockchain/src/oci_cli_blockchain_platform/generated +usr/lib/python3.10/site-packages/services/blockchain/src/oci_cli_blockchain_platform/generated/__init__.py +usr/lib/python3.10/site-packages/services/blockchain/src/oci_cli_blockchain_platform/generated/blockchainplatform_cli.py +usr/lib/python3.10/site-packages/services/blockchain/src/oci_cli_blockchain_platform/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/blockchain/tests +usr/lib/python3.10/site-packages/services/blockchain/tests/__init__.py +usr/lib/python3.10/site-packages/services/budget +usr/lib/python3.10/site-packages/services/budget/__init__.py +usr/lib/python3.10/site-packages/services/budget/src +usr/lib/python3.10/site-packages/services/budget/src/__init__.py +usr/lib/python3.10/site-packages/services/budget/src/oci_cli_budget +usr/lib/python3.10/site-packages/services/budget/src/oci_cli_budget/__init__.py +usr/lib/python3.10/site-packages/services/budget/src/oci_cli_budget/generated +usr/lib/python3.10/site-packages/services/budget/src/oci_cli_budget/generated/__init__.py +usr/lib/python3.10/site-packages/services/budget/src/oci_cli_budget/generated/budget_cli.py +usr/lib/python3.10/site-packages/services/budget/src/oci_cli_budget/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/budget/tests +usr/lib/python3.10/site-packages/services/budget/tests/__init__.py +usr/lib/python3.10/site-packages/services/certificates +usr/lib/python3.10/site-packages/services/certificates/__init__.py +usr/lib/python3.10/site-packages/services/certificates/src +usr/lib/python3.10/site-packages/services/certificates/src/__init__.py +usr/lib/python3.10/site-packages/services/certificates/src/oci_cli_certificates +usr/lib/python3.10/site-packages/services/certificates/src/oci_cli_certificates/__init__.py +usr/lib/python3.10/site-packages/services/certificates/src/oci_cli_certificates/certificates_cli_extended.py +usr/lib/python3.10/site-packages/services/certificates/src/oci_cli_certificates/generated +usr/lib/python3.10/site-packages/services/certificates/src/oci_cli_certificates/generated/__init__.py +usr/lib/python3.10/site-packages/services/certificates/src/oci_cli_certificates/generated/certificates_cli.py +usr/lib/python3.10/site-packages/services/certificates/src/oci_cli_certificates/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/certificates/tests +usr/lib/python3.10/site-packages/services/certificates/tests/__init__.py +usr/lib/python3.10/site-packages/services/certificates_management +usr/lib/python3.10/site-packages/services/certificates_management/__init__.py +usr/lib/python3.10/site-packages/services/certificates_management/src +usr/lib/python3.10/site-packages/services/certificates_management/src/__init__.py +usr/lib/python3.10/site-packages/services/certificates_management/src/oci_cli_certificates_management +usr/lib/python3.10/site-packages/services/certificates_management/src/oci_cli_certificates_management/__init__.py +usr/lib/python3.10/site-packages/services/certificates_management/src/oci_cli_certificates_management/certificatesmanagement_cli_extended.py +usr/lib/python3.10/site-packages/services/certificates_management/src/oci_cli_certificates_management/generated +usr/lib/python3.10/site-packages/services/certificates_management/src/oci_cli_certificates_management/generated/__init__.py +usr/lib/python3.10/site-packages/services/certificates_management/src/oci_cli_certificates_management/generated/certificatesmanagement_cli.py +usr/lib/python3.10/site-packages/services/certificates_management/src/oci_cli_certificates_management/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/certificates_management/tests +usr/lib/python3.10/site-packages/services/certificates_management/tests/__init__.py +usr/lib/python3.10/site-packages/services/cims +usr/lib/python3.10/site-packages/services/cims/__init__.py +usr/lib/python3.10/site-packages/services/cims/src +usr/lib/python3.10/site-packages/services/cims/src/__init__.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_cims +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_cims/__init__.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_cims/generated +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_cims/generated/__init__.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_cims/generated/support_service_cli.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_cims/support_cli_extended.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_incident +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_incident/__init__.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_incident/cims_cli_extended.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_incident/generated +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_incident/generated/__init__.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_incident/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_incident/generated/incident_cli.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_user +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_user/__init__.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_user/generated +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_user/generated/__init__.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_user/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/cims/src/oci_cli_user/generated/user_cli.py +usr/lib/python3.10/site-packages/services/cims/tests +usr/lib/python3.10/site-packages/services/cims/tests/__init__.py +usr/lib/python3.10/site-packages/services/cloud_guard +usr/lib/python3.10/site-packages/services/cloud_guard/__init__.py +usr/lib/python3.10/site-packages/services/cloud_guard/src +usr/lib/python3.10/site-packages/services/cloud_guard/src/__init__.py +usr/lib/python3.10/site-packages/services/cloud_guard/src/oci_cli_cloud_guard +usr/lib/python3.10/site-packages/services/cloud_guard/src/oci_cli_cloud_guard/__init__.py +usr/lib/python3.10/site-packages/services/cloud_guard/src/oci_cli_cloud_guard/cloud_guard_cli_extended.py +usr/lib/python3.10/site-packages/services/cloud_guard/src/oci_cli_cloud_guard/generated +usr/lib/python3.10/site-packages/services/cloud_guard/src/oci_cli_cloud_guard/generated/__init__.py +usr/lib/python3.10/site-packages/services/cloud_guard/src/oci_cli_cloud_guard/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/cloud_guard/src/oci_cli_cloud_guard/generated/cloudguard_cli.py +usr/lib/python3.10/site-packages/services/cloud_guard/tests +usr/lib/python3.10/site-packages/services/cloud_guard/tests/__init__.py +usr/lib/python3.10/site-packages/services/compute_instance_agent +usr/lib/python3.10/site-packages/services/compute_instance_agent/__init__.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/__init__.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_compute_instance_agent +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_compute_instance_agent/__init__.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_compute_instance_agent/computeinstanceagent_cli_extended.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_compute_instance_agent/generated +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_compute_instance_agent/generated/__init__.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_compute_instance_agent/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_compute_instance_agent/generated/computeinstanceagent_cli.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_compute_instance_agent/generated/instance_agent_service_cli.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_plugin +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_plugin/__init__.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_plugin/generated +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_plugin/generated/__init__.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_plugin/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_plugin/generated/plugin_cli.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_plugin/plugin_cli_extended.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_pluginconfig +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_pluginconfig/__init__.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_pluginconfig/generated +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_pluginconfig/generated/__init__.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_pluginconfig/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_pluginconfig/generated/pluginconfig_cli.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/src/oci_cli_pluginconfig/pluginconfig_cli_extended.py +usr/lib/python3.10/site-packages/services/compute_instance_agent/tests +usr/lib/python3.10/site-packages/services/compute_instance_agent/tests/__init__.py +usr/lib/python3.10/site-packages/services/container_engine +usr/lib/python3.10/site-packages/services/container_engine/__init__.py +usr/lib/python3.10/site-packages/services/container_engine/src +usr/lib/python3.10/site-packages/services/container_engine/src/__init__.py +usr/lib/python3.10/site-packages/services/container_engine/src/oci_cli_container_engine +usr/lib/python3.10/site-packages/services/container_engine/src/oci_cli_container_engine/__init__.py +usr/lib/python3.10/site-packages/services/container_engine/src/oci_cli_container_engine/containerengine_cli_extended.py +usr/lib/python3.10/site-packages/services/container_engine/src/oci_cli_container_engine/generated +usr/lib/python3.10/site-packages/services/container_engine/src/oci_cli_container_engine/generated/__init__.py +usr/lib/python3.10/site-packages/services/container_engine/src/oci_cli_container_engine/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/container_engine/src/oci_cli_container_engine/generated/containerengine_cli.py +usr/lib/python3.10/site-packages/services/container_engine/tests +usr/lib/python3.10/site-packages/services/container_engine/tests/__init__.py +usr/lib/python3.10/site-packages/services/core +usr/lib/python3.10/site-packages/services/core/__init__.py +usr/lib/python3.10/site-packages/services/core/src +usr/lib/python3.10/site-packages/services/core/src/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_blockstorage +usr/lib/python3.10/site-packages/services/core/src/oci_cli_blockstorage/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_blockstorage/blockstorage_cli_extended.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_blockstorage/generated +usr/lib/python3.10/site-packages/services/core/src/oci_cli_blockstorage/generated/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_blockstorage/generated/blockstorage_cli.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_blockstorage/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute/compute_cli_extended.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute/computepic_cli_extended.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute/generated +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute/generated/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute/generated/compute_cli.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute_management +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute_management/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute_management/computemanagement_cli_extended.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute_management/generated +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute_management/generated/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute_management/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_compute_management/generated/computemanagement_cli.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_core +usr/lib/python3.10/site-packages/services/core/src/oci_cli_core/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_core/core_cli_extended.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_core/generated +usr/lib/python3.10/site-packages/services/core/src/oci_cli_core/generated/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_core/generated/core_service_cli.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_virtual_network +usr/lib/python3.10/site-packages/services/core/src/oci_cli_virtual_network/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_virtual_network/generated +usr/lib/python3.10/site-packages/services/core/src/oci_cli_virtual_network/generated/__init__.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_virtual_network/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_virtual_network/generated/virtualnetwork_cli.py +usr/lib/python3.10/site-packages/services/core/src/oci_cli_virtual_network/virtualnetwork_cli_extended.py +usr/lib/python3.10/site-packages/services/core/tests +usr/lib/python3.10/site-packages/services/core/tests/__init__.py +usr/lib/python3.10/site-packages/services/data_catalog +usr/lib/python3.10/site-packages/services/data_catalog/__init__.py +usr/lib/python3.10/site-packages/services/data_catalog/src +usr/lib/python3.10/site-packages/services/data_catalog/src/__init__.py +usr/lib/python3.10/site-packages/services/data_catalog/src/oci_cli_data_catalog +usr/lib/python3.10/site-packages/services/data_catalog/src/oci_cli_data_catalog/__init__.py +usr/lib/python3.10/site-packages/services/data_catalog/src/oci_cli_data_catalog/datacatalog_cli_extended.py +usr/lib/python3.10/site-packages/services/data_catalog/src/oci_cli_data_catalog/generated +usr/lib/python3.10/site-packages/services/data_catalog/src/oci_cli_data_catalog/generated/__init__.py +usr/lib/python3.10/site-packages/services/data_catalog/src/oci_cli_data_catalog/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/data_catalog/src/oci_cli_data_catalog/generated/datacatalog_cli.py +usr/lib/python3.10/site-packages/services/data_catalog/tests +usr/lib/python3.10/site-packages/services/data_catalog/tests/__init__.py +usr/lib/python3.10/site-packages/services/data_flow +usr/lib/python3.10/site-packages/services/data_flow/__init__.py +usr/lib/python3.10/site-packages/services/data_flow/src +usr/lib/python3.10/site-packages/services/data_flow/src/__init__.py +usr/lib/python3.10/site-packages/services/data_flow/src/oci_cli_data_flow +usr/lib/python3.10/site-packages/services/data_flow/src/oci_cli_data_flow/__init__.py +usr/lib/python3.10/site-packages/services/data_flow/src/oci_cli_data_flow/dataflow_cli_extended.py +usr/lib/python3.10/site-packages/services/data_flow/src/oci_cli_data_flow/generated +usr/lib/python3.10/site-packages/services/data_flow/src/oci_cli_data_flow/generated/__init__.py +usr/lib/python3.10/site-packages/services/data_flow/src/oci_cli_data_flow/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/data_flow/src/oci_cli_data_flow/generated/dataflow_cli.py +usr/lib/python3.10/site-packages/services/data_flow/tests +usr/lib/python3.10/site-packages/services/data_flow/tests/__init__.py +usr/lib/python3.10/site-packages/services/data_integration +usr/lib/python3.10/site-packages/services/data_integration/__init__.py +usr/lib/python3.10/site-packages/services/data_integration/src +usr/lib/python3.10/site-packages/services/data_integration/src/__init__.py +usr/lib/python3.10/site-packages/services/data_integration/src/oci_cli_data_integration +usr/lib/python3.10/site-packages/services/data_integration/src/oci_cli_data_integration/__init__.py +usr/lib/python3.10/site-packages/services/data_integration/src/oci_cli_data_integration/dataintegration_cli_extended.py +usr/lib/python3.10/site-packages/services/data_integration/src/oci_cli_data_integration/generated +usr/lib/python3.10/site-packages/services/data_integration/src/oci_cli_data_integration/generated/__init__.py +usr/lib/python3.10/site-packages/services/data_integration/src/oci_cli_data_integration/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/data_integration/src/oci_cli_data_integration/generated/dataintegration_cli.py +usr/lib/python3.10/site-packages/services/data_integration/tests +usr/lib/python3.10/site-packages/services/data_integration/tests/__init__.py +usr/lib/python3.10/site-packages/services/data_labeling_service +usr/lib/python3.10/site-packages/services/data_labeling_service/__init__.py +usr/lib/python3.10/site-packages/services/data_labeling_service/src +usr/lib/python3.10/site-packages/services/data_labeling_service/src/__init__.py +usr/lib/python3.10/site-packages/services/data_labeling_service/src/oci_cli_data_labeling_management +usr/lib/python3.10/site-packages/services/data_labeling_service/src/oci_cli_data_labeling_management/__init__.py +usr/lib/python3.10/site-packages/services/data_labeling_service/src/oci_cli_data_labeling_management/generated +usr/lib/python3.10/site-packages/services/data_labeling_service/src/oci_cli_data_labeling_management/generated/__init__.py +usr/lib/python3.10/site-packages/services/data_labeling_service/src/oci_cli_data_labeling_management/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/data_labeling_service/src/oci_cli_data_labeling_management/generated/datalabelingmanagement_cli.py +usr/lib/python3.10/site-packages/services/data_labeling_service/tests +usr/lib/python3.10/site-packages/services/data_labeling_service/tests/__init__.py +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/__init__.py +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/src +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/src/__init__.py +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/src/oci_cli_data_labeling +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/src/oci_cli_data_labeling/__init__.py +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/src/oci_cli_data_labeling/generated +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/src/oci_cli_data_labeling/generated/__init__.py +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/src/oci_cli_data_labeling/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/src/oci_cli_data_labeling/generated/datalabeling_cli.py +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/tests +usr/lib/python3.10/site-packages/services/data_labeling_service_dataplane/tests/__init__.py +usr/lib/python3.10/site-packages/services/data_safe +usr/lib/python3.10/site-packages/services/data_safe/__init__.py +usr/lib/python3.10/site-packages/services/data_safe/src +usr/lib/python3.10/site-packages/services/data_safe/src/__init__.py +usr/lib/python3.10/site-packages/services/data_safe/src/oci_cli_data_safe +usr/lib/python3.10/site-packages/services/data_safe/src/oci_cli_data_safe/__init__.py +usr/lib/python3.10/site-packages/services/data_safe/src/oci_cli_data_safe/datasafe_cli_extended.py +usr/lib/python3.10/site-packages/services/data_safe/src/oci_cli_data_safe/generated +usr/lib/python3.10/site-packages/services/data_safe/src/oci_cli_data_safe/generated/__init__.py +usr/lib/python3.10/site-packages/services/data_safe/src/oci_cli_data_safe/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/data_safe/src/oci_cli_data_safe/generated/datasafe_cli.py +usr/lib/python3.10/site-packages/services/data_safe/tests +usr/lib/python3.10/site-packages/services/data_safe/tests/__init__.py +usr/lib/python3.10/site-packages/services/data_science +usr/lib/python3.10/site-packages/services/data_science/__init__.py +usr/lib/python3.10/site-packages/services/data_science/src +usr/lib/python3.10/site-packages/services/data_science/src/__init__.py +usr/lib/python3.10/site-packages/services/data_science/src/oci_cli_data_science +usr/lib/python3.10/site-packages/services/data_science/src/oci_cli_data_science/__init__.py +usr/lib/python3.10/site-packages/services/data_science/src/oci_cli_data_science/datascience_cli_extended.py +usr/lib/python3.10/site-packages/services/data_science/src/oci_cli_data_science/generated +usr/lib/python3.10/site-packages/services/data_science/src/oci_cli_data_science/generated/__init__.py +usr/lib/python3.10/site-packages/services/data_science/src/oci_cli_data_science/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/data_science/src/oci_cli_data_science/generated/datascience_cli.py +usr/lib/python3.10/site-packages/services/data_science/tests +usr/lib/python3.10/site-packages/services/data_science/tests/__init__.py +usr/lib/python3.10/site-packages/services/database +usr/lib/python3.10/site-packages/services/database/__init__.py +usr/lib/python3.10/site-packages/services/database/src +usr/lib/python3.10/site-packages/services/database/src/__init__.py +usr/lib/python3.10/site-packages/services/database/src/oci_cli_database +usr/lib/python3.10/site-packages/services/database/src/oci_cli_database/__init__.py +usr/lib/python3.10/site-packages/services/database/src/oci_cli_database/database_cli_extended.py +usr/lib/python3.10/site-packages/services/database/src/oci_cli_database/generated +usr/lib/python3.10/site-packages/services/database/src/oci_cli_database/generated/__init__.py +usr/lib/python3.10/site-packages/services/database/src/oci_cli_database/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/database/src/oci_cli_database/generated/database_cli.py +usr/lib/python3.10/site-packages/services/database/tests +usr/lib/python3.10/site-packages/services/database/tests/__init__.py +usr/lib/python3.10/site-packages/services/database_management +usr/lib/python3.10/site-packages/services/database_management/__init__.py +usr/lib/python3.10/site-packages/services/database_management/src +usr/lib/python3.10/site-packages/services/database_management/src/__init__.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_database_management +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_database_management/__init__.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_database_management/generated +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_database_management/generated/__init__.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_database_management/generated/database_management_service_cli.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_db_management +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_db_management/__init__.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_db_management/dbmanagement_cli_extended.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_db_management/generated +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_db_management/generated/__init__.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_db_management/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_db_management/generated/dbmanagement_cli.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_sql_tuning +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_sql_tuning/__init__.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_sql_tuning/generated +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_sql_tuning/generated/__init__.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_sql_tuning/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_sql_tuning/generated/sqltuning_cli.py +usr/lib/python3.10/site-packages/services/database_management/src/oci_cli_sql_tuning/sqltuning_cli_extended.py +usr/lib/python3.10/site-packages/services/database_management/tests +usr/lib/python3.10/site-packages/services/database_management/tests/__init__.py +usr/lib/python3.10/site-packages/services/database_migration +usr/lib/python3.10/site-packages/services/database_migration/__init__.py +usr/lib/python3.10/site-packages/services/database_migration/src +usr/lib/python3.10/site-packages/services/database_migration/src/__init__.py +usr/lib/python3.10/site-packages/services/database_migration/src/oci_cli_database_migration +usr/lib/python3.10/site-packages/services/database_migration/src/oci_cli_database_migration/__init__.py +usr/lib/python3.10/site-packages/services/database_migration/src/oci_cli_database_migration/databasemigration_cli_extended.py +usr/lib/python3.10/site-packages/services/database_migration/src/oci_cli_database_migration/generated +usr/lib/python3.10/site-packages/services/database_migration/src/oci_cli_database_migration/generated/__init__.py +usr/lib/python3.10/site-packages/services/database_migration/src/oci_cli_database_migration/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/database_migration/src/oci_cli_database_migration/generated/databasemigration_cli.py +usr/lib/python3.10/site-packages/services/database_migration/tests +usr/lib/python3.10/site-packages/services/database_migration/tests/__init__.py +usr/lib/python3.10/site-packages/services/database_tools +usr/lib/python3.10/site-packages/services/database_tools/__init__.py +usr/lib/python3.10/site-packages/services/database_tools/src +usr/lib/python3.10/site-packages/services/database_tools/src/__init__.py +usr/lib/python3.10/site-packages/services/database_tools/src/oci_cli_database_tools +usr/lib/python3.10/site-packages/services/database_tools/src/oci_cli_database_tools/__init__.py +usr/lib/python3.10/site-packages/services/database_tools/src/oci_cli_database_tools/databasetools_cli_extended.py +usr/lib/python3.10/site-packages/services/database_tools/src/oci_cli_database_tools/generated +usr/lib/python3.10/site-packages/services/database_tools/src/oci_cli_database_tools/generated/__init__.py +usr/lib/python3.10/site-packages/services/database_tools/src/oci_cli_database_tools/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/database_tools/src/oci_cli_database_tools/generated/databasetools_cli.py +usr/lib/python3.10/site-packages/services/database_tools/tests +usr/lib/python3.10/site-packages/services/database_tools/tests/__init__.py +usr/lib/python3.10/site-packages/services/devops +usr/lib/python3.10/site-packages/services/devops/__init__.py +usr/lib/python3.10/site-packages/services/devops/src +usr/lib/python3.10/site-packages/services/devops/src/__init__.py +usr/lib/python3.10/site-packages/services/devops/src/oci_cli_devops +usr/lib/python3.10/site-packages/services/devops/src/oci_cli_devops/__init__.py +usr/lib/python3.10/site-packages/services/devops/src/oci_cli_devops/devops_build_cli_extended.py +usr/lib/python3.10/site-packages/services/devops/src/oci_cli_devops/devops_cli_extended.py +usr/lib/python3.10/site-packages/services/devops/src/oci_cli_devops/generated +usr/lib/python3.10/site-packages/services/devops/src/oci_cli_devops/generated/__init__.py +usr/lib/python3.10/site-packages/services/devops/src/oci_cli_devops/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/devops/src/oci_cli_devops/generated/devops_cli.py +usr/lib/python3.10/site-packages/services/devops/tests +usr/lib/python3.10/site-packages/services/devops/tests/__init__.py +usr/lib/python3.10/site-packages/services/dns +usr/lib/python3.10/site-packages/services/dns/__init__.py +usr/lib/python3.10/site-packages/services/dns/src +usr/lib/python3.10/site-packages/services/dns/src/__init__.py +usr/lib/python3.10/site-packages/services/dns/src/oci_cli_dns +usr/lib/python3.10/site-packages/services/dns/src/oci_cli_dns/__init__.py +usr/lib/python3.10/site-packages/services/dns/src/oci_cli_dns/dns_cli_extended.py +usr/lib/python3.10/site-packages/services/dns/src/oci_cli_dns/generated +usr/lib/python3.10/site-packages/services/dns/src/oci_cli_dns/generated/__init__.py +usr/lib/python3.10/site-packages/services/dns/src/oci_cli_dns/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/dns/src/oci_cli_dns/generated/dns_cli.py +usr/lib/python3.10/site-packages/services/dns/tests +usr/lib/python3.10/site-packages/services/dns/tests/__init__.py +usr/lib/python3.10/site-packages/services/dts +usr/lib/python3.10/site-packages/services/dts/__init__.py +usr/lib/python3.10/site-packages/services/dts/src +usr/lib/python3.10/site-packages/services/dts/src/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/applianceexportjob_cli_extended.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/applianceexportjob_constants.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/generated +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/generated/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/generated/applianceexportjob_cli.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/manifest +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/manifest/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/manifest/manifest_constants.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/manifest/manifest_iterator.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/manifest/manifest_line_item.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/manifest/manifest_stats.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/manifest/manifest_stats_consumer.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/manifest/manifest_writer.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_appliance_export_job/manifest/object_uploader.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/appliance_auth_manager.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/appliance_cert_manager.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/appliance_client_proxy.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/appliance_config.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/appliance_config_manager.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/appliance_config_spec.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/appliance_constants.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/appliance_init_auth.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/appliance_init_auth_spec.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/base_client.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/cli_utils.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/dts_service_cli_extended.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/dts_transform.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/generated +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/generated/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/generated/dts_service_cli.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/nfs_dataset_client_proxy.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/nfsdataset_cli_extended.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/diagnose_tools_client.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/diagnose_tools_client_composite_operations.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models/dataset_seal_status.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models/details.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models/nfs_dataset_info.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models/nfs_dataset_spec.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models/nfs_export_config.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models/nfs_export_details.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models/object_storage_upload_config.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models/passphrase_details.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/models/physical_transfer_appliance.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/nfs_dataset_client.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/nfs_dataset_client_composite_operations.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/physical_transfer_appliance_client.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/client/physical_transfer_appliance_client_composite_operations.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physical_appliance_control_plane/service_endpoints.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_dts/physicalappliance_cli_extended.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_shipping_vendors +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_shipping_vendors/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_shipping_vendors/generated +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_shipping_vendors/generated/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_shipping_vendors/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_shipping_vendors/generated/shippingvendors_cli.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance/generated +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance/generated/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance/generated/transferappliance_cli.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance/transferappliance_cli_extended.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance_entitlement +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance_entitlement/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance_entitlement/generated +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance_entitlement/generated/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance_entitlement/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance_entitlement/generated/transferapplianceentitlement_cli.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_appliance_entitlement/transferapplianceentitlement_cli_extended.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_device +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_device/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_device/generated +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_device/generated/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_device/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_device/generated/transferdevice_cli.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_job +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_job/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_job/generated +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_job/generated/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_job/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_job/generated/transferjob_cli.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_job/transferjob_cli_extended.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_package +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_package/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_package/generated +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_package/generated/__init__.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_package/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/dts/src/oci_cli_transfer_package/generated/transferpackage_cli.py +usr/lib/python3.10/site-packages/services/dts/tests +usr/lib/python3.10/site-packages/services/dts/tests/__init__.py +usr/lib/python3.10/site-packages/services/email +usr/lib/python3.10/site-packages/services/email/__init__.py +usr/lib/python3.10/site-packages/services/email/src +usr/lib/python3.10/site-packages/services/email/src/__init__.py +usr/lib/python3.10/site-packages/services/email/src/oci_cli_email +usr/lib/python3.10/site-packages/services/email/src/oci_cli_email/__init__.py +usr/lib/python3.10/site-packages/services/email/src/oci_cli_email/email_cli_extended.py +usr/lib/python3.10/site-packages/services/email/src/oci_cli_email/generated +usr/lib/python3.10/site-packages/services/email/src/oci_cli_email/generated/__init__.py +usr/lib/python3.10/site-packages/services/email/src/oci_cli_email/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/email/src/oci_cli_email/generated/email_cli.py +usr/lib/python3.10/site-packages/services/email/tests +usr/lib/python3.10/site-packages/services/email/tests/__init__.py +usr/lib/python3.10/site-packages/services/events +usr/lib/python3.10/site-packages/services/events/__init__.py +usr/lib/python3.10/site-packages/services/events/src +usr/lib/python3.10/site-packages/services/events/src/__init__.py +usr/lib/python3.10/site-packages/services/events/src/oci_cli_events +usr/lib/python3.10/site-packages/services/events/src/oci_cli_events/__init__.py +usr/lib/python3.10/site-packages/services/events/src/oci_cli_events/generated +usr/lib/python3.10/site-packages/services/events/src/oci_cli_events/generated/__init__.py +usr/lib/python3.10/site-packages/services/events/src/oci_cli_events/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/events/src/oci_cli_events/generated/events_cli.py +usr/lib/python3.10/site-packages/services/events/tests +usr/lib/python3.10/site-packages/services/events/tests/__init__.py +usr/lib/python3.10/site-packages/services/file_storage +usr/lib/python3.10/site-packages/services/file_storage/__init__.py +usr/lib/python3.10/site-packages/services/file_storage/src +usr/lib/python3.10/site-packages/services/file_storage/src/__init__.py +usr/lib/python3.10/site-packages/services/file_storage/src/oci_cli_file_storage +usr/lib/python3.10/site-packages/services/file_storage/src/oci_cli_file_storage/__init__.py +usr/lib/python3.10/site-packages/services/file_storage/src/oci_cli_file_storage/generated +usr/lib/python3.10/site-packages/services/file_storage/src/oci_cli_file_storage/generated/__init__.py +usr/lib/python3.10/site-packages/services/file_storage/src/oci_cli_file_storage/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/file_storage/src/oci_cli_file_storage/generated/filestorage_cli.py +usr/lib/python3.10/site-packages/services/file_storage/tests +usr/lib/python3.10/site-packages/services/file_storage/tests/__init__.py +usr/lib/python3.10/site-packages/services/functions +usr/lib/python3.10/site-packages/services/functions/__init__.py +usr/lib/python3.10/site-packages/services/functions/src +usr/lib/python3.10/site-packages/services/functions/src/__init__.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions/__init__.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions/functions_cli_extended.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions/generated +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions/generated/__init__.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions/generated/fn_service_cli.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_invoke +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_invoke/__init__.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_invoke/generated +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_invoke/generated/__init__.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_invoke/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_invoke/generated/functionsinvoke_cli.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_management +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_management/__init__.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_management/generated +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_management/generated/__init__.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_management/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/functions/src/oci_cli_functions_management/generated/functionsmanagement_cli.py +usr/lib/python3.10/site-packages/services/functions/tests +usr/lib/python3.10/site-packages/services/functions/tests/__init__.py +usr/lib/python3.10/site-packages/services/generic_artifacts_content +usr/lib/python3.10/site-packages/services/generic_artifacts_content/__init__.py +usr/lib/python3.10/site-packages/services/generic_artifacts_content/src +usr/lib/python3.10/site-packages/services/generic_artifacts_content/src/__init__.py +usr/lib/python3.10/site-packages/services/generic_artifacts_content/src/oci_cli_generic_artifacts_content +usr/lib/python3.10/site-packages/services/generic_artifacts_content/src/oci_cli_generic_artifacts_content/__init__.py +usr/lib/python3.10/site-packages/services/generic_artifacts_content/src/oci_cli_generic_artifacts_content/generated +usr/lib/python3.10/site-packages/services/generic_artifacts_content/src/oci_cli_generic_artifacts_content/generated/__init__.py +usr/lib/python3.10/site-packages/services/generic_artifacts_content/src/oci_cli_generic_artifacts_content/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/generic_artifacts_content/src/oci_cli_generic_artifacts_content/generated/genericartifactscontent_cli.py +usr/lib/python3.10/site-packages/services/generic_artifacts_content/src/oci_cli_generic_artifacts_content/generic_artifacts_content_cli_extended.py +usr/lib/python3.10/site-packages/services/generic_artifacts_content/tests +usr/lib/python3.10/site-packages/services/generic_artifacts_content/tests/__init__.py +usr/lib/python3.10/site-packages/services/golden_gate +usr/lib/python3.10/site-packages/services/golden_gate/__init__.py +usr/lib/python3.10/site-packages/services/golden_gate/src +usr/lib/python3.10/site-packages/services/golden_gate/src/__init__.py +usr/lib/python3.10/site-packages/services/golden_gate/src/oci_cli_golden_gate +usr/lib/python3.10/site-packages/services/golden_gate/src/oci_cli_golden_gate/__init__.py +usr/lib/python3.10/site-packages/services/golden_gate/src/oci_cli_golden_gate/generated +usr/lib/python3.10/site-packages/services/golden_gate/src/oci_cli_golden_gate/generated/__init__.py +usr/lib/python3.10/site-packages/services/golden_gate/src/oci_cli_golden_gate/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/golden_gate/src/oci_cli_golden_gate/generated/goldengate_cli.py +usr/lib/python3.10/site-packages/services/golden_gate/src/oci_cli_golden_gate/golden_gate_cli_extended.py +usr/lib/python3.10/site-packages/services/golden_gate/tests +usr/lib/python3.10/site-packages/services/golden_gate/tests/__init__.py +usr/lib/python3.10/site-packages/services/healthchecks +usr/lib/python3.10/site-packages/services/healthchecks/__init__.py +usr/lib/python3.10/site-packages/services/healthchecks/src +usr/lib/python3.10/site-packages/services/healthchecks/src/__init__.py +usr/lib/python3.10/site-packages/services/healthchecks/src/oci_cli_health_checks +usr/lib/python3.10/site-packages/services/healthchecks/src/oci_cli_health_checks/__init__.py +usr/lib/python3.10/site-packages/services/healthchecks/src/oci_cli_health_checks/generated +usr/lib/python3.10/site-packages/services/healthchecks/src/oci_cli_health_checks/generated/__init__.py +usr/lib/python3.10/site-packages/services/healthchecks/src/oci_cli_health_checks/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/healthchecks/src/oci_cli_health_checks/generated/healthchecks_cli.py +usr/lib/python3.10/site-packages/services/healthchecks/src/oci_cli_health_checks/healthchecks_cli_extended.py +usr/lib/python3.10/site-packages/services/healthchecks/tests +usr/lib/python3.10/site-packages/services/healthchecks/tests/__init__.py +usr/lib/python3.10/site-packages/services/identity +usr/lib/python3.10/site-packages/services/identity/__init__.py +usr/lib/python3.10/site-packages/services/identity/src +usr/lib/python3.10/site-packages/services/identity/src/__init__.py +usr/lib/python3.10/site-packages/services/identity/src/oci_cli_identity +usr/lib/python3.10/site-packages/services/identity/src/oci_cli_identity/__init__.py +usr/lib/python3.10/site-packages/services/identity/src/oci_cli_identity/generated +usr/lib/python3.10/site-packages/services/identity/src/oci_cli_identity/generated/__init__.py +usr/lib/python3.10/site-packages/services/identity/src/oci_cli_identity/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/identity/src/oci_cli_identity/generated/identity_cli.py +usr/lib/python3.10/site-packages/services/identity/src/oci_cli_identity/identity_cli_extended.py +usr/lib/python3.10/site-packages/services/identity/tests +usr/lib/python3.10/site-packages/services/identity/tests/__init__.py +usr/lib/python3.10/site-packages/services/identity_data_plane +usr/lib/python3.10/site-packages/services/identity_data_plane/__init__.py +usr/lib/python3.10/site-packages/services/identity_data_plane/src +usr/lib/python3.10/site-packages/services/identity_data_plane/src/__init__.py +usr/lib/python3.10/site-packages/services/identity_data_plane/src/oci_cli_dataplane +usr/lib/python3.10/site-packages/services/identity_data_plane/src/oci_cli_dataplane/__init__.py +usr/lib/python3.10/site-packages/services/identity_data_plane/src/oci_cli_dataplane/generated +usr/lib/python3.10/site-packages/services/identity_data_plane/src/oci_cli_dataplane/generated/__init__.py +usr/lib/python3.10/site-packages/services/identity_data_plane/src/oci_cli_dataplane/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/identity_data_plane/src/oci_cli_dataplane/generated/dataplane_cli.py +usr/lib/python3.10/site-packages/services/identity_data_plane/src/oci_cli_dataplane/identity_data_plane_cli_extended.py +usr/lib/python3.10/site-packages/services/identity_data_plane/tests +usr/lib/python3.10/site-packages/services/identity_data_plane/tests/__init__.py +usr/lib/python3.10/site-packages/services/integration +usr/lib/python3.10/site-packages/services/integration/__init__.py +usr/lib/python3.10/site-packages/services/integration/src +usr/lib/python3.10/site-packages/services/integration/src/__init__.py +usr/lib/python3.10/site-packages/services/integration/src/oci_cli_integration_instance +usr/lib/python3.10/site-packages/services/integration/src/oci_cli_integration_instance/__init__.py +usr/lib/python3.10/site-packages/services/integration/src/oci_cli_integration_instance/generated +usr/lib/python3.10/site-packages/services/integration/src/oci_cli_integration_instance/generated/__init__.py +usr/lib/python3.10/site-packages/services/integration/src/oci_cli_integration_instance/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/integration/src/oci_cli_integration_instance/generated/integrationinstance_cli.py +usr/lib/python3.10/site-packages/services/integration/src/oci_cli_integration_instance/integration_cli_extended.py +usr/lib/python3.10/site-packages/services/integration/tests +usr/lib/python3.10/site-packages/services/integration/tests/__init__.py +usr/lib/python3.10/site-packages/services/jms +usr/lib/python3.10/site-packages/services/jms/__init__.py +usr/lib/python3.10/site-packages/services/jms/src +usr/lib/python3.10/site-packages/services/jms/src/__init__.py +usr/lib/python3.10/site-packages/services/jms/src/oci_cli_java_management_service +usr/lib/python3.10/site-packages/services/jms/src/oci_cli_java_management_service/__init__.py +usr/lib/python3.10/site-packages/services/jms/src/oci_cli_java_management_service/generated +usr/lib/python3.10/site-packages/services/jms/src/oci_cli_java_management_service/generated/__init__.py +usr/lib/python3.10/site-packages/services/jms/src/oci_cli_java_management_service/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/jms/src/oci_cli_java_management_service/generated/javamanagementservice_cli.py +usr/lib/python3.10/site-packages/services/jms/src/oci_cli_java_management_service/javamanagementservice_cli_extended.py +usr/lib/python3.10/site-packages/services/jms/tests +usr/lib/python3.10/site-packages/services/jms/tests/__init__.py +usr/lib/python3.10/site-packages/services/key_management +usr/lib/python3.10/site-packages/services/key_management/__init__.py +usr/lib/python3.10/site-packages/services/key_management/src +usr/lib/python3.10/site-packages/services/key_management/src/__init__.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_key_management +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_key_management/__init__.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_key_management/generated +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_key_management/generated/__init__.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_key_management/generated/kms_service_cli.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_key_management/kms_cli_extended.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_crypto +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_crypto/__init__.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_crypto/generated +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_crypto/generated/__init__.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_crypto/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_crypto/generated/kmscrypto_cli.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_management +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_management/__init__.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_management/generated +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_management/generated/__init__.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_management/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_management/generated/kmsmanagement_cli.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_management/kms_management_cli_extended.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_vault +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_vault/__init__.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_vault/generated +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_vault/generated/__init__.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_vault/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_vault/generated/kmsvault_cli.py +usr/lib/python3.10/site-packages/services/key_management/src/oci_cli_kms_vault/kms_vault_cli_extended.py +usr/lib/python3.10/site-packages/services/key_management/tests +usr/lib/python3.10/site-packages/services/key_management/tests/__init__.py +usr/lib/python3.10/site-packages/services/limits +usr/lib/python3.10/site-packages/services/limits/__init__.py +usr/lib/python3.10/site-packages/services/limits/src +usr/lib/python3.10/site-packages/services/limits/src/__init__.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_limits +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_limits/__init__.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_limits/generated +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_limits/generated/__init__.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_limits/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_limits/generated/limits_cli.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_limits/generated/limits_service_cli.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_limits/limits_cli_extended.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_quotas +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_quotas/__init__.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_quotas/generated +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_quotas/generated/__init__.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_quotas/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_quotas/generated/quotas_cli.py +usr/lib/python3.10/site-packages/services/limits/src/oci_cli_quotas/quotas_cli_extended.py +usr/lib/python3.10/site-packages/services/limits/tests +usr/lib/python3.10/site-packages/services/limits/tests/__init__.py +usr/lib/python3.10/site-packages/services/load_balancer +usr/lib/python3.10/site-packages/services/load_balancer/__init__.py +usr/lib/python3.10/site-packages/services/load_balancer/src +usr/lib/python3.10/site-packages/services/load_balancer/src/__init__.py +usr/lib/python3.10/site-packages/services/load_balancer/src/oci_cli_load_balancer +usr/lib/python3.10/site-packages/services/load_balancer/src/oci_cli_load_balancer/__init__.py +usr/lib/python3.10/site-packages/services/load_balancer/src/oci_cli_load_balancer/generated +usr/lib/python3.10/site-packages/services/load_balancer/src/oci_cli_load_balancer/generated/__init__.py +usr/lib/python3.10/site-packages/services/load_balancer/src/oci_cli_load_balancer/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/load_balancer/src/oci_cli_load_balancer/generated/loadbalancer_cli.py +usr/lib/python3.10/site-packages/services/load_balancer/src/oci_cli_load_balancer/lb_cli_extended.py +usr/lib/python3.10/site-packages/services/load_balancer/tests +usr/lib/python3.10/site-packages/services/load_balancer/tests/__init__.py +usr/lib/python3.10/site-packages/services/log_analytics +usr/lib/python3.10/site-packages/services/log_analytics/__init__.py +usr/lib/python3.10/site-packages/services/log_analytics/src +usr/lib/python3.10/site-packages/services/log_analytics/src/__init__.py +usr/lib/python3.10/site-packages/services/log_analytics/src/oci_cli_log_analytics +usr/lib/python3.10/site-packages/services/log_analytics/src/oci_cli_log_analytics/__init__.py +usr/lib/python3.10/site-packages/services/log_analytics/src/oci_cli_log_analytics/generated +usr/lib/python3.10/site-packages/services/log_analytics/src/oci_cli_log_analytics/generated/__init__.py +usr/lib/python3.10/site-packages/services/log_analytics/src/oci_cli_log_analytics/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/log_analytics/src/oci_cli_log_analytics/generated/loganalytics_cli.py +usr/lib/python3.10/site-packages/services/log_analytics/src/oci_cli_log_analytics/log_analytics_cli_extended.py +usr/lib/python3.10/site-packages/services/log_analytics/tests +usr/lib/python3.10/site-packages/services/log_analytics/tests/__init__.py +usr/lib/python3.10/site-packages/services/logging +usr/lib/python3.10/site-packages/services/logging/__init__.py +usr/lib/python3.10/site-packages/services/logging/src +usr/lib/python3.10/site-packages/services/logging/src/__init__.py +usr/lib/python3.10/site-packages/services/logging/src/oci_cli_logging_management +usr/lib/python3.10/site-packages/services/logging/src/oci_cli_logging_management/__init__.py +usr/lib/python3.10/site-packages/services/logging/src/oci_cli_logging_management/generated +usr/lib/python3.10/site-packages/services/logging/src/oci_cli_logging_management/generated/__init__.py +usr/lib/python3.10/site-packages/services/logging/src/oci_cli_logging_management/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/logging/src/oci_cli_logging_management/generated/loggingmanagement_cli.py +usr/lib/python3.10/site-packages/services/logging/src/oci_cli_logging_management/loggingmanagement_cli_extended.py +usr/lib/python3.10/site-packages/services/logging/tests +usr/lib/python3.10/site-packages/services/logging/tests/__init__.py +usr/lib/python3.10/site-packages/services/loggingingestion +usr/lib/python3.10/site-packages/services/loggingingestion/__init__.py +usr/lib/python3.10/site-packages/services/loggingingestion/src +usr/lib/python3.10/site-packages/services/loggingingestion/src/__init__.py +usr/lib/python3.10/site-packages/services/loggingingestion/src/oci_cli_logging +usr/lib/python3.10/site-packages/services/loggingingestion/src/oci_cli_logging/__init__.py +usr/lib/python3.10/site-packages/services/loggingingestion/src/oci_cli_logging/generated +usr/lib/python3.10/site-packages/services/loggingingestion/src/oci_cli_logging/generated/__init__.py +usr/lib/python3.10/site-packages/services/loggingingestion/src/oci_cli_logging/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/loggingingestion/src/oci_cli_logging/generated/logging_cli.py +usr/lib/python3.10/site-packages/services/loggingingestion/src/oci_cli_logging/logging_cli_extended.py +usr/lib/python3.10/site-packages/services/loggingingestion/tests +usr/lib/python3.10/site-packages/services/loggingingestion/tests/__init__.py +usr/lib/python3.10/site-packages/services/loggingsearch +usr/lib/python3.10/site-packages/services/loggingsearch/__init__.py +usr/lib/python3.10/site-packages/services/loggingsearch/src +usr/lib/python3.10/site-packages/services/loggingsearch/src/__init__.py +usr/lib/python3.10/site-packages/services/loggingsearch/src/oci_cli_log_search +usr/lib/python3.10/site-packages/services/loggingsearch/src/oci_cli_log_search/__init__.py +usr/lib/python3.10/site-packages/services/loggingsearch/src/oci_cli_log_search/generated +usr/lib/python3.10/site-packages/services/loggingsearch/src/oci_cli_log_search/generated/__init__.py +usr/lib/python3.10/site-packages/services/loggingsearch/src/oci_cli_log_search/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/loggingsearch/src/oci_cli_log_search/generated/logsearch_cli.py +usr/lib/python3.10/site-packages/services/loggingsearch/src/oci_cli_log_search/log_search_cli_extended.py +usr/lib/python3.10/site-packages/services/loggingsearch/tests +usr/lib/python3.10/site-packages/services/loggingsearch/tests/__init__.py +usr/lib/python3.10/site-packages/services/management_agent +usr/lib/python3.10/site-packages/services/management_agent/__init__.py +usr/lib/python3.10/site-packages/services/management_agent/src +usr/lib/python3.10/site-packages/services/management_agent/src/__init__.py +usr/lib/python3.10/site-packages/services/management_agent/src/oci_cli_management_agent +usr/lib/python3.10/site-packages/services/management_agent/src/oci_cli_management_agent/__init__.py +usr/lib/python3.10/site-packages/services/management_agent/src/oci_cli_management_agent/generated +usr/lib/python3.10/site-packages/services/management_agent/src/oci_cli_management_agent/generated/__init__.py +usr/lib/python3.10/site-packages/services/management_agent/src/oci_cli_management_agent/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/management_agent/src/oci_cli_management_agent/generated/managementagent_cli.py +usr/lib/python3.10/site-packages/services/management_agent/src/oci_cli_management_agent/management_agent_cli_extended.py +usr/lib/python3.10/site-packages/services/management_agent/tests +usr/lib/python3.10/site-packages/services/management_agent/tests/__init__.py +usr/lib/python3.10/site-packages/services/management_dashboard +usr/lib/python3.10/site-packages/services/management_dashboard/__init__.py +usr/lib/python3.10/site-packages/services/management_dashboard/src +usr/lib/python3.10/site-packages/services/management_dashboard/src/__init__.py +usr/lib/python3.10/site-packages/services/management_dashboard/src/oci_cli_dashx_apis +usr/lib/python3.10/site-packages/services/management_dashboard/src/oci_cli_dashx_apis/__init__.py +usr/lib/python3.10/site-packages/services/management_dashboard/src/oci_cli_dashx_apis/generated +usr/lib/python3.10/site-packages/services/management_dashboard/src/oci_cli_dashx_apis/generated/__init__.py +usr/lib/python3.10/site-packages/services/management_dashboard/src/oci_cli_dashx_apis/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/management_dashboard/src/oci_cli_dashx_apis/generated/dashxapis_cli.py +usr/lib/python3.10/site-packages/services/management_dashboard/src/oci_cli_dashx_apis/management_dashboard_cli_extended.py +usr/lib/python3.10/site-packages/services/management_dashboard/tests +usr/lib/python3.10/site-packages/services/management_dashboard/tests/__init__.py +usr/lib/python3.10/site-packages/services/marketplace +usr/lib/python3.10/site-packages/services/marketplace/__init__.py +usr/lib/python3.10/site-packages/services/marketplace/src +usr/lib/python3.10/site-packages/services/marketplace/src/__init__.py +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_account +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_account/__init__.py +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_account/generated +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_account/generated/__init__.py +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_account/generated/account_cli.py +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_account/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_marketplace +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_marketplace/__init__.py +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_marketplace/generated +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_marketplace/generated/__init__.py +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_marketplace/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_marketplace/generated/marketplace_cli.py +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_marketplace/generated/marketplace_service_cli.py +usr/lib/python3.10/site-packages/services/marketplace/src/oci_cli_marketplace/marketplace_cli_extended.py +usr/lib/python3.10/site-packages/services/marketplace/tests +usr/lib/python3.10/site-packages/services/marketplace/tests/__init__.py +usr/lib/python3.10/site-packages/services/monitoring +usr/lib/python3.10/site-packages/services/monitoring/__init__.py +usr/lib/python3.10/site-packages/services/monitoring/src +usr/lib/python3.10/site-packages/services/monitoring/src/__init__.py +usr/lib/python3.10/site-packages/services/monitoring/src/oci_cli_monitoring +usr/lib/python3.10/site-packages/services/monitoring/src/oci_cli_monitoring/__init__.py +usr/lib/python3.10/site-packages/services/monitoring/src/oci_cli_monitoring/generated +usr/lib/python3.10/site-packages/services/monitoring/src/oci_cli_monitoring/generated/__init__.py +usr/lib/python3.10/site-packages/services/monitoring/src/oci_cli_monitoring/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/monitoring/src/oci_cli_monitoring/generated/monitoring_cli.py +usr/lib/python3.10/site-packages/services/monitoring/src/oci_cli_monitoring/monitoring_cli_extended.py +usr/lib/python3.10/site-packages/services/monitoring/tests +usr/lib/python3.10/site-packages/services/monitoring/tests/__init__.py +usr/lib/python3.10/site-packages/services/mysql +usr/lib/python3.10/site-packages/services/mysql/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src +usr/lib/python3.10/site-packages/services/mysql/src/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_channels +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_channels/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_channels/channels_cli_extended.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_channels/generated +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_channels/generated/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_channels/generated/channels_cli.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_channels/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_backups +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_backups/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_backups/db_backups_cli_extended.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_backups/generated +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_backups/generated/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_backups/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_backups/generated/dbbackups_cli.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_system +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_system/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_system/db_system_cli_extended.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_system/generated +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_system/generated/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_system/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_db_system/generated/dbsystem_cli.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysql +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysql/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysql/generated +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysql/generated/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysql/generated/mysql_service_cli.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysqlaas +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysqlaas/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysqlaas/generated +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysqlaas/generated/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysqlaas/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysqlaas/generated/mysqlaas_cli.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_mysqlaas/mysqlaas_cli_extended.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_work_requests +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_work_requests/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_work_requests/generated +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_work_requests/generated/__init__.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_work_requests/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_work_requests/generated/workrequests_cli.py +usr/lib/python3.10/site-packages/services/mysql/src/oci_cli_work_requests/work_requests_cli_extended.py +usr/lib/python3.10/site-packages/services/mysql/tests +usr/lib/python3.10/site-packages/services/mysql/tests/__init__.py +usr/lib/python3.10/site-packages/services/network_load_balancer +usr/lib/python3.10/site-packages/services/network_load_balancer/__init__.py +usr/lib/python3.10/site-packages/services/network_load_balancer/src +usr/lib/python3.10/site-packages/services/network_load_balancer/src/__init__.py +usr/lib/python3.10/site-packages/services/network_load_balancer/src/oci_cli_network_load_balancer +usr/lib/python3.10/site-packages/services/network_load_balancer/src/oci_cli_network_load_balancer/__init__.py +usr/lib/python3.10/site-packages/services/network_load_balancer/src/oci_cli_network_load_balancer/generated +usr/lib/python3.10/site-packages/services/network_load_balancer/src/oci_cli_network_load_balancer/generated/__init__.py +usr/lib/python3.10/site-packages/services/network_load_balancer/src/oci_cli_network_load_balancer/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/network_load_balancer/src/oci_cli_network_load_balancer/generated/networkloadbalancer_cli.py +usr/lib/python3.10/site-packages/services/network_load_balancer/src/oci_cli_network_load_balancer/networkloadbalancer_cli_extended.py +usr/lib/python3.10/site-packages/services/network_load_balancer/tests +usr/lib/python3.10/site-packages/services/network_load_balancer/tests/__init__.py +usr/lib/python3.10/site-packages/services/nosql +usr/lib/python3.10/site-packages/services/nosql/__init__.py +usr/lib/python3.10/site-packages/services/nosql/src +usr/lib/python3.10/site-packages/services/nosql/src/__init__.py +usr/lib/python3.10/site-packages/services/nosql/src/oci_cli_nosql +usr/lib/python3.10/site-packages/services/nosql/src/oci_cli_nosql/__init__.py +usr/lib/python3.10/site-packages/services/nosql/src/oci_cli_nosql/generated +usr/lib/python3.10/site-packages/services/nosql/src/oci_cli_nosql/generated/__init__.py +usr/lib/python3.10/site-packages/services/nosql/src/oci_cli_nosql/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/nosql/src/oci_cli_nosql/generated/nosql_cli.py +usr/lib/python3.10/site-packages/services/nosql/src/oci_cli_nosql/nosql_cli_extended.py +usr/lib/python3.10/site-packages/services/nosql/tests +usr/lib/python3.10/site-packages/services/nosql/tests/__init__.py +usr/lib/python3.10/site-packages/services/object_storage +usr/lib/python3.10/site-packages/services/object_storage/__init__.py +usr/lib/python3.10/site-packages/services/object_storage/src +usr/lib/python3.10/site-packages/services/object_storage/src/__init__.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/__init__.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/generated +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/generated/__init__.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/generated/objectstorage_cli.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/__init__.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/delete_tasks.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/get_object_tasks.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/head_object_tasks.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/multipart_upload_tasks.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/pooled_multipart_object_assembler.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/transfer_manager.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/transfer_manager_config.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/upload_tasks.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/work_pool.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/work_pool_task.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/object_storage_transfer_manager/wrapped_semaphore.py +usr/lib/python3.10/site-packages/services/object_storage/src/oci_cli_object_storage/objectstorage_cli_extended.py +usr/lib/python3.10/site-packages/services/object_storage/tests +usr/lib/python3.10/site-packages/services/object_storage/tests/__init__.py +usr/lib/python3.10/site-packages/services/oce +usr/lib/python3.10/site-packages/services/oce/__init__.py +usr/lib/python3.10/site-packages/services/oce/src +usr/lib/python3.10/site-packages/services/oce/src/__init__.py +usr/lib/python3.10/site-packages/services/oce/src/oci_cli_oce_instance +usr/lib/python3.10/site-packages/services/oce/src/oci_cli_oce_instance/__init__.py +usr/lib/python3.10/site-packages/services/oce/src/oci_cli_oce_instance/generated +usr/lib/python3.10/site-packages/services/oce/src/oci_cli_oce_instance/generated/__init__.py +usr/lib/python3.10/site-packages/services/oce/src/oci_cli_oce_instance/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/oce/src/oci_cli_oce_instance/generated/oceinstance_cli.py +usr/lib/python3.10/site-packages/services/oce/src/oci_cli_oce_instance/oce_cli_extended.py +usr/lib/python3.10/site-packages/services/oce/tests +usr/lib/python3.10/site-packages/services/oce/tests/__init__.py +usr/lib/python3.10/site-packages/services/ocvp +usr/lib/python3.10/site-packages/services/ocvp/__init__.py +usr/lib/python3.10/site-packages/services/ocvp/src +usr/lib/python3.10/site-packages/services/ocvp/src/__init__.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_esxi_host +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_esxi_host/__init__.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_esxi_host/esxi_host_cli_extended.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_esxi_host/generated +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_esxi_host/generated/__init__.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_esxi_host/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_esxi_host/generated/esxihost_cli.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_ocvp +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_ocvp/__init__.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_ocvp/generated +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_ocvp/generated/__init__.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_ocvp/generated/ocvs_service_cli.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_sddc +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_sddc/__init__.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_sddc/generated +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_sddc/generated/__init__.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_sddc/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_sddc/generated/sddc_cli.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_sddc/sddc_cli_extended.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_work_request +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_work_request/__init__.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_work_request/generated +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_work_request/generated/__init__.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_work_request/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_work_request/generated/workrequest_cli.py +usr/lib/python3.10/site-packages/services/ocvp/src/oci_cli_work_request/work_request_cli_extended.py +usr/lib/python3.10/site-packages/services/ocvp/tests +usr/lib/python3.10/site-packages/services/ocvp/tests/__init__.py +usr/lib/python3.10/site-packages/services/oda +usr/lib/python3.10/site-packages/services/oda/__init__.py +usr/lib/python3.10/site-packages/services/oda/src +usr/lib/python3.10/site-packages/services/oda/src/__init__.py +usr/lib/python3.10/site-packages/services/oda/src/oci_cli_oda +usr/lib/python3.10/site-packages/services/oda/src/oci_cli_oda/__init__.py +usr/lib/python3.10/site-packages/services/oda/src/oci_cli_oda/generated +usr/lib/python3.10/site-packages/services/oda/src/oci_cli_oda/generated/__init__.py +usr/lib/python3.10/site-packages/services/oda/src/oci_cli_oda/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/oda/src/oci_cli_oda/generated/oda_cli.py +usr/lib/python3.10/site-packages/services/oda/src/oci_cli_oda/oda_cli_extended.py +usr/lib/python3.10/site-packages/services/oda/tests +usr/lib/python3.10/site-packages/services/oda/tests/__init__.py +usr/lib/python3.10/site-packages/services/ons +usr/lib/python3.10/site-packages/services/ons/__init__.py +usr/lib/python3.10/site-packages/services/ons/src +usr/lib/python3.10/site-packages/services/ons/src/__init__.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_control_plane +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_control_plane/__init__.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_control_plane/generated +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_control_plane/generated/__init__.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_control_plane/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_control_plane/generated/notificationcontrolplane_cli.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_data_plane +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_data_plane/__init__.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_data_plane/generated +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_data_plane/generated/__init__.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_data_plane/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_notification_data_plane/generated/notificationdataplane_cli.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_ons +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_ons/__init__.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_ons/generated +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_ons/generated/__init__.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_ons/generated/ons_service_cli.py +usr/lib/python3.10/site-packages/services/ons/src/oci_cli_ons/ons_cli_extended.py +usr/lib/python3.10/site-packages/services/ons/tests +usr/lib/python3.10/site-packages/services/ons/tests/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control +usr/lib/python3.10/site-packages/services/operator_access_control/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src +usr/lib/python3.10/site-packages/services/operator_access_control/src/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_access_requests +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_access_requests/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_access_requests/generated +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_access_requests/generated/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_access_requests/generated/accessrequests_cli.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_access_requests/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_access_control +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_access_control/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_access_control/generated +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_access_control/generated/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_access_control/generated/opctl_service_cli.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_access_control/operator_access_control_cli_extended.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_actions +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_actions/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_actions/generated +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_actions/generated/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_actions/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_actions/generated/operatoractions_cli.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control/generated +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control/generated/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control/generated/operatorcontrol_cli.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control_assignment +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control_assignment/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control_assignment/generated +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control_assignment/generated/__init__.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control_assignment/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/operator_access_control/src/oci_cli_operator_control_assignment/generated/operatorcontrolassignment_cli.py +usr/lib/python3.10/site-packages/services/operator_access_control/tests +usr/lib/python3.10/site-packages/services/operator_access_control/tests/__init__.py +usr/lib/python3.10/site-packages/services/opsi +usr/lib/python3.10/site-packages/services/opsi/__init__.py +usr/lib/python3.10/site-packages/services/opsi/src +usr/lib/python3.10/site-packages/services/opsi/src/__init__.py +usr/lib/python3.10/site-packages/services/opsi/src/oci_cli_operations_insights +usr/lib/python3.10/site-packages/services/opsi/src/oci_cli_operations_insights/__init__.py +usr/lib/python3.10/site-packages/services/opsi/src/oci_cli_operations_insights/generated +usr/lib/python3.10/site-packages/services/opsi/src/oci_cli_operations_insights/generated/__init__.py +usr/lib/python3.10/site-packages/services/opsi/src/oci_cli_operations_insights/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/opsi/src/oci_cli_operations_insights/generated/operationsinsights_cli.py +usr/lib/python3.10/site-packages/services/opsi/src/oci_cli_operations_insights/operationsinsights_cli_extended.py +usr/lib/python3.10/site-packages/services/opsi/tests +usr/lib/python3.10/site-packages/services/opsi/tests/__init__.py +usr/lib/python3.10/site-packages/services/optimizer +usr/lib/python3.10/site-packages/services/optimizer/__init__.py +usr/lib/python3.10/site-packages/services/optimizer/src +usr/lib/python3.10/site-packages/services/optimizer/src/__init__.py +usr/lib/python3.10/site-packages/services/optimizer/src/oci_cli_optimizer +usr/lib/python3.10/site-packages/services/optimizer/src/oci_cli_optimizer/__init__.py +usr/lib/python3.10/site-packages/services/optimizer/src/oci_cli_optimizer/generated +usr/lib/python3.10/site-packages/services/optimizer/src/oci_cli_optimizer/generated/__init__.py +usr/lib/python3.10/site-packages/services/optimizer/src/oci_cli_optimizer/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/optimizer/src/oci_cli_optimizer/generated/optimizer_cli.py +usr/lib/python3.10/site-packages/services/optimizer/src/oci_cli_optimizer/optimizer_cli_extended.py +usr/lib/python3.10/site-packages/services/optimizer/tests +usr/lib/python3.10/site-packages/services/optimizer/tests/__init__.py +usr/lib/python3.10/site-packages/services/os_management +usr/lib/python3.10/site-packages/services/os_management/__init__.py +usr/lib/python3.10/site-packages/services/os_management/src +usr/lib/python3.10/site-packages/services/os_management/src/__init__.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_event +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_event/__init__.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_event/event_cli_extended.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_event/generated +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_event/generated/__init__.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_event/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_event/generated/event_cli.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_os_management +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_os_management/__init__.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_os_management/generated +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_os_management/generated/__init__.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_os_management/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_os_management/generated/os_management_service_cli.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_os_management/generated/osmanagement_cli.py +usr/lib/python3.10/site-packages/services/os_management/src/oci_cli_os_management/osmanagement_cli_extended.py +usr/lib/python3.10/site-packages/services/os_management/tests +usr/lib/python3.10/site-packages/services/os_management/tests/__init__.py +usr/lib/python3.10/site-packages/services/osp_gateway +usr/lib/python3.10/site-packages/services/osp_gateway/__init__.py +usr/lib/python3.10/site-packages/services/osp_gateway/src +usr/lib/python3.10/site-packages/services/osp_gateway/src/__init__.py +usr/lib/python3.10/site-packages/services/osp_gateway/src/oci_cli_invoice_service +usr/lib/python3.10/site-packages/services/osp_gateway/src/oci_cli_invoice_service/__init__.py +usr/lib/python3.10/site-packages/services/osp_gateway/src/oci_cli_invoice_service/generated +usr/lib/python3.10/site-packages/services/osp_gateway/src/oci_cli_invoice_service/generated/__init__.py +usr/lib/python3.10/site-packages/services/osp_gateway/src/oci_cli_invoice_service/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/osp_gateway/src/oci_cli_invoice_service/generated/invoiceservice_cli.py +usr/lib/python3.10/site-packages/services/osp_gateway/tests +usr/lib/python3.10/site-packages/services/osp_gateway/tests/__init__.py +usr/lib/python3.10/site-packages/services/resource_manager +usr/lib/python3.10/site-packages/services/resource_manager/__init__.py +usr/lib/python3.10/site-packages/services/resource_manager/src +usr/lib/python3.10/site-packages/services/resource_manager/src/__init__.py +usr/lib/python3.10/site-packages/services/resource_manager/src/oci_cli_resource_manager +usr/lib/python3.10/site-packages/services/resource_manager/src/oci_cli_resource_manager/__init__.py +usr/lib/python3.10/site-packages/services/resource_manager/src/oci_cli_resource_manager/generated +usr/lib/python3.10/site-packages/services/resource_manager/src/oci_cli_resource_manager/generated/__init__.py +usr/lib/python3.10/site-packages/services/resource_manager/src/oci_cli_resource_manager/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/resource_manager/src/oci_cli_resource_manager/generated/resourcemanager_cli.py +usr/lib/python3.10/site-packages/services/resource_manager/src/oci_cli_resource_manager/resourcemanager_cli_extended.py +usr/lib/python3.10/site-packages/services/resource_manager/tests +usr/lib/python3.10/site-packages/services/resource_manager/tests/__init__.py +usr/lib/python3.10/site-packages/services/resource_search +usr/lib/python3.10/site-packages/services/resource_search/__init__.py +usr/lib/python3.10/site-packages/services/resource_search/src +usr/lib/python3.10/site-packages/services/resource_search/src/__init__.py +usr/lib/python3.10/site-packages/services/resource_search/src/oci_cli_resource_search +usr/lib/python3.10/site-packages/services/resource_search/src/oci_cli_resource_search/__init__.py +usr/lib/python3.10/site-packages/services/resource_search/src/oci_cli_resource_search/generated +usr/lib/python3.10/site-packages/services/resource_search/src/oci_cli_resource_search/generated/__init__.py +usr/lib/python3.10/site-packages/services/resource_search/src/oci_cli_resource_search/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/resource_search/src/oci_cli_resource_search/generated/resourcesearch_cli.py +usr/lib/python3.10/site-packages/services/resource_search/src/oci_cli_resource_search/resourcesearch_cli_extended.py +usr/lib/python3.10/site-packages/services/resource_search/tests +usr/lib/python3.10/site-packages/services/resource_search/tests/__init__.py +usr/lib/python3.10/site-packages/services/rover +usr/lib/python3.10/site-packages/services/rover/__init__.py +usr/lib/python3.10/site-packages/services/rover/src +usr/lib/python3.10/site-packages/services/rover/src/__init__.py +usr/lib/python3.10/site-packages/services/rover/src/constants.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover/__init__.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover/generated +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover/generated/__init__.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover/generated/rover_service_cli.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover/rover_utils.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_cluster +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_cluster/__init__.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_cluster/generated +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_cluster/generated/__init__.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_cluster/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_cluster/generated/rovercluster_cli.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_cluster/rovercluster_cli_extended.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_entitlement +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_entitlement/__init__.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_entitlement/generated +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_entitlement/generated/__init__.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_entitlement/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_entitlement/generated/roverentitlement_cli.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_entitlement/roverentitlement_cli_extended.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_node +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_node/__init__.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_node/generated +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_node/generated/__init__.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_node/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_node/generated/rovernode_cli.py +usr/lib/python3.10/site-packages/services/rover/src/oci_cli_rover_node/rovernode_cli_extended.py +usr/lib/python3.10/site-packages/services/rover/tests +usr/lib/python3.10/site-packages/services/rover/tests/__init__.py +usr/lib/python3.10/site-packages/services/sch +usr/lib/python3.10/site-packages/services/sch/__init__.py +usr/lib/python3.10/site-packages/services/sch/src +usr/lib/python3.10/site-packages/services/sch/src/__init__.py +usr/lib/python3.10/site-packages/services/sch/src/oci_cli_service_connector +usr/lib/python3.10/site-packages/services/sch/src/oci_cli_service_connector/__init__.py +usr/lib/python3.10/site-packages/services/sch/src/oci_cli_service_connector/generated +usr/lib/python3.10/site-packages/services/sch/src/oci_cli_service_connector/generated/__init__.py +usr/lib/python3.10/site-packages/services/sch/src/oci_cli_service_connector/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/sch/src/oci_cli_service_connector/generated/serviceconnector_cli.py +usr/lib/python3.10/site-packages/services/sch/src/oci_cli_service_connector/sch_cli_extended.py +usr/lib/python3.10/site-packages/services/sch/tests +usr/lib/python3.10/site-packages/services/sch/tests/__init__.py +usr/lib/python3.10/site-packages/services/secrets +usr/lib/python3.10/site-packages/services/secrets/__init__.py +usr/lib/python3.10/site-packages/services/secrets/src +usr/lib/python3.10/site-packages/services/secrets/src/__init__.py +usr/lib/python3.10/site-packages/services/secrets/src/oci_cli_secrets +usr/lib/python3.10/site-packages/services/secrets/src/oci_cli_secrets/__init__.py +usr/lib/python3.10/site-packages/services/secrets/src/oci_cli_secrets/generated +usr/lib/python3.10/site-packages/services/secrets/src/oci_cli_secrets/generated/__init__.py +usr/lib/python3.10/site-packages/services/secrets/src/oci_cli_secrets/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/secrets/src/oci_cli_secrets/generated/secrets_cli.py +usr/lib/python3.10/site-packages/services/secrets/src/oci_cli_secrets/secrets_cli_extended.py +usr/lib/python3.10/site-packages/services/secrets/tests +usr/lib/python3.10/site-packages/services/secrets/tests/__init__.py +usr/lib/python3.10/site-packages/services/service_catalog +usr/lib/python3.10/site-packages/services/service_catalog/__init__.py +usr/lib/python3.10/site-packages/services/service_catalog/src +usr/lib/python3.10/site-packages/services/service_catalog/src/__init__.py +usr/lib/python3.10/site-packages/services/service_catalog/src/oci_cli_service_catalog +usr/lib/python3.10/site-packages/services/service_catalog/src/oci_cli_service_catalog/__init__.py +usr/lib/python3.10/site-packages/services/service_catalog/src/oci_cli_service_catalog/generated +usr/lib/python3.10/site-packages/services/service_catalog/src/oci_cli_service_catalog/generated/__init__.py +usr/lib/python3.10/site-packages/services/service_catalog/src/oci_cli_service_catalog/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/service_catalog/src/oci_cli_service_catalog/generated/servicecatalog_cli.py +usr/lib/python3.10/site-packages/services/service_catalog/src/oci_cli_service_catalog/servicecatalog_cli_extended.py +usr/lib/python3.10/site-packages/services/service_catalog/tests +usr/lib/python3.10/site-packages/services/service_catalog/tests/__init__.py +usr/lib/python3.10/site-packages/services/service_manager_proxy +usr/lib/python3.10/site-packages/services/service_manager_proxy/__init__.py +usr/lib/python3.10/site-packages/services/service_manager_proxy/src +usr/lib/python3.10/site-packages/services/service_manager_proxy/src/__init__.py +usr/lib/python3.10/site-packages/services/service_manager_proxy/src/oci_cli_service_manager_proxy +usr/lib/python3.10/site-packages/services/service_manager_proxy/src/oci_cli_service_manager_proxy/__init__.py +usr/lib/python3.10/site-packages/services/service_manager_proxy/src/oci_cli_service_manager_proxy/generated +usr/lib/python3.10/site-packages/services/service_manager_proxy/src/oci_cli_service_manager_proxy/generated/__init__.py +usr/lib/python3.10/site-packages/services/service_manager_proxy/src/oci_cli_service_manager_proxy/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/service_manager_proxy/src/oci_cli_service_manager_proxy/generated/servicemanagerproxy_cli.py +usr/lib/python3.10/site-packages/services/service_manager_proxy/tests +usr/lib/python3.10/site-packages/services/service_manager_proxy/tests/__init__.py +usr/lib/python3.10/site-packages/services/streaming +usr/lib/python3.10/site-packages/services/streaming/__init__.py +usr/lib/python3.10/site-packages/services/streaming/src +usr/lib/python3.10/site-packages/services/streaming/src/__init__.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream/__init__.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream/generated +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream/generated/__init__.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream/generated/stream_cli.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream_admin +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream_admin/__init__.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream_admin/generated +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream_admin/generated/__init__.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream_admin/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_stream_admin/generated/streamadmin_cli.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_streaming +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_streaming/__init__.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_streaming/generated +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_streaming/generated/__init__.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_streaming/generated/streaming_service_cli.py +usr/lib/python3.10/site-packages/services/streaming/src/oci_cli_streaming/streaming_cli_extended.py +usr/lib/python3.10/site-packages/services/streaming/tests +usr/lib/python3.10/site-packages/services/streaming/tests/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain/domain_cli_extended.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain/generated +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain/generated/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain/generated/domain_cli.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain_governance +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain_governance/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain_governance/domaingovernance_cli_extended.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain_governance/generated +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain_governance/generated/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain_governance/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_domain_governance/generated/domaingovernance_cli.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_link +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_link/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_link/generated +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_link/generated/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_link/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_link/generated/link_cli.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_link/link_cli_extended.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_orders +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_orders/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_orders/generated +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_orders/generated/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_orders/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_orders/generated/orders_cli.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_orders/orders_cli_extended.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_organization +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_organization/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_organization/generated +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_organization/generated/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_organization/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_organization/generated/organization_cli.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_organization/organization_cli_extended.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_recipient_invitation +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_recipient_invitation/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_recipient_invitation/generated +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_recipient_invitation/generated/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_recipient_invitation/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_recipient_invitation/generated/recipientinvitation_cli.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_recipient_invitation/recipientinvitation_cli_extended.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_sender_invitation +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_sender_invitation/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_sender_invitation/generated +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_sender_invitation/generated/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_sender_invitation/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_sender_invitation/generated/senderinvitation_cli.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_sender_invitation/senderinvitation_cli_extended.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_subscription +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_subscription/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_subscription/generated +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_subscription/generated/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_subscription/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_subscription/generated/subscription_cli.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_subscription/subscription_cli_extended.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_tenant_manager_control_plane +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_tenant_manager_control_plane/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_tenant_manager_control_plane/generated +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_tenant_manager_control_plane/generated/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_tenant_manager_control_plane/generated/organizations_service_cli.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_tenant_manager_control_plane/organizations_service_cli_extended.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_work_request +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_work_request/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_work_request/generated +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_work_request/generated/__init__.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_work_request/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_work_request/generated/workrequest_cli.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/src/oci_cli_work_request/workrequest_cli_extended.py +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/tests +usr/lib/python3.10/site-packages/services/tenant_manager_control_plane/tests/__init__.py +usr/lib/python3.10/site-packages/services/usage +usr/lib/python3.10/site-packages/services/usage/__init__.py +usr/lib/python3.10/site-packages/services/usage/src +usr/lib/python3.10/site-packages/services/usage/src/__init__.py +usr/lib/python3.10/site-packages/services/usage/src/oci_cli_rewards +usr/lib/python3.10/site-packages/services/usage/src/oci_cli_rewards/__init__.py +usr/lib/python3.10/site-packages/services/usage/src/oci_cli_rewards/generated +usr/lib/python3.10/site-packages/services/usage/src/oci_cli_rewards/generated/__init__.py +usr/lib/python3.10/site-packages/services/usage/src/oci_cli_rewards/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/usage/src/oci_cli_rewards/generated/rewards_cli.py +usr/lib/python3.10/site-packages/services/usage/tests +usr/lib/python3.10/site-packages/services/usage/tests/__init__.py +usr/lib/python3.10/site-packages/services/usage_api +usr/lib/python3.10/site-packages/services/usage_api/__init__.py +usr/lib/python3.10/site-packages/services/usage_api/src +usr/lib/python3.10/site-packages/services/usage_api/src/__init__.py +usr/lib/python3.10/site-packages/services/usage_api/src/oci_cli_usageapi +usr/lib/python3.10/site-packages/services/usage_api/src/oci_cli_usageapi/__init__.py +usr/lib/python3.10/site-packages/services/usage_api/src/oci_cli_usageapi/generated +usr/lib/python3.10/site-packages/services/usage_api/src/oci_cli_usageapi/generated/__init__.py +usr/lib/python3.10/site-packages/services/usage_api/src/oci_cli_usageapi/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/usage_api/src/oci_cli_usageapi/generated/usageapi_cli.py +usr/lib/python3.10/site-packages/services/usage_api/tests +usr/lib/python3.10/site-packages/services/usage_api/tests/__init__.py +usr/lib/python3.10/site-packages/services/vault +usr/lib/python3.10/site-packages/services/vault/__init__.py +usr/lib/python3.10/site-packages/services/vault/src +usr/lib/python3.10/site-packages/services/vault/src/__init__.py +usr/lib/python3.10/site-packages/services/vault/src/oci_cli_vaults +usr/lib/python3.10/site-packages/services/vault/src/oci_cli_vaults/__init__.py +usr/lib/python3.10/site-packages/services/vault/src/oci_cli_vaults/generated +usr/lib/python3.10/site-packages/services/vault/src/oci_cli_vaults/generated/__init__.py +usr/lib/python3.10/site-packages/services/vault/src/oci_cli_vaults/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/vault/src/oci_cli_vaults/generated/vaults_cli.py +usr/lib/python3.10/site-packages/services/vault/src/oci_cli_vaults/vaults_cli_extended.py +usr/lib/python3.10/site-packages/services/vault/tests +usr/lib/python3.10/site-packages/services/vault/tests/__init__.py +usr/lib/python3.10/site-packages/services/vulnerability_scanning +usr/lib/python3.10/site-packages/services/vulnerability_scanning/__init__.py +usr/lib/python3.10/site-packages/services/vulnerability_scanning/src +usr/lib/python3.10/site-packages/services/vulnerability_scanning/src/__init__.py +usr/lib/python3.10/site-packages/services/vulnerability_scanning/src/oci_cli_vulnerability_scanning +usr/lib/python3.10/site-packages/services/vulnerability_scanning/src/oci_cli_vulnerability_scanning/__init__.py +usr/lib/python3.10/site-packages/services/vulnerability_scanning/src/oci_cli_vulnerability_scanning/generated +usr/lib/python3.10/site-packages/services/vulnerability_scanning/src/oci_cli_vulnerability_scanning/generated/__init__.py +usr/lib/python3.10/site-packages/services/vulnerability_scanning/src/oci_cli_vulnerability_scanning/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/vulnerability_scanning/src/oci_cli_vulnerability_scanning/generated/vulnerabilityscanning_cli.py +usr/lib/python3.10/site-packages/services/vulnerability_scanning/src/oci_cli_vulnerability_scanning/vss_cli_extended.py +usr/lib/python3.10/site-packages/services/vulnerability_scanning/tests +usr/lib/python3.10/site-packages/services/vulnerability_scanning/tests/__init__.py +usr/lib/python3.10/site-packages/services/waas +usr/lib/python3.10/site-packages/services/waas/__init__.py +usr/lib/python3.10/site-packages/services/waas/src +usr/lib/python3.10/site-packages/services/waas/src/__init__.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_redirect +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_redirect/__init__.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_redirect/generated +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_redirect/generated/__init__.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_redirect/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_redirect/generated/redirect_cli.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_redirect/redirect_cli_extended.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_waas +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_waas/__init__.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_waas/generated +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_waas/generated/__init__.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_waas/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_waas/generated/waas_cli.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_waas/generated/waas_service_cli.py +usr/lib/python3.10/site-packages/services/waas/src/oci_cli_waas/waas_cli_extended.py +usr/lib/python3.10/site-packages/services/waas/tests +usr/lib/python3.10/site-packages/services/waas/tests/__init__.py +usr/lib/python3.10/site-packages/services/waf +usr/lib/python3.10/site-packages/services/waf/__init__.py +usr/lib/python3.10/site-packages/services/waf/src +usr/lib/python3.10/site-packages/services/waf/src/__init__.py +usr/lib/python3.10/site-packages/services/waf/src/oci_cli_waf +usr/lib/python3.10/site-packages/services/waf/src/oci_cli_waf/__init__.py +usr/lib/python3.10/site-packages/services/waf/src/oci_cli_waf/generated +usr/lib/python3.10/site-packages/services/waf/src/oci_cli_waf/generated/__init__.py +usr/lib/python3.10/site-packages/services/waf/src/oci_cli_waf/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/waf/src/oci_cli_waf/generated/waf_cli.py +usr/lib/python3.10/site-packages/services/waf/src/oci_cli_waf/waf_cli_extended.py +usr/lib/python3.10/site-packages/services/waf/tests +usr/lib/python3.10/site-packages/services/waf/tests/__init__.py +usr/lib/python3.10/site-packages/services/work_requests +usr/lib/python3.10/site-packages/services/work_requests/__init__.py +usr/lib/python3.10/site-packages/services/work_requests/src +usr/lib/python3.10/site-packages/services/work_requests/src/__init__.py +usr/lib/python3.10/site-packages/services/work_requests/src/oci_cli_work_request +usr/lib/python3.10/site-packages/services/work_requests/src/oci_cli_work_request/__init__.py +usr/lib/python3.10/site-packages/services/work_requests/src/oci_cli_work_request/generated +usr/lib/python3.10/site-packages/services/work_requests/src/oci_cli_work_request/generated/__init__.py +usr/lib/python3.10/site-packages/services/work_requests/src/oci_cli_work_request/generated/client_mappings.py +usr/lib/python3.10/site-packages/services/work_requests/src/oci_cli_work_request/generated/workrequest_cli.py +usr/lib/python3.10/site-packages/services/work_requests/src/oci_cli_work_request/workrequest_cli_extended.py +usr/lib/python3.10/site-packages/services/work_requests/tests +usr/lib/python3.10/site-packages/services/work_requests/tests/__init__.py diff --git a/config/rootfiles/packages/oci-python-sdk b/config/rootfiles/packages/oci-python-sdk new file mode 100644 index 0000000000..108ef06366 --- /dev/null +++ b/config/rootfiles/packages/oci-python-sdk @@ -0,0 +1,6257 @@ +usr/lib/python3.10/site-packages/oci +#usr/lib/python3.10/site-packages/oci-2.54.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/oci-2.54.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/oci-2.54.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/oci-2.54.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/oci-2.54.0-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/oci-2.54.0-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/oci/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor +usr/lib/python3.10/site-packages/oci/_vendor/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet +usr/lib/python3.10/site-packages/oci/_vendor/chardet/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/big5freq.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/big5prober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/chardistribution.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/charsetgroupprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/charsetprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/cli +usr/lib/python3.10/site-packages/oci/_vendor/chardet/cli/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/cli/chardetect.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/codingstatemachine.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/compat.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/cp949prober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/enums.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/escprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/escsm.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/eucjpprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/euckrfreq.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/euckrprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/euctwfreq.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/euctwprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/gb2312freq.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/gb2312prober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/hebrewprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/jisfreq.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/jpcntx.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/langbulgarianmodel.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/langgreekmodel.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/langhebrewmodel.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/langhungarianmodel.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/langrussianmodel.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/langthaimodel.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/langturkishmodel.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/latin1prober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/mbcharsetprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/mbcsgroupprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/mbcssm.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/metadata +usr/lib/python3.10/site-packages/oci/_vendor/chardet/metadata/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/metadata/languages.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/sbcharsetprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/sbcsgroupprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/sjisprober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/universaldetector.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/utf8prober.py +usr/lib/python3.10/site-packages/oci/_vendor/chardet/version.py +usr/lib/python3.10/site-packages/oci/_vendor/httpsig_cffi +usr/lib/python3.10/site-packages/oci/_vendor/httpsig_cffi/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/httpsig_cffi/requests_auth.py +usr/lib/python3.10/site-packages/oci/_vendor/httpsig_cffi/sign.py +usr/lib/python3.10/site-packages/oci/_vendor/httpsig_cffi/utils.py +usr/lib/python3.10/site-packages/oci/_vendor/httpsig_cffi/verify.py +usr/lib/python3.10/site-packages/oci/_vendor/idna +usr/lib/python3.10/site-packages/oci/_vendor/idna/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/idna/codec.py +usr/lib/python3.10/site-packages/oci/_vendor/idna/compat.py +usr/lib/python3.10/site-packages/oci/_vendor/idna/core.py +usr/lib/python3.10/site-packages/oci/_vendor/idna/idnadata.py +usr/lib/python3.10/site-packages/oci/_vendor/idna/intranges.py +usr/lib/python3.10/site-packages/oci/_vendor/idna/package_data.py +usr/lib/python3.10/site-packages/oci/_vendor/idna/uts46data.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt +usr/lib/python3.10/site-packages/oci/_vendor/jwt/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/__main__.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/algorithms.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/api_jws.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/api_jwt.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/compat.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/contrib +usr/lib/python3.10/site-packages/oci/_vendor/jwt/contrib/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/contrib/algorithms +usr/lib/python3.10/site-packages/oci/_vendor/jwt/contrib/algorithms/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/contrib/algorithms/py_ecdsa.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/contrib/algorithms/pycrypto.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/exceptions.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/help.py +usr/lib/python3.10/site-packages/oci/_vendor/jwt/utils.py +usr/lib/python3.10/site-packages/oci/_vendor/requests +usr/lib/python3.10/site-packages/oci/_vendor/requests/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/__version__.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/_internal_utils.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/adapters.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/api.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/auth.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/certs.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/compat.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/cookies.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/exceptions.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/help.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/hooks.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/models.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/packages.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/sessions.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/status_codes.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/structures.py +usr/lib/python3.10/site-packages/oci/_vendor/requests/utils.py +usr/lib/python3.10/site-packages/oci/_vendor/six.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3 +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/_collections.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/_version.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/connection.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/connectionpool.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/_appengine_environ.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/_securetransport +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/_securetransport/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/_securetransport/bindings.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/_securetransport/low_level.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/appengine.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/ntlmpool.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/pyopenssl.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/securetransport.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/contrib/socks.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/exceptions.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/fields.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/filepost.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/packages +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/packages/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/packages/backports +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/packages/backports/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/packages/backports/makefile.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/packages/six.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/packages/ssl_match_hostname +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/packages/ssl_match_hostname/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/poolmanager.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/request.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/response.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/__init__.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/connection.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/proxy.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/queue.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/request.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/response.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/retry.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/ssl_.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/ssltransport.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/timeout.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/url.py +usr/lib/python3.10/site-packages/oci/_vendor/urllib3/util/wait.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/__init__.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/anomaly_detection_client.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/anomaly_detection_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/__init__.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/ai_private_endpoint.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/ai_private_endpoint_collection.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/ai_private_endpoint_summary.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/anomaly.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/anomaly_detect_result.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/change_ai_private_endpoint_compartment_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/change_data_asset_compartment_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/change_model_compartment_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/change_project_compartment_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/create_ai_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/create_data_asset_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/create_model_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/create_project_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/data_asset.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/data_asset_collection.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/data_asset_summary.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/data_item.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/data_source_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/data_source_details_atp.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/data_source_details_influx.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/data_source_details_object_storage.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/detect_anomalies_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/detection_result_item.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/embedded_detect_anomalies_request.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/influx_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/influx_details_v1v8.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/influx_details_v2v0.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/inline_detect_anomalies_request.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/model.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/model_collection.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/model_summary.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/model_training_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/model_training_results.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/per_signal_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/project.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/project_collection.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/project_summary.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/row_reduction_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/update_ai_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/update_data_asset_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/update_model_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/update_project_details.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/work_request.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/ai_anomaly_detection/models/work_request_summary_collection.py +usr/lib/python3.10/site-packages/oci/ai_language +usr/lib/python3.10/site-packages/oci/ai_language/__init__.py +usr/lib/python3.10/site-packages/oci/ai_language/ai_service_language_client.py +usr/lib/python3.10/site-packages/oci/ai_language/ai_service_language_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/ai_language/models +usr/lib/python3.10/site-packages/oci/ai_language/models/__init__.py +usr/lib/python3.10/site-packages/oci/ai_language/models/batch_detect_dominant_language_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/batch_detect_dominant_language_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/batch_detect_language_entities_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/batch_detect_language_entities_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/batch_detect_language_key_phrases_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/batch_detect_language_key_phrases_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/batch_detect_language_sentiments_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/batch_detect_language_sentiments_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/batch_detect_language_text_classification_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/batch_detect_language_text_classification_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detect_dominant_language_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detect_dominant_language_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detect_language_entities_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detect_language_entities_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detect_language_key_phrases_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detect_language_key_phrases_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detect_language_sentiments_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detect_language_sentiments_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detect_language_text_classification_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detect_language_text_classification_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/detected_language.py +usr/lib/python3.10/site-packages/oci/ai_language/models/document_error.py +usr/lib/python3.10/site-packages/oci/ai_language/models/dominant_language_document.py +usr/lib/python3.10/site-packages/oci/ai_language/models/dominant_language_document_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/entity.py +usr/lib/python3.10/site-packages/oci/ai_language/models/entity_document.py +usr/lib/python3.10/site-packages/oci/ai_language/models/entity_document_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/error_details.py +usr/lib/python3.10/site-packages/oci/ai_language/models/hierarchical_entity.py +usr/lib/python3.10/site-packages/oci/ai_language/models/key_phrase.py +usr/lib/python3.10/site-packages/oci/ai_language/models/key_phrase_document.py +usr/lib/python3.10/site-packages/oci/ai_language/models/key_phrase_document_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/sentiment_aspect.py +usr/lib/python3.10/site-packages/oci/ai_language/models/sentiment_document_result.py +usr/lib/python3.10/site-packages/oci/ai_language/models/sentiment_sentence.py +usr/lib/python3.10/site-packages/oci/ai_language/models/sentiments_document.py +usr/lib/python3.10/site-packages/oci/ai_language/models/text_classification.py +usr/lib/python3.10/site-packages/oci/ai_language/models/text_classification_document.py +usr/lib/python3.10/site-packages/oci/ai_language/models/text_classification_document_result.py +usr/lib/python3.10/site-packages/oci/analytics +usr/lib/python3.10/site-packages/oci/analytics/__init__.py +usr/lib/python3.10/site-packages/oci/analytics/analytics_client.py +usr/lib/python3.10/site-packages/oci/analytics/analytics_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/analytics/models +usr/lib/python3.10/site-packages/oci/analytics/models/__init__.py +usr/lib/python3.10/site-packages/oci/analytics/models/analytics_instance.py +usr/lib/python3.10/site-packages/oci/analytics/models/analytics_instance_summary.py +usr/lib/python3.10/site-packages/oci/analytics/models/capacity.py +usr/lib/python3.10/site-packages/oci/analytics/models/change_analytics_instance_network_endpoint_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/change_compartment_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/create_analytics_instance_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/create_private_access_channel_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/create_vanity_url_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/network_endpoint_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/private_access_channel.py +usr/lib/python3.10/site-packages/oci/analytics/models/private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/private_source_dns_zone.py +usr/lib/python3.10/site-packages/oci/analytics/models/public_endpoint_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/scale_analytics_instance_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/update_analytics_instance_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/update_private_access_channel_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/update_vanity_url_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/vanity_url_details.py +usr/lib/python3.10/site-packages/oci/analytics/models/virtual_cloud_network.py +usr/lib/python3.10/site-packages/oci/analytics/models/work_request.py +usr/lib/python3.10/site-packages/oci/analytics/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/analytics/models/work_request_log.py +usr/lib/python3.10/site-packages/oci/analytics/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/analytics/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/announcements_service +usr/lib/python3.10/site-packages/oci/announcements_service/__init__.py +usr/lib/python3.10/site-packages/oci/announcements_service/announcement_client.py +usr/lib/python3.10/site-packages/oci/announcements_service/announcement_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/announcements_service/announcements_preferences_client.py +usr/lib/python3.10/site-packages/oci/announcements_service/announcements_preferences_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/announcements_service/models +usr/lib/python3.10/site-packages/oci/announcements_service/models/__init__.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/affected_resource.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/announcement.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/announcement_summary.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/announcement_user_status_details.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/announcements_collection.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/announcements_preferences.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/announcements_preferences_summary.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/base_announcement.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/base_announcements_preferences.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/base_create_announcements_preferences_details.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/create_announcements_preferences_details.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/model_property.py +usr/lib/python3.10/site-packages/oci/announcements_service/models/update_announcements_preferences_details.py +usr/lib/python3.10/site-packages/oci/apigateway +usr/lib/python3.10/site-packages/oci/apigateway/__init__.py +usr/lib/python3.10/site-packages/oci/apigateway/api_gateway_client.py +usr/lib/python3.10/site-packages/oci/apigateway/api_gateway_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/apigateway/deployment_client.py +usr/lib/python3.10/site-packages/oci/apigateway/deployment_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/apigateway/gateway_client.py +usr/lib/python3.10/site-packages/oci/apigateway/gateway_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/apigateway/models +usr/lib/python3.10/site-packages/oci/apigateway/models/__init__.py +usr/lib/python3.10/site-packages/oci/apigateway/models/access_log_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/anonymous_route_authorization_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/any_of_route_authorization_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_collection.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_specification.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_specification_logging_policies.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_specification_request_policies.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_specification_route.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_specification_route_backend.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_specification_route_request_policies.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_specification_route_response_policies.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_summary.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_validation_detail.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_validation_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_validation_result.py +usr/lib/python3.10/site-packages/oci/apigateway/models/api_validations.py +usr/lib/python3.10/site-packages/oci/apigateway/models/authentication_only_route_authorization_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/authentication_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/body_validation_request_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/ca_bundle.py +usr/lib/python3.10/site-packages/oci/apigateway/models/certificate.py +usr/lib/python3.10/site-packages/oci/apigateway/models/certificate_collection.py +usr/lib/python3.10/site-packages/oci/apigateway/models/certificate_summary.py +usr/lib/python3.10/site-packages/oci/apigateway/models/certificates_ca_bundle.py +usr/lib/python3.10/site-packages/oci/apigateway/models/certificates_certificate_authority.py +usr/lib/python3.10/site-packages/oci/apigateway/models/change_api_compartment_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/change_certificate_compartment_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/change_deployment_compartment_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/change_gateway_compartment_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/content_validation.py +usr/lib/python3.10/site-packages/oci/apigateway/models/cors_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/create_api_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/create_certificate_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/create_deployment_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/create_gateway_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/create_sdk_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/custom_authentication_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/deployment.py +usr/lib/python3.10/site-packages/oci/apigateway/models/deployment_collection.py +usr/lib/python3.10/site-packages/oci/apigateway/models/deployment_summary.py +usr/lib/python3.10/site-packages/oci/apigateway/models/execution_log_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/external_resp_cache.py +usr/lib/python3.10/site-packages/oci/apigateway/models/filter_header_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/filter_header_policy_item.py +usr/lib/python3.10/site-packages/oci/apigateway/models/filter_query_parameter_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/filter_query_parameter_policy_item.py +usr/lib/python3.10/site-packages/oci/apigateway/models/fixed_ttl_response_cache_store_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/gateway.py +usr/lib/python3.10/site-packages/oci/apigateway/models/gateway_collection.py +usr/lib/python3.10/site-packages/oci/apigateway/models/gateway_summary.py +usr/lib/python3.10/site-packages/oci/apigateway/models/header_field_specification.py +usr/lib/python3.10/site-packages/oci/apigateway/models/header_transformation_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/header_validation_item.py +usr/lib/python3.10/site-packages/oci/apigateway/models/header_validation_request_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/http_backend.py +usr/lib/python3.10/site-packages/oci/apigateway/models/ip_address.py +usr/lib/python3.10/site-packages/oci/apigateway/models/json_web_key.py +usr/lib/python3.10/site-packages/oci/apigateway/models/json_web_token_claim.py +usr/lib/python3.10/site-packages/oci/apigateway/models/jwt_authentication_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/mutual_tls_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/no_cache.py +usr/lib/python3.10/site-packages/oci/apigateway/models/no_content_validation.py +usr/lib/python3.10/site-packages/oci/apigateway/models/oracle_function_backend.py +usr/lib/python3.10/site-packages/oci/apigateway/models/pem_encoded_public_key.py +usr/lib/python3.10/site-packages/oci/apigateway/models/public_key_set.py +usr/lib/python3.10/site-packages/oci/apigateway/models/query_parameter_transformation_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/query_parameter_validation_item.py +usr/lib/python3.10/site-packages/oci/apigateway/models/query_parameter_validation_request_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/rate_limiting_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/remote_json_web_key_set.py +usr/lib/python3.10/site-packages/oci/apigateway/models/rename_header_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/rename_header_policy_item.py +usr/lib/python3.10/site-packages/oci/apigateway/models/rename_query_parameter_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/rename_query_parameter_policy_item.py +usr/lib/python3.10/site-packages/oci/apigateway/models/request_parameter_validation.py +usr/lib/python3.10/site-packages/oci/apigateway/models/response_cache_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/response_cache_lookup_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/response_cache_resp_server.py +usr/lib/python3.10/site-packages/oci/apigateway/models/response_cache_store_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/route_authorization_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/sdk.py +usr/lib/python3.10/site-packages/oci/apigateway/models/sdk_collection.py +usr/lib/python3.10/site-packages/oci/apigateway/models/sdk_language_optional_parameters.py +usr/lib/python3.10/site-packages/oci/apigateway/models/sdk_language_optional_parameters_allowed_value.py +usr/lib/python3.10/site-packages/oci/apigateway/models/sdk_language_type_collection.py +usr/lib/python3.10/site-packages/oci/apigateway/models/sdk_language_type_summary.py +usr/lib/python3.10/site-packages/oci/apigateway/models/sdk_language_types.py +usr/lib/python3.10/site-packages/oci/apigateway/models/sdk_summary.py +usr/lib/python3.10/site-packages/oci/apigateway/models/set_header_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/set_header_policy_item.py +usr/lib/python3.10/site-packages/oci/apigateway/models/set_query_parameter_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/set_query_parameter_policy_item.py +usr/lib/python3.10/site-packages/oci/apigateway/models/simple_lookup_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/static_public_key.py +usr/lib/python3.10/site-packages/oci/apigateway/models/static_public_key_set.py +usr/lib/python3.10/site-packages/oci/apigateway/models/stock_response_backend.py +usr/lib/python3.10/site-packages/oci/apigateway/models/update_api_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/update_certificate_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/update_deployment_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/update_gateway_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/update_sdk_details.py +usr/lib/python3.10/site-packages/oci/apigateway/models/validation_request_policy.py +usr/lib/python3.10/site-packages/oci/apigateway/models/work_request.py +usr/lib/python3.10/site-packages/oci/apigateway/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/apigateway/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/apigateway/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/apigateway/models/work_request_log.py +usr/lib/python3.10/site-packages/oci/apigateway/models/work_request_log_collection.py +usr/lib/python3.10/site-packages/oci/apigateway/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/apigateway/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/apigateway/work_requests_client.py +usr/lib/python3.10/site-packages/oci/apigateway/work_requests_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/apm_config +usr/lib/python3.10/site-packages/oci/apm_config/__init__.py +usr/lib/python3.10/site-packages/oci/apm_config/config_client.py +usr/lib/python3.10/site-packages/oci/apm_config/config_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/apm_config/models +usr/lib/python3.10/site-packages/oci/apm_config/models/__init__.py +usr/lib/python3.10/site-packages/oci/apm_config/models/apdex.py +usr/lib/python3.10/site-packages/oci/apm_config/models/apdex_rules.py +usr/lib/python3.10/site-packages/oci/apm_config/models/apdex_rules_summary.py +usr/lib/python3.10/site-packages/oci/apm_config/models/config.py +usr/lib/python3.10/site-packages/oci/apm_config/models/config_collection.py +usr/lib/python3.10/site-packages/oci/apm_config/models/config_summary.py +usr/lib/python3.10/site-packages/oci/apm_config/models/create_apdex_rules_details.py +usr/lib/python3.10/site-packages/oci/apm_config/models/create_config_details.py +usr/lib/python3.10/site-packages/oci/apm_config/models/create_metric_group_details.py +usr/lib/python3.10/site-packages/oci/apm_config/models/create_span_filter_details.py +usr/lib/python3.10/site-packages/oci/apm_config/models/dimension.py +usr/lib/python3.10/site-packages/oci/apm_config/models/metric.py +usr/lib/python3.10/site-packages/oci/apm_config/models/metric_group.py +usr/lib/python3.10/site-packages/oci/apm_config/models/metric_group_summary.py +usr/lib/python3.10/site-packages/oci/apm_config/models/span_filter.py +usr/lib/python3.10/site-packages/oci/apm_config/models/span_filter_summary.py +usr/lib/python3.10/site-packages/oci/apm_config/models/update_apdex_rules_details.py +usr/lib/python3.10/site-packages/oci/apm_config/models/update_config_details.py +usr/lib/python3.10/site-packages/oci/apm_config/models/update_metric_group_details.py +usr/lib/python3.10/site-packages/oci/apm_config/models/update_span_filter_details.py +usr/lib/python3.10/site-packages/oci/apm_control_plane +usr/lib/python3.10/site-packages/oci/apm_control_plane/__init__.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/apm_domain_client.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/apm_domain_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/__init__.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/apm_domain.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/apm_domain_summary.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/base_domain_details.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/base_key_details.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/change_apm_domain_compartment_details.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/create_apm_domain_details.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/data_key.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/data_key_summary.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/generate_data_key_details.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/remove_data_key_details.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/update_apm_domain_details.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/work_request.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/apm_control_plane/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/apm_synthetics +usr/lib/python3.10/site-packages/oci/apm_synthetics/__init__.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/apm_synthetic_client.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/apm_synthetic_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/__init__.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/browser_monitor_configuration.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/create_monitor_details.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/create_script_details.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/geo_summary.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/header.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/monitor.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/monitor_collection.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/monitor_configuration.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/monitor_result.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/monitor_result_data.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/monitor_script_parameter.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/monitor_script_parameter_info.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/monitor_status_count_map.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/monitor_summary.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/network_configuration.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/public_vantage_point_collection.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/public_vantage_point_summary.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/request_authentication_details.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/request_query_param.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/rest_monitor_configuration.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/script.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/script_collection.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/script_parameter.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/script_parameter_info.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/script_summary.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/scripted_browser_monitor_configuration.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/scripted_rest_monitor_configuration.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/update_monitor_details.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/update_script_details.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/vantage_point_info.py +usr/lib/python3.10/site-packages/oci/apm_synthetics/models/verify_text.py +usr/lib/python3.10/site-packages/oci/apm_traces +usr/lib/python3.10/site-packages/oci/apm_traces/__init__.py +usr/lib/python3.10/site-packages/oci/apm_traces/models +usr/lib/python3.10/site-packages/oci/apm_traces/models/__init__.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/query_details.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/query_result_metadata_summary.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/query_result_response.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/query_result_row.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/query_result_row_type_summary.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/query_results_grouped_by_summary.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/query_results_ordered_by_summary.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/quick_pick_summary.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/span.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/span_log.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/span_log_collection.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/tag.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/trace.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/trace_service_summary.py +usr/lib/python3.10/site-packages/oci/apm_traces/models/trace_span_summary.py +usr/lib/python3.10/site-packages/oci/apm_traces/query_client.py +usr/lib/python3.10/site-packages/oci/apm_traces/query_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/apm_traces/trace_client.py +usr/lib/python3.10/site-packages/oci/apm_traces/trace_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/application_migration +usr/lib/python3.10/site-packages/oci/application_migration/__init__.py +usr/lib/python3.10/site-packages/oci/application_migration/application_migration_client.py +usr/lib/python3.10/site-packages/oci/application_migration/application_migration_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/application_migration/models +usr/lib/python3.10/site-packages/oci/application_migration/models/__init__.py +usr/lib/python3.10/site-packages/oci/application_migration/models/authorization_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/change_compartment_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/configuration_field.py +usr/lib/python3.10/site-packages/oci/application_migration/models/create_migration_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/create_source_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/discovery_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/ics_discovery_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/import_manifest.py +usr/lib/python3.10/site-packages/oci/application_migration/models/import_source_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/internal_authorization_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/internal_source_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/jcs_discovery_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/migration.py +usr/lib/python3.10/site-packages/oci/application_migration/models/migration_summary.py +usr/lib/python3.10/site-packages/oci/application_migration/models/oac_discovery_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/occ_authorization_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/occ_source_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/ocic_authorization_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/ocic_authorization_token_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/ocic_source_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/oic_discovery_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/pcs_discovery_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/resource_field.py +usr/lib/python3.10/site-packages/oci/application_migration/models/soacs_discovery_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/source.py +usr/lib/python3.10/site-packages/oci/application_migration/models/source_application.py +usr/lib/python3.10/site-packages/oci/application_migration/models/source_application_summary.py +usr/lib/python3.10/site-packages/oci/application_migration/models/source_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/source_summary.py +usr/lib/python3.10/site-packages/oci/application_migration/models/update_migration_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/update_source_details.py +usr/lib/python3.10/site-packages/oci/application_migration/models/work_request.py +usr/lib/python3.10/site-packages/oci/application_migration/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/application_migration/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/application_migration/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/application_migration/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/appmgmt_control +usr/lib/python3.10/site-packages/oci/appmgmt_control/__init__.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/appmgmt_control_client.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/appmgmt_control_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/__init__.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/monitored_instance.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/monitored_instance_collection.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/monitored_instance_summary.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/work_request.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/appmgmt_control/models/work_request_summary_collection.py +usr/lib/python3.10/site-packages/oci/artifacts +usr/lib/python3.10/site-packages/oci/artifacts/__init__.py +usr/lib/python3.10/site-packages/oci/artifacts/artifacts_client.py +usr/lib/python3.10/site-packages/oci/artifacts/artifacts_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/artifacts/models +usr/lib/python3.10/site-packages/oci/artifacts/models/__init__.py +usr/lib/python3.10/site-packages/oci/artifacts/models/change_container_repository_compartment_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/change_repository_compartment_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_configuration.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_image.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_image_collection.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_image_layer.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_image_signature.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_image_signature_collection.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_image_signature_summary.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_image_summary.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_repository.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_repository_collection.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_repository_readme.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_repository_summary.py +usr/lib/python3.10/site-packages/oci/artifacts/models/container_version.py +usr/lib/python3.10/site-packages/oci/artifacts/models/create_container_image_signature_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/create_container_repository_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/create_generic_repository_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/create_repository_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/generic_artifact.py +usr/lib/python3.10/site-packages/oci/artifacts/models/generic_artifact_collection.py +usr/lib/python3.10/site-packages/oci/artifacts/models/generic_artifact_summary.py +usr/lib/python3.10/site-packages/oci/artifacts/models/generic_repository.py +usr/lib/python3.10/site-packages/oci/artifacts/models/generic_repository_summary.py +usr/lib/python3.10/site-packages/oci/artifacts/models/remove_container_version_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/repository.py +usr/lib/python3.10/site-packages/oci/artifacts/models/repository_collection.py +usr/lib/python3.10/site-packages/oci/artifacts/models/repository_summary.py +usr/lib/python3.10/site-packages/oci/artifacts/models/restore_container_image_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/update_container_configuration_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/update_container_repository_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/update_generic_artifact_by_path_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/update_generic_artifact_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/update_generic_repository_details.py +usr/lib/python3.10/site-packages/oci/artifacts/models/update_repository_details.py +usr/lib/python3.10/site-packages/oci/audit +usr/lib/python3.10/site-packages/oci/audit/__init__.py +usr/lib/python3.10/site-packages/oci/audit/audit_client.py +usr/lib/python3.10/site-packages/oci/audit/audit_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/audit/models +usr/lib/python3.10/site-packages/oci/audit/models/__init__.py +usr/lib/python3.10/site-packages/oci/audit/models/audit_event.py +usr/lib/python3.10/site-packages/oci/audit/models/configuration.py +usr/lib/python3.10/site-packages/oci/audit/models/data.py +usr/lib/python3.10/site-packages/oci/audit/models/identity.py +usr/lib/python3.10/site-packages/oci/audit/models/request.py +usr/lib/python3.10/site-packages/oci/audit/models/response.py +usr/lib/python3.10/site-packages/oci/audit/models/state_change.py +usr/lib/python3.10/site-packages/oci/audit/models/update_configuration_details.py +usr/lib/python3.10/site-packages/oci/auth +usr/lib/python3.10/site-packages/oci/auth/__init__.py +usr/lib/python3.10/site-packages/oci/auth/auth_utils.py +usr/lib/python3.10/site-packages/oci/auth/certificate_retriever.py +usr/lib/python3.10/site-packages/oci/auth/federation_client.py +usr/lib/python3.10/site-packages/oci/auth/rpt_path_providers.py +usr/lib/python3.10/site-packages/oci/auth/security_token_container.py +usr/lib/python3.10/site-packages/oci/auth/session_key_supplier.py +usr/lib/python3.10/site-packages/oci/auth/signers +usr/lib/python3.10/site-packages/oci/auth/signers/__init__.py +usr/lib/python3.10/site-packages/oci/auth/signers/ephemeral_resource_principals_delegation_token_signer.py +usr/lib/python3.10/site-packages/oci/auth/signers/ephemeral_resource_principals_signer.py +usr/lib/python3.10/site-packages/oci/auth/signers/instance_principals_delegation_token_signer.py +usr/lib/python3.10/site-packages/oci/auth/signers/instance_principals_security_token_signer.py +usr/lib/python3.10/site-packages/oci/auth/signers/resource_principals_delegation_token_signer.py +usr/lib/python3.10/site-packages/oci/auth/signers/resource_principals_federation_signer.py +usr/lib/python3.10/site-packages/oci/auth/signers/resource_principals_signer.py +usr/lib/python3.10/site-packages/oci/auth/signers/security_token_signer.py +usr/lib/python3.10/site-packages/oci/autoscaling +usr/lib/python3.10/site-packages/oci/autoscaling/__init__.py +usr/lib/python3.10/site-packages/oci/autoscaling/auto_scaling_client.py +usr/lib/python3.10/site-packages/oci/autoscaling/auto_scaling_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/autoscaling/models +usr/lib/python3.10/site-packages/oci/autoscaling/models/__init__.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/action.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/auto_scaling_configuration.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/auto_scaling_configuration_summary.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/auto_scaling_policy.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/auto_scaling_policy_summary.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/capacity.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/change_auto_scaling_compartment_details.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/condition.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/create_auto_scaling_configuration_details.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/create_auto_scaling_policy_details.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/create_condition_details.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/create_scheduled_policy_details.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/create_threshold_policy_details.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/cron_execution_schedule.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/execution_schedule.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/instance_pool_resource.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/metric.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/resource.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/resource_action.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/resource_power_action.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/scheduled_policy.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/threshold.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/threshold_policy.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/update_auto_scaling_configuration_details.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/update_auto_scaling_policy_details.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/update_condition_details.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/update_scheduled_policy_details.py +usr/lib/python3.10/site-packages/oci/autoscaling/models/update_threshold_policy_details.py +usr/lib/python3.10/site-packages/oci/base_client.py +usr/lib/python3.10/site-packages/oci/bastion +usr/lib/python3.10/site-packages/oci/bastion/__init__.py +usr/lib/python3.10/site-packages/oci/bastion/bastion_client.py +usr/lib/python3.10/site-packages/oci/bastion/bastion_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/bastion/models +usr/lib/python3.10/site-packages/oci/bastion/models/__init__.py +usr/lib/python3.10/site-packages/oci/bastion/models/bastion.py +usr/lib/python3.10/site-packages/oci/bastion/models/bastion_summary.py +usr/lib/python3.10/site-packages/oci/bastion/models/change_bastion_compartment_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/create_bastion_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/create_managed_ssh_session_target_resource_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/create_port_forwarding_session_target_resource_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/create_session_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/create_session_target_resource_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/managed_ssh_session_target_resource_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/port_forwarding_session_target_resource_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/public_key_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/session.py +usr/lib/python3.10/site-packages/oci/bastion/models/session_summary.py +usr/lib/python3.10/site-packages/oci/bastion/models/target_resource_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/update_bastion_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/update_session_details.py +usr/lib/python3.10/site-packages/oci/bastion/models/work_request.py +usr/lib/python3.10/site-packages/oci/bastion/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/bastion/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/bastion/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/bastion/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/bds +usr/lib/python3.10/site-packages/oci/bds/__init__.py +usr/lib/python3.10/site-packages/oci/bds/bds_client.py +usr/lib/python3.10/site-packages/oci/bds/bds_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/bds/models +usr/lib/python3.10/site-packages/oci/bds/models/__init__.py +usr/lib/python3.10/site-packages/oci/bds/models/activate_bds_metastore_configuration_details.py +usr/lib/python3.10/site-packages/oci/bds/models/add_auto_scaling_configuration_details.py +usr/lib/python3.10/site-packages/oci/bds/models/add_block_storage_details.py +usr/lib/python3.10/site-packages/oci/bds/models/add_cloud_sql_details.py +usr/lib/python3.10/site-packages/oci/bds/models/add_worker_nodes_details.py +usr/lib/python3.10/site-packages/oci/bds/models/auto_scale_policy.py +usr/lib/python3.10/site-packages/oci/bds/models/auto_scale_policy_metric_rule.py +usr/lib/python3.10/site-packages/oci/bds/models/auto_scale_policy_rule.py +usr/lib/python3.10/site-packages/oci/bds/models/auto_scaling_configuration.py +usr/lib/python3.10/site-packages/oci/bds/models/auto_scaling_configuration_summary.py +usr/lib/python3.10/site-packages/oci/bds/models/bds_api_key.py +usr/lib/python3.10/site-packages/oci/bds/models/bds_api_key_summary.py +usr/lib/python3.10/site-packages/oci/bds/models/bds_instance.py +usr/lib/python3.10/site-packages/oci/bds/models/bds_instance_summary.py +usr/lib/python3.10/site-packages/oci/bds/models/bds_metastore_configuration.py +usr/lib/python3.10/site-packages/oci/bds/models/bds_metastore_configuration_summary.py +usr/lib/python3.10/site-packages/oci/bds/models/change_bds_instance_compartment_details.py +usr/lib/python3.10/site-packages/oci/bds/models/change_shape_details.py +usr/lib/python3.10/site-packages/oci/bds/models/change_shape_nodes.py +usr/lib/python3.10/site-packages/oci/bds/models/cloud_sql_details.py +usr/lib/python3.10/site-packages/oci/bds/models/cluster_details.py +usr/lib/python3.10/site-packages/oci/bds/models/create_bds_api_key_details.py +usr/lib/python3.10/site-packages/oci/bds/models/create_bds_instance_details.py +usr/lib/python3.10/site-packages/oci/bds/models/create_bds_metastore_configuration_details.py +usr/lib/python3.10/site-packages/oci/bds/models/create_node_details.py +usr/lib/python3.10/site-packages/oci/bds/models/default_error.py +usr/lib/python3.10/site-packages/oci/bds/models/kerberos_details.py +usr/lib/python3.10/site-packages/oci/bds/models/metric_threshold_rule.py +usr/lib/python3.10/site-packages/oci/bds/models/network_config.py +usr/lib/python3.10/site-packages/oci/bds/models/node.py +usr/lib/python3.10/site-packages/oci/bds/models/remove_auto_scaling_configuration_details.py +usr/lib/python3.10/site-packages/oci/bds/models/remove_cloud_sql_details.py +usr/lib/python3.10/site-packages/oci/bds/models/restart_node_details.py +usr/lib/python3.10/site-packages/oci/bds/models/test_bds_metastore_configuration_details.py +usr/lib/python3.10/site-packages/oci/bds/models/test_bds_object_storage_connection_details.py +usr/lib/python3.10/site-packages/oci/bds/models/update_auto_scaling_configuration_details.py +usr/lib/python3.10/site-packages/oci/bds/models/update_bds_instance_details.py +usr/lib/python3.10/site-packages/oci/bds/models/update_bds_metastore_configuration_details.py +usr/lib/python3.10/site-packages/oci/bds/models/volume_attachment_detail.py +usr/lib/python3.10/site-packages/oci/bds/models/work_request.py +usr/lib/python3.10/site-packages/oci/bds/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/bds/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/bds/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/blockchain +usr/lib/python3.10/site-packages/oci/blockchain/__init__.py +usr/lib/python3.10/site-packages/oci/blockchain/blockchain_platform_client.py +usr/lib/python3.10/site-packages/oci/blockchain/blockchain_platform_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/blockchain/models +usr/lib/python3.10/site-packages/oci/blockchain/models/__init__.py +usr/lib/python3.10/site-packages/oci/blockchain/models/availability_domain.py +usr/lib/python3.10/site-packages/oci/blockchain/models/blockchain_platform.py +usr/lib/python3.10/site-packages/oci/blockchain/models/blockchain_platform_by_hostname.py +usr/lib/python3.10/site-packages/oci/blockchain/models/blockchain_platform_collection.py +usr/lib/python3.10/site-packages/oci/blockchain/models/blockchain_platform_component_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/blockchain_platform_patch_collection.py +usr/lib/python3.10/site-packages/oci/blockchain/models/blockchain_platform_patch_summary.py +usr/lib/python3.10/site-packages/oci/blockchain/models/blockchain_platform_summary.py +usr/lib/python3.10/site-packages/oci/blockchain/models/change_blockchain_platform_compartment_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/create_blockchain_platform_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/create_osn_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/create_peer_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/metadata_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/modify_peer_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/ocpu_allocation_number_param.py +usr/lib/python3.10/site-packages/oci/blockchain/models/ocpu_utilization_info.py +usr/lib/python3.10/site-packages/oci/blockchain/models/osn.py +usr/lib/python3.10/site-packages/oci/blockchain/models/osn_collection.py +usr/lib/python3.10/site-packages/oci/blockchain/models/osn_summary.py +usr/lib/python3.10/site-packages/oci/blockchain/models/peer.py +usr/lib/python3.10/site-packages/oci/blockchain/models/peer_collection.py +usr/lib/python3.10/site-packages/oci/blockchain/models/peer_role.py +usr/lib/python3.10/site-packages/oci/blockchain/models/peer_summary.py +usr/lib/python3.10/site-packages/oci/blockchain/models/replica_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/scale_blockchain_platform_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/scale_storage_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/scaled_blockchain_platform_preview.py +usr/lib/python3.10/site-packages/oci/blockchain/models/scaled_platform_metering_preview.py +usr/lib/python3.10/site-packages/oci/blockchain/models/update_blockchain_platform_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/update_osn_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/update_peer_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/upgrade_blockchain_platform_details.py +usr/lib/python3.10/site-packages/oci/blockchain/models/work_request.py +usr/lib/python3.10/site-packages/oci/blockchain/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/blockchain/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/blockchain/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/blockchain/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/blockchain/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/blockchain/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/blockchain/models/work_request_resource_sub_type_detail.py +usr/lib/python3.10/site-packages/oci/blockchain/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/budget +usr/lib/python3.10/site-packages/oci/budget/__init__.py +usr/lib/python3.10/site-packages/oci/budget/budget_client.py +usr/lib/python3.10/site-packages/oci/budget/budget_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/budget/models +usr/lib/python3.10/site-packages/oci/budget/models/__init__.py +usr/lib/python3.10/site-packages/oci/budget/models/alert_rule.py +usr/lib/python3.10/site-packages/oci/budget/models/alert_rule_summary.py +usr/lib/python3.10/site-packages/oci/budget/models/budget.py +usr/lib/python3.10/site-packages/oci/budget/models/budget_summary.py +usr/lib/python3.10/site-packages/oci/budget/models/create_alert_rule_details.py +usr/lib/python3.10/site-packages/oci/budget/models/create_budget_details.py +usr/lib/python3.10/site-packages/oci/budget/models/update_alert_rule_details.py +usr/lib/python3.10/site-packages/oci/budget/models/update_budget_details.py +usr/lib/python3.10/site-packages/oci/certificates +usr/lib/python3.10/site-packages/oci/certificates/__init__.py +usr/lib/python3.10/site-packages/oci/certificates/certificates_client.py +usr/lib/python3.10/site-packages/oci/certificates/certificates_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/certificates/models +usr/lib/python3.10/site-packages/oci/certificates/models/__init__.py +usr/lib/python3.10/site-packages/oci/certificates/models/ca_bundle.py +usr/lib/python3.10/site-packages/oci/certificates/models/certificate_authority_bundle.py +usr/lib/python3.10/site-packages/oci/certificates/models/certificate_authority_bundle_version_collection.py +usr/lib/python3.10/site-packages/oci/certificates/models/certificate_authority_bundle_version_summary.py +usr/lib/python3.10/site-packages/oci/certificates/models/certificate_bundle.py +usr/lib/python3.10/site-packages/oci/certificates/models/certificate_bundle_public_only.py +usr/lib/python3.10/site-packages/oci/certificates/models/certificate_bundle_version_collection.py +usr/lib/python3.10/site-packages/oci/certificates/models/certificate_bundle_version_summary.py +usr/lib/python3.10/site-packages/oci/certificates/models/certificate_bundle_with_private_key.py +usr/lib/python3.10/site-packages/oci/certificates/models/revocation_status.py +usr/lib/python3.10/site-packages/oci/certificates/models/validity.py +usr/lib/python3.10/site-packages/oci/certificates_management +usr/lib/python3.10/site-packages/oci/certificates_management/__init__.py +usr/lib/python3.10/site-packages/oci/certificates_management/certificates_management_client.py +usr/lib/python3.10/site-packages/oci/certificates_management/certificates_management_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/certificates_management/models +usr/lib/python3.10/site-packages/oci/certificates_management/models/__init__.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/association.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/association_collection.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/association_summary.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/ca_bundle.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/ca_bundle_collection.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/ca_bundle_summary.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_authority.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_authority_collection.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_authority_issuance_expiry_rule.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_authority_rule.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_authority_summary.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_authority_version.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_authority_version_collection.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_authority_version_summary.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_collection.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_renewal_rule.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_revocation_list_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_rule.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_subject.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_subject_alternative_name.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_summary.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_version.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_version_collection.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/certificate_version_summary.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/change_ca_bundle_compartment_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/change_certificate_authority_compartment_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/change_certificate_compartment_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/create_ca_bundle_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/create_certificate_authority_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/create_certificate_authority_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/create_certificate_by_importing_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/create_certificate_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/create_certificate_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/create_certificate_issued_by_internal_ca_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/create_certificate_managed_externally_issued_by_internal_ca_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/create_root_ca_by_generating_internally_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/create_subordinate_ca_issued_by_internal_ca_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/object_storage_bucket_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/revocation_status.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/revoke_certificate_authority_version_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/revoke_certificate_version_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/schedule_certificate_authority_deletion_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/schedule_certificate_authority_version_deletion_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/schedule_certificate_deletion_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/schedule_certificate_version_deletion_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/update_ca_bundle_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/update_certificate_authority_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/update_certificate_authority_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/update_certificate_by_importing_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/update_certificate_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/update_certificate_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/update_certificate_issued_by_internal_ca_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/update_certificate_managed_externally_issued_by_internal_ca_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/update_root_ca_by_generating_internally_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/update_subordinate_ca_issued_by_internal_ca_config_details.py +usr/lib/python3.10/site-packages/oci/certificates_management/models/validity.py +usr/lib/python3.10/site-packages/oci/cims +usr/lib/python3.10/site-packages/oci/cims/__init__.py +usr/lib/python3.10/site-packages/oci/cims/incident_client.py +usr/lib/python3.10/site-packages/oci/cims/incident_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/cims/models +usr/lib/python3.10/site-packages/oci/cims/models/__init__.py +usr/lib/python3.10/site-packages/oci/cims/models/activity_item.py +usr/lib/python3.10/site-packages/oci/cims/models/category.py +usr/lib/python3.10/site-packages/oci/cims/models/classifier.py +usr/lib/python3.10/site-packages/oci/cims/models/contact.py +usr/lib/python3.10/site-packages/oci/cims/models/contact_list.py +usr/lib/python3.10/site-packages/oci/cims/models/contextual_data.py +usr/lib/python3.10/site-packages/oci/cims/models/create_category_details.py +usr/lib/python3.10/site-packages/oci/cims/models/create_incident.py +usr/lib/python3.10/site-packages/oci/cims/models/create_issue_type_details.py +usr/lib/python3.10/site-packages/oci/cims/models/create_item_details.py +usr/lib/python3.10/site-packages/oci/cims/models/create_limit_item_details.py +usr/lib/python3.10/site-packages/oci/cims/models/create_resource_details.py +usr/lib/python3.10/site-packages/oci/cims/models/create_sub_category_details.py +usr/lib/python3.10/site-packages/oci/cims/models/create_tech_support_item_details.py +usr/lib/python3.10/site-packages/oci/cims/models/create_ticket_details.py +usr/lib/python3.10/site-packages/oci/cims/models/create_user_details.py +usr/lib/python3.10/site-packages/oci/cims/models/incident.py +usr/lib/python3.10/site-packages/oci/cims/models/incident_resource_type.py +usr/lib/python3.10/site-packages/oci/cims/models/incident_summary.py +usr/lib/python3.10/site-packages/oci/cims/models/incident_type.py +usr/lib/python3.10/site-packages/oci/cims/models/issue_type.py +usr/lib/python3.10/site-packages/oci/cims/models/item.py +usr/lib/python3.10/site-packages/oci/cims/models/limit_item.py +usr/lib/python3.10/site-packages/oci/cims/models/resource.py +usr/lib/python3.10/site-packages/oci/cims/models/service_category.py +usr/lib/python3.10/site-packages/oci/cims/models/status.py +usr/lib/python3.10/site-packages/oci/cims/models/sub_category.py +usr/lib/python3.10/site-packages/oci/cims/models/tech_support_item.py +usr/lib/python3.10/site-packages/oci/cims/models/tenancy_information.py +usr/lib/python3.10/site-packages/oci/cims/models/ticket.py +usr/lib/python3.10/site-packages/oci/cims/models/update_activity_item_details.py +usr/lib/python3.10/site-packages/oci/cims/models/update_incident.py +usr/lib/python3.10/site-packages/oci/cims/models/update_item_details.py +usr/lib/python3.10/site-packages/oci/cims/models/update_resource_details.py +usr/lib/python3.10/site-packages/oci/cims/models/update_ticket_details.py +usr/lib/python3.10/site-packages/oci/cims/models/user.py +usr/lib/python3.10/site-packages/oci/cims/models/validation_response.py +usr/lib/python3.10/site-packages/oci/cims/user_client.py +usr/lib/python3.10/site-packages/oci/cims/user_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/circuit_breaker +usr/lib/python3.10/site-packages/oci/circuit_breaker/__init__.py +usr/lib/python3.10/site-packages/oci/circuit_breaker/circuit_breaker.py +usr/lib/python3.10/site-packages/oci/cloud_guard +usr/lib/python3.10/site-packages/oci/cloud_guard/__init__.py +usr/lib/python3.10/site-packages/oci/cloud_guard/cloud_guard_client.py +usr/lib/python3.10/site-packages/oci/cloud_guard/cloud_guard_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models +usr/lib/python3.10/site-packages/oci/cloud_guard/models/__init__.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/activity_problem_aggregation.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/activity_problem_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/all_targets_selected.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/attach_target_detector_recipe_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/attach_target_responder_recipe_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/candidate_responder_rule.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/change_detector_recipe_compartment_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/change_managed_list_compartment_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/change_responder_recipe_compartment_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/composite_condition.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/condition.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/condition_group.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/condition_metadata_type.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/condition_metadata_type_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/condition_metadata_type_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/condition_operator.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/config_value.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/configuration.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/create_data_mask_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/create_detector_recipe_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/create_managed_list_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/create_responder_recipe_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/create_target_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/create_target_detector_recipe_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/create_target_responder_recipe_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/data_mask_rule.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/data_mask_rule_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/data_mask_rule_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_configuration.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_recipe.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_recipe_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_recipe_detector_rule.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_recipe_detector_rule_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_recipe_detector_rule_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_recipe_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_rule.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_rule_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_rule_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/detector_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/execute_responder_execution_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/geographical_location.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/impacted_resource_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/impacted_resource_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/managed_list.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/managed_list_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/managed_list_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/managed_list_type_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/managed_list_type_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/operator_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/policy_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/policy_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/political_location.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/problem.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/problem_aggregation.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/problem_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/problem_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/problem_history_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/problem_history_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/problem_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/problem_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/problem_trend_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/recommendation_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/recommendation_summary_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/resource_type_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/resource_type_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_activity_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_activity_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_configuration.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_execution.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_execution_aggregation.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_execution_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_execution_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_execution_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_execution_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_execution_trend_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_recipe.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_recipe_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_recipe_responder_rule.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_recipe_responder_rule_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_recipe_responder_rule_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_recipe_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_rule.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_rule_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_rule_execution_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/responder_rule_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/risk_score_aggregation.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/risk_score_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/rule_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/security_score_aggregation.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/security_score_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/security_score_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/security_score_trend_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/service_type_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/simple_condition.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/skip_bulk_responder_execution_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_detector_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_detector_recipe.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_detector_recipe_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_detector_recipe_detector_rule.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_detector_recipe_detector_rule_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_detector_recipe_detector_rule_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_detector_recipe_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_ids_selected.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_resource_types_selected.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_responder_recipe.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_responder_recipe_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_responder_recipe_responder_rule.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_responder_recipe_responder_rule_collection.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_responder_recipe_responder_rule_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_responder_recipe_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_selected.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/target_summary.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/trigger_responder_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_bulk_problem_status_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_configuration_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_data_mask_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_detector_recipe_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_detector_recipe_detector_rule.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_detector_recipe_detector_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_detector_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_managed_list_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_problem_status_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_responder_recipe_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_responder_recipe_responder_rule.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_responder_recipe_responder_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_responder_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_detector_recipe.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_detector_recipe_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_detector_recipe_detector_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_detector_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_recipe_detector_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_recipe_responder_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_responder_recipe.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_responder_recipe_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_responder_recipe_responder_rule_details.py +usr/lib/python3.10/site-packages/oci/cloud_guard/models/update_target_responder_rule_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent +usr/lib/python3.10/site-packages/oci/compute_instance_agent/__init__.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/compute_instance_agent_client.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/compute_instance_agent_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/__init__.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/available_plugin_summary.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/create_instance_agent_command_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_content.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_content_info.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_execution.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_execution_output_content.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_object_storage_tuple_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_object_storage_uri_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_text_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_execution_summary.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_output_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_output_via_object_storage_tuple_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_output_via_object_storage_uri_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_output_via_text_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_source_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_source_via_object_storage_tuple_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_source_via_object_storage_uri_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_source_via_text_details.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_summary.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_command_target.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_plugin.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/instance_agent_plugin_summary.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/models/plugin.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/plugin_client.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/plugin_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/pluginconfig_client.py +usr/lib/python3.10/site-packages/oci/compute_instance_agent/pluginconfig_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/config.py +usr/lib/python3.10/site-packages/oci/constants.py +usr/lib/python3.10/site-packages/oci/container_engine +usr/lib/python3.10/site-packages/oci/container_engine/__init__.py +usr/lib/python3.10/site-packages/oci/container_engine/container_engine_client.py +usr/lib/python3.10/site-packages/oci/container_engine/container_engine_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/container_engine/models +usr/lib/python3.10/site-packages/oci/container_engine/models/__init__.py +usr/lib/python3.10/site-packages/oci/container_engine/models/add_on_options.py +usr/lib/python3.10/site-packages/oci/container_engine/models/admission_controller_options.py +usr/lib/python3.10/site-packages/oci/container_engine/models/cluster.py +usr/lib/python3.10/site-packages/oci/container_engine/models/cluster_create_options.py +usr/lib/python3.10/site-packages/oci/container_engine/models/cluster_endpoint_config.py +usr/lib/python3.10/site-packages/oci/container_engine/models/cluster_endpoints.py +usr/lib/python3.10/site-packages/oci/container_engine/models/cluster_metadata.py +usr/lib/python3.10/site-packages/oci/container_engine/models/cluster_migrate_to_native_vcn_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/cluster_migrate_to_native_vcn_status.py +usr/lib/python3.10/site-packages/oci/container_engine/models/cluster_options.py +usr/lib/python3.10/site-packages/oci/container_engine/models/cluster_summary.py +usr/lib/python3.10/site-packages/oci/container_engine/models/create_cluster_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/create_cluster_endpoint_config_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/create_cluster_kubeconfig_content_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/create_image_policy_config_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/create_node_pool_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/create_node_pool_node_config_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/create_node_shape_config_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/image_policy_config.py +usr/lib/python3.10/site-packages/oci/container_engine/models/key_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/key_value.py +usr/lib/python3.10/site-packages/oci/container_engine/models/kubernetes_network_config.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_error.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_pool.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_pool_node_config_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_pool_options.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_pool_placement_config_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_pool_summary.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_shape_config.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_source_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_source_option.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_source_via_image_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/node_source_via_image_option.py +usr/lib/python3.10/site-packages/oci/container_engine/models/update_cluster_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/update_cluster_endpoint_config_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/update_cluster_options_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/update_image_policy_config_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/update_node_pool_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/update_node_pool_node_config_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/update_node_shape_config_details.py +usr/lib/python3.10/site-packages/oci/container_engine/models/work_request.py +usr/lib/python3.10/site-packages/oci/container_engine/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/container_engine/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/container_engine/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/container_engine/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/core +usr/lib/python3.10/site-packages/oci/core/__init__.py +usr/lib/python3.10/site-packages/oci/core/blockstorage_client.py +usr/lib/python3.10/site-packages/oci/core/blockstorage_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/core/compute_client.py +usr/lib/python3.10/site-packages/oci/core/compute_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/core/compute_management_client.py +usr/lib/python3.10/site-packages/oci/core/compute_management_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/core/models +usr/lib/python3.10/site-packages/oci/core/models/__init__.py +usr/lib/python3.10/site-packages/oci/core/models/add_drg_route_distribution_statement_details.py +usr/lib/python3.10/site-packages/oci/core/models/add_drg_route_distribution_statements_details.py +usr/lib/python3.10/site-packages/oci/core/models/add_drg_route_rule_details.py +usr/lib/python3.10/site-packages/oci/core/models/add_drg_route_rules_details.py +usr/lib/python3.10/site-packages/oci/core/models/add_image_shape_compatibility_entry_details.py +usr/lib/python3.10/site-packages/oci/core/models/add_network_security_group_security_rules_details.py +usr/lib/python3.10/site-packages/oci/core/models/add_public_ip_pool_capacity_details.py +usr/lib/python3.10/site-packages/oci/core/models/add_security_rule_details.py +usr/lib/python3.10/site-packages/oci/core/models/add_vcn_cidr_details.py +usr/lib/python3.10/site-packages/oci/core/models/added_network_security_group_security_rules.py +usr/lib/python3.10/site-packages/oci/core/models/allowed_ike_ip_sec_parameters.py +usr/lib/python3.10/site-packages/oci/core/models/allowed_phase_one_parameters.py +usr/lib/python3.10/site-packages/oci/core/models/allowed_phase_two_parameters.py +usr/lib/python3.10/site-packages/oci/core/models/amd_milan_bm_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/amd_milan_bm_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/amd_rome_bm_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/amd_rome_bm_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/amd_vm_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/amd_vm_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/app_catalog_listing.py +usr/lib/python3.10/site-packages/oci/core/models/app_catalog_listing_resource_version.py +usr/lib/python3.10/site-packages/oci/core/models/app_catalog_listing_resource_version_agreements.py +usr/lib/python3.10/site-packages/oci/core/models/app_catalog_listing_resource_version_summary.py +usr/lib/python3.10/site-packages/oci/core/models/app_catalog_listing_summary.py +usr/lib/python3.10/site-packages/oci/core/models/app_catalog_subscription.py +usr/lib/python3.10/site-packages/oci/core/models/app_catalog_subscription_summary.py +usr/lib/python3.10/site-packages/oci/core/models/attach_boot_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/attach_emulated_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/attach_i_scsi_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/attach_instance_pool_instance_details.py +usr/lib/python3.10/site-packages/oci/core/models/attach_load_balancer_details.py +usr/lib/python3.10/site-packages/oci/core/models/attach_paravirtualized_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/attach_service_determined_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/attach_vnic_details.py +usr/lib/python3.10/site-packages/oci/core/models/attach_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/bgp_session_info.py +usr/lib/python3.10/site-packages/oci/core/models/block_volume_replica.py +usr/lib/python3.10/site-packages/oci/core/models/block_volume_replica_details.py +usr/lib/python3.10/site-packages/oci/core/models/block_volume_replica_info.py +usr/lib/python3.10/site-packages/oci/core/models/boolean_image_capability_schema_descriptor.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume_attachment.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume_backup.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume_kms_key.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume_replica.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume_replica_details.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume_replica_info.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume_source_details.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume_source_from_boot_volume_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume_source_from_boot_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/boot_volume_source_from_boot_volume_replica_details.py +usr/lib/python3.10/site-packages/oci/core/models/bulk_add_virtual_circuit_public_prefixes_details.py +usr/lib/python3.10/site-packages/oci/core/models/bulk_delete_virtual_circuit_public_prefixes_details.py +usr/lib/python3.10/site-packages/oci/core/models/byoip_allocated_range_collection.py +usr/lib/python3.10/site-packages/oci/core/models/byoip_allocated_range_summary.py +usr/lib/python3.10/site-packages/oci/core/models/byoip_range.py +usr/lib/python3.10/site-packages/oci/core/models/byoip_range_collection.py +usr/lib/python3.10/site-packages/oci/core/models/byoip_range_summary.py +usr/lib/python3.10/site-packages/oci/core/models/capacity_reservation_instance_summary.py +usr/lib/python3.10/site-packages/oci/core/models/capture_console_history_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_boot_volume_backup_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_boot_volume_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_byoip_range_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_cluster_network_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_compute_capacity_reservation_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_compute_image_capability_schema_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_cpe_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_cross_connect_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_cross_connect_group_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_dedicated_vm_host_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_dhcp_options_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_drg_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_image_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_instance_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_instance_configuration_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_instance_pool_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_internet_gateway_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_ip_sec_connection_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_local_peering_gateway_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_nat_gateway_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_network_security_group_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_public_ip_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_public_ip_pool_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_remote_peering_connection_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_route_table_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_security_list_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_service_gateway_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_subnet_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_vcn_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_virtual_circuit_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_vlan_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_volume_backup_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_volume_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_volume_group_backup_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/change_volume_group_compartment_details.py +usr/lib/python3.10/site-packages/oci/core/models/cluster_network.py +usr/lib/python3.10/site-packages/oci/core/models/cluster_network_placement_configuration_details.py +usr/lib/python3.10/site-packages/oci/core/models/cluster_network_summary.py +usr/lib/python3.10/site-packages/oci/core/models/compute_capacity_reservation.py +usr/lib/python3.10/site-packages/oci/core/models/compute_capacity_reservation_instance_shape_summary.py +usr/lib/python3.10/site-packages/oci/core/models/compute_capacity_reservation_summary.py +usr/lib/python3.10/site-packages/oci/core/models/compute_global_image_capability_schema.py +usr/lib/python3.10/site-packages/oci/core/models/compute_global_image_capability_schema_summary.py +usr/lib/python3.10/site-packages/oci/core/models/compute_global_image_capability_schema_version.py +usr/lib/python3.10/site-packages/oci/core/models/compute_global_image_capability_schema_version_summary.py +usr/lib/python3.10/site-packages/oci/core/models/compute_image_capability_schema.py +usr/lib/python3.10/site-packages/oci/core/models/compute_image_capability_schema_summary.py +usr/lib/python3.10/site-packages/oci/core/models/compute_instance_details.py +usr/lib/python3.10/site-packages/oci/core/models/connect_local_peering_gateways_details.py +usr/lib/python3.10/site-packages/oci/core/models/connect_remote_peering_connections_details.py +usr/lib/python3.10/site-packages/oci/core/models/console_history.py +usr/lib/python3.10/site-packages/oci/core/models/copy_boot_volume_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/copy_volume_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/copy_volume_group_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/cpe.py +usr/lib/python3.10/site-packages/oci/core/models/cpe_device_config_answer.py +usr/lib/python3.10/site-packages/oci/core/models/cpe_device_config_question.py +usr/lib/python3.10/site-packages/oci/core/models/cpe_device_info.py +usr/lib/python3.10/site-packages/oci/core/models/cpe_device_shape_detail.py +usr/lib/python3.10/site-packages/oci/core/models/cpe_device_shape_summary.py +usr/lib/python3.10/site-packages/oci/core/models/create_app_catalog_subscription_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_boot_volume_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_boot_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_byoip_range_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_cluster_network_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_cluster_network_instance_pool_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_compute_capacity_reservation_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_compute_image_capability_schema_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_cpe_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_cross_connect_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_cross_connect_group_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_dedicated_vm_host_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_dhcp_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_drg_attachment_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_drg_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_drg_route_distribution_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_drg_route_table_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_image_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_instance_configuration_base.py +usr/lib/python3.10/site-packages/oci/core/models/create_instance_configuration_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_instance_configuration_from_instance_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_instance_console_connection_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_instance_pool_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_instance_pool_placement_configuration_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_internet_gateway_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_ip_sec_connection_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_ip_sec_connection_tunnel_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_ip_sec_tunnel_bgp_session_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_ip_sec_tunnel_encryption_domain_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_ipv6_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_local_peering_gateway_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_macsec_key.py +usr/lib/python3.10/site-packages/oci/core/models/create_macsec_properties.py +usr/lib/python3.10/site-packages/oci/core/models/create_nat_gateway_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_network_security_group_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_private_ip_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_public_ip_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_public_ip_pool_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_remote_peering_connection_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_route_table_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_security_list_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_service_gateway_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_subnet_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_vcn_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_virtual_circuit_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_virtual_circuit_public_prefix_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_vlan_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_vnic_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_volume_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_volume_backup_policy_assignment_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_volume_backup_policy_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_volume_group_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/create_volume_group_details.py +usr/lib/python3.10/site-packages/oci/core/models/cross_connect.py +usr/lib/python3.10/site-packages/oci/core/models/cross_connect_group.py +usr/lib/python3.10/site-packages/oci/core/models/cross_connect_location.py +usr/lib/python3.10/site-packages/oci/core/models/cross_connect_mapping.py +usr/lib/python3.10/site-packages/oci/core/models/cross_connect_mapping_details.py +usr/lib/python3.10/site-packages/oci/core/models/cross_connect_mapping_details_collection.py +usr/lib/python3.10/site-packages/oci/core/models/cross_connect_port_speed_shape.py +usr/lib/python3.10/site-packages/oci/core/models/cross_connect_status.py +usr/lib/python3.10/site-packages/oci/core/models/dedicated_vm_host.py +usr/lib/python3.10/site-packages/oci/core/models/dedicated_vm_host_instance_shape_summary.py +usr/lib/python3.10/site-packages/oci/core/models/dedicated_vm_host_instance_summary.py +usr/lib/python3.10/site-packages/oci/core/models/dedicated_vm_host_shape_summary.py +usr/lib/python3.10/site-packages/oci/core/models/dedicated_vm_host_summary.py +usr/lib/python3.10/site-packages/oci/core/models/default_drg_route_tables.py +usr/lib/python3.10/site-packages/oci/core/models/default_phase_one_parameters.py +usr/lib/python3.10/site-packages/oci/core/models/default_phase_two_parameters.py +usr/lib/python3.10/site-packages/oci/core/models/delete_virtual_circuit_public_prefix_details.py +usr/lib/python3.10/site-packages/oci/core/models/detach_instance_pool_instance_details.py +usr/lib/python3.10/site-packages/oci/core/models/detach_load_balancer_details.py +usr/lib/python3.10/site-packages/oci/core/models/device.py +usr/lib/python3.10/site-packages/oci/core/models/dhcp_dns_option.py +usr/lib/python3.10/site-packages/oci/core/models/dhcp_option.py +usr/lib/python3.10/site-packages/oci/core/models/dhcp_options.py +usr/lib/python3.10/site-packages/oci/core/models/dhcp_search_domain_option.py +usr/lib/python3.10/site-packages/oci/core/models/dpd_config.py +usr/lib/python3.10/site-packages/oci/core/models/drg.py +usr/lib/python3.10/site-packages/oci/core/models/drg_attachment.py +usr/lib/python3.10/site-packages/oci/core/models/drg_attachment_id_drg_route_distribution_match_criteria.py +usr/lib/python3.10/site-packages/oci/core/models/drg_attachment_info.py +usr/lib/python3.10/site-packages/oci/core/models/drg_attachment_network_create_details.py +usr/lib/python3.10/site-packages/oci/core/models/drg_attachment_network_details.py +usr/lib/python3.10/site-packages/oci/core/models/drg_attachment_network_update_details.py +usr/lib/python3.10/site-packages/oci/core/models/drg_attachment_type_drg_route_distribution_match_criteria.py +usr/lib/python3.10/site-packages/oci/core/models/drg_redundancy_status.py +usr/lib/python3.10/site-packages/oci/core/models/drg_route_distribution.py +usr/lib/python3.10/site-packages/oci/core/models/drg_route_distribution_match_criteria.py +usr/lib/python3.10/site-packages/oci/core/models/drg_route_distribution_statement.py +usr/lib/python3.10/site-packages/oci/core/models/drg_route_rule.py +usr/lib/python3.10/site-packages/oci/core/models/drg_route_table.py +usr/lib/python3.10/site-packages/oci/core/models/egress_security_rule.py +usr/lib/python3.10/site-packages/oci/core/models/emulated_volume_attachment.py +usr/lib/python3.10/site-packages/oci/core/models/encryption_domain_config.py +usr/lib/python3.10/site-packages/oci/core/models/enum_integer_image_capability_descriptor.py +usr/lib/python3.10/site-packages/oci/core/models/enum_string_image_capability_schema_descriptor.py +usr/lib/python3.10/site-packages/oci/core/models/export_image_details.py +usr/lib/python3.10/site-packages/oci/core/models/export_image_via_object_storage_tuple_details.py +usr/lib/python3.10/site-packages/oci/core/models/export_image_via_object_storage_uri_details.py +usr/lib/python3.10/site-packages/oci/core/models/fast_connect_provider_service.py +usr/lib/python3.10/site-packages/oci/core/models/fast_connect_provider_service_key.py +usr/lib/python3.10/site-packages/oci/core/models/get_public_ip_by_ip_address_details.py +usr/lib/python3.10/site-packages/oci/core/models/get_public_ip_by_private_ip_id_details.py +usr/lib/python3.10/site-packages/oci/core/models/i_scsi_volume_attachment.py +usr/lib/python3.10/site-packages/oci/core/models/icmp_options.py +usr/lib/python3.10/site-packages/oci/core/models/image.py +usr/lib/python3.10/site-packages/oci/core/models/image_capability_schema_descriptor.py +usr/lib/python3.10/site-packages/oci/core/models/image_memory_constraints.py +usr/lib/python3.10/site-packages/oci/core/models/image_ocpu_constraints.py +usr/lib/python3.10/site-packages/oci/core/models/image_shape_compatibility_entry.py +usr/lib/python3.10/site-packages/oci/core/models/image_shape_compatibility_summary.py +usr/lib/python3.10/site-packages/oci/core/models/image_source_details.py +usr/lib/python3.10/site-packages/oci/core/models/image_source_via_object_storage_tuple_details.py +usr/lib/python3.10/site-packages/oci/core/models/image_source_via_object_storage_uri_details.py +usr/lib/python3.10/site-packages/oci/core/models/ingress_security_rule.py +usr/lib/python3.10/site-packages/oci/core/models/instance.py +usr/lib/python3.10/site-packages/oci/core/models/instance_agent_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_agent_features.py +usr/lib/python3.10/site-packages/oci/core/models/instance_agent_plugin_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_availability_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_amd_rome_bm_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_amd_vm_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_attach_vnic_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_attach_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_availability_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_block_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_create_vnic_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_create_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_instance_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_instance_options.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_instance_source_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_instance_source_via_boot_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_instance_source_via_image_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_intel_skylake_bm_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_intel_vm_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_iscsi_attach_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_launch_instance_agent_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_launch_instance_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_launch_instance_shape_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_launch_options.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_paravirtualized_attach_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_summary.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_volume_source_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_volume_source_from_volume_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_configuration_volume_source_from_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_console_connection.py +usr/lib/python3.10/site-packages/oci/core/models/instance_credentials.py +usr/lib/python3.10/site-packages/oci/core/models/instance_options.py +usr/lib/python3.10/site-packages/oci/core/models/instance_pool.py +usr/lib/python3.10/site-packages/oci/core/models/instance_pool_instance.py +usr/lib/python3.10/site-packages/oci/core/models/instance_pool_instance_load_balancer_backend.py +usr/lib/python3.10/site-packages/oci/core/models/instance_pool_load_balancer_attachment.py +usr/lib/python3.10/site-packages/oci/core/models/instance_pool_placement_configuration.py +usr/lib/python3.10/site-packages/oci/core/models/instance_pool_placement_secondary_vnic_subnet.py +usr/lib/python3.10/site-packages/oci/core/models/instance_pool_summary.py +usr/lib/python3.10/site-packages/oci/core/models/instance_reservation_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_reservation_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_reservation_shape_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_shape_config.py +usr/lib/python3.10/site-packages/oci/core/models/instance_source_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_source_via_boot_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_source_via_image_details.py +usr/lib/python3.10/site-packages/oci/core/models/instance_summary.py +usr/lib/python3.10/site-packages/oci/core/models/intel_skylake_bm_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/intel_skylake_bm_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/intel_vm_launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/intel_vm_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/internet_gateway.py +usr/lib/python3.10/site-packages/oci/core/models/ip_sec_connection.py +usr/lib/python3.10/site-packages/oci/core/models/ip_sec_connection_device_config.py +usr/lib/python3.10/site-packages/oci/core/models/ip_sec_connection_device_status.py +usr/lib/python3.10/site-packages/oci/core/models/ip_sec_connection_tunnel.py +usr/lib/python3.10/site-packages/oci/core/models/ip_sec_connection_tunnel_error_details.py +usr/lib/python3.10/site-packages/oci/core/models/ip_sec_connection_tunnel_shared_secret.py +usr/lib/python3.10/site-packages/oci/core/models/ipsec_tunnel_drg_attachment_network_details.py +usr/lib/python3.10/site-packages/oci/core/models/ipv6.py +usr/lib/python3.10/site-packages/oci/core/models/launch_instance_agent_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/launch_instance_availability_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/launch_instance_details.py +usr/lib/python3.10/site-packages/oci/core/models/launch_instance_platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/launch_instance_shape_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/launch_options.py +usr/lib/python3.10/site-packages/oci/core/models/letter_of_authority.py +usr/lib/python3.10/site-packages/oci/core/models/local_peering_gateway.py +usr/lib/python3.10/site-packages/oci/core/models/macsec_key.py +usr/lib/python3.10/site-packages/oci/core/models/macsec_properties.py +usr/lib/python3.10/site-packages/oci/core/models/measured_boot_entry.py +usr/lib/python3.10/site-packages/oci/core/models/measured_boot_report.py +usr/lib/python3.10/site-packages/oci/core/models/measured_boot_report_measurements.py +usr/lib/python3.10/site-packages/oci/core/models/modify_vcn_cidr_details.py +usr/lib/python3.10/site-packages/oci/core/models/multipath_device.py +usr/lib/python3.10/site-packages/oci/core/models/nat_gateway.py +usr/lib/python3.10/site-packages/oci/core/models/network_security_group.py +usr/lib/python3.10/site-packages/oci/core/models/network_security_group_vnic.py +usr/lib/python3.10/site-packages/oci/core/models/networking_topology.py +usr/lib/python3.10/site-packages/oci/core/models/paravirtualized_volume_attachment.py +usr/lib/python3.10/site-packages/oci/core/models/peer_region_for_remote_peering.py +usr/lib/python3.10/site-packages/oci/core/models/phase_one_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/phase_two_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/platform_config.py +usr/lib/python3.10/site-packages/oci/core/models/port_range.py +usr/lib/python3.10/site-packages/oci/core/models/preemptible_instance_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/preemption_action.py +usr/lib/python3.10/site-packages/oci/core/models/private_ip.py +usr/lib/python3.10/site-packages/oci/core/models/public_ip.py +usr/lib/python3.10/site-packages/oci/core/models/public_ip_pool.py +usr/lib/python3.10/site-packages/oci/core/models/public_ip_pool_collection.py +usr/lib/python3.10/site-packages/oci/core/models/public_ip_pool_summary.py +usr/lib/python3.10/site-packages/oci/core/models/remote_peering_connection.py +usr/lib/python3.10/site-packages/oci/core/models/remote_peering_connection_drg_attachment_network_details.py +usr/lib/python3.10/site-packages/oci/core/models/remove_drg_route_distribution_statements_details.py +usr/lib/python3.10/site-packages/oci/core/models/remove_drg_route_rules_details.py +usr/lib/python3.10/site-packages/oci/core/models/remove_network_security_group_security_rules_details.py +usr/lib/python3.10/site-packages/oci/core/models/remove_public_ip_pool_capacity_details.py +usr/lib/python3.10/site-packages/oci/core/models/remove_vcn_cidr_details.py +usr/lib/python3.10/site-packages/oci/core/models/route_rule.py +usr/lib/python3.10/site-packages/oci/core/models/route_table.py +usr/lib/python3.10/site-packages/oci/core/models/security_list.py +usr/lib/python3.10/site-packages/oci/core/models/security_rule.py +usr/lib/python3.10/site-packages/oci/core/models/service.py +usr/lib/python3.10/site-packages/oci/core/models/service_gateway.py +usr/lib/python3.10/site-packages/oci/core/models/service_id_request_details.py +usr/lib/python3.10/site-packages/oci/core/models/service_id_response_details.py +usr/lib/python3.10/site-packages/oci/core/models/shape.py +usr/lib/python3.10/site-packages/oci/core/models/shape_max_vnic_attachment_options.py +usr/lib/python3.10/site-packages/oci/core/models/shape_measured_boot_options.py +usr/lib/python3.10/site-packages/oci/core/models/shape_memory_options.py +usr/lib/python3.10/site-packages/oci/core/models/shape_networking_bandwidth_options.py +usr/lib/python3.10/site-packages/oci/core/models/shape_numa_nodes_per_socket_platform_options.py +usr/lib/python3.10/site-packages/oci/core/models/shape_ocpu_options.py +usr/lib/python3.10/site-packages/oci/core/models/shape_platform_config_options.py +usr/lib/python3.10/site-packages/oci/core/models/shape_secure_boot_options.py +usr/lib/python3.10/site-packages/oci/core/models/shape_trusted_platform_module_options.py +usr/lib/python3.10/site-packages/oci/core/models/subnet.py +usr/lib/python3.10/site-packages/oci/core/models/subnet_topology.py +usr/lib/python3.10/site-packages/oci/core/models/tcp_options.py +usr/lib/python3.10/site-packages/oci/core/models/terminate_preemption_action.py +usr/lib/python3.10/site-packages/oci/core/models/topology.py +usr/lib/python3.10/site-packages/oci/core/models/topology_associated_with_entity_relationship.py +usr/lib/python3.10/site-packages/oci/core/models/topology_associated_with_relationship_details.py +usr/lib/python3.10/site-packages/oci/core/models/topology_contains_entity_relationship.py +usr/lib/python3.10/site-packages/oci/core/models/topology_entity_relationship.py +usr/lib/python3.10/site-packages/oci/core/models/topology_routes_to_entity_relationship.py +usr/lib/python3.10/site-packages/oci/core/models/topology_routes_to_relationship_details.py +usr/lib/python3.10/site-packages/oci/core/models/tunnel_config.py +usr/lib/python3.10/site-packages/oci/core/models/tunnel_cpe_device_config.py +usr/lib/python3.10/site-packages/oci/core/models/tunnel_phase_one_details.py +usr/lib/python3.10/site-packages/oci/core/models/tunnel_phase_two_details.py +usr/lib/python3.10/site-packages/oci/core/models/tunnel_route_summary.py +usr/lib/python3.10/site-packages/oci/core/models/tunnel_security_association_summary.py +usr/lib/python3.10/site-packages/oci/core/models/tunnel_status.py +usr/lib/python3.10/site-packages/oci/core/models/udp_options.py +usr/lib/python3.10/site-packages/oci/core/models/update_boot_volume_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_boot_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_boot_volume_kms_key_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_byoip_range_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_cluster_network_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_cluster_network_instance_pool_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_compute_capacity_reservation_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_compute_image_capability_schema_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_console_history_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_cpe_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_cross_connect_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_cross_connect_group_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_dedicated_vm_host_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_dhcp_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_drg_attachment_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_drg_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_drg_route_distribution_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_drg_route_distribution_statement_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_drg_route_distribution_statements_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_drg_route_rule_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_drg_route_rules_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_drg_route_table_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_image_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_instance_agent_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_instance_availability_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_instance_configuration_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_instance_console_connection_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_instance_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_instance_pool_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_instance_pool_placement_configuration_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_instance_shape_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_internet_gateway_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_ip_sec_connection_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_ip_sec_connection_tunnel_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_ip_sec_connection_tunnel_shared_secret_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_ip_sec_tunnel_bgp_session_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_ip_sec_tunnel_encryption_domain_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_ipv6_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_launch_options.py +usr/lib/python3.10/site-packages/oci/core/models/update_local_peering_gateway_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_macsec_key.py +usr/lib/python3.10/site-packages/oci/core/models/update_macsec_properties.py +usr/lib/python3.10/site-packages/oci/core/models/update_nat_gateway_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_network_security_group_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_network_security_group_security_rules_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_private_ip_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_public_ip_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_public_ip_pool_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_remote_peering_connection_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_route_table_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_security_list_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_security_rule_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_service_gateway_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_subnet_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_tunnel_cpe_device_config_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_vcn_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_virtual_circuit_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_vlan_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_vnic_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_volume_attachment_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_volume_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_volume_backup_policy_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_volume_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_volume_group_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_volume_group_details.py +usr/lib/python3.10/site-packages/oci/core/models/update_volume_kms_key_details.py +usr/lib/python3.10/site-packages/oci/core/models/updated_network_security_group_security_rules.py +usr/lib/python3.10/site-packages/oci/core/models/upgrade_status.py +usr/lib/python3.10/site-packages/oci/core/models/vcn.py +usr/lib/python3.10/site-packages/oci/core/models/vcn_dns_resolver_association.py +usr/lib/python3.10/site-packages/oci/core/models/vcn_drg_attachment_network_create_details.py +usr/lib/python3.10/site-packages/oci/core/models/vcn_drg_attachment_network_details.py +usr/lib/python3.10/site-packages/oci/core/models/vcn_drg_attachment_network_update_details.py +usr/lib/python3.10/site-packages/oci/core/models/vcn_topology.py +usr/lib/python3.10/site-packages/oci/core/models/virtual_circuit.py +usr/lib/python3.10/site-packages/oci/core/models/virtual_circuit_bandwidth_shape.py +usr/lib/python3.10/site-packages/oci/core/models/virtual_circuit_drg_attachment_network_details.py +usr/lib/python3.10/site-packages/oci/core/models/virtual_circuit_public_prefix.py +usr/lib/python3.10/site-packages/oci/core/models/vlan.py +usr/lib/python3.10/site-packages/oci/core/models/vnic.py +usr/lib/python3.10/site-packages/oci/core/models/vnic_attachment.py +usr/lib/python3.10/site-packages/oci/core/models/volume.py +usr/lib/python3.10/site-packages/oci/core/models/volume_attachment.py +usr/lib/python3.10/site-packages/oci/core/models/volume_backup.py +usr/lib/python3.10/site-packages/oci/core/models/volume_backup_policy.py +usr/lib/python3.10/site-packages/oci/core/models/volume_backup_policy_assignment.py +usr/lib/python3.10/site-packages/oci/core/models/volume_backup_schedule.py +usr/lib/python3.10/site-packages/oci/core/models/volume_group.py +usr/lib/python3.10/site-packages/oci/core/models/volume_group_backup.py +usr/lib/python3.10/site-packages/oci/core/models/volume_group_source_details.py +usr/lib/python3.10/site-packages/oci/core/models/volume_group_source_from_volume_group_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/volume_group_source_from_volume_group_details.py +usr/lib/python3.10/site-packages/oci/core/models/volume_group_source_from_volumes_details.py +usr/lib/python3.10/site-packages/oci/core/models/volume_kms_key.py +usr/lib/python3.10/site-packages/oci/core/models/volume_source_details.py +usr/lib/python3.10/site-packages/oci/core/models/volume_source_from_block_volume_replica_details.py +usr/lib/python3.10/site-packages/oci/core/models/volume_source_from_volume_backup_details.py +usr/lib/python3.10/site-packages/oci/core/models/volume_source_from_volume_details.py +usr/lib/python3.10/site-packages/oci/core/virtual_network_client.py +usr/lib/python3.10/site-packages/oci/core/virtual_network_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/data_catalog +usr/lib/python3.10/site-packages/oci/data_catalog/__init__.py +usr/lib/python3.10/site-packages/oci/data_catalog/data_catalog_client.py +usr/lib/python3.10/site-packages/oci/data_catalog/data_catalog_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/data_catalog/models +usr/lib/python3.10/site-packages/oci/data_catalog/models/__init__.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/attach_catalog_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/attribute.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/attribute_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/attribute_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/attribute_tag.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/attribute_tag_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/attribute_tag_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/base_permissions_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/base_tag.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/base_tag_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/catalog.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/catalog_permissions_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/catalog_private_endpoint.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/catalog_private_endpoint_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/catalog_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/change_catalog_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/change_catalog_private_endpoint_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/change_metastore_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/connection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/connection_alias_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/connection_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/connection_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_attribute_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_catalog_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_catalog_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_connection_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_custom_property_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_data_asset_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_entity_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_folder_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_glossary_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_job_definition_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_job_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_job_execution_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_metastore_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_namespace_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_pattern_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_tag_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_term_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/create_term_relationship_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/custom_property.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/custom_property_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/custom_property_get_usage.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/custom_property_set_usage.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/custom_property_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/custom_property_type_usage.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/data_asset.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/data_asset_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/data_asset_export_scope.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/data_asset_permissions_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/data_asset_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/data_asset_tag.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/data_asset_tag_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/data_asset_tag_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/data_selector_pattern_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/derived_logical_entities.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/detach_catalog_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/entity.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/entity_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/entity_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/entity_tag.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/entity_tag_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/entity_tag_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/event_config.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/export_data_asset_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/faceted_search_aggregation.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/faceted_search_custom_property.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/faceted_search_date_filter_request.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/faceted_search_filter_request.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/faceted_search_sort_request.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/faceted_search_string_filter_request.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/folder.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/folder_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/folder_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/folder_tag.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/folder_tag_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/folder_tag_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/glossary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/glossary_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/glossary_permissions_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/glossary_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/glossary_tree_element.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/import_connection_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/import_data_asset_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/import_data_asset_job_result.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/import_glossary_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_definition.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_definition_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_definition_permissions_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_definition_scope.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_definition_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_execution.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_execution_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_execution_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_log.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_log_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_log_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_metric.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_metric_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_metric_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/job_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/metastore.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/metastore_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/namespace.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/namespace_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/namespace_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/object_relationship.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/parse_connection_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/pattern.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/pattern_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/pattern_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/process_recommendation_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/property_definition.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/recommendation_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/recommendation_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/rule_attribute.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/rule_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/rule_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/search_criteria.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/search_result.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/search_result_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/search_tag_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/search_term_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/suggest_list_item.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/suggest_results.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/term.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/term_associated_object.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/term_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/term_relationship.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/term_relationship_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/term_relationship_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/term_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/type.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/type_collection.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/type_custom_property_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/type_summary.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_attribute_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_catalog_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_catalog_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_connection_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_custom_property_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_data_asset_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_entity_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_folder_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_glossary_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_job_definition_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_job_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_metastore_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_namespace_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_pattern_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_term_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/update_term_relationship_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/upload_credentials_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/validate_connection_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/validate_connection_result.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/validate_pattern_details.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/validate_pattern_result.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/work_request.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/work_request_log.py +usr/lib/python3.10/site-packages/oci/data_catalog/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/data_flow +usr/lib/python3.10/site-packages/oci/data_flow/__init__.py +usr/lib/python3.10/site-packages/oci/data_flow/data_flow_client.py +usr/lib/python3.10/site-packages/oci/data_flow/data_flow_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/data_flow/models +usr/lib/python3.10/site-packages/oci/data_flow/models/__init__.py +usr/lib/python3.10/site-packages/oci/data_flow/models/application.py +usr/lib/python3.10/site-packages/oci/data_flow/models/application_parameter.py +usr/lib/python3.10/site-packages/oci/data_flow/models/application_summary.py +usr/lib/python3.10/site-packages/oci/data_flow/models/change_application_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_flow/models/change_private_endpoint_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_flow/models/change_run_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_flow/models/create_application_details.py +usr/lib/python3.10/site-packages/oci/data_flow/models/create_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/data_flow/models/create_run_details.py +usr/lib/python3.10/site-packages/oci/data_flow/models/private_endpoint.py +usr/lib/python3.10/site-packages/oci/data_flow/models/private_endpoint_collection.py +usr/lib/python3.10/site-packages/oci/data_flow/models/private_endpoint_summary.py +usr/lib/python3.10/site-packages/oci/data_flow/models/run.py +usr/lib/python3.10/site-packages/oci/data_flow/models/run_log_summary.py +usr/lib/python3.10/site-packages/oci/data_flow/models/run_summary.py +usr/lib/python3.10/site-packages/oci/data_flow/models/update_application_details.py +usr/lib/python3.10/site-packages/oci/data_flow/models/update_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/data_flow/models/update_run_details.py +usr/lib/python3.10/site-packages/oci/data_flow/models/work_request.py +usr/lib/python3.10/site-packages/oci/data_flow/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/data_flow/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/data_flow/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/data_flow/models/work_request_log.py +usr/lib/python3.10/site-packages/oci/data_flow/models/work_request_log_collection.py +usr/lib/python3.10/site-packages/oci/data_flow/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/data_flow/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/data_integration +usr/lib/python3.10/site-packages/oci/data_integration/__init__.py +usr/lib/python3.10/site-packages/oci/data_integration/data_integration_client.py +usr/lib/python3.10/site-packages/oci/data_integration/data_integration_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/data_integration/models +usr/lib/python3.10/site-packages/oci/data_integration/models/__init__.py +usr/lib/python3.10/site-packages/oci/data_integration/models/abstract_data_operation_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/abstract_field.py +usr/lib/python3.10/site-packages/oci/data_integration/models/abstract_format_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/abstract_frequency_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/abstract_read_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/abstract_write_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/aggregator.py +usr/lib/python3.10/site-packages/oci/data_integration/models/aggregator_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/application.py +usr/lib/python3.10/site-packages/oci/data_integration/models/application_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/application_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/application_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/auth_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/avro_format_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/base_type.py +usr/lib/python3.10/site-packages/oci/data_integration/models/bicc_read_attributes.py +usr/lib/python3.10/site-packages/oci/data_integration/models/cancel_rest_call_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/change_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/child_reference.py +usr/lib/python3.10/site-packages/oci/data_integration/models/child_reference_detail.py +usr/lib/python3.10/site-packages/oci/data_integration/models/composite_field_map.py +usr/lib/python3.10/site-packages/oci/data_integration/models/composite_type.py +usr/lib/python3.10/site-packages/oci/data_integration/models/compression.py +usr/lib/python3.10/site-packages/oci/data_integration/models/conditional_input_link.py +usr/lib/python3.10/site-packages/oci/data_integration/models/config_definition.py +usr/lib/python3.10/site-packages/oci/data_integration/models/config_parameter_definition.py +usr/lib/python3.10/site-packages/oci/data_integration/models/config_parameter_value.py +usr/lib/python3.10/site-packages/oci/data_integration/models/config_provider.py +usr/lib/python3.10/site-packages/oci/data_integration/models/config_values.py +usr/lib/python3.10/site-packages/oci/data_integration/models/configuration_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/configured_type.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_adwc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_adwc_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_amazon_s3.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_amazon_s3_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_atp.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_atp_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_bicc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_bicc_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_jdbc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_jdbc_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_my_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_my_sql_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_object_storage.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_object_storage_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_oracle.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_from_oracle_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_property.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_summary_from_adwc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_summary_from_amazon_s3.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_summary_from_atp.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_summary_from_bicc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_summary_from_jdbc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_summary_from_my_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_summary_from_object_storage.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_summary_from_oracle.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_validation.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_validation_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connection_validation_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/connector_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/count_statistic.py +usr/lib/python3.10/site-packages/oci/data_integration/models/count_statistic_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_application_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_config_provider.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_connection_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_connection_from_adwc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_connection_from_amazon_s3.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_connection_from_atp.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_connection_from_bicc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_connection_from_jdbc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_connection_from_my_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_connection_from_object_storage.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_connection_from_oracle.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_connection_validation_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_asset_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_asset_from_adwc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_asset_from_amazon_s3.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_asset_from_atp.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_asset_from_fusion_app.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_asset_from_jdbc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_asset_from_my_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_asset_from_object_storage.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_asset_from_oracle.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_flow_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_data_flow_validation_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_entity_shape_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_entity_shape_from_file.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_entity_shape_from_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_external_publication_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_external_publication_validation_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_folder_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_function_library_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_patch_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_pipeline_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_pipeline_validation_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_project_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_schedule_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_source_application_info.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_from_data_loader_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_from_integration_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_from_oci_dataflow_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_from_pipeline_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_from_rest_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_from_sql_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_run_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_schedule_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_validation_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_validation_from_data_loader_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_validation_from_integration_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_task_validation_from_pipeline_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_user_defined_function_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_user_defined_function_validation_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/create_workspace_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/csv_format_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/custom_frequency_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/daily_frequency_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_from_adwc_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_from_amazon_s3.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_from_atp_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_from_fusion_app.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_from_jdbc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_from_my_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_from_object_storage_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_from_oracle_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_summary_from_adwc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_summary_from_amazon_s3.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_summary_from_atp.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_summary_from_fusion_app.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_summary_from_jdbc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_summary_from_my_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_summary_from_object_storage.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_asset_summary_from_oracle.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_from_data_store.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_from_data_store_entity_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_from_file.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_from_file_entity_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_from_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_from_sql_entity_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_from_table.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_from_table_entity_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_from_view.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_from_view_entity_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_summary_from_data_store.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_summary_from_file.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_summary_from_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_summary_from_table.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_entity_summary_from_view.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_flow.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_flow_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_flow_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_flow_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_flow_validation.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_flow_validation_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_flow_validation_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_format.py +usr/lib/python3.10/site-packages/oci/data_integration/models/data_type.py +usr/lib/python3.10/site-packages/oci/data_integration/models/dataflow_application.py +usr/lib/python3.10/site-packages/oci/data_integration/models/dependent_object.py +usr/lib/python3.10/site-packages/oci/data_integration/models/dependent_object_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/dependent_object_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/derived_field.py +usr/lib/python3.10/site-packages/oci/data_integration/models/derived_type.py +usr/lib/python3.10/site-packages/oci/data_integration/models/direct_field_map.py +usr/lib/python3.10/site-packages/oci/data_integration/models/direct_named_field_map.py +usr/lib/python3.10/site-packages/oci/data_integration/models/distinct.py +usr/lib/python3.10/site-packages/oci/data_integration/models/dynamic_input_field.py +usr/lib/python3.10/site-packages/oci/data_integration/models/dynamic_proxy_field.py +usr/lib/python3.10/site-packages/oci/data_integration/models/dynamic_type.py +usr/lib/python3.10/site-packages/oci/data_integration/models/dynamic_type_handler.py +usr/lib/python3.10/site-packages/oci/data_integration/models/end_operator.py +usr/lib/python3.10/site-packages/oci/data_integration/models/enriched_entity.py +usr/lib/python3.10/site-packages/oci/data_integration/models/entity_shape.py +usr/lib/python3.10/site-packages/oci/data_integration/models/entity_shape_from_file.py +usr/lib/python3.10/site-packages/oci/data_integration/models/entity_shape_from_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/error_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/execute_rest_call_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/expression.py +usr/lib/python3.10/site-packages/oci/data_integration/models/expression_operator.py +usr/lib/python3.10/site-packages/oci/data_integration/models/external_publication.py +usr/lib/python3.10/site-packages/oci/data_integration/models/external_publication_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/external_publication_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/external_publication_validation.py +usr/lib/python3.10/site-packages/oci/data_integration/models/external_publication_validation_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/external_publication_validation_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/external_storage.py +usr/lib/python3.10/site-packages/oci/data_integration/models/field_map.py +usr/lib/python3.10/site-packages/oci/data_integration/models/filter.py +usr/lib/python3.10/site-packages/oci/data_integration/models/filter_push.py +usr/lib/python3.10/site-packages/oci/data_integration/models/flow_node.py +usr/lib/python3.10/site-packages/oci/data_integration/models/flow_port.py +usr/lib/python3.10/site-packages/oci/data_integration/models/flow_port_link.py +usr/lib/python3.10/site-packages/oci/data_integration/models/folder.py +usr/lib/python3.10/site-packages/oci/data_integration/models/folder_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/folder_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/folder_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/foreign_key.py +usr/lib/python3.10/site-packages/oci/data_integration/models/function_library.py +usr/lib/python3.10/site-packages/oci/data_integration/models/function_library_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/function_library_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/function_library_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/function_signature.py +usr/lib/python3.10/site-packages/oci/data_integration/models/hourly_frequency_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/input_field.py +usr/lib/python3.10/site-packages/oci/data_integration/models/input_link.py +usr/lib/python3.10/site-packages/oci/data_integration/models/input_port.py +usr/lib/python3.10/site-packages/oci/data_integration/models/intersect.py +usr/lib/python3.10/site-packages/oci/data_integration/models/java_type.py +usr/lib/python3.10/site-packages/oci/data_integration/models/join.py +usr/lib/python3.10/site-packages/oci/data_integration/models/joiner.py +usr/lib/python3.10/site-packages/oci/data_integration/models/json_format_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/key.py +usr/lib/python3.10/site-packages/oci/data_integration/models/key_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/key_range.py +usr/lib/python3.10/site-packages/oci/data_integration/models/key_range_partition_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/last_run_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/lookup.py +usr/lib/python3.10/site-packages/oci/data_integration/models/macro_field.py +usr/lib/python3.10/site-packages/oci/data_integration/models/merge_operator.py +usr/lib/python3.10/site-packages/oci/data_integration/models/message.py +usr/lib/python3.10/site-packages/oci/data_integration/models/minus.py +usr/lib/python3.10/site-packages/oci/data_integration/models/monthly_frequency_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/monthly_rule_frequency_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/name_list_rule.py +usr/lib/python3.10/site-packages/oci/data_integration/models/name_pattern_rule.py +usr/lib/python3.10/site-packages/oci/data_integration/models/native_shape_field.py +usr/lib/python3.10/site-packages/oci/data_integration/models/object_metadata.py +usr/lib/python3.10/site-packages/oci/data_integration/models/object_storage_write_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/object_storage_write_attributes.py +usr/lib/python3.10/site-packages/oci/data_integration/models/oci_vault_secret_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/operator.py +usr/lib/python3.10/site-packages/oci/data_integration/models/oracle_adwc_write_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/oracle_adwc_write_attributes.py +usr/lib/python3.10/site-packages/oci/data_integration/models/oracle_atp_write_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/oracle_atp_write_attributes.py +usr/lib/python3.10/site-packages/oci/data_integration/models/oracle_read_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/oracle_read_attributes.py +usr/lib/python3.10/site-packages/oci/data_integration/models/oracle_write_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/oracle_write_attributes.py +usr/lib/python3.10/site-packages/oci/data_integration/models/output_field.py +usr/lib/python3.10/site-packages/oci/data_integration/models/output_link.py +usr/lib/python3.10/site-packages/oci/data_integration/models/output_port.py +usr/lib/python3.10/site-packages/oci/data_integration/models/parameter.py +usr/lib/python3.10/site-packages/oci/data_integration/models/parameter_value.py +usr/lib/python3.10/site-packages/oci/data_integration/models/parent_reference.py +usr/lib/python3.10/site-packages/oci/data_integration/models/parquet_format_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/partition_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/patch.py +usr/lib/python3.10/site-packages/oci/data_integration/models/patch_change_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/patch_change_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/patch_object_metadata.py +usr/lib/python3.10/site-packages/oci/data_integration/models/patch_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/patch_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/pipeline.py +usr/lib/python3.10/site-packages/oci/data_integration/models/pipeline_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/pipeline_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/pipeline_validation.py +usr/lib/python3.10/site-packages/oci/data_integration/models/pipeline_validation_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/pipeline_validation_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/primary_key.py +usr/lib/python3.10/site-packages/oci/data_integration/models/project.py +usr/lib/python3.10/site-packages/oci/data_integration/models/project_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/project_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/project_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/projection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/projection_rule.py +usr/lib/python3.10/site-packages/oci/data_integration/models/proxy_field.py +usr/lib/python3.10/site-packages/oci/data_integration/models/published_object.py +usr/lib/python3.10/site-packages/oci/data_integration/models/published_object_from_data_loader_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/published_object_from_integration_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/published_object_from_pipeline_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/published_object_from_pipeline_task_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/published_object_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/published_object_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/published_object_summary_from_data_loader_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/published_object_summary_from_integration_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/push_down_operation.py +usr/lib/python3.10/site-packages/oci/data_integration/models/query.py +usr/lib/python3.10/site-packages/oci/data_integration/models/read_operation_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/reference.py +usr/lib/python3.10/site-packages/oci/data_integration/models/reference_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/reference_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/reference_used_by.py +usr/lib/python3.10/site-packages/oci/data_integration/models/registry_metadata.py +usr/lib/python3.10/site-packages/oci/data_integration/models/rename_rule.py +usr/lib/python3.10/site-packages/oci/data_integration/models/resource_configuration.py +usr/lib/python3.10/site-packages/oci/data_integration/models/rest_call_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/root_object.py +usr/lib/python3.10/site-packages/oci/data_integration/models/rule_based_field_map.py +usr/lib/python3.10/site-packages/oci/data_integration/models/rule_type_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/schedule.py +usr/lib/python3.10/site-packages/oci/data_integration/models/schedule_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/schedule_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/schema.py +usr/lib/python3.10/site-packages/oci/data_integration/models/schema_drift_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/schema_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/schema_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/script.py +usr/lib/python3.10/site-packages/oci/data_integration/models/secret_config.py +usr/lib/python3.10/site-packages/oci/data_integration/models/select.py +usr/lib/python3.10/site-packages/oci/data_integration/models/sensitive_attribute.py +usr/lib/python3.10/site-packages/oci/data_integration/models/shape.py +usr/lib/python3.10/site-packages/oci/data_integration/models/shape_field.py +usr/lib/python3.10/site-packages/oci/data_integration/models/sort.py +usr/lib/python3.10/site-packages/oci/data_integration/models/sort_clause.py +usr/lib/python3.10/site-packages/oci/data_integration/models/sort_key.py +usr/lib/python3.10/site-packages/oci/data_integration/models/sort_key_rule.py +usr/lib/python3.10/site-packages/oci/data_integration/models/sort_oper.py +usr/lib/python3.10/site-packages/oci/data_integration/models/source.py +usr/lib/python3.10/site-packages/oci/data_integration/models/source_application_info.py +usr/lib/python3.10/site-packages/oci/data_integration/models/start_operator.py +usr/lib/python3.10/site-packages/oci/data_integration/models/structured_type.py +usr/lib/python3.10/site-packages/oci/data_integration/models/target.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_from_data_loader_task_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_from_integration_task_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_from_oci_dataflow_task_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_from_pipeline_task_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_from_rest_task_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_from_sql_task_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_operator.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_run.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_run_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_run_log_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_run_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_run_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_schedule.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_schedule_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_schedule_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_summary_from_data_loader_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_summary_from_integration_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_summary_from_oci_dataflow_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_summary_from_pipeline_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_summary_from_rest_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_summary_from_sql_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_validation.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_validation_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/task_validation_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/time.py +usr/lib/python3.10/site-packages/oci/data_integration/models/type_library.py +usr/lib/python3.10/site-packages/oci/data_integration/models/type_list_rule.py +usr/lib/python3.10/site-packages/oci/data_integration/models/type_system.py +usr/lib/python3.10/site-packages/oci/data_integration/models/typed_name_pattern_rule.py +usr/lib/python3.10/site-packages/oci/data_integration/models/typed_object.py +usr/lib/python3.10/site-packages/oci/data_integration/models/ui_properties.py +usr/lib/python3.10/site-packages/oci/data_integration/models/union.py +usr/lib/python3.10/site-packages/oci/data_integration/models/unique_data_key.py +usr/lib/python3.10/site-packages/oci/data_integration/models/unique_key.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_application_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_connection_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_connection_from_adwc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_connection_from_amazon_s3.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_connection_from_atp.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_connection_from_bicc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_connection_from_jdbc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_connection_from_my_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_connection_from_object_storage.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_connection_from_oracle.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_data_asset_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_data_asset_from_adwc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_data_asset_from_amazon_s3.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_data_asset_from_atp.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_data_asset_from_fusion_app.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_data_asset_from_jdbc.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_data_asset_from_my_sql.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_data_asset_from_object_storage.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_data_asset_from_oracle.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_data_flow_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_external_publication_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_folder_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_function_library_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_pipeline_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_project_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_reference_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_schedule_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_task_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_task_from_data_loader_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_task_from_integration_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_task_from_oci_dataflow_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_task_from_pipeline_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_task_from_rest_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_task_from_sql_task.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_task_run_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_task_schedule_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_user_defined_function_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/update_workspace_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/user_defined_function.py +usr/lib/python3.10/site-packages/oci/data_integration/models/user_defined_function_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/user_defined_function_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/user_defined_function_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/user_defined_function_validation.py +usr/lib/python3.10/site-packages/oci/data_integration/models/user_defined_function_validation_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/user_defined_function_validation_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_integration/models/validation_message.py +usr/lib/python3.10/site-packages/oci/data_integration/models/variable.py +usr/lib/python3.10/site-packages/oci/data_integration/models/weekly_frequency_details.py +usr/lib/python3.10/site-packages/oci/data_integration/models/work_request.py +usr/lib/python3.10/site-packages/oci/data_integration/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/data_integration/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/data_integration/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/data_integration/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/workspace.py +usr/lib/python3.10/site-packages/oci/data_integration/models/workspace_summary.py +usr/lib/python3.10/site-packages/oci/data_integration/models/write_operation_config.py +usr/lib/python3.10/site-packages/oci/data_labeling_service +usr/lib/python3.10/site-packages/oci/data_labeling_service/__init__.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/data_labeling_management_client.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/data_labeling_management_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/__init__.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/add_dataset_labels_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/annotation_format.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/annotation_format_collection.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/annotation_format_summary.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/change_dataset_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/create_dataset_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/dataset.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/dataset_collection.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/dataset_format_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/dataset_source_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/dataset_summary.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/document_dataset_format_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/generate_dataset_records_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/image_dataset_format_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/initial_record_generation_configuration.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/label.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/label_set.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/object_storage_snapshot_export_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/object_storage_source_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/remove_dataset_labels_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/rename_dataset_labels_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/snapshot_dataset_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/snapshot_export_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/text_dataset_format_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/update_dataset_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/work_request.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/data_labeling_service/models/work_request_summary_collection.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/__init__.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/data_labeling_client.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/data_labeling_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/__init__.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/annotation.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/annotation_aggregation_dimensions.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/annotation_analytics_aggregation.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/annotation_analytics_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/annotation_collection.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/annotation_summary.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/bounding_polygon.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/create_annotation_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/create_object_storage_source_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/create_record_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/create_source_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/dataset.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/dataset_format_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/dataset_source_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/document_dataset_format_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/entity.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/generic_entity.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/image_dataset_format_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/image_object_selection_entity.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/initial_record_generation_configuration.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/label.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/label_name.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/label_set.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/normalized_vertex.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/object_storage_dataset_source_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/object_storage_source_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/record.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/record_aggregation_dimensions.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/record_analytics_aggregation.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/record_analytics_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/record_collection.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/record_summary.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/source_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/text_dataset_format_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/text_selection_entity.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/text_span.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/update_annotation_details.py +usr/lib/python3.10/site-packages/oci/data_labeling_service_dataplane/models/update_record_details.py +usr/lib/python3.10/site-packages/oci/data_safe +usr/lib/python3.10/site-packages/oci/data_safe/__init__.py +usr/lib/python3.10/site-packages/oci/data_safe/data_safe_client.py +usr/lib/python3.10/site-packages/oci/data_safe/data_safe_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/data_safe/models +usr/lib/python3.10/site-packages/oci/data_safe/models/__init__.py +usr/lib/python3.10/site-packages/oci/data_safe/models/activate_target_database_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/autonomous_database_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/change_data_safe_private_endpoint_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/change_on_prem_connector_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/change_security_assessment_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/change_target_database_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/change_user_assessment_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/compare_security_assessment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/compare_user_assessment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/connection_option.py +usr/lib/python3.10/site-packages/oci/data_safe/models/create_data_safe_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/create_on_prem_connector_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/create_security_assessment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/create_target_database_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/create_user_assessment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/credentials.py +usr/lib/python3.10/site-packages/oci/data_safe/models/data_safe_configuration.py +usr/lib/python3.10/site-packages/oci/data_safe/models/data_safe_private_endpoint.py +usr/lib/python3.10/site-packages/oci/data_safe/models/data_safe_private_endpoint_summary.py +usr/lib/python3.10/site-packages/oci/data_safe/models/database_cloud_service_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/database_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/diffs.py +usr/lib/python3.10/site-packages/oci/data_safe/models/download_security_assessment_report_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/download_user_assessment_report_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/enable_data_safe_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/finding.py +usr/lib/python3.10/site-packages/oci/data_safe/models/finding_summary.py +usr/lib/python3.10/site-packages/oci/data_safe/models/generate_on_prem_connector_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/generate_security_assessment_report_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/generate_user_assessment_report_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/grant_summary.py +usr/lib/python3.10/site-packages/oci/data_safe/models/initialization_parameter.py +usr/lib/python3.10/site-packages/oci/data_safe/models/installed_database_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/on_prem_connector.py +usr/lib/python3.10/site-packages/oci/data_safe/models/on_prem_connector_summary.py +usr/lib/python3.10/site-packages/oci/data_safe/models/on_premise_connector.py +usr/lib/python3.10/site-packages/oci/data_safe/models/private_endpoint.py +usr/lib/python3.10/site-packages/oci/data_safe/models/profile_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/references.py +usr/lib/python3.10/site-packages/oci/data_safe/models/run_security_assessment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/run_user_assessment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/section_statistics.py +usr/lib/python3.10/site-packages/oci/data_safe/models/security_assessment.py +usr/lib/python3.10/site-packages/oci/data_safe/models/security_assessment_base_line_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/security_assessment_comparison.py +usr/lib/python3.10/site-packages/oci/data_safe/models/security_assessment_comparison_per_target.py +usr/lib/python3.10/site-packages/oci/data_safe/models/security_assessment_statistics.py +usr/lib/python3.10/site-packages/oci/data_safe/models/security_assessment_summary.py +usr/lib/python3.10/site-packages/oci/data_safe/models/target_database.py +usr/lib/python3.10/site-packages/oci/data_safe/models/target_database_summary.py +usr/lib/python3.10/site-packages/oci/data_safe/models/tls_config.py +usr/lib/python3.10/site-packages/oci/data_safe/models/update_data_safe_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/update_on_prem_connector_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/update_on_prem_connector_wallet_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/update_security_assessment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/update_target_database_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/update_user_assessment_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/user_aggregation.py +usr/lib/python3.10/site-packages/oci/data_safe/models/user_assessment.py +usr/lib/python3.10/site-packages/oci/data_safe/models/user_assessment_base_line_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/user_assessment_comparison.py +usr/lib/python3.10/site-packages/oci/data_safe/models/user_assessment_summary.py +usr/lib/python3.10/site-packages/oci/data_safe/models/user_details.py +usr/lib/python3.10/site-packages/oci/data_safe/models/user_summary.py +usr/lib/python3.10/site-packages/oci/data_safe/models/work_request.py +usr/lib/python3.10/site-packages/oci/data_safe/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/data_safe/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/data_safe/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/data_safe/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/data_science +usr/lib/python3.10/site-packages/oci/data_science/__init__.py +usr/lib/python3.10/site-packages/oci/data_science/data_science_client.py +usr/lib/python3.10/site-packages/oci/data_science/data_science_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/data_science/models +usr/lib/python3.10/site-packages/oci/data_science/models/__init__.py +usr/lib/python3.10/site-packages/oci/data_science/models/category_log_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/change_job_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/change_job_run_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/change_model_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/change_model_deployment_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/change_notebook_session_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/change_project_compartment_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/create_job_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/create_job_run_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/create_model_deployment_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/create_model_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/create_model_provenance_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/create_notebook_session_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/create_project_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/default_job_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/fixed_size_scaling_policy.py +usr/lib/python3.10/site-packages/oci/data_science/models/instance_configuration.py +usr/lib/python3.10/site-packages/oci/data_science/models/job.py +usr/lib/python3.10/site-packages/oci/data_science/models/job_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/job_infrastructure_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/job_log_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/job_run.py +usr/lib/python3.10/site-packages/oci/data_science/models/job_run_log_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/job_run_summary.py +usr/lib/python3.10/site-packages/oci/data_science/models/job_shape_summary.py +usr/lib/python3.10/site-packages/oci/data_science/models/job_summary.py +usr/lib/python3.10/site-packages/oci/data_science/models/log_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/metadata.py +usr/lib/python3.10/site-packages/oci/data_science/models/model.py +usr/lib/python3.10/site-packages/oci/data_science/models/model_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/model_deployment.py +usr/lib/python3.10/site-packages/oci/data_science/models/model_deployment_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/model_deployment_shape_summary.py +usr/lib/python3.10/site-packages/oci/data_science/models/model_deployment_summary.py +usr/lib/python3.10/site-packages/oci/data_science/models/model_provenance.py +usr/lib/python3.10/site-packages/oci/data_science/models/model_summary.py +usr/lib/python3.10/site-packages/oci/data_science/models/notebook_session.py +usr/lib/python3.10/site-packages/oci/data_science/models/notebook_session_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/notebook_session_shape_config_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/notebook_session_shape_summary.py +usr/lib/python3.10/site-packages/oci/data_science/models/notebook_session_summary.py +usr/lib/python3.10/site-packages/oci/data_science/models/project.py +usr/lib/python3.10/site-packages/oci/data_science/models/project_summary.py +usr/lib/python3.10/site-packages/oci/data_science/models/scaling_policy.py +usr/lib/python3.10/site-packages/oci/data_science/models/single_model_deployment_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/standalone_job_infrastructure_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_category_log_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_job_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_job_run_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_model_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_model_deployment_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_model_deployment_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_model_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_model_provenance_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_notebook_session_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_project_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/update_single_model_deployment_configuration_details.py +usr/lib/python3.10/site-packages/oci/data_science/models/work_request.py +usr/lib/python3.10/site-packages/oci/data_science/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/data_science/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/data_science/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/data_science/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/database +usr/lib/python3.10/site-packages/oci/database/__init__.py +usr/lib/python3.10/site-packages/oci/database/database_client.py +usr/lib/python3.10/site-packages/oci/database/database_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/database/models +usr/lib/python3.10/site-packages/oci/database/models/__init__.py +usr/lib/python3.10/site-packages/oci/database/models/activate_exadata_infrastructure_details.py +usr/lib/python3.10/site-packages/oci/database/models/add_virtual_machine_to_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/associated_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/automated_mount_details.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_container_database.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_container_database_backup_config.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_container_database_dataguard_association.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_container_database_summary.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_data_warehouse.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_data_warehouse_connection_strings.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_data_warehouse_summary.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_apex.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_backup.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_backup_config.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_backup_summary.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_connection_strings.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_connection_urls.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_console_token_details.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_dataguard_association.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_key_history_entry.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_manual_refresh_details.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_standby_summary.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_summary.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_database_wallet.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_db_preview_version_summary.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_db_version_summary.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_exadata_infrastructure.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_exadata_infrastructure_shape_summary.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_exadata_infrastructure_summary.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_patch.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_patch_summary.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_vm_cluster.py +usr/lib/python3.10/site-packages/oci/database/models/autonomous_vm_cluster_summary.py +usr/lib/python3.10/site-packages/oci/database/models/backup.py +usr/lib/python3.10/site-packages/oci/database/models/backup_destination.py +usr/lib/python3.10/site-packages/oci/database/models/backup_destination_details.py +usr/lib/python3.10/site-packages/oci/database/models/backup_destination_summary.py +usr/lib/python3.10/site-packages/oci/database/models/backup_summary.py +usr/lib/python3.10/site-packages/oci/database/models/change_autonomous_vm_cluster_compartment_details.py +usr/lib/python3.10/site-packages/oci/database/models/change_cloud_autonomous_vm_cluster_compartment_details.py +usr/lib/python3.10/site-packages/oci/database/models/change_cloud_exadata_infrastructure_compartment_details.py +usr/lib/python3.10/site-packages/oci/database/models/change_cloud_vm_cluster_compartment_details.py +usr/lib/python3.10/site-packages/oci/database/models/change_compartment_details.py +usr/lib/python3.10/site-packages/oci/database/models/change_exadata_infrastructure_compartment_details.py +usr/lib/python3.10/site-packages/oci/database/models/change_key_store_compartment_details.py +usr/lib/python3.10/site-packages/oci/database/models/change_vm_cluster_compartment_details.py +usr/lib/python3.10/site-packages/oci/database/models/cloud_autonomous_vm_cluster.py +usr/lib/python3.10/site-packages/oci/database/models/cloud_autonomous_vm_cluster_summary.py +usr/lib/python3.10/site-packages/oci/database/models/cloud_database_management_config.py +usr/lib/python3.10/site-packages/oci/database/models/cloud_exadata_infrastructure.py +usr/lib/python3.10/site-packages/oci/database/models/cloud_exadata_infrastructure_summary.py +usr/lib/python3.10/site-packages/oci/database/models/cloud_vm_cluster.py +usr/lib/python3.10/site-packages/oci/database/models/cloud_vm_cluster_summary.py +usr/lib/python3.10/site-packages/oci/database/models/complete_external_backup_job_details.py +usr/lib/python3.10/site-packages/oci/database/models/configure_autonomous_database_vault_key_details.py +usr/lib/python3.10/site-packages/oci/database/models/console_connection.py +usr/lib/python3.10/site-packages/oci/database/models/console_connection_summary.py +usr/lib/python3.10/site-packages/oci/database/models/convert_to_pdb_details.py +usr/lib/python3.10/site-packages/oci/database/models/convert_to_pdb_target_base.py +usr/lib/python3.10/site-packages/oci/database/models/create_autonomous_container_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_autonomous_database_backup_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_autonomous_database_base.py +usr/lib/python3.10/site-packages/oci/database/models/create_autonomous_database_clone_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_autonomous_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_autonomous_database_from_backup_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_autonomous_database_from_backup_timestamp_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_autonomous_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_backup_destination_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_backup_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_cloud_autonomous_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_cloud_exadata_infrastructure_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_cloud_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_console_connection_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_cross_region_autonomous_database_data_guard_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_data_guard_association_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_data_guard_association_to_existing_db_system_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_data_guard_association_to_existing_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_data_guard_association_with_new_db_system_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_database_base.py +usr/lib/python3.10/site-packages/oci/database/models/create_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_database_from_another_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_database_from_backup.py +usr/lib/python3.10/site-packages/oci/database/models/create_database_from_backup_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_database_from_db_system_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_database_software_image_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_db_home_base.py +usr/lib/python3.10/site-packages/oci/database/models/create_db_home_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_db_home_from_backup_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_db_home_from_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_db_home_from_db_system_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_db_home_with_db_system_id_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_db_home_with_db_system_id_from_backup_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_db_home_with_db_system_id_from_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_db_home_with_vm_cluster_id_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_db_home_with_vm_cluster_id_from_backup_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_exadata_infrastructure_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_external_backup_job_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_external_container_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_external_database_connector_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_external_database_details_base.py +usr/lib/python3.10/site-packages/oci/database/models/create_external_macs_connector_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_external_non_container_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_external_pluggable_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_key_store_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_new_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_nfs_backup_destination_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_pluggable_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_recovery_appliance_backup_destination_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_refreshable_autonomous_database_clone_details.py +usr/lib/python3.10/site-packages/oci/database/models/create_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/customer_contact.py +usr/lib/python3.10/site-packages/oci/database/models/data_guard_association.py +usr/lib/python3.10/site-packages/oci/database/models/data_guard_association_summary.py +usr/lib/python3.10/site-packages/oci/database/models/database.py +usr/lib/python3.10/site-packages/oci/database/models/database_connection_credentails_by_name.py +usr/lib/python3.10/site-packages/oci/database/models/database_connection_credentials.py +usr/lib/python3.10/site-packages/oci/database/models/database_connection_credentials_by_details.py +usr/lib/python3.10/site-packages/oci/database/models/database_connection_string.py +usr/lib/python3.10/site-packages/oci/database/models/database_connection_string_profile.py +usr/lib/python3.10/site-packages/oci/database/models/database_connection_strings.py +usr/lib/python3.10/site-packages/oci/database/models/database_credential_details.py +usr/lib/python3.10/site-packages/oci/database/models/database_management_config.py +usr/lib/python3.10/site-packages/oci/database/models/database_software_image.py +usr/lib/python3.10/site-packages/oci/database/models/database_software_image_summary.py +usr/lib/python3.10/site-packages/oci/database/models/database_summary.py +usr/lib/python3.10/site-packages/oci/database/models/database_upgrade_history_entry.py +usr/lib/python3.10/site-packages/oci/database/models/database_upgrade_history_entry_summary.py +usr/lib/python3.10/site-packages/oci/database/models/database_upgrade_source_base.py +usr/lib/python3.10/site-packages/oci/database/models/database_upgrade_with_database_software_image_details.py +usr/lib/python3.10/site-packages/oci/database/models/database_upgrade_with_db_home_details.py +usr/lib/python3.10/site-packages/oci/database/models/database_upgrade_with_db_version_details.py +usr/lib/python3.10/site-packages/oci/database/models/day_of_week.py +usr/lib/python3.10/site-packages/oci/database/models/db_backup_config.py +usr/lib/python3.10/site-packages/oci/database/models/db_home.py +usr/lib/python3.10/site-packages/oci/database/models/db_home_from_agent_resource_id.py +usr/lib/python3.10/site-packages/oci/database/models/db_home_summary.py +usr/lib/python3.10/site-packages/oci/database/models/db_iorm_config.py +usr/lib/python3.10/site-packages/oci/database/models/db_iorm_config_update_detail.py +usr/lib/python3.10/site-packages/oci/database/models/db_node.py +usr/lib/python3.10/site-packages/oci/database/models/db_node_summary.py +usr/lib/python3.10/site-packages/oci/database/models/db_server.py +usr/lib/python3.10/site-packages/oci/database/models/db_server_details.py +usr/lib/python3.10/site-packages/oci/database/models/db_server_summary.py +usr/lib/python3.10/site-packages/oci/database/models/db_system.py +usr/lib/python3.10/site-packages/oci/database/models/db_system_options.py +usr/lib/python3.10/site-packages/oci/database/models/db_system_shape_summary.py +usr/lib/python3.10/site-packages/oci/database/models/db_system_summary.py +usr/lib/python3.10/site-packages/oci/database/models/db_version_summary.py +usr/lib/python3.10/site-packages/oci/database/models/deregister_autonomous_database_data_safe_details.py +usr/lib/python3.10/site-packages/oci/database/models/enable_database_management_details.py +usr/lib/python3.10/site-packages/oci/database/models/enable_external_container_database_database_management_details.py +usr/lib/python3.10/site-packages/oci/database/models/enable_external_database_management_details_base.py +usr/lib/python3.10/site-packages/oci/database/models/enable_external_database_operations_insights_details_base.py +usr/lib/python3.10/site-packages/oci/database/models/enable_external_non_container_database_database_management_details.py +usr/lib/python3.10/site-packages/oci/database/models/enable_external_non_container_database_operations_insights_details.py +usr/lib/python3.10/site-packages/oci/database/models/enable_external_pluggable_database_database_management_details.py +usr/lib/python3.10/site-packages/oci/database/models/enable_external_pluggable_database_operations_insights_details.py +usr/lib/python3.10/site-packages/oci/database/models/exadata_db_system_migration.py +usr/lib/python3.10/site-packages/oci/database/models/exadata_db_system_migration_summary.py +usr/lib/python3.10/site-packages/oci/database/models/exadata_infrastructure.py +usr/lib/python3.10/site-packages/oci/database/models/exadata_infrastructure_contact.py +usr/lib/python3.10/site-packages/oci/database/models/exadata_infrastructure_summary.py +usr/lib/python3.10/site-packages/oci/database/models/exadata_iorm_config.py +usr/lib/python3.10/site-packages/oci/database/models/exadata_iorm_config_update_details.py +usr/lib/python3.10/site-packages/oci/database/models/external_backup_job.py +usr/lib/python3.10/site-packages/oci/database/models/external_container_database.py +usr/lib/python3.10/site-packages/oci/database/models/external_container_database_summary.py +usr/lib/python3.10/site-packages/oci/database/models/external_database_base.py +usr/lib/python3.10/site-packages/oci/database/models/external_database_connector.py +usr/lib/python3.10/site-packages/oci/database/models/external_database_connector_summary.py +usr/lib/python3.10/site-packages/oci/database/models/external_macs_connector.py +usr/lib/python3.10/site-packages/oci/database/models/external_macs_connector_summary.py +usr/lib/python3.10/site-packages/oci/database/models/external_non_container_database.py +usr/lib/python3.10/site-packages/oci/database/models/external_non_container_database_summary.py +usr/lib/python3.10/site-packages/oci/database/models/external_pluggable_database.py +usr/lib/python3.10/site-packages/oci/database/models/external_pluggable_database_summary.py +usr/lib/python3.10/site-packages/oci/database/models/failover_data_guard_association_details.py +usr/lib/python3.10/site-packages/oci/database/models/flex_component_collection.py +usr/lib/python3.10/site-packages/oci/database/models/flex_component_summary.py +usr/lib/python3.10/site-packages/oci/database/models/generate_autonomous_database_wallet_details.py +usr/lib/python3.10/site-packages/oci/database/models/generate_recommended_network_details.py +usr/lib/python3.10/site-packages/oci/database/models/gi_version_summary.py +usr/lib/python3.10/site-packages/oci/database/models/info_for_network_gen_details.py +usr/lib/python3.10/site-packages/oci/database/models/key_store.py +usr/lib/python3.10/site-packages/oci/database/models/key_store_associated_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/key_store_summary.py +usr/lib/python3.10/site-packages/oci/database/models/key_store_type_details.py +usr/lib/python3.10/site-packages/oci/database/models/key_store_type_from_oracle_key_vault_details.py +usr/lib/python3.10/site-packages/oci/database/models/launch_autonomous_exadata_infrastructure_details.py +usr/lib/python3.10/site-packages/oci/database/models/launch_db_system_base.py +usr/lib/python3.10/site-packages/oci/database/models/launch_db_system_details.py +usr/lib/python3.10/site-packages/oci/database/models/launch_db_system_from_backup_details.py +usr/lib/python3.10/site-packages/oci/database/models/launch_db_system_from_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/launch_db_system_from_db_system_details.py +usr/lib/python3.10/site-packages/oci/database/models/local_clone_pluggable_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/maintenance_run.py +usr/lib/python3.10/site-packages/oci/database/models/maintenance_run_summary.py +usr/lib/python3.10/site-packages/oci/database/models/maintenance_window.py +usr/lib/python3.10/site-packages/oci/database/models/migrate_vault_key_details.py +usr/lib/python3.10/site-packages/oci/database/models/modify_database_management_details.py +usr/lib/python3.10/site-packages/oci/database/models/month.py +usr/lib/python3.10/site-packages/oci/database/models/mount_type_details.py +usr/lib/python3.10/site-packages/oci/database/models/node_details.py +usr/lib/python3.10/site-packages/oci/database/models/ocp_us.py +usr/lib/python3.10/site-packages/oci/database/models/operations_insights_config.py +usr/lib/python3.10/site-packages/oci/database/models/patch.py +usr/lib/python3.10/site-packages/oci/database/models/patch_details.py +usr/lib/python3.10/site-packages/oci/database/models/patch_history_entry.py +usr/lib/python3.10/site-packages/oci/database/models/patch_history_entry_summary.py +usr/lib/python3.10/site-packages/oci/database/models/patch_summary.py +usr/lib/python3.10/site-packages/oci/database/models/pdb_conversion_history_entry.py +usr/lib/python3.10/site-packages/oci/database/models/pdb_conversion_history_entry_summary.py +usr/lib/python3.10/site-packages/oci/database/models/pdb_conversion_to_new_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/peer_autonomous_container_database_backup_config.py +usr/lib/python3.10/site-packages/oci/database/models/pluggable_database.py +usr/lib/python3.10/site-packages/oci/database/models/pluggable_database_connection_strings.py +usr/lib/python3.10/site-packages/oci/database/models/pluggable_database_summary.py +usr/lib/python3.10/site-packages/oci/database/models/register_autonomous_database_data_safe_details.py +usr/lib/python3.10/site-packages/oci/database/models/reinstate_data_guard_association_details.py +usr/lib/python3.10/site-packages/oci/database/models/remote_clone_pluggable_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/remove_virtual_machine_from_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/restore_autonomous_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/restore_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/scan_details.py +usr/lib/python3.10/site-packages/oci/database/models/scheduled_operation_details.py +usr/lib/python3.10/site-packages/oci/database/models/self_mount_details.py +usr/lib/python3.10/site-packages/oci/database/models/switchover_data_guard_association_details.py +usr/lib/python3.10/site-packages/oci/database/models/update.py +usr/lib/python3.10/site-packages/oci/database/models/update_autonomous_container_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_autonomous_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_autonomous_database_wallet_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_autonomous_exadata_infrastructure_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_autonomous_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_backup_destination_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_cloud_autonomous_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_cloud_exadata_infrastructure_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_cloud_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_data_guard_association_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_database_software_image_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_db_home_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_db_system_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_exadata_infrastructure_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_external_container_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_external_database_connector_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_external_database_details_base.py +usr/lib/python3.10/site-packages/oci/database/models/update_external_macs_connector_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_external_non_container_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_external_pluggable_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_history_entry.py +usr/lib/python3.10/site-packages/oci/database/models/update_history_entry_summary.py +usr/lib/python3.10/site-packages/oci/database/models/update_key_store_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_maintenance_run_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_pluggable_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_summary.py +usr/lib/python3.10/site-packages/oci/database/models/update_vm_cluster_details.py +usr/lib/python3.10/site-packages/oci/database/models/update_vm_cluster_network_details.py +usr/lib/python3.10/site-packages/oci/database/models/upgrade_database_details.py +usr/lib/python3.10/site-packages/oci/database/models/vm_cluster.py +usr/lib/python3.10/site-packages/oci/database/models/vm_cluster_network.py +usr/lib/python3.10/site-packages/oci/database/models/vm_cluster_network_details.py +usr/lib/python3.10/site-packages/oci/database/models/vm_cluster_network_summary.py +usr/lib/python3.10/site-packages/oci/database/models/vm_cluster_summary.py +usr/lib/python3.10/site-packages/oci/database/models/vm_cluster_update.py +usr/lib/python3.10/site-packages/oci/database/models/vm_cluster_update_details.py +usr/lib/python3.10/site-packages/oci/database/models/vm_cluster_update_history_entry.py +usr/lib/python3.10/site-packages/oci/database/models/vm_cluster_update_history_entry_summary.py +usr/lib/python3.10/site-packages/oci/database/models/vm_cluster_update_summary.py +usr/lib/python3.10/site-packages/oci/database/models/vm_network_details.py +usr/lib/python3.10/site-packages/oci/database/models/workload_type.py +usr/lib/python3.10/site-packages/oci/database_management +usr/lib/python3.10/site-packages/oci/database_management/__init__.py +usr/lib/python3.10/site-packages/oci/database_management/db_management_client.py +usr/lib/python3.10/site-packages/oci/database_management/db_management_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/database_management/models +usr/lib/python3.10/site-packages/oci/database_management/models/__init__.py +usr/lib/python3.10/site-packages/oci/database_management/models/activity_time_series_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/add_managed_database_to_managed_database_group_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/allowed_parameter_value.py +usr/lib/python3.10/site-packages/oci/database_management/models/associated_database_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/associated_database_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_cpu_usage_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_cpu_usage_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_metric_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_metric_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_parameter_change_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_parameter_change_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_parameter_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_parameter_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_report.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_snapshot_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_snapshot_range_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_snapshot_range_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_snapshot_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_sql_report.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_sysstat_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_sysstat_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_top_wait_event_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_top_wait_event_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_wait_event_bucket_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_wait_event_bucket_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_wait_event_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_db_wait_event_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/awr_query_result.py +usr/lib/python3.10/site-packages/oci/database_management/models/change_database_parameter_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/change_database_parameters_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/change_db_management_private_endpoint_compartment_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/change_job_compartment_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/change_managed_database_group_compartment_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/child_database.py +usr/lib/python3.10/site-packages/oci/database_management/models/clone_sql_tuning_task_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/cluster_cache_metric.py +usr/lib/python3.10/site-packages/oci/database_management/models/consumer_group_privilege_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/consumer_group_privilege_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/cpu_utilization_aggregate_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/create_db_management_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/create_job_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/create_managed_database_group_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/create_sql_job_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/data_access_container_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/data_access_container_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_credentials.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_fleet_health_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_home_metric_definition.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_home_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_instance_home_metrics_definition.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_io_aggregate_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_parameter_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_parameter_update_status.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_parameters_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_storage_aggregate_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_time_aggregate_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/database_usage_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/datafile.py +usr/lib/python3.10/site-packages/oci/database_management/models/db_management_private_endpoint.py +usr/lib/python3.10/site-packages/oci/database_management/models/db_management_private_endpoint_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/db_management_private_endpoint_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/drop_sql_tuning_task_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/execution_plan_stats_comparision.py +usr/lib/python3.10/site-packages/oci/database_management/models/failed_connections_aggregate_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/fleet_metric_definition.py +usr/lib/python3.10/site-packages/oci/database_management/models/fleet_metric_summary_definition.py +usr/lib/python3.10/site-packages/oci/database_management/models/fleet_status_by_category.py +usr/lib/python3.10/site-packages/oci/database_management/models/fleet_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/instance_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/job.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_database.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_execution.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_execution_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_execution_result_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_execution_result_location.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_execution_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_executions_status_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_executions_status_summary_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_run.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_run_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_run_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_schedule_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/job_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/managed_database.py +usr/lib/python3.10/site-packages/oci/database_management/models/managed_database_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/managed_database_group.py +usr/lib/python3.10/site-packages/oci/database_management/models/managed_database_group_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/managed_database_group_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/managed_database_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/memory_aggregate_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/metric_data_point.py +usr/lib/python3.10/site-packages/oci/database_management/models/metric_dimension_definition.py +usr/lib/python3.10/site-packages/oci/database_management/models/object_privilege_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/object_privilege_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/object_storage_job_execution_result_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/object_storage_job_execution_result_location.py +usr/lib/python3.10/site-packages/oci/database_management/models/parent_group.py +usr/lib/python3.10/site-packages/oci/database_management/models/pdb_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/pdb_status_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/proxied_for_user_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/proxied_for_user_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/proxy_user_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/proxy_user_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/remove_managed_database_from_managed_database_group_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/reset_database_parameters_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/role_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/role_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_job.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_finding_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_finding_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_recommendation_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_recommendation_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_sql_execution_plan.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_summary_finding_benefits.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_summary_finding_counts.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_summary_report.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_summary_report_index_finding_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_summary_report_object_stat_finding_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_summary_report_statement_counts.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_summary_report_statistics.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_advisor_task_summary_report_task_info.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_task_credential_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_task_password_credential_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_task_plan_stats.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_task_return.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_task_secret_credential_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_task_sql_detail.py +usr/lib/python3.10/site-packages/oci/database_management/models/sql_tuning_task_sql_execution_plan_step.py +usr/lib/python3.10/site-packages/oci/database_management/models/start_sql_tuning_task_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/statements_aggregate_metrics.py +usr/lib/python3.10/site-packages/oci/database_management/models/system_privilege_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/system_privilege_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/tablespace.py +usr/lib/python3.10/site-packages/oci/database_management/models/tablespace_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/tablespace_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/time_series_metric_data_point.py +usr/lib/python3.10/site-packages/oci/database_management/models/time_series_metric_definition.py +usr/lib/python3.10/site-packages/oci/database_management/models/update_database_parameters_result.py +usr/lib/python3.10/site-packages/oci/database_management/models/update_db_management_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/update_job_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/update_managed_database_group_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/update_sql_job_details.py +usr/lib/python3.10/site-packages/oci/database_management/models/user.py +usr/lib/python3.10/site-packages/oci/database_management/models/user_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/user_summary.py +usr/lib/python3.10/site-packages/oci/database_management/models/work_request.py +usr/lib/python3.10/site-packages/oci/database_management/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/database_management/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/database_management/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/database_management/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/database_management/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/database_management/sql_tuning_client.py +usr/lib/python3.10/site-packages/oci/database_management/sql_tuning_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/database_migration +usr/lib/python3.10/site-packages/oci/database_migration/__init__.py +usr/lib/python3.10/site-packages/oci/database_migration/database_migration_client.py +usr/lib/python3.10/site-packages/oci/database_migration/database_migration_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/database_migration/models +usr/lib/python3.10/site-packages/oci/database_migration/models/__init__.py +usr/lib/python3.10/site-packages/oci/database_migration/models/admin_credentials.py +usr/lib/python3.10/site-packages/oci/database_migration/models/advisor_report.py +usr/lib/python3.10/site-packages/oci/database_migration/models/advisor_report_bucket_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/advisor_report_location_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/advisor_settings.py +usr/lib/python3.10/site-packages/oci/database_migration/models/agent.py +usr/lib/python3.10/site-packages/oci/database_migration/models/agent_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/agent_image_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/agent_image_summary.py +usr/lib/python3.10/site-packages/oci/database_migration/models/agent_summary.py +usr/lib/python3.10/site-packages/oci/database_migration/models/change_agent_compartment_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/change_connection_compartment_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/change_migration_compartment_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/clone_migration_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/connect_descriptor.py +usr/lib/python3.10/site-packages/oci/database_migration/models/connection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/connection_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/connection_summary.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_admin_credentials.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_advisor_settings.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_agent_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_connect_descriptor.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_connection_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_curl_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_data_pump_parameters.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_data_pump_settings.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_data_transfer_medium_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_database_link_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_directory_object.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_dump_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_extract.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_golden_gate_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_golden_gate_hub.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_golden_gate_settings.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_host_dump_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_migration_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_object_store_bucket.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_oci_cli_dump_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_private_endpoint.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_replicat.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_ssh_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/create_vault_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/curl_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/data_pump_parameters.py +usr/lib/python3.10/site-packages/oci/database_migration/models/data_pump_settings.py +usr/lib/python3.10/site-packages/oci/database_migration/models/data_transfer_medium_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/database_link_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/database_object.py +usr/lib/python3.10/site-packages/oci/database_migration/models/directory_object.py +usr/lib/python3.10/site-packages/oci/database_migration/models/dump_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/extract.py +usr/lib/python3.10/site-packages/oci/database_migration/models/generate_token.py +usr/lib/python3.10/site-packages/oci/database_migration/models/golden_gate_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/golden_gate_hub.py +usr/lib/python3.10/site-packages/oci/database_migration/models/golden_gate_settings.py +usr/lib/python3.10/site-packages/oci/database_migration/models/host_dump_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/job.py +usr/lib/python3.10/site-packages/oci/database_migration/models/job_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/job_output_summary.py +usr/lib/python3.10/site-packages/oci/database_migration/models/job_output_summary_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/job_summary.py +usr/lib/python3.10/site-packages/oci/database_migration/models/log_location_bucket_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/metadata_remap.py +usr/lib/python3.10/site-packages/oci/database_migration/models/migration.py +usr/lib/python3.10/site-packages/oci/database_migration/models/migration_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/migration_job_progress_resource.py +usr/lib/python3.10/site-packages/oci/database_migration/models/migration_job_progress_summary.py +usr/lib/python3.10/site-packages/oci/database_migration/models/migration_object_type_summary.py +usr/lib/python3.10/site-packages/oci/database_migration/models/migration_object_type_summary_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/migration_phase_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/migration_phase_summary.py +usr/lib/python3.10/site-packages/oci/database_migration/models/migration_summary.py +usr/lib/python3.10/site-packages/oci/database_migration/models/object_store_bucket.py +usr/lib/python3.10/site-packages/oci/database_migration/models/oci_cli_dump_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/par_link.py +usr/lib/python3.10/site-packages/oci/database_migration/models/phase_extract_entry.py +usr/lib/python3.10/site-packages/oci/database_migration/models/phase_status.py +usr/lib/python3.10/site-packages/oci/database_migration/models/private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/replicat.py +usr/lib/python3.10/site-packages/oci/database_migration/models/resume_job_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/ssh_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/start_migration_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/unsupported_database_object.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_admin_credentials.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_advisor_settings.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_agent_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_connect_descriptor.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_connection_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_curl_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_data_pump_parameters.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_data_pump_settings.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_data_transfer_medium_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_database_link_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_directory_object.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_dump_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_extract.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_golden_gate_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_golden_gate_hub.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_golden_gate_settings.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_host_dump_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_job_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_migration_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_object_store_bucket.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_oci_cli_dump_transfer_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_private_endpoint.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_replicat.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_ssh_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/update_vault_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/vault_details.py +usr/lib/python3.10/site-packages/oci/database_migration/models/work_request.py +usr/lib/python3.10/site-packages/oci/database_migration/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/database_migration/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/database_migration/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/database_migration/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/database_migration/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/database_tools +usr/lib/python3.10/site-packages/oci/database_tools/__init__.py +usr/lib/python3.10/site-packages/oci/database_tools/database_tools_client.py +usr/lib/python3.10/site-packages/oci/database_tools/database_tools_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/database_tools/models +usr/lib/python3.10/site-packages/oci/database_tools/models/__init__.py +usr/lib/python3.10/site-packages/oci/database_tools/models/change_database_tools_connection_compartment_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/change_database_tools_private_endpoint_compartment_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/create_database_tools_connection_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/create_database_tools_connection_oracle_database_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/create_database_tools_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/create_database_tools_related_resource_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_allowed_network_sources.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_connection.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_connection_collection.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_connection_oracle_database.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_connection_oracle_database_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_connection_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_endpoint_service.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_endpoint_service_collection.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_endpoint_service_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_content.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_content_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_content_secret_id.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_content_secret_id_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_content_secret_id_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_content_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_password.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_password_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_password_secret_id.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_password_secret_id_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_password_secret_id_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_password_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_key_store_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_private_endpoint.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_private_endpoint_collection.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_private_endpoint_reverse_connection_configuration.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_private_endpoint_reverse_connections_source_ip.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_private_endpoint_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_related_resource.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_user_password.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_user_password_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_user_password_secret_id.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_user_password_secret_id_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_user_password_secret_id_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_user_password_summary.py +usr/lib/python3.10/site-packages/oci/database_tools/models/database_tools_virtual_source.py +usr/lib/python3.10/site-packages/oci/database_tools/models/update_database_tools_connection_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/update_database_tools_connection_oracle_database_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/update_database_tools_private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/update_database_tools_related_resource_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/validate_database_tools_connection_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/validate_database_tools_connection_oracle_database_details.py +usr/lib/python3.10/site-packages/oci/database_tools/models/validate_database_tools_connection_oracle_database_result.py +usr/lib/python3.10/site-packages/oci/database_tools/models/validate_database_tools_connection_result.py +usr/lib/python3.10/site-packages/oci/database_tools/models/work_request.py +usr/lib/python3.10/site-packages/oci/database_tools/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/database_tools/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/database_tools/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/database_tools/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/database_tools/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/database_tools/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/database_tools/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/decorators.py +usr/lib/python3.10/site-packages/oci/devops +usr/lib/python3.10/site-packages/oci/devops/__init__.py +usr/lib/python3.10/site-packages/oci/devops/devops_client.py +usr/lib/python3.10/site-packages/oci/devops/devops_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/devops/models +usr/lib/python3.10/site-packages/oci/devops/models/__init__.py +usr/lib/python3.10/site-packages/oci/devops/models/absolute_wait_criteria.py +usr/lib/python3.10/site-packages/oci/devops/models/absolute_wait_criteria_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/actual_build_runner_shape_config.py +usr/lib/python3.10/site-packages/oci/devops/models/approval_action.py +usr/lib/python3.10/site-packages/oci/devops/models/approval_policy.py +usr/lib/python3.10/site-packages/oci/devops/models/approve_deployment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/automated_deploy_stage_rollback_policy.py +usr/lib/python3.10/site-packages/oci/devops/models/backend_set_ip_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/build_outputs.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline_parameter.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline_parameter_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline_stage_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline_stage_predecessor.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline_stage_predecessor_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline_stage_run_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/build_pipeline_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/build_run.py +usr/lib/python3.10/site-packages/oci/devops/models/build_run_argument.py +usr/lib/python3.10/site-packages/oci/devops/models/build_run_argument_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/build_run_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/build_run_progress_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/build_run_source.py +usr/lib/python3.10/site-packages/oci/devops/models/build_run_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/build_run_summary_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/build_source.py +usr/lib/python3.10/site-packages/oci/devops/models/build_source_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/build_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/build_stage_run_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/build_stage_run_step.py +usr/lib/python3.10/site-packages/oci/devops/models/build_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/cancel_build_run_details.py +usr/lib/python3.10/site-packages/oci/devops/models/cancel_deployment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/change_project_compartment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/commit_info.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_blue_green_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_by_ids_selector.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_by_query_selector.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_canary_approval_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_canary_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_deploy_environment.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_deploy_environment_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_deploy_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_deploy_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_failure_policy.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_failure_policy_by_count.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_failure_policy_by_percentage.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_linear_rollout_policy_by_count.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_linear_rollout_policy_by_percentage.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_rollout_policy.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_selector.py +usr/lib/python3.10/site-packages/oci/devops/models/compute_instance_group_selector_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/connection.py +usr/lib/python3.10/site-packages/oci/devops/models/connection_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/connection_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/container_registry_delivered_artifact.py +usr/lib/python3.10/site-packages/oci/devops/models/count_based_approval_policy.py +usr/lib/python3.10/site-packages/oci/devops/models/create_absolute_wait_criteria_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_build_pipeline_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_build_pipeline_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_build_run_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_build_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_compute_instance_group_deploy_environment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_compute_instance_group_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_connection_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_deliver_artifact_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_deploy_artifact_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_deploy_environment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_deploy_pipeline_deployment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_deploy_pipeline_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_deploy_pipeline_redeployment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_deployment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_devops_code_repository_trigger_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_function_deploy_environment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_function_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_github_access_token_connection_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_github_trigger_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_gitlab_access_token_connection_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_gitlab_trigger_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_invoke_function_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_load_balancer_traffic_shift_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_manual_approval_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_oke_cluster_deploy_environment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_oke_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_project_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_repository_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_single_deploy_stage_deployment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_trigger_deployment_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_trigger_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_wait_criteria_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_wait_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/create_wait_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/deliver_artifact.py +usr/lib/python3.10/site-packages/oci/devops/models/deliver_artifact_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deliver_artifact_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/deliver_artifact_stage_run_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/deliver_artifact_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/delivered_artifact.py +usr/lib/python3.10/site-packages/oci/devops/models/delivered_artifact_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_artifact.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_artifact_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_artifact_override_argument.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_artifact_override_argument_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_artifact_source.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_artifact_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_environment.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_environment_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_environment_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_artifact.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_artifact_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_deployment.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_deployment_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_environment.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_environment_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_parameter.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_parameter_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_redeployment.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_redeployment_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_stage_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_pipeline_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_stage_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_stage_execution_progress_details.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_stage_execution_step.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_stage_predecessor.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_stage_predecessor_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_stage_rollback_policy.py +usr/lib/python3.10/site-packages/oci/devops/models/deploy_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/deployment.py +usr/lib/python3.10/site-packages/oci/devops/models/deployment_argument.py +usr/lib/python3.10/site-packages/oci/devops/models/deployment_argument_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deployment_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/deployment_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/deployment_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/devops_code_repository_build_run_source.py +usr/lib/python3.10/site-packages/oci/devops/models/devops_code_repository_build_source.py +usr/lib/python3.10/site-packages/oci/devops/models/devops_code_repository_filter.py +usr/lib/python3.10/site-packages/oci/devops/models/devops_code_repository_filter_attributes.py +usr/lib/python3.10/site-packages/oci/devops/models/devops_code_repository_trigger.py +usr/lib/python3.10/site-packages/oci/devops/models/devops_code_repository_trigger_create_result.py +usr/lib/python3.10/site-packages/oci/devops/models/devops_code_repository_trigger_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/diff_chunk.py +usr/lib/python3.10/site-packages/oci/devops/models/diff_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/diff_line_details.py +usr/lib/python3.10/site-packages/oci/devops/models/diff_response.py +usr/lib/python3.10/site-packages/oci/devops/models/diff_response_entry.py +usr/lib/python3.10/site-packages/oci/devops/models/diff_section.py +usr/lib/python3.10/site-packages/oci/devops/models/diff_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/exported_variable.py +usr/lib/python3.10/site-packages/oci/devops/models/exported_variable_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/file_diff_response.py +usr/lib/python3.10/site-packages/oci/devops/models/file_line_details.py +usr/lib/python3.10/site-packages/oci/devops/models/filter.py +usr/lib/python3.10/site-packages/oci/devops/models/function_deploy_environment.py +usr/lib/python3.10/site-packages/oci/devops/models/function_deploy_environment_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/function_deploy_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/function_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/function_deploy_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/generic_delivered_artifact.py +usr/lib/python3.10/site-packages/oci/devops/models/generic_deploy_artifact_source.py +usr/lib/python3.10/site-packages/oci/devops/models/github_access_token_connection.py +usr/lib/python3.10/site-packages/oci/devops/models/github_access_token_connection_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/github_build_run_source.py +usr/lib/python3.10/site-packages/oci/devops/models/github_build_source.py +usr/lib/python3.10/site-packages/oci/devops/models/github_filter.py +usr/lib/python3.10/site-packages/oci/devops/models/github_filter_attributes.py +usr/lib/python3.10/site-packages/oci/devops/models/github_trigger.py +usr/lib/python3.10/site-packages/oci/devops/models/github_trigger_create_result.py +usr/lib/python3.10/site-packages/oci/devops/models/github_trigger_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/gitlab_access_token_connection.py +usr/lib/python3.10/site-packages/oci/devops/models/gitlab_access_token_connection_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/gitlab_build_run_source.py +usr/lib/python3.10/site-packages/oci/devops/models/gitlab_build_source.py +usr/lib/python3.10/site-packages/oci/devops/models/gitlab_filter.py +usr/lib/python3.10/site-packages/oci/devops/models/gitlab_filter_attributes.py +usr/lib/python3.10/site-packages/oci/devops/models/gitlab_trigger.py +usr/lib/python3.10/site-packages/oci/devops/models/gitlab_trigger_create_result.py +usr/lib/python3.10/site-packages/oci/devops/models/gitlab_trigger_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/inline_deploy_artifact_source.py +usr/lib/python3.10/site-packages/oci/devops/models/invoke_function_deploy_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/invoke_function_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/invoke_function_deploy_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/load_balancer_config.py +usr/lib/python3.10/site-packages/oci/devops/models/load_balancer_traffic_shift_deploy_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/load_balancer_traffic_shift_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/load_balancer_traffic_shift_deploy_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/load_balancer_traffic_shift_rollout_policy.py +usr/lib/python3.10/site-packages/oci/devops/models/manual_approval_deploy_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/manual_approval_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/manual_approval_deploy_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/manual_build_run_source.py +usr/lib/python3.10/site-packages/oci/devops/models/mirror_repository_config.py +usr/lib/python3.10/site-packages/oci/devops/models/no_deploy_stage_rollback_policy.py +usr/lib/python3.10/site-packages/oci/devops/models/notification_config.py +usr/lib/python3.10/site-packages/oci/devops/models/ocir_deploy_artifact_source.py +usr/lib/python3.10/site-packages/oci/devops/models/oke_cluster_deploy_environment.py +usr/lib/python3.10/site-packages/oci/devops/models/oke_cluster_deploy_environment_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/oke_deploy_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/oke_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/oke_deploy_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/project.py +usr/lib/python3.10/site-packages/oci/devops/models/project_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/project_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/put_repository_branch_details.py +usr/lib/python3.10/site-packages/oci/devops/models/put_repository_ref_details.py +usr/lib/python3.10/site-packages/oci/devops/models/put_repository_tag_details.py +usr/lib/python3.10/site-packages/oci/devops/models/repository.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_author_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_author_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_branch.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_branch_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_commit.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_commit_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_commit_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_file_lines.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_mirror_record.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_mirror_record_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_mirror_record_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_object.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_path_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_path_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_ref.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_ref_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_ref_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_tag.py +usr/lib/python3.10/site-packages/oci/devops/models/repository_tag_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/run_pipeline_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/run_validation_test_on_compute_instance_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/single_deploy_stage_deployment.py +usr/lib/python3.10/site-packages/oci/devops/models/single_deploy_stage_deployment_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger_action.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger_build_pipeline_action.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger_create_result.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger_deployment_pipeline_stage_run_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger_deployment_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger_deployment_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger_info.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger_schedule.py +usr/lib/python3.10/site-packages/oci/devops/models/trigger_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/update_absolute_wait_criteria_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_build_pipeline_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_build_pipeline_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_build_run_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_build_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_compute_instance_group_deploy_environment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_compute_instance_group_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_connection_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_deliver_artifact_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_deploy_artifact_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_deploy_environment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_deploy_pipeline_deployment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_deploy_pipeline_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_deploy_pipeline_redeployment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_deployment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_devops_code_repository_trigger_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_function_deploy_environment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_function_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_github_access_token_connection_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_github_trigger_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_gitlab_access_token_connection_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_gitlab_trigger_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_invoke_function_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_load_balancer_traffic_shift_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_manual_approval_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_oke_cluster_deploy_environment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_oke_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_project_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_repository_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_single_deploy_stage_deployment_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_trigger_deployment_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_trigger_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_wait_criteria_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_wait_deploy_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/update_wait_stage_details.py +usr/lib/python3.10/site-packages/oci/devops/models/wait_criteria.py +usr/lib/python3.10/site-packages/oci/devops/models/wait_criteria_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/wait_deploy_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/wait_deploy_stage_execution_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/wait_deploy_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/wait_stage.py +usr/lib/python3.10/site-packages/oci/devops/models/wait_stage_run_progress.py +usr/lib/python3.10/site-packages/oci/devops/models/wait_stage_summary.py +usr/lib/python3.10/site-packages/oci/devops/models/work_request.py +usr/lib/python3.10/site-packages/oci/devops/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/devops/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/devops/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/devops/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/devops/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/dns +usr/lib/python3.10/site-packages/oci/dns/__init__.py +usr/lib/python3.10/site-packages/oci/dns/dns_client.py +usr/lib/python3.10/site-packages/oci/dns/dns_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/dns/models +usr/lib/python3.10/site-packages/oci/dns/models/__init__.py +usr/lib/python3.10/site-packages/oci/dns/models/attached_view.py +usr/lib/python3.10/site-packages/oci/dns/models/attached_view_details.py +usr/lib/python3.10/site-packages/oci/dns/models/change_resolver_compartment_details.py +usr/lib/python3.10/site-packages/oci/dns/models/change_steering_policy_compartment_details.py +usr/lib/python3.10/site-packages/oci/dns/models/change_tsig_key_compartment_details.py +usr/lib/python3.10/site-packages/oci/dns/models/change_view_compartment_details.py +usr/lib/python3.10/site-packages/oci/dns/models/change_zone_compartment_details.py +usr/lib/python3.10/site-packages/oci/dns/models/create_migrated_dynect_zone_details.py +usr/lib/python3.10/site-packages/oci/dns/models/create_resolver_endpoint_details.py +usr/lib/python3.10/site-packages/oci/dns/models/create_resolver_vnic_endpoint_details.py +usr/lib/python3.10/site-packages/oci/dns/models/create_steering_policy_attachment_details.py +usr/lib/python3.10/site-packages/oci/dns/models/create_steering_policy_details.py +usr/lib/python3.10/site-packages/oci/dns/models/create_tsig_key_details.py +usr/lib/python3.10/site-packages/oci/dns/models/create_view_details.py +usr/lib/python3.10/site-packages/oci/dns/models/create_zone_base_details.py +usr/lib/python3.10/site-packages/oci/dns/models/create_zone_details.py +usr/lib/python3.10/site-packages/oci/dns/models/dynect_migration_details.py +usr/lib/python3.10/site-packages/oci/dns/models/external_master.py +usr/lib/python3.10/site-packages/oci/dns/models/migration_replacement.py +usr/lib/python3.10/site-packages/oci/dns/models/nameserver.py +usr/lib/python3.10/site-packages/oci/dns/models/patch_domain_records_details.py +usr/lib/python3.10/site-packages/oci/dns/models/patch_rr_set_details.py +usr/lib/python3.10/site-packages/oci/dns/models/patch_zone_records_details.py +usr/lib/python3.10/site-packages/oci/dns/models/record.py +usr/lib/python3.10/site-packages/oci/dns/models/record_collection.py +usr/lib/python3.10/site-packages/oci/dns/models/record_details.py +usr/lib/python3.10/site-packages/oci/dns/models/record_operation.py +usr/lib/python3.10/site-packages/oci/dns/models/resolver.py +usr/lib/python3.10/site-packages/oci/dns/models/resolver_endpoint.py +usr/lib/python3.10/site-packages/oci/dns/models/resolver_endpoint_summary.py +usr/lib/python3.10/site-packages/oci/dns/models/resolver_forward_rule.py +usr/lib/python3.10/site-packages/oci/dns/models/resolver_forward_rule_details.py +usr/lib/python3.10/site-packages/oci/dns/models/resolver_rule.py +usr/lib/python3.10/site-packages/oci/dns/models/resolver_rule_details.py +usr/lib/python3.10/site-packages/oci/dns/models/resolver_summary.py +usr/lib/python3.10/site-packages/oci/dns/models/resolver_vnic_endpoint.py +usr/lib/python3.10/site-packages/oci/dns/models/resolver_vnic_endpoint_summary.py +usr/lib/python3.10/site-packages/oci/dns/models/rr_set.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_answer.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_attachment.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_attachment_summary.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_filter_answer_data.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_filter_rule.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_filter_rule_case.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_health_rule.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_health_rule_case.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_limit_rule.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_limit_rule_case.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_priority_answer_data.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_priority_rule.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_priority_rule_case.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_rule.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_summary.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_weighted_answer_data.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_weighted_rule.py +usr/lib/python3.10/site-packages/oci/dns/models/steering_policy_weighted_rule_case.py +usr/lib/python3.10/site-packages/oci/dns/models/tsig_key.py +usr/lib/python3.10/site-packages/oci/dns/models/tsig_key_summary.py +usr/lib/python3.10/site-packages/oci/dns/models/update_domain_records_details.py +usr/lib/python3.10/site-packages/oci/dns/models/update_resolver_details.py +usr/lib/python3.10/site-packages/oci/dns/models/update_resolver_endpoint_details.py +usr/lib/python3.10/site-packages/oci/dns/models/update_resolver_vnic_endpoint_details.py +usr/lib/python3.10/site-packages/oci/dns/models/update_rr_set_details.py +usr/lib/python3.10/site-packages/oci/dns/models/update_steering_policy_attachment_details.py +usr/lib/python3.10/site-packages/oci/dns/models/update_steering_policy_details.py +usr/lib/python3.10/site-packages/oci/dns/models/update_tsig_key_details.py +usr/lib/python3.10/site-packages/oci/dns/models/update_view_details.py +usr/lib/python3.10/site-packages/oci/dns/models/update_zone_details.py +usr/lib/python3.10/site-packages/oci/dns/models/update_zone_records_details.py +usr/lib/python3.10/site-packages/oci/dns/models/view.py +usr/lib/python3.10/site-packages/oci/dns/models/view_summary.py +usr/lib/python3.10/site-packages/oci/dns/models/zone.py +usr/lib/python3.10/site-packages/oci/dns/models/zone_summary.py +usr/lib/python3.10/site-packages/oci/dns/models/zone_transfer_server.py +usr/lib/python3.10/site-packages/oci/dts +usr/lib/python3.10/site-packages/oci/dts/__init__.py +usr/lib/python3.10/site-packages/oci/dts/appliance_export_job_client.py +usr/lib/python3.10/site-packages/oci/dts/appliance_export_job_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/dts/models +usr/lib/python3.10/site-packages/oci/dts/models/__init__.py +usr/lib/python3.10/site-packages/oci/dts/models/appliance_export_job.py +usr/lib/python3.10/site-packages/oci/dts/models/appliance_export_job_summary.py +usr/lib/python3.10/site-packages/oci/dts/models/attach_devices_details.py +usr/lib/python3.10/site-packages/oci/dts/models/change_appliance_export_job_compartment_details.py +usr/lib/python3.10/site-packages/oci/dts/models/change_transfer_job_compartment_details.py +usr/lib/python3.10/site-packages/oci/dts/models/create_appliance_export_job_details.py +usr/lib/python3.10/site-packages/oci/dts/models/create_transfer_appliance_details.py +usr/lib/python3.10/site-packages/oci/dts/models/create_transfer_appliance_entitlement_details.py +usr/lib/python3.10/site-packages/oci/dts/models/create_transfer_device_details.py +usr/lib/python3.10/site-packages/oci/dts/models/create_transfer_job_details.py +usr/lib/python3.10/site-packages/oci/dts/models/create_transfer_package_details.py +usr/lib/python3.10/site-packages/oci/dts/models/detach_devices_details.py +usr/lib/python3.10/site-packages/oci/dts/models/multiple_transfer_appliances.py +usr/lib/python3.10/site-packages/oci/dts/models/multiple_transfer_devices.py +usr/lib/python3.10/site-packages/oci/dts/models/multiple_transfer_packages.py +usr/lib/python3.10/site-packages/oci/dts/models/new_transfer_device.py +usr/lib/python3.10/site-packages/oci/dts/models/shipping_address.py +usr/lib/python3.10/site-packages/oci/dts/models/shipping_vendors.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_appliance.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_appliance_certificate.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_appliance_encryption_passphrase.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_appliance_entitlement.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_appliance_entitlement_summary.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_appliance_public_key.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_appliance_summary.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_device.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_device_summary.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_job.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_job_summary.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_package.py +usr/lib/python3.10/site-packages/oci/dts/models/transfer_package_summary.py +usr/lib/python3.10/site-packages/oci/dts/models/update_appliance_export_job_details.py +usr/lib/python3.10/site-packages/oci/dts/models/update_transfer_appliance_details.py +usr/lib/python3.10/site-packages/oci/dts/models/update_transfer_device_details.py +usr/lib/python3.10/site-packages/oci/dts/models/update_transfer_job_details.py +usr/lib/python3.10/site-packages/oci/dts/models/update_transfer_package_details.py +usr/lib/python3.10/site-packages/oci/dts/shipping_vendors_client.py +usr/lib/python3.10/site-packages/oci/dts/shipping_vendors_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/dts/transfer_appliance_client.py +usr/lib/python3.10/site-packages/oci/dts/transfer_appliance_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/dts/transfer_appliance_entitlement_client.py +usr/lib/python3.10/site-packages/oci/dts/transfer_appliance_entitlement_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/dts/transfer_device_client.py +usr/lib/python3.10/site-packages/oci/dts/transfer_device_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/dts/transfer_job_client.py +usr/lib/python3.10/site-packages/oci/dts/transfer_job_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/dts/transfer_package_client.py +usr/lib/python3.10/site-packages/oci/dts/transfer_package_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/email +usr/lib/python3.10/site-packages/oci/email/__init__.py +usr/lib/python3.10/site-packages/oci/email/email_client.py +usr/lib/python3.10/site-packages/oci/email/email_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/email/models +usr/lib/python3.10/site-packages/oci/email/models/__init__.py +usr/lib/python3.10/site-packages/oci/email/models/change_email_domain_compartment_details.py +usr/lib/python3.10/site-packages/oci/email/models/change_sender_compartment_details.py +usr/lib/python3.10/site-packages/oci/email/models/create_dkim_details.py +usr/lib/python3.10/site-packages/oci/email/models/create_email_domain_details.py +usr/lib/python3.10/site-packages/oci/email/models/create_sender_details.py +usr/lib/python3.10/site-packages/oci/email/models/create_suppression_details.py +usr/lib/python3.10/site-packages/oci/email/models/dkim.py +usr/lib/python3.10/site-packages/oci/email/models/dkim_collection.py +usr/lib/python3.10/site-packages/oci/email/models/dkim_summary.py +usr/lib/python3.10/site-packages/oci/email/models/email_domain.py +usr/lib/python3.10/site-packages/oci/email/models/email_domain_collection.py +usr/lib/python3.10/site-packages/oci/email/models/email_domain_summary.py +usr/lib/python3.10/site-packages/oci/email/models/sender.py +usr/lib/python3.10/site-packages/oci/email/models/sender_summary.py +usr/lib/python3.10/site-packages/oci/email/models/suppression.py +usr/lib/python3.10/site-packages/oci/email/models/suppression_summary.py +usr/lib/python3.10/site-packages/oci/email/models/update_dkim_details.py +usr/lib/python3.10/site-packages/oci/email/models/update_email_domain_details.py +usr/lib/python3.10/site-packages/oci/email/models/update_sender_details.py +usr/lib/python3.10/site-packages/oci/email/models/work_request.py +usr/lib/python3.10/site-packages/oci/email/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/email/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/email/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/email/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/email/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/email/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/email/models/work_request_summary_collection.py +usr/lib/python3.10/site-packages/oci/encryption +usr/lib/python3.10/site-packages/oci/encryption/__init__.py +usr/lib/python3.10/site-packages/oci/encryption/algorithms.py +usr/lib/python3.10/site-packages/oci/encryption/encryption.py +usr/lib/python3.10/site-packages/oci/encryption/internal +usr/lib/python3.10/site-packages/oci/encryption/internal/__init__.py +usr/lib/python3.10/site-packages/oci/encryption/internal/defaults.py +usr/lib/python3.10/site-packages/oci/encryption/internal/models.py +usr/lib/python3.10/site-packages/oci/encryption/internal/serialization.py +usr/lib/python3.10/site-packages/oci/encryption/internal/streaming.py +usr/lib/python3.10/site-packages/oci/encryption/internal/utils.py +usr/lib/python3.10/site-packages/oci/encryption/key_providers.py +usr/lib/python3.10/site-packages/oci/encryption/models.py +usr/lib/python3.10/site-packages/oci/events +usr/lib/python3.10/site-packages/oci/events/__init__.py +usr/lib/python3.10/site-packages/oci/events/events_client.py +usr/lib/python3.10/site-packages/oci/events/events_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/events/models +usr/lib/python3.10/site-packages/oci/events/models/__init__.py +usr/lib/python3.10/site-packages/oci/events/models/action.py +usr/lib/python3.10/site-packages/oci/events/models/action_details.py +usr/lib/python3.10/site-packages/oci/events/models/action_details_list.py +usr/lib/python3.10/site-packages/oci/events/models/action_list.py +usr/lib/python3.10/site-packages/oci/events/models/change_rule_compartment_details.py +usr/lib/python3.10/site-packages/oci/events/models/create_faa_s_action_details.py +usr/lib/python3.10/site-packages/oci/events/models/create_notification_service_action_details.py +usr/lib/python3.10/site-packages/oci/events/models/create_rule_details.py +usr/lib/python3.10/site-packages/oci/events/models/create_streaming_service_action_details.py +usr/lib/python3.10/site-packages/oci/events/models/faa_s_action.py +usr/lib/python3.10/site-packages/oci/events/models/notification_service_action.py +usr/lib/python3.10/site-packages/oci/events/models/rule.py +usr/lib/python3.10/site-packages/oci/events/models/rule_summary.py +usr/lib/python3.10/site-packages/oci/events/models/streaming_service_action.py +usr/lib/python3.10/site-packages/oci/events/models/update_rule_details.py +usr/lib/python3.10/site-packages/oci/exceptions.py +usr/lib/python3.10/site-packages/oci/file_storage +usr/lib/python3.10/site-packages/oci/file_storage/__init__.py +usr/lib/python3.10/site-packages/oci/file_storage/file_storage_client.py +usr/lib/python3.10/site-packages/oci/file_storage/file_storage_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/file_storage/models +usr/lib/python3.10/site-packages/oci/file_storage/models/__init__.py +usr/lib/python3.10/site-packages/oci/file_storage/models/change_file_system_compartment_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/change_mount_target_compartment_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/client_options.py +usr/lib/python3.10/site-packages/oci/file_storage/models/create_export_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/create_file_system_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/create_mount_target_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/create_snapshot_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/export.py +usr/lib/python3.10/site-packages/oci/file_storage/models/export_set.py +usr/lib/python3.10/site-packages/oci/file_storage/models/export_set_summary.py +usr/lib/python3.10/site-packages/oci/file_storage/models/export_summary.py +usr/lib/python3.10/site-packages/oci/file_storage/models/file_system.py +usr/lib/python3.10/site-packages/oci/file_storage/models/file_system_summary.py +usr/lib/python3.10/site-packages/oci/file_storage/models/mount_target.py +usr/lib/python3.10/site-packages/oci/file_storage/models/mount_target_summary.py +usr/lib/python3.10/site-packages/oci/file_storage/models/snapshot.py +usr/lib/python3.10/site-packages/oci/file_storage/models/snapshot_summary.py +usr/lib/python3.10/site-packages/oci/file_storage/models/source_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/update_export_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/update_export_set_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/update_file_system_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/update_mount_target_details.py +usr/lib/python3.10/site-packages/oci/file_storage/models/update_snapshot_details.py +usr/lib/python3.10/site-packages/oci/fips.py +usr/lib/python3.10/site-packages/oci/functions +usr/lib/python3.10/site-packages/oci/functions/__init__.py +usr/lib/python3.10/site-packages/oci/functions/functions_invoke_client.py +usr/lib/python3.10/site-packages/oci/functions/functions_invoke_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/functions/functions_management_client.py +usr/lib/python3.10/site-packages/oci/functions/functions_management_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/functions/models +usr/lib/python3.10/site-packages/oci/functions/models/__init__.py +usr/lib/python3.10/site-packages/oci/functions/models/application.py +usr/lib/python3.10/site-packages/oci/functions/models/application_summary.py +usr/lib/python3.10/site-packages/oci/functions/models/application_trace_config.py +usr/lib/python3.10/site-packages/oci/functions/models/change_application_compartment_details.py +usr/lib/python3.10/site-packages/oci/functions/models/create_application_details.py +usr/lib/python3.10/site-packages/oci/functions/models/create_function_details.py +usr/lib/python3.10/site-packages/oci/functions/models/function.py +usr/lib/python3.10/site-packages/oci/functions/models/function_summary.py +usr/lib/python3.10/site-packages/oci/functions/models/function_trace_config.py +usr/lib/python3.10/site-packages/oci/functions/models/image_policy_config.py +usr/lib/python3.10/site-packages/oci/functions/models/key_details.py +usr/lib/python3.10/site-packages/oci/functions/models/update_application_details.py +usr/lib/python3.10/site-packages/oci/functions/models/update_function_details.py +usr/lib/python3.10/site-packages/oci/generic_artifacts_content +usr/lib/python3.10/site-packages/oci/generic_artifacts_content/__init__.py +usr/lib/python3.10/site-packages/oci/generic_artifacts_content/generic_artifacts_content_client.py +usr/lib/python3.10/site-packages/oci/generic_artifacts_content/generic_artifacts_content_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/generic_artifacts_content/models +usr/lib/python3.10/site-packages/oci/generic_artifacts_content/models/__init__.py +usr/lib/python3.10/site-packages/oci/generic_artifacts_content/models/generic_artifact.py +usr/lib/python3.10/site-packages/oci/golden_gate +usr/lib/python3.10/site-packages/oci/golden_gate/__init__.py +usr/lib/python3.10/site-packages/oci/golden_gate/golden_gate_client.py +usr/lib/python3.10/site-packages/oci/golden_gate/golden_gate_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/golden_gate/models +usr/lib/python3.10/site-packages/oci/golden_gate/models/__init__.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/cancel_deployment_backup_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/change_database_registration_compartment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/change_deployment_backup_compartment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/change_deployment_compartment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/create_database_registration_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/create_deployment_backup_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/create_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/create_ogg_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/database_registration.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/database_registration_collection.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/database_registration_summary.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/default_cancel_deployment_backup_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/default_restore_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/default_start_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/default_stop_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/deployment.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/deployment_backup.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/deployment_backup_collection.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/deployment_backup_summary.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/deployment_collection.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/deployment_summary.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/deployment_upgrade.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/deployment_upgrade_collection.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/deployment_upgrade_summary.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/ogg_deployment.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/restore_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/start_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/stop_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/update_database_registration_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/update_deployment_backup_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/update_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/update_ogg_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/upgrade_deployment_current_release_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/upgrade_deployment_details.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/work_request.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/golden_gate/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/healthchecks +usr/lib/python3.10/site-packages/oci/healthchecks/__init__.py +usr/lib/python3.10/site-packages/oci/healthchecks/health_checks_client.py +usr/lib/python3.10/site-packages/oci/healthchecks/health_checks_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/healthchecks/models +usr/lib/python3.10/site-packages/oci/healthchecks/models/__init__.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/change_http_monitor_compartment_details.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/change_ping_monitor_compartment_details.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/connection.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/create_http_monitor_details.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/create_on_demand_http_probe_details.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/create_on_demand_ping_probe_details.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/create_ping_monitor_details.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/dns.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/geolocation.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/health_checks_vantage_point_summary.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/http_monitor.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/http_monitor_summary.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/http_probe.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/http_probe_result_summary.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/ping_monitor.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/ping_monitor_summary.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/ping_probe.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/ping_probe_result_summary.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/routing.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/tcp_connection.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/update_http_monitor_details.py +usr/lib/python3.10/site-packages/oci/healthchecks/models/update_ping_monitor_details.py +usr/lib/python3.10/site-packages/oci/identity +usr/lib/python3.10/site-packages/oci/identity/__init__.py +usr/lib/python3.10/site-packages/oci/identity/identity_client.py +usr/lib/python3.10/site-packages/oci/identity/identity_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/identity/models +usr/lib/python3.10/site-packages/oci/identity/models/__init__.py +usr/lib/python3.10/site-packages/oci/identity/models/add_user_to_group_details.py +usr/lib/python3.10/site-packages/oci/identity/models/allowed_domain_license_type_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/api_key.py +usr/lib/python3.10/site-packages/oci/identity/models/auth_token.py +usr/lib/python3.10/site-packages/oci/identity/models/authentication_policy.py +usr/lib/python3.10/site-packages/oci/identity/models/availability_domain.py +usr/lib/python3.10/site-packages/oci/identity/models/base_tag_definition_validator.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_action_resource.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_action_resource_type.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_action_resource_type_collection.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_delete_resources_details.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_delete_tags_details.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_edit_operation_details.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_edit_resource.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_edit_tags_details.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_edit_tags_resource_type.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_edit_tags_resource_type_collection.py +usr/lib/python3.10/site-packages/oci/identity/models/bulk_move_resources_details.py +usr/lib/python3.10/site-packages/oci/identity/models/change_domain_compartment_details.py +usr/lib/python3.10/site-packages/oci/identity/models/change_domain_license_type_details.py +usr/lib/python3.10/site-packages/oci/identity/models/change_tag_namespace_compartment_detail.py +usr/lib/python3.10/site-packages/oci/identity/models/change_tas_domain_license_type_details.py +usr/lib/python3.10/site-packages/oci/identity/models/compartment.py +usr/lib/python3.10/site-packages/oci/identity/models/create_api_key_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_auth_token_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_compartment_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_customer_secret_key_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_db_credential_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_domain_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_dynamic_group_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_group_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_identity_provider_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_idp_group_mapping_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_network_source_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_o_auth2_client_credential_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_policy_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_region_subscription_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_saml2_identity_provider_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_smtp_credential_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_swift_password_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_tag_default_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_tag_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_tag_namespace_details.py +usr/lib/python3.10/site-packages/oci/identity/models/create_user_details.py +usr/lib/python3.10/site-packages/oci/identity/models/customer_secret_key.py +usr/lib/python3.10/site-packages/oci/identity/models/customer_secret_key_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/db_credential.py +usr/lib/python3.10/site-packages/oci/identity/models/db_credential_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/default_tag_definition_validator.py +usr/lib/python3.10/site-packages/oci/identity/models/domain.py +usr/lib/python3.10/site-packages/oci/identity/models/domain_replication.py +usr/lib/python3.10/site-packages/oci/identity/models/domain_replication_states.py +usr/lib/python3.10/site-packages/oci/identity/models/domain_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/dynamic_group.py +usr/lib/python3.10/site-packages/oci/identity/models/enable_replication_to_region_details.py +usr/lib/python3.10/site-packages/oci/identity/models/enum_tag_definition_validator.py +usr/lib/python3.10/site-packages/oci/identity/models/fault_domain.py +usr/lib/python3.10/site-packages/oci/identity/models/fully_qualified_scope.py +usr/lib/python3.10/site-packages/oci/identity/models/group.py +usr/lib/python3.10/site-packages/oci/identity/models/iam_work_request.py +usr/lib/python3.10/site-packages/oci/identity/models/iam_work_request_error_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/iam_work_request_log_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/iam_work_request_resource.py +usr/lib/python3.10/site-packages/oci/identity/models/iam_work_request_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/identity_provider.py +usr/lib/python3.10/site-packages/oci/identity/models/identity_provider_group_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/idp_group_mapping.py +usr/lib/python3.10/site-packages/oci/identity/models/import_standard_tags_details.py +usr/lib/python3.10/site-packages/oci/identity/models/mfa_totp_device.py +usr/lib/python3.10/site-packages/oci/identity/models/mfa_totp_device_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/mfa_totp_token.py +usr/lib/python3.10/site-packages/oci/identity/models/move_compartment_details.py +usr/lib/python3.10/site-packages/oci/identity/models/network_policy.py +usr/lib/python3.10/site-packages/oci/identity/models/network_sources.py +usr/lib/python3.10/site-packages/oci/identity/models/network_sources_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/network_sources_virtual_source_list.py +usr/lib/python3.10/site-packages/oci/identity/models/o_auth2_client_credential.py +usr/lib/python3.10/site-packages/oci/identity/models/o_auth2_client_credential_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/password_policy.py +usr/lib/python3.10/site-packages/oci/identity/models/policy.py +usr/lib/python3.10/site-packages/oci/identity/models/region.py +usr/lib/python3.10/site-packages/oci/identity/models/region_subscription.py +usr/lib/python3.10/site-packages/oci/identity/models/replicated_region_details.py +usr/lib/python3.10/site-packages/oci/identity/models/saml2_identity_provider.py +usr/lib/python3.10/site-packages/oci/identity/models/scim_client_credentials.py +usr/lib/python3.10/site-packages/oci/identity/models/smtp_credential.py +usr/lib/python3.10/site-packages/oci/identity/models/smtp_credential_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/standard_tag_definition_template.py +usr/lib/python3.10/site-packages/oci/identity/models/standard_tag_namespace_template.py +usr/lib/python3.10/site-packages/oci/identity/models/standard_tag_namespace_template_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/swift_password.py +usr/lib/python3.10/site-packages/oci/identity/models/tag.py +usr/lib/python3.10/site-packages/oci/identity/models/tag_default.py +usr/lib/python3.10/site-packages/oci/identity/models/tag_default_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/tag_namespace.py +usr/lib/python3.10/site-packages/oci/identity/models/tag_namespace_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/tag_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/tagging_work_request.py +usr/lib/python3.10/site-packages/oci/identity/models/tagging_work_request_error_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/tagging_work_request_log_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/tagging_work_request_summary.py +usr/lib/python3.10/site-packages/oci/identity/models/tenancy.py +usr/lib/python3.10/site-packages/oci/identity/models/ui_password.py +usr/lib/python3.10/site-packages/oci/identity/models/ui_password_information.py +usr/lib/python3.10/site-packages/oci/identity/models/update_auth_token_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_authentication_policy_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_compartment_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_customer_secret_key_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_domain_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_dynamic_group_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_group_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_identity_provider_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_idp_group_mapping_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_network_source_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_o_auth2_client_credential_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_policy_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_saml2_identity_provider_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_smtp_credential_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_state_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_swift_password_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_tag_default_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_tag_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_tag_namespace_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_user_capabilities_details.py +usr/lib/python3.10/site-packages/oci/identity/models/update_user_details.py +usr/lib/python3.10/site-packages/oci/identity/models/user.py +usr/lib/python3.10/site-packages/oci/identity/models/user_capabilities.py +usr/lib/python3.10/site-packages/oci/identity/models/user_group_membership.py +usr/lib/python3.10/site-packages/oci/identity/models/work_request.py +usr/lib/python3.10/site-packages/oci/identity/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/identity/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/identity/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/identity/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/identity_data_plane +usr/lib/python3.10/site-packages/oci/identity_data_plane/__init__.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/dataplane_client.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/dataplane_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/__init__.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/accessible_compartment_request.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/accessible_compartment_response.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/association_authorization_request.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/auth_service_user.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/authenticate_client_details.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/authenticate_client_result.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/authenticate_user_result.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/authentication_policy.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/authentication_principal.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/authentication_request.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/authorization_request.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/bad_user_state_authenticate_user_result.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/claim.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/client_credentials_response.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/common_principal.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/compartment.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/compartment_metadata.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/context_variable.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/cost_tracking_tag.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/credential_authenticator_info.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/derived_key_response.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/entity_status.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/filter_group_membership_details.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/filter_group_membership_result.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/generate_scoped_access_token_details.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/identity_provider.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/jwk.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/on_behalf_of_request.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/password_policy.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/password_reset_authentication_request.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/permission.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/permission_context.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/principal.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/refresh_request.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/resource_principal_session_token_request.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/security_token.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/tenant.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/tenant_not_found_authenticate_user_result.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/thick_authorization_response.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/thin_association_authorization_response.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/thin_authorization_response.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/user.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/user_not_found_authenticate_user_result.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/valid_authenticate_user_result.py +usr/lib/python3.10/site-packages/oci/identity_data_plane/models/x509_federation_request.py +usr/lib/python3.10/site-packages/oci/integration +usr/lib/python3.10/site-packages/oci/integration/__init__.py +usr/lib/python3.10/site-packages/oci/integration/integration_instance_client.py +usr/lib/python3.10/site-packages/oci/integration/integration_instance_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/integration/models +usr/lib/python3.10/site-packages/oci/integration/models/__init__.py +usr/lib/python3.10/site-packages/oci/integration/models/change_integration_instance_compartment_details.py +usr/lib/python3.10/site-packages/oci/integration/models/change_integration_instance_network_endpoint_details.py +usr/lib/python3.10/site-packages/oci/integration/models/create_custom_endpoint_details.py +usr/lib/python3.10/site-packages/oci/integration/models/create_integration_instance_details.py +usr/lib/python3.10/site-packages/oci/integration/models/custom_endpoint_details.py +usr/lib/python3.10/site-packages/oci/integration/models/integration_instance.py +usr/lib/python3.10/site-packages/oci/integration/models/integration_instance_summary.py +usr/lib/python3.10/site-packages/oci/integration/models/network_endpoint_details.py +usr/lib/python3.10/site-packages/oci/integration/models/public_endpoint_details.py +usr/lib/python3.10/site-packages/oci/integration/models/update_custom_endpoint_details.py +usr/lib/python3.10/site-packages/oci/integration/models/update_integration_instance_details.py +usr/lib/python3.10/site-packages/oci/integration/models/virtual_cloud_network.py +usr/lib/python3.10/site-packages/oci/integration/models/work_request.py +usr/lib/python3.10/site-packages/oci/integration/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/integration/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/integration/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/integration/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/jms +usr/lib/python3.10/site-packages/oci/jms/__init__.py +usr/lib/python3.10/site-packages/oci/jms/java_management_service_client.py +usr/lib/python3.10/site-packages/oci/jms/java_management_service_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/jms/models +usr/lib/python3.10/site-packages/oci/jms/models/__init__.py +usr/lib/python3.10/site-packages/oci/jms/models/application_usage.py +usr/lib/python3.10/site-packages/oci/jms/models/application_usage_collection.py +usr/lib/python3.10/site-packages/oci/jms/models/change_fleet_compartment_details.py +usr/lib/python3.10/site-packages/oci/jms/models/create_fleet_details.py +usr/lib/python3.10/site-packages/oci/jms/models/fleet.py +usr/lib/python3.10/site-packages/oci/jms/models/fleet_agent_configuration.py +usr/lib/python3.10/site-packages/oci/jms/models/fleet_agent_os_configuration.py +usr/lib/python3.10/site-packages/oci/jms/models/fleet_collection.py +usr/lib/python3.10/site-packages/oci/jms/models/fleet_summary.py +usr/lib/python3.10/site-packages/oci/jms/models/installation_usage.py +usr/lib/python3.10/site-packages/oci/jms/models/installation_usage_collection.py +usr/lib/python3.10/site-packages/oci/jms/models/jre_usage.py +usr/lib/python3.10/site-packages/oci/jms/models/jre_usage_collection.py +usr/lib/python3.10/site-packages/oci/jms/models/managed_instance_usage.py +usr/lib/python3.10/site-packages/oci/jms/models/managed_instance_usage_collection.py +usr/lib/python3.10/site-packages/oci/jms/models/operating_system.py +usr/lib/python3.10/site-packages/oci/jms/models/request_summarized_application_usage_details.py +usr/lib/python3.10/site-packages/oci/jms/models/request_summarized_installation_usage_details.py +usr/lib/python3.10/site-packages/oci/jms/models/request_summarized_jre_usage_details.py +usr/lib/python3.10/site-packages/oci/jms/models/request_summarized_managed_instance_usage_details.py +usr/lib/python3.10/site-packages/oci/jms/models/resource_inventory.py +usr/lib/python3.10/site-packages/oci/jms/models/update_fleet_agent_configuration_details.py +usr/lib/python3.10/site-packages/oci/jms/models/update_fleet_details.py +usr/lib/python3.10/site-packages/oci/jms/models/work_request.py +usr/lib/python3.10/site-packages/oci/jms/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/jms/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/jms/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/jms/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/jms/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/jms/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/key_management +usr/lib/python3.10/site-packages/oci/key_management/__init__.py +usr/lib/python3.10/site-packages/oci/key_management/kms_crypto_client.py +usr/lib/python3.10/site-packages/oci/key_management/kms_crypto_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/key_management/kms_management_client.py +usr/lib/python3.10/site-packages/oci/key_management/kms_management_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/key_management/kms_vault_client.py +usr/lib/python3.10/site-packages/oci/key_management/kms_vault_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/key_management/models +usr/lib/python3.10/site-packages/oci/key_management/models/__init__.py +usr/lib/python3.10/site-packages/oci/key_management/models/backup_key_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/backup_location.py +usr/lib/python3.10/site-packages/oci/key_management/models/backup_location_bucket.py +usr/lib/python3.10/site-packages/oci/key_management/models/backup_location_uri.py +usr/lib/python3.10/site-packages/oci/key_management/models/backup_vault_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/change_key_compartment_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/change_vault_compartment_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/create_key_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/create_vault_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/create_vault_replica_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/decrypt_data_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/decrypted_data.py +usr/lib/python3.10/site-packages/oci/key_management/models/delete_vault_replica_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/encrypt_data_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/encrypted_data.py +usr/lib/python3.10/site-packages/oci/key_management/models/export_key_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/exported_key_data.py +usr/lib/python3.10/site-packages/oci/key_management/models/generate_key_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/generated_key.py +usr/lib/python3.10/site-packages/oci/key_management/models/import_key_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/import_key_version_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/key.py +usr/lib/python3.10/site-packages/oci/key_management/models/key_replica_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/key_shape.py +usr/lib/python3.10/site-packages/oci/key_management/models/key_summary.py +usr/lib/python3.10/site-packages/oci/key_management/models/key_version.py +usr/lib/python3.10/site-packages/oci/key_management/models/key_version_replica_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/key_version_summary.py +usr/lib/python3.10/site-packages/oci/key_management/models/replica_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/replication_status_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/restore_key_from_object_store_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/restore_vault_from_object_store_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/schedule_key_deletion_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/schedule_key_version_deletion_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/schedule_vault_deletion_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/sign_data_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/signed_data.py +usr/lib/python3.10/site-packages/oci/key_management/models/update_key_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/update_vault_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/vault.py +usr/lib/python3.10/site-packages/oci/key_management/models/vault_replica_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/vault_replica_summary.py +usr/lib/python3.10/site-packages/oci/key_management/models/vault_summary.py +usr/lib/python3.10/site-packages/oci/key_management/models/vault_usage.py +usr/lib/python3.10/site-packages/oci/key_management/models/verified_data.py +usr/lib/python3.10/site-packages/oci/key_management/models/verify_data_details.py +usr/lib/python3.10/site-packages/oci/key_management/models/wrapped_import_key.py +usr/lib/python3.10/site-packages/oci/key_management/models/wrapping_key.py +usr/lib/python3.10/site-packages/oci/limits +usr/lib/python3.10/site-packages/oci/limits/__init__.py +usr/lib/python3.10/site-packages/oci/limits/limits_client.py +usr/lib/python3.10/site-packages/oci/limits/limits_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/limits/models +usr/lib/python3.10/site-packages/oci/limits/models/__init__.py +usr/lib/python3.10/site-packages/oci/limits/models/create_quota_details.py +usr/lib/python3.10/site-packages/oci/limits/models/limit_definition_summary.py +usr/lib/python3.10/site-packages/oci/limits/models/limit_value_summary.py +usr/lib/python3.10/site-packages/oci/limits/models/quota.py +usr/lib/python3.10/site-packages/oci/limits/models/quota_summary.py +usr/lib/python3.10/site-packages/oci/limits/models/resource_availability.py +usr/lib/python3.10/site-packages/oci/limits/models/service_summary.py +usr/lib/python3.10/site-packages/oci/limits/models/update_quota_details.py +usr/lib/python3.10/site-packages/oci/limits/quotas_client.py +usr/lib/python3.10/site-packages/oci/limits/quotas_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/load_balancer +usr/lib/python3.10/site-packages/oci/load_balancer/__init__.py +usr/lib/python3.10/site-packages/oci/load_balancer/load_balancer_client.py +usr/lib/python3.10/site-packages/oci/load_balancer/load_balancer_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/load_balancer/models +usr/lib/python3.10/site-packages/oci/load_balancer/models/__init__.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/action.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/add_http_request_header_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/add_http_response_header_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/allow_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/backend.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/backend_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/backend_health.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/backend_set.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/backend_set_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/backend_set_health.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/certificate.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/certificate_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/change_load_balancer_compartment_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/connection_configuration.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/control_access_using_http_methods_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/create_backend_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/create_backend_set_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/create_certificate_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/create_hostname_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/create_listener_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/create_load_balancer_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/create_path_route_set_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/create_routing_policy_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/create_rule_set_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/create_ssl_cipher_suite_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/extend_http_request_header_value_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/extend_http_response_header_value_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/forward_to_backend_set.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/health_check_result.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/health_checker.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/health_checker_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/hostname.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/hostname_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/http_header_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/ip_address.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/lb_cookie_session_persistence_configuration_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/listener.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/listener_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/listener_rule_summary.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/load_balancer.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/load_balancer_health.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/load_balancer_health_summary.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/load_balancer_policy.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/load_balancer_protocol.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/load_balancer_shape.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/path_match_condition.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/path_match_type.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/path_route.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/path_route_set.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/path_route_set_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/redirect_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/redirect_uri.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/remove_http_request_header_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/remove_http_response_header_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/reserved_ip.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/routing_policy.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/routing_policy_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/routing_rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/rule.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/rule_condition.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/rule_set.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/rule_set_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/session_persistence_configuration_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/shape_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/source_ip_address_condition.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/source_vcn_id_condition.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/source_vcn_ip_address_condition.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/ssl_cipher_suite.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/ssl_cipher_suite_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/ssl_configuration.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/ssl_configuration_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_backend_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_backend_set_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_health_checker_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_hostname_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_listener_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_load_balancer_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_load_balancer_shape_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_network_security_groups_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_path_route_set_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_routing_policy_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_rule_set_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/update_ssl_cipher_suite_details.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/work_request.py +usr/lib/python3.10/site-packages/oci/load_balancer/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/log_analytics +usr/lib/python3.10/site-packages/oci/log_analytics/__init__.py +usr/lib/python3.10/site-packages/oci/log_analytics/log_analytics_client.py +usr/lib/python3.10/site-packages/oci/log_analytics/log_analytics_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/log_analytics/models +usr/lib/python3.10/site-packages/oci/log_analytics/models/__init__.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/abstract_column.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/abstract_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/abstract_field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/abstract_parser_test_result_log_entry.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/abstract_parser_test_result_log_line.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/action.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/add_entity_association_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/add_fields_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/agent_upload.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/archiving_configuration.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/argument.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/associable_entity.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/associable_entity_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/association_summary_report.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/attribute.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/auto_association_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/auto_association_state.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/auto_lookups.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/bottom_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/bucket_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/bucket_range.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/change_log_analytics_em_bridge_compartment_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/change_log_analytics_entity_compartment_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/change_log_analytics_log_group_compartment_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/change_log_analytics_object_collection_rule_compartment_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/change_scheduled_task_compartment_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/char_encoding_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/chart_column.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/chart_data_column.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/classify_column.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/classify_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/cluster_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/cluster_compare_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/cluster_details_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/cluster_split_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/column.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/column_name.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/column_name_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/compare_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/compare_content_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/compare_content_result.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/compare_line_result.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/create_acceleration_task_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/create_log_analytics_em_bridge_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/create_log_analytics_entity_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/create_log_analytics_entity_type_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/create_log_analytics_log_group_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/create_log_analytics_object_collection_rule_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/create_namespace_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/create_scheduled_task_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/create_standard_task_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/create_view_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/creation_source.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/cron_schedule.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/delete_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/delete_log_analytics_association.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/delete_log_analytics_association_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/delta_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/demo_mode_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/disable_auto_association_detail.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/disable_auto_association_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/distinct_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/efd_regex_result.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/enable_auto_association_detail.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/enable_auto_association_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/entity_type_property.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/error_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/estimate_purge_data_size_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/estimate_purge_data_size_result.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/estimate_recall_data_size_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/estimate_recall_data_size_result.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/estimate_release_data_size_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/estimate_release_data_size_result.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/eval_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/event_stats_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/event_type.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/event_type_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/event_type_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/export_content.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/export_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/extended_fields_validation_result.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/extract_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/extract_log_field_results.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/extract_log_header_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/extract_log_header_results.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/field_argument.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/field_map.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/field_summary_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/field_summary_report.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/field_value.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/fields_add_remove_field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/fields_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/file_validation_response.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/filter.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/filter_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/filter_output.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/fixed_frequency_schedule.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/function_field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/generate_agent_object_name_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/geo_stats_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/head_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/highlight_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/highlight_groups_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/highlight_rows_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/indexes.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/json_extract_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/label_names.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/label_priority.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/label_priority_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/label_source_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/label_source_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/label_summary_report.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/link_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/link_details_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/literal_argument.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_associated_entity.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_associated_entity_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_association.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_association_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_association_parameter.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_association_parameter_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_category.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_category_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_collection_warning.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_config_work_request.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_config_work_request_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_config_work_request_payload.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_config_work_request_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_em_bridge.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_em_bridge_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_em_bridge_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_em_bridge_summary_report.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity_summary_report.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity_topology_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity_topology_link.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity_topology_link_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity_topology_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity_type.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity_type_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_entity_type_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_extended_field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_field_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_field_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_import_custom_change_list.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_import_custom_content.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_label.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_label_alias.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_label_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_label_definition.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_label_operator.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_label_operator_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_label_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_label_view.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_log_group.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_log_group_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_log_group_summary_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_lookup.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_lookup_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_lookup_fields.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_meta_function.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_meta_function_argument.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_meta_function_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_meta_source_type.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_meta_source_type_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_metric.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_object_collection_rule.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_object_collection_rule_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_object_collection_rule_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parameter.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser_field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser_filter.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser_function.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser_function_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser_function_parameter.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser_meta_plugin.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser_meta_plugin_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser_meta_plugin_parameter.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_parser_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_pattern_filter.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_preference.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_preference_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_preference_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_resource_category.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_resource_category_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_resource_category_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_data_filter.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_entity_type.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_extended_field_definition.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_extended_field_definition_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_function.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_label_condition.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_metadata_field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_metric.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_pattern.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_pattern_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_source_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_warning.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_analytics_warning_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_group_summary_report.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_set_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/log_sets_count.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/lookup_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/lookup_field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/lookup_summary_report.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/macro_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/map_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/match_info.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/metric_extraction.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/multi_search_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/namespace.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/namespace_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/namespace_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/nlp_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/out_of_box_entity_type_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/parse_query_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/parse_query_output.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/parsed_content.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/parsed_field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/parser_summary_report.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/parser_test_result.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/property_override.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/purge_action.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/purge_storage_data_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/query.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/query_aggregation.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/query_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/query_work_request.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/query_work_request_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/query_work_request_resource.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/query_work_request_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/recall_archived_data_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/recalled_data.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/recalled_data_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/regex_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/regex_match_result.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/register_entity_types_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/release_recalled_data_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/remove_entity_associations_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/rename_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/result_column.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/schedule.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/scheduled_task.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/scheduled_task_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/scheduled_task_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/scheduler_resource.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/scope_filter.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/search_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/search_lookup_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/service_tenancy.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/sort_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/sort_field.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/source_mapping_response.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/source_summary_report.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/source_validate_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/source_validate_results.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/standard_task.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/stats_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/status_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/step_info.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/storage.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/storage_usage.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/storage_work_request.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/storage_work_request_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/storage_work_request_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/stream_action.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/string_list_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/success.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/suggest_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/suggest_output.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/tail_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/test_parser_payload_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/time_column.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/time_compare_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/time_range.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/time_stats_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/timezone_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/top_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/trend_column.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/ui_parser_test_metadata.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/unprocessed_data_bucket.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/update_log_analytics_em_bridge_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/update_log_analytics_entity_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/update_log_analytics_entity_type_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/update_log_analytics_log_group_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/update_log_analytics_object_collection_rule_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/update_lookup_metadata_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/update_scheduled_task_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/update_standard_task_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/update_storage_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upload.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upload_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upload_file_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upload_file_status.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upload_file_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upload_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upload_warning_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upload_warning_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upsert_log_analytics_association.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upsert_log_analytics_association_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upsert_log_analytics_field_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upsert_log_analytics_label_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upsert_log_analytics_parser_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/upsert_log_analytics_source_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/usage_status_item.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/verify_output.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/violation.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/warning_reference_details.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/where_command_descriptor.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/work_request.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/work_request_log.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/work_request_log_collection.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/log_analytics/models/xml_extract_command_descriptor.py +usr/lib/python3.10/site-packages/oci/logging +usr/lib/python3.10/site-packages/oci/logging/__init__.py +usr/lib/python3.10/site-packages/oci/logging/logging_management_client.py +usr/lib/python3.10/site-packages/oci/logging/logging_management_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/logging/models +usr/lib/python3.10/site-packages/oci/logging/models/__init__.py +usr/lib/python3.10/site-packages/oci/logging/models/archiving.py +usr/lib/python3.10/site-packages/oci/logging/models/category.py +usr/lib/python3.10/site-packages/oci/logging/models/change_log_group_compartment_details.py +usr/lib/python3.10/site-packages/oci/logging/models/change_log_log_group_details.py +usr/lib/python3.10/site-packages/oci/logging/models/change_log_saved_search_compartment_details.py +usr/lib/python3.10/site-packages/oci/logging/models/change_unified_agent_configuration_compartment_details.py +usr/lib/python3.10/site-packages/oci/logging/models/configuration.py +usr/lib/python3.10/site-packages/oci/logging/models/create_log_details.py +usr/lib/python3.10/site-packages/oci/logging/models/create_log_group_details.py +usr/lib/python3.10/site-packages/oci/logging/models/create_log_saved_search_details.py +usr/lib/python3.10/site-packages/oci/logging/models/create_unified_agent_configuration_details.py +usr/lib/python3.10/site-packages/oci/logging/models/grok_pattern.py +usr/lib/python3.10/site-packages/oci/logging/models/group_association_details.py +usr/lib/python3.10/site-packages/oci/logging/models/log.py +usr/lib/python3.10/site-packages/oci/logging/models/log_group.py +usr/lib/python3.10/site-packages/oci/logging/models/log_group_summary.py +usr/lib/python3.10/site-packages/oci/logging/models/log_included_search.py +usr/lib/python3.10/site-packages/oci/logging/models/log_included_search_summary.py +usr/lib/python3.10/site-packages/oci/logging/models/log_included_search_summary_collection.py +usr/lib/python3.10/site-packages/oci/logging/models/log_saved_search.py +usr/lib/python3.10/site-packages/oci/logging/models/log_saved_search_summary.py +usr/lib/python3.10/site-packages/oci/logging/models/log_saved_search_summary_collection.py +usr/lib/python3.10/site-packages/oci/logging/models/log_summary.py +usr/lib/python3.10/site-packages/oci/logging/models/oci_service.py +usr/lib/python3.10/site-packages/oci/logging/models/parameter.py +usr/lib/python3.10/site-packages/oci/logging/models/resource_type.py +usr/lib/python3.10/site-packages/oci/logging/models/service_summary.py +usr/lib/python3.10/site-packages/oci/logging/models/source.py +usr/lib/python3.10/site-packages/oci/logging/models/source_update_details.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_apache2_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_apache_error_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_auditd_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_configuration.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_configuration_collection.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_configuration_summary.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_csv_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_grok_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_logging_configuration.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_logging_destination.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_logging_source.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_msgpack_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_multiline_grok_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_multiline_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_none_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_regex_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_service_configuration_details.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_syslog_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_tail_log_source.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_tsv_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_agent_windows_event_source.py +usr/lib/python3.10/site-packages/oci/logging/models/unified_json_parser.py +usr/lib/python3.10/site-packages/oci/logging/models/update_configuration_details.py +usr/lib/python3.10/site-packages/oci/logging/models/update_log_details.py +usr/lib/python3.10/site-packages/oci/logging/models/update_log_group_details.py +usr/lib/python3.10/site-packages/oci/logging/models/update_log_saved_search_details.py +usr/lib/python3.10/site-packages/oci/logging/models/update_unified_agent_configuration_details.py +usr/lib/python3.10/site-packages/oci/logging/models/work_request.py +usr/lib/python3.10/site-packages/oci/logging/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/logging/models/work_request_log.py +usr/lib/python3.10/site-packages/oci/logging/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/logging/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/loggingingestion +usr/lib/python3.10/site-packages/oci/loggingingestion/__init__.py +usr/lib/python3.10/site-packages/oci/loggingingestion/logging_client.py +usr/lib/python3.10/site-packages/oci/loggingingestion/logging_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/loggingingestion/models +usr/lib/python3.10/site-packages/oci/loggingingestion/models/__init__.py +usr/lib/python3.10/site-packages/oci/loggingingestion/models/log_entry.py +usr/lib/python3.10/site-packages/oci/loggingingestion/models/log_entry_batch.py +usr/lib/python3.10/site-packages/oci/loggingingestion/models/put_logs_details.py +usr/lib/python3.10/site-packages/oci/loggingsearch +usr/lib/python3.10/site-packages/oci/loggingsearch/__init__.py +usr/lib/python3.10/site-packages/oci/loggingsearch/log_search_client.py +usr/lib/python3.10/site-packages/oci/loggingsearch/log_search_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/loggingsearch/models +usr/lib/python3.10/site-packages/oci/loggingsearch/models/__init__.py +usr/lib/python3.10/site-packages/oci/loggingsearch/models/field_info.py +usr/lib/python3.10/site-packages/oci/loggingsearch/models/search_logs_details.py +usr/lib/python3.10/site-packages/oci/loggingsearch/models/search_response.py +usr/lib/python3.10/site-packages/oci/loggingsearch/models/search_result.py +usr/lib/python3.10/site-packages/oci/loggingsearch/models/search_result_summary.py +usr/lib/python3.10/site-packages/oci/management_agent +usr/lib/python3.10/site-packages/oci/management_agent/__init__.py +usr/lib/python3.10/site-packages/oci/management_agent/management_agent_client.py +usr/lib/python3.10/site-packages/oci/management_agent/management_agent_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/management_agent/models +usr/lib/python3.10/site-packages/oci/management_agent/models/__init__.py +usr/lib/python3.10/site-packages/oci/management_agent/models/auto_upgradable_config.py +usr/lib/python3.10/site-packages/oci/management_agent/models/availability_history_summary.py +usr/lib/python3.10/site-packages/oci/management_agent/models/create_management_agent_install_key_details.py +usr/lib/python3.10/site-packages/oci/management_agent/models/deploy_plugins_details.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_aggregation.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_aggregation_dimensions.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_error.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_image.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_image_summary.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_install_key.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_install_key_summary.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_plugin.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_plugin_aggregation.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_plugin_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_plugin_aggregation_dimensions.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_plugin_details.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_plugin_summary.py +usr/lib/python3.10/site-packages/oci/management_agent/models/management_agent_summary.py +usr/lib/python3.10/site-packages/oci/management_agent/models/set_auto_upgradable_config_details.py +usr/lib/python3.10/site-packages/oci/management_agent/models/update_management_agent_details.py +usr/lib/python3.10/site-packages/oci/management_agent/models/update_management_agent_install_key_details.py +usr/lib/python3.10/site-packages/oci/management_agent/models/work_request.py +usr/lib/python3.10/site-packages/oci/management_agent/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/management_agent/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/management_agent/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/management_agent/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/management_agent/models/work_submission_key.py +usr/lib/python3.10/site-packages/oci/management_dashboard +usr/lib/python3.10/site-packages/oci/management_dashboard/__init__.py +usr/lib/python3.10/site-packages/oci/management_dashboard/dashx_apis_client.py +usr/lib/python3.10/site-packages/oci/management_dashboard/dashx_apis_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models +usr/lib/python3.10/site-packages/oci/management_dashboard/models/__init__.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/change_management_dashboards_compartment_details.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/change_management_saved_searches_compartment_details.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/create_management_dashboard_details.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/create_management_saved_search_details.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_dashboard.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_dashboard_collection.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_dashboard_export_details.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_dashboard_for_import_export_details.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_dashboard_import_details.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_dashboard_summary.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_dashboard_tile_details.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_saved_search.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_saved_search_collection.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_saved_search_for_import_details.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/management_saved_search_summary.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/update_management_dashboard_details.py +usr/lib/python3.10/site-packages/oci/management_dashboard/models/update_management_saved_search_details.py +usr/lib/python3.10/site-packages/oci/marketplace +usr/lib/python3.10/site-packages/oci/marketplace/__init__.py +usr/lib/python3.10/site-packages/oci/marketplace/account_client.py +usr/lib/python3.10/site-packages/oci/marketplace/account_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/marketplace/marketplace_client.py +usr/lib/python3.10/site-packages/oci/marketplace/marketplace_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/marketplace/models +usr/lib/python3.10/site-packages/oci/marketplace/models/__init__.py +usr/lib/python3.10/site-packages/oci/marketplace/models/accepted_agreement.py +usr/lib/python3.10/site-packages/oci/marketplace/models/accepted_agreement_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/agreement.py +usr/lib/python3.10/site-packages/oci/marketplace/models/agreement_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/category_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/change_publication_compartment_details.py +usr/lib/python3.10/site-packages/oci/marketplace/models/create_accepted_agreement_details.py +usr/lib/python3.10/site-packages/oci/marketplace/models/create_image_publication_package.py +usr/lib/python3.10/site-packages/oci/marketplace/models/create_publication_details.py +usr/lib/python3.10/site-packages/oci/marketplace/models/create_publication_package.py +usr/lib/python3.10/site-packages/oci/marketplace/models/documentation_link.py +usr/lib/python3.10/site-packages/oci/marketplace/models/error_entity.py +usr/lib/python3.10/site-packages/oci/marketplace/models/eula.py +usr/lib/python3.10/site-packages/oci/marketplace/models/free_text_search_details.py +usr/lib/python3.10/site-packages/oci/marketplace/models/image_listing_package.py +usr/lib/python3.10/site-packages/oci/marketplace/models/image_publication_package.py +usr/lib/python3.10/site-packages/oci/marketplace/models/item.py +usr/lib/python3.10/site-packages/oci/marketplace/models/launch_eligibility.py +usr/lib/python3.10/site-packages/oci/marketplace/models/link.py +usr/lib/python3.10/site-packages/oci/marketplace/models/listing.py +usr/lib/python3.10/site-packages/oci/marketplace/models/listing_package.py +usr/lib/python3.10/site-packages/oci/marketplace/models/listing_package_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/listing_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/named_link.py +usr/lib/python3.10/site-packages/oci/marketplace/models/operating_system.py +usr/lib/python3.10/site-packages/oci/marketplace/models/orchestration_listing_package.py +usr/lib/python3.10/site-packages/oci/marketplace/models/orchestration_publication_package.py +usr/lib/python3.10/site-packages/oci/marketplace/models/orchestration_variable.py +usr/lib/python3.10/site-packages/oci/marketplace/models/pricing_model.py +usr/lib/python3.10/site-packages/oci/marketplace/models/publication.py +usr/lib/python3.10/site-packages/oci/marketplace/models/publication_package.py +usr/lib/python3.10/site-packages/oci/marketplace/models/publication_package_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/publication_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/publisher.py +usr/lib/python3.10/site-packages/oci/marketplace/models/publisher_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/region.py +usr/lib/python3.10/site-packages/oci/marketplace/models/report_collection.py +usr/lib/python3.10/site-packages/oci/marketplace/models/report_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/report_type_collection.py +usr/lib/python3.10/site-packages/oci/marketplace/models/report_type_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/screenshot.py +usr/lib/python3.10/site-packages/oci/marketplace/models/search_listings_details.py +usr/lib/python3.10/site-packages/oci/marketplace/models/structured_search_details.py +usr/lib/python3.10/site-packages/oci/marketplace/models/support_contact.py +usr/lib/python3.10/site-packages/oci/marketplace/models/tax_summary.py +usr/lib/python3.10/site-packages/oci/marketplace/models/text_based_eula.py +usr/lib/python3.10/site-packages/oci/marketplace/models/third_party_paid_listing_eligibility.py +usr/lib/python3.10/site-packages/oci/marketplace/models/update_accepted_agreement_details.py +usr/lib/python3.10/site-packages/oci/marketplace/models/update_publication_details.py +usr/lib/python3.10/site-packages/oci/marketplace/models/upload_data.py +usr/lib/python3.10/site-packages/oci/monitoring +usr/lib/python3.10/site-packages/oci/monitoring/__init__.py +usr/lib/python3.10/site-packages/oci/monitoring/models +usr/lib/python3.10/site-packages/oci/monitoring/models/__init__.py +usr/lib/python3.10/site-packages/oci/monitoring/models/aggregated_datapoint.py +usr/lib/python3.10/site-packages/oci/monitoring/models/alarm.py +usr/lib/python3.10/site-packages/oci/monitoring/models/alarm_history_collection.py +usr/lib/python3.10/site-packages/oci/monitoring/models/alarm_history_entry.py +usr/lib/python3.10/site-packages/oci/monitoring/models/alarm_status_summary.py +usr/lib/python3.10/site-packages/oci/monitoring/models/alarm_summary.py +usr/lib/python3.10/site-packages/oci/monitoring/models/change_alarm_compartment_details.py +usr/lib/python3.10/site-packages/oci/monitoring/models/create_alarm_details.py +usr/lib/python3.10/site-packages/oci/monitoring/models/datapoint.py +usr/lib/python3.10/site-packages/oci/monitoring/models/failed_metric_record.py +usr/lib/python3.10/site-packages/oci/monitoring/models/list_metrics_details.py +usr/lib/python3.10/site-packages/oci/monitoring/models/metric.py +usr/lib/python3.10/site-packages/oci/monitoring/models/metric_data.py +usr/lib/python3.10/site-packages/oci/monitoring/models/metric_data_details.py +usr/lib/python3.10/site-packages/oci/monitoring/models/post_metric_data_details.py +usr/lib/python3.10/site-packages/oci/monitoring/models/post_metric_data_response_details.py +usr/lib/python3.10/site-packages/oci/monitoring/models/summarize_metrics_data_details.py +usr/lib/python3.10/site-packages/oci/monitoring/models/suppression.py +usr/lib/python3.10/site-packages/oci/monitoring/models/update_alarm_details.py +usr/lib/python3.10/site-packages/oci/monitoring/monitoring_client.py +usr/lib/python3.10/site-packages/oci/monitoring/monitoring_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/mysql +usr/lib/python3.10/site-packages/oci/mysql/__init__.py +usr/lib/python3.10/site-packages/oci/mysql/channels_client.py +usr/lib/python3.10/site-packages/oci/mysql/channels_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/mysql/db_backups_client.py +usr/lib/python3.10/site-packages/oci/mysql/db_backups_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/mysql/db_system_client.py +usr/lib/python3.10/site-packages/oci/mysql/db_system_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/mysql/models +usr/lib/python3.10/site-packages/oci/mysql/models/__init__.py +usr/lib/python3.10/site-packages/oci/mysql/models/add_analytics_cluster_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/add_heat_wave_cluster_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/analytics_cluster.py +usr/lib/python3.10/site-packages/oci/mysql/models/analytics_cluster_memory_estimate.py +usr/lib/python3.10/site-packages/oci/mysql/models/analytics_cluster_node.py +usr/lib/python3.10/site-packages/oci/mysql/models/analytics_cluster_schema_memory_estimate.py +usr/lib/python3.10/site-packages/oci/mysql/models/analytics_cluster_summary.py +usr/lib/python3.10/site-packages/oci/mysql/models/analytics_cluster_table_memory_estimate.py +usr/lib/python3.10/site-packages/oci/mysql/models/backup.py +usr/lib/python3.10/site-packages/oci/mysql/models/backup_policy.py +usr/lib/python3.10/site-packages/oci/mysql/models/backup_summary.py +usr/lib/python3.10/site-packages/oci/mysql/models/ca_certificate.py +usr/lib/python3.10/site-packages/oci/mysql/models/change_backup_compartment_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/channel.py +usr/lib/python3.10/site-packages/oci/mysql/models/channel_source.py +usr/lib/python3.10/site-packages/oci/mysql/models/channel_source_mysql.py +usr/lib/python3.10/site-packages/oci/mysql/models/channel_summary.py +usr/lib/python3.10/site-packages/oci/mysql/models/channel_target.py +usr/lib/python3.10/site-packages/oci/mysql/models/channel_target_db_system.py +usr/lib/python3.10/site-packages/oci/mysql/models/configuration.py +usr/lib/python3.10/site-packages/oci/mysql/models/configuration_summary.py +usr/lib/python3.10/site-packages/oci/mysql/models/configuration_variables.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_backup_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_backup_policy_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_channel_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_channel_source_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_channel_source_from_mysql_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_channel_target_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_channel_target_from_db_system_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_configuration_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_db_system_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_db_system_source_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_db_system_source_from_backup_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_db_system_source_from_none_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_db_system_source_import_from_url_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/create_maintenance_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/db_system.py +usr/lib/python3.10/site-packages/oci/mysql/models/db_system_endpoint.py +usr/lib/python3.10/site-packages/oci/mysql/models/db_system_placement.py +usr/lib/python3.10/site-packages/oci/mysql/models/db_system_snapshot.py +usr/lib/python3.10/site-packages/oci/mysql/models/db_system_source.py +usr/lib/python3.10/site-packages/oci/mysql/models/db_system_source_from_backup.py +usr/lib/python3.10/site-packages/oci/mysql/models/db_system_source_from_none.py +usr/lib/python3.10/site-packages/oci/mysql/models/db_system_source_import_from_url.py +usr/lib/python3.10/site-packages/oci/mysql/models/db_system_summary.py +usr/lib/python3.10/site-packages/oci/mysql/models/heat_wave_cluster.py +usr/lib/python3.10/site-packages/oci/mysql/models/heat_wave_cluster_memory_estimate.py +usr/lib/python3.10/site-packages/oci/mysql/models/heat_wave_cluster_schema_memory_estimate.py +usr/lib/python3.10/site-packages/oci/mysql/models/heat_wave_cluster_summary.py +usr/lib/python3.10/site-packages/oci/mysql/models/heat_wave_cluster_table_memory_estimate.py +usr/lib/python3.10/site-packages/oci/mysql/models/heat_wave_node.py +usr/lib/python3.10/site-packages/oci/mysql/models/maintenance_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/pem_ca_certificate.py +usr/lib/python3.10/site-packages/oci/mysql/models/restart_db_system_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/shape_summary.py +usr/lib/python3.10/site-packages/oci/mysql/models/stop_db_system_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_analytics_cluster_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_backup_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_backup_policy_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_channel_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_channel_source_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_channel_source_from_mysql_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_channel_target_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_channel_target_from_db_system_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_configuration_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_db_system_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_heat_wave_cluster_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/update_maintenance_details.py +usr/lib/python3.10/site-packages/oci/mysql/models/version.py +usr/lib/python3.10/site-packages/oci/mysql/models/version_summary.py +usr/lib/python3.10/site-packages/oci/mysql/models/work_request.py +usr/lib/python3.10/site-packages/oci/mysql/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/mysql/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/mysql/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/mysql/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/mysql/mysqlaas_client.py +usr/lib/python3.10/site-packages/oci/mysql/mysqlaas_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/mysql/work_requests_client.py +usr/lib/python3.10/site-packages/oci/mysql/work_requests_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/network_load_balancer +usr/lib/python3.10/site-packages/oci/network_load_balancer/__init__.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/__init__.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/backend.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/backend_collection.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/backend_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/backend_health.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/backend_set.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/backend_set_collection.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/backend_set_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/backend_set_health.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/backend_set_summary.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/backend_summary.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/change_network_load_balancer_compartment_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/create_backend_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/create_backend_set_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/create_listener_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/create_network_load_balancer_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/health_check_result.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/health_checker.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/health_checker_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/ip_address.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/listener.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/listener_collection.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/listener_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/listener_summary.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/network_load_balancer.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/network_load_balancer_collection.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/network_load_balancer_health.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/network_load_balancer_health_collection.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/network_load_balancer_health_summary.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/network_load_balancer_summary.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/network_load_balancers_policy_collection.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/network_load_balancers_protocol_collection.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/reserved_ip.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/update_backend_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/update_backend_set_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/update_health_checker_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/update_listener_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/update_network_load_balancer_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/update_network_security_groups_details.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/work_request.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/network_load_balancer_client.py +usr/lib/python3.10/site-packages/oci/network_load_balancer/network_load_balancer_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/nosql +usr/lib/python3.10/site-packages/oci/nosql/__init__.py +usr/lib/python3.10/site-packages/oci/nosql/models +usr/lib/python3.10/site-packages/oci/nosql/models/__init__.py +usr/lib/python3.10/site-packages/oci/nosql/models/change_table_compartment_details.py +usr/lib/python3.10/site-packages/oci/nosql/models/column.py +usr/lib/python3.10/site-packages/oci/nosql/models/create_index_details.py +usr/lib/python3.10/site-packages/oci/nosql/models/create_table_details.py +usr/lib/python3.10/site-packages/oci/nosql/models/delete_row_result.py +usr/lib/python3.10/site-packages/oci/nosql/models/index.py +usr/lib/python3.10/site-packages/oci/nosql/models/index_collection.py +usr/lib/python3.10/site-packages/oci/nosql/models/index_key.py +usr/lib/python3.10/site-packages/oci/nosql/models/index_summary.py +usr/lib/python3.10/site-packages/oci/nosql/models/prepared_statement.py +usr/lib/python3.10/site-packages/oci/nosql/models/query_details.py +usr/lib/python3.10/site-packages/oci/nosql/models/query_result_collection.py +usr/lib/python3.10/site-packages/oci/nosql/models/request_usage.py +usr/lib/python3.10/site-packages/oci/nosql/models/row.py +usr/lib/python3.10/site-packages/oci/nosql/models/schema.py +usr/lib/python3.10/site-packages/oci/nosql/models/statement_summary.py +usr/lib/python3.10/site-packages/oci/nosql/models/table.py +usr/lib/python3.10/site-packages/oci/nosql/models/table_collection.py +usr/lib/python3.10/site-packages/oci/nosql/models/table_limits.py +usr/lib/python3.10/site-packages/oci/nosql/models/table_summary.py +usr/lib/python3.10/site-packages/oci/nosql/models/table_usage_collection.py +usr/lib/python3.10/site-packages/oci/nosql/models/table_usage_summary.py +usr/lib/python3.10/site-packages/oci/nosql/models/update_row_details.py +usr/lib/python3.10/site-packages/oci/nosql/models/update_row_result.py +usr/lib/python3.10/site-packages/oci/nosql/models/update_table_details.py +usr/lib/python3.10/site-packages/oci/nosql/models/work_request.py +usr/lib/python3.10/site-packages/oci/nosql/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/nosql/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/nosql/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/nosql/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/nosql/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/nosql/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/nosql/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/nosql/nosql_client.py +usr/lib/python3.10/site-packages/oci/nosql/nosql_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/object_storage +usr/lib/python3.10/site-packages/oci/object_storage/__init__.py +usr/lib/python3.10/site-packages/oci/object_storage/models +usr/lib/python3.10/site-packages/oci/object_storage/models/__init__.py +usr/lib/python3.10/site-packages/oci/object_storage/models/bucket.py +usr/lib/python3.10/site-packages/oci/object_storage/models/bucket_summary.py +usr/lib/python3.10/site-packages/oci/object_storage/models/commit_multipart_upload_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/commit_multipart_upload_part_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/copy_object_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/create_bucket_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/create_multipart_upload_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/create_preauthenticated_request_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/create_replication_policy_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/create_retention_rule_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/duration.py +usr/lib/python3.10/site-packages/oci/object_storage/models/list_objects.py +usr/lib/python3.10/site-packages/oci/object_storage/models/multipart_upload.py +usr/lib/python3.10/site-packages/oci/object_storage/models/multipart_upload_part_summary.py +usr/lib/python3.10/site-packages/oci/object_storage/models/namespace_metadata.py +usr/lib/python3.10/site-packages/oci/object_storage/models/object_lifecycle_policy.py +usr/lib/python3.10/site-packages/oci/object_storage/models/object_lifecycle_rule.py +usr/lib/python3.10/site-packages/oci/object_storage/models/object_name_filter.py +usr/lib/python3.10/site-packages/oci/object_storage/models/object_summary.py +usr/lib/python3.10/site-packages/oci/object_storage/models/object_version_collection.py +usr/lib/python3.10/site-packages/oci/object_storage/models/object_version_summary.py +usr/lib/python3.10/site-packages/oci/object_storage/models/pattern_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/preauthenticated_request.py +usr/lib/python3.10/site-packages/oci/object_storage/models/preauthenticated_request_summary.py +usr/lib/python3.10/site-packages/oci/object_storage/models/put_object_lifecycle_policy_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/reencrypt_object_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/rename_object_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/replication_policy.py +usr/lib/python3.10/site-packages/oci/object_storage/models/replication_policy_summary.py +usr/lib/python3.10/site-packages/oci/object_storage/models/replication_source.py +usr/lib/python3.10/site-packages/oci/object_storage/models/restore_objects_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/retention_rule.py +usr/lib/python3.10/site-packages/oci/object_storage/models/retention_rule_collection.py +usr/lib/python3.10/site-packages/oci/object_storage/models/retention_rule_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/retention_rule_summary.py +usr/lib/python3.10/site-packages/oci/object_storage/models/sse_customer_key_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/update_bucket_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/update_namespace_metadata_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/update_object_storage_tier_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/update_retention_rule_details.py +usr/lib/python3.10/site-packages/oci/object_storage/models/work_request.py +usr/lib/python3.10/site-packages/oci/object_storage/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/object_storage/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/object_storage/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/object_storage/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/object_storage/object_storage_client.py +usr/lib/python3.10/site-packages/oci/object_storage/object_storage_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/object_storage/transfer +usr/lib/python3.10/site-packages/oci/object_storage/transfer/__init__.py +usr/lib/python3.10/site-packages/oci/object_storage/transfer/constants.py +usr/lib/python3.10/site-packages/oci/object_storage/transfer/internal +usr/lib/python3.10/site-packages/oci/object_storage/transfer/internal/__init__.py +usr/lib/python3.10/site-packages/oci/object_storage/transfer/internal/buffered_part_reader.py +usr/lib/python3.10/site-packages/oci/object_storage/transfer/internal/file_read_callback_stream.py +usr/lib/python3.10/site-packages/oci/object_storage/transfer/internal/md5.py +usr/lib/python3.10/site-packages/oci/object_storage/transfer/internal/multipart_object_assembler.py +usr/lib/python3.10/site-packages/oci/object_storage/transfer/upload_manager.py +usr/lib/python3.10/site-packages/oci/oce +usr/lib/python3.10/site-packages/oci/oce/__init__.py +usr/lib/python3.10/site-packages/oci/oce/models +usr/lib/python3.10/site-packages/oci/oce/models/__init__.py +usr/lib/python3.10/site-packages/oci/oce/models/change_oce_instance_compartment_details.py +usr/lib/python3.10/site-packages/oci/oce/models/create_oce_instance_details.py +usr/lib/python3.10/site-packages/oci/oce/models/delete_oce_instance_details.py +usr/lib/python3.10/site-packages/oci/oce/models/identity_stripe_details.py +usr/lib/python3.10/site-packages/oci/oce/models/oce_instance.py +usr/lib/python3.10/site-packages/oci/oce/models/oce_instance_summary.py +usr/lib/python3.10/site-packages/oci/oce/models/update_oce_instance_details.py +usr/lib/python3.10/site-packages/oci/oce/models/work_request.py +usr/lib/python3.10/site-packages/oci/oce/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/oce/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/oce/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/oce/models/workflow_monitor.py +usr/lib/python3.10/site-packages/oci/oce/models/workflow_step.py +usr/lib/python3.10/site-packages/oci/oce/oce_instance_client.py +usr/lib/python3.10/site-packages/oci/oce/oce_instance_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/ocvp +usr/lib/python3.10/site-packages/oci/ocvp/__init__.py +usr/lib/python3.10/site-packages/oci/ocvp/esxi_host_client.py +usr/lib/python3.10/site-packages/oci/ocvp/esxi_host_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/ocvp/models +usr/lib/python3.10/site-packages/oci/ocvp/models/__init__.py +usr/lib/python3.10/site-packages/oci/ocvp/models/change_sddc_compartment_details.py +usr/lib/python3.10/site-packages/oci/ocvp/models/create_esxi_host_details.py +usr/lib/python3.10/site-packages/oci/ocvp/models/create_sddc_details.py +usr/lib/python3.10/site-packages/oci/ocvp/models/downgrade_hcx_details.py +usr/lib/python3.10/site-packages/oci/ocvp/models/esxi_host.py +usr/lib/python3.10/site-packages/oci/ocvp/models/esxi_host_collection.py +usr/lib/python3.10/site-packages/oci/ocvp/models/esxi_host_summary.py +usr/lib/python3.10/site-packages/oci/ocvp/models/hcx_license_summary.py +usr/lib/python3.10/site-packages/oci/ocvp/models/sddc.py +usr/lib/python3.10/site-packages/oci/ocvp/models/sddc_collection.py +usr/lib/python3.10/site-packages/oci/ocvp/models/sddc_summary.py +usr/lib/python3.10/site-packages/oci/ocvp/models/supported_sku_summary.py +usr/lib/python3.10/site-packages/oci/ocvp/models/supported_sku_summary_collection.py +usr/lib/python3.10/site-packages/oci/ocvp/models/supported_vmware_software_version_collection.py +usr/lib/python3.10/site-packages/oci/ocvp/models/supported_vmware_software_version_summary.py +usr/lib/python3.10/site-packages/oci/ocvp/models/update_esxi_host_details.py +usr/lib/python3.10/site-packages/oci/ocvp/models/update_sddc_details.py +usr/lib/python3.10/site-packages/oci/ocvp/models/work_request.py +usr/lib/python3.10/site-packages/oci/ocvp/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/ocvp/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/ocvp/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/ocvp/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/ocvp/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/ocvp/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/ocvp/sddc_client.py +usr/lib/python3.10/site-packages/oci/ocvp/sddc_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/ocvp/work_request_client.py +usr/lib/python3.10/site-packages/oci/ocvp/work_request_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/oda +usr/lib/python3.10/site-packages/oci/oda/__init__.py +usr/lib/python3.10/site-packages/oci/oda/models +usr/lib/python3.10/site-packages/oci/oda/models/__init__.py +usr/lib/python3.10/site-packages/oci/oda/models/change_oda_instance_compartment_details.py +usr/lib/python3.10/site-packages/oci/oda/models/create_oda_instance_details.py +usr/lib/python3.10/site-packages/oci/oda/models/error_body.py +usr/lib/python3.10/site-packages/oci/oda/models/oda_instance.py +usr/lib/python3.10/site-packages/oci/oda/models/oda_instance_summary.py +usr/lib/python3.10/site-packages/oci/oda/models/update_oda_instance_details.py +usr/lib/python3.10/site-packages/oci/oda/models/work_request.py +usr/lib/python3.10/site-packages/oci/oda/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/oda/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/oda/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/oda/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/oda/oda_client.py +usr/lib/python3.10/site-packages/oci/oda/oda_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/ons +usr/lib/python3.10/site-packages/oci/ons/__init__.py +usr/lib/python3.10/site-packages/oci/ons/models +usr/lib/python3.10/site-packages/oci/ons/models/__init__.py +usr/lib/python3.10/site-packages/oci/ons/models/backoff_retry_policy.py +usr/lib/python3.10/site-packages/oci/ons/models/change_compartment_details.py +usr/lib/python3.10/site-packages/oci/ons/models/confirmation_result.py +usr/lib/python3.10/site-packages/oci/ons/models/create_subscription_details.py +usr/lib/python3.10/site-packages/oci/ons/models/create_topic_details.py +usr/lib/python3.10/site-packages/oci/ons/models/delivery_policy.py +usr/lib/python3.10/site-packages/oci/ons/models/message_details.py +usr/lib/python3.10/site-packages/oci/ons/models/notification_topic.py +usr/lib/python3.10/site-packages/oci/ons/models/notification_topic_summary.py +usr/lib/python3.10/site-packages/oci/ons/models/publish_result.py +usr/lib/python3.10/site-packages/oci/ons/models/subscription.py +usr/lib/python3.10/site-packages/oci/ons/models/subscription_summary.py +usr/lib/python3.10/site-packages/oci/ons/models/topic_attributes_details.py +usr/lib/python3.10/site-packages/oci/ons/models/update_subscription_details.py +usr/lib/python3.10/site-packages/oci/ons/notification_control_plane_client.py +usr/lib/python3.10/site-packages/oci/ons/notification_control_plane_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/ons/notification_data_plane_client.py +usr/lib/python3.10/site-packages/oci/ons/notification_data_plane_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/operator_access_control +usr/lib/python3.10/site-packages/oci/operator_access_control/__init__.py +usr/lib/python3.10/site-packages/oci/operator_access_control/access_requests_client.py +usr/lib/python3.10/site-packages/oci/operator_access_control/access_requests_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models +usr/lib/python3.10/site-packages/oci/operator_access_control/models/__init__.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/access_request.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/access_request_collection.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/access_request_history_collection.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/access_request_history_summary.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/access_request_summary.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/approve_access_request_details.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/change_operator_control_assignment_compartment_details.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/change_operator_control_compartment_details.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/create_operator_control_assignment_details.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/create_operator_control_details.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/operator_action.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/operator_action_collection.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/operator_action_properties.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/operator_action_summary.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/operator_control.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/operator_control_assignment.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/operator_control_assignment_collection.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/operator_control_assignment_summary.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/operator_control_collection.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/operator_control_summary.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/reject_access_request_details.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/review_access_request_details.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/revoke_access_request_details.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/update_operator_control_assignment_details.py +usr/lib/python3.10/site-packages/oci/operator_access_control/models/update_operator_control_details.py +usr/lib/python3.10/site-packages/oci/operator_access_control/operator_actions_client.py +usr/lib/python3.10/site-packages/oci/operator_access_control/operator_actions_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/operator_access_control/operator_control_assignment_client.py +usr/lib/python3.10/site-packages/oci/operator_access_control/operator_control_assignment_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/operator_access_control/operator_control_client.py +usr/lib/python3.10/site-packages/oci/operator_access_control/operator_control_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/opsi +usr/lib/python3.10/site-packages/oci/opsi/__init__.py +usr/lib/python3.10/site-packages/oci/opsi/models +usr/lib/python3.10/site-packages/oci/opsi/models/__init__.py +usr/lib/python3.10/site-packages/oci/opsi/models/add_em_managed_external_exadata_insight_members_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/add_exadata_insight_members_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/autonomous_database_configuration_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/autonomous_database_insight.py +usr/lib/python3.10/site-packages/oci/opsi/models/autonomous_database_insight_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/awr_hub.py +usr/lib/python3.10/site-packages/oci/opsi/models/awr_hub_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/awr_hub_summary_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/awr_hubs.py +usr/lib/python3.10/site-packages/oci/opsi/models/awr_report.py +usr/lib/python3.10/site-packages/oci/opsi/models/awr_snapshot_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/awr_snapshot_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/awr_source_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/change_database_insight_compartment_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/change_enterprise_manager_bridge_compartment_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/change_exadata_insight_compartment_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/change_host_insight_compartment_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/connection_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_awr_hub_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_database_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_em_managed_external_database_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_em_managed_external_exadata_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_em_managed_external_exadata_member_entity_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_em_managed_external_host_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_enterprise_manager_bridge_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_exadata_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_host_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_macs_managed_external_host_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_operations_insights_warehouse_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/create_operations_insights_warehouse_user_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/credential_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/credentials_by_source.py +usr/lib/python3.10/site-packages/oci/opsi/models/database_configuration_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/database_configuration_metric_group.py +usr/lib/python3.10/site-packages/oci/opsi/models/database_configuration_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/database_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/database_insight.py +usr/lib/python3.10/site-packages/oci/opsi/models/database_insight_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/database_insights.py +usr/lib/python3.10/site-packages/oci/opsi/models/database_insights_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/db_external_instance.py +usr/lib/python3.10/site-packages/oci/opsi/models/db_external_properties.py +usr/lib/python3.10/site-packages/oci/opsi/models/dbos_config_instance.py +usr/lib/python3.10/site-packages/oci/opsi/models/disk_group_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/download_operations_insights_warehouse_wallet_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/em_managed_external_database_configuration_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/em_managed_external_database_insight.py +usr/lib/python3.10/site-packages/oci/opsi/models/em_managed_external_database_insight_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/em_managed_external_exadata_insight.py +usr/lib/python3.10/site-packages/oci/opsi/models/em_managed_external_exadata_insight_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/em_managed_external_host_configuration_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/em_managed_external_host_insight.py +usr/lib/python3.10/site-packages/oci/opsi/models/em_managed_external_host_insight_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/enable_database_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/enable_em_managed_external_database_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/enable_em_managed_external_exadata_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/enable_em_managed_external_host_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/enable_exadata_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/enable_host_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/enable_macs_managed_external_host_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/enterprise_manager_bridge.py +usr/lib/python3.10/site-packages/oci/opsi/models/enterprise_manager_bridge_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/enterprise_manager_bridge_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/enterprise_manager_bridges.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_configuration_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_configuration_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_database_machine_configuration_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_database_statistics_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_diskgroup_statistics_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_host_statistics_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_insight.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_insight_resource_capacity_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_insight_resource_capacity_trend_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_insight_resource_forecast_trend_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_insight_resource_insight_utilization_item.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_insight_resource_statistics.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_insight_resource_statistics_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_insight_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_insight_summary_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_insights.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_member_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_member_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/exadata_storage_server_statistics_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/historical_data_item.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_configuration_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_configuration_metric_group.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_configuration_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_cpu_hardware_configuration.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_cpu_statistics.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_cpu_usage.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_entities.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_hardware_configuration.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_importable_agent_entity_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_insight.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_insight_resource_statistics_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_insight_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_insight_summary_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_insights.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_instance_map.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_memory_configuration.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_memory_statistics.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_memory_usage.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_network_activity_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_network_configuration.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_performance_metric_group.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_product.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_resource_allocation.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_resource_capacity_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/host_resource_statistics.py +usr/lib/python3.10/site-packages/oci/opsi/models/hosted_entity_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/hosted_entity_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/importable_agent_entity_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/importable_agent_entity_summary_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/importable_enterprise_manager_entity.py +usr/lib/python3.10/site-packages/oci/opsi/models/importable_enterprise_manager_entity_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_database_configuration_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_database_configuration_response_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_host_configuration_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_host_configuration_response_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_host_metrics_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_host_metrics_response_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_sql_bucket_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_sql_bucket_response_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_sql_plan_lines_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_sql_plan_lines_response_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_sql_stats_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_sql_stats_response_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_sql_text_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/ingest_sql_text_response_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/instance_metrics.py +usr/lib/python3.10/site-packages/oci/opsi/models/macs_managed_external_database_configuration_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/macs_managed_external_database_insight.py +usr/lib/python3.10/site-packages/oci/opsi/models/macs_managed_external_database_insight_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/macs_managed_external_host_configuration_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/macs_managed_external_host_insight.py +usr/lib/python3.10/site-packages/oci/opsi/models/macs_managed_external_host_insight_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/operations_insights_warehouse.py +usr/lib/python3.10/site-packages/oci/opsi/models/operations_insights_warehouse_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/operations_insights_warehouse_summary_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/operations_insights_warehouse_user.py +usr/lib/python3.10/site-packages/oci/opsi/models/operations_insights_warehouse_user_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/operations_insights_warehouse_user_summary_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/operations_insights_warehouse_users.py +usr/lib/python3.10/site-packages/oci/opsi/models/operations_insights_warehouses.py +usr/lib/python3.10/site-packages/oci/opsi/models/projected_data_item.py +usr/lib/python3.10/site-packages/oci/opsi/models/resource_capacity_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/resource_insight_current_utilization.py +usr/lib/python3.10/site-packages/oci/opsi/models/resource_insight_projected_utilization.py +usr/lib/python3.10/site-packages/oci/opsi/models/resource_insight_projected_utilization_item.py +usr/lib/python3.10/site-packages/oci/opsi/models/resource_statistics.py +usr/lib/python3.10/site-packages/oci/opsi/models/resource_statistics_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/resource_usage_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/resource_usage_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_bucket.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_insight_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_insight_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_insight_thresholds.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_inventory.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_plan_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_plan_insight_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_plan_insight_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_plan_insights.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_plan_line.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_plan_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_response_time_distribution_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_response_time_distribution_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_search_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_search_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_statistic_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_statistic_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_statistics.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_statistics_time_series.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_statistics_time_series_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_statistics_time_series_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_statistics_time_series_by_plan_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_statistics_time_series_by_plan_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_stats.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_text.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_text_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/sql_text_summary.py +usr/lib/python3.10/site-packages/oci/opsi/models/storage_server_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_awr_sources_summaries_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_database_insight_resource_capacity_trend_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_database_insight_resource_forecast_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_database_insight_resource_statistics_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_database_insight_resource_usage_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_database_insight_resource_usage_trend_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_database_insight_resource_utilization_insight_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_database_insight_tablespace_usage_trend_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_exadata_insight_resource_capacity_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_exadata_insight_resource_capacity_trend_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_exadata_insight_resource_forecast_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_exadata_insight_resource_forecast_trend_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_exadata_insight_resource_statistics_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_exadata_insight_resource_usage_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_exadata_insight_resource_usage_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_exadata_insight_resource_utilization_insight_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_host_insight_resource_capacity_trend_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_host_insight_resource_forecast_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_host_insight_resource_statistics_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_host_insight_resource_usage_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_host_insight_resource_usage_trend_aggregation_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_host_insight_resource_utilization_insight_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summarize_operations_insights_warehouse_resource_usage_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/summary_statistics.py +usr/lib/python3.10/site-packages/oci/opsi/models/tablespace_usage_trend.py +usr/lib/python3.10/site-packages/oci/opsi/models/tablespace_usage_trend_aggregation.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_autonomous_database_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_awr_hub_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_database_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_em_managed_external_database_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_em_managed_external_exadata_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_em_managed_external_host_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_enterprise_manager_bridge_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_exadata_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_host_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_macs_managed_external_database_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_macs_managed_external_host_insight_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_operations_insights_warehouse_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/update_operations_insights_warehouse_user_details.py +usr/lib/python3.10/site-packages/oci/opsi/models/work_request.py +usr/lib/python3.10/site-packages/oci/opsi/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/opsi/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/opsi/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/opsi/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/opsi/models/work_requests.py +usr/lib/python3.10/site-packages/oci/opsi/operations_insights_client.py +usr/lib/python3.10/site-packages/oci/opsi/operations_insights_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/optimizer +usr/lib/python3.10/site-packages/oci/optimizer/__init__.py +usr/lib/python3.10/site-packages/oci/optimizer/models +usr/lib/python3.10/site-packages/oci/optimizer/models/__init__.py +usr/lib/python3.10/site-packages/oci/optimizer/models/action.py +usr/lib/python3.10/site-packages/oci/optimizer/models/bulk_apply_recommendations_details.py +usr/lib/python3.10/site-packages/oci/optimizer/models/bulk_apply_resource_action.py +usr/lib/python3.10/site-packages/oci/optimizer/models/category.py +usr/lib/python3.10/site-packages/oci/optimizer/models/category_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/category_summary.py +usr/lib/python3.10/site-packages/oci/optimizer/models/create_profile_details.py +usr/lib/python3.10/site-packages/oci/optimizer/models/enrollment_status.py +usr/lib/python3.10/site-packages/oci/optimizer/models/enrollment_status_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/enrollment_status_summary.py +usr/lib/python3.10/site-packages/oci/optimizer/models/evaluated_metric.py +usr/lib/python3.10/site-packages/oci/optimizer/models/history_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/history_summary.py +usr/lib/python3.10/site-packages/oci/optimizer/models/level_configuration.py +usr/lib/python3.10/site-packages/oci/optimizer/models/levels_configuration.py +usr/lib/python3.10/site-packages/oci/optimizer/models/profile.py +usr/lib/python3.10/site-packages/oci/optimizer/models/profile_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/profile_level_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/profile_level_summary.py +usr/lib/python3.10/site-packages/oci/optimizer/models/profile_summary.py +usr/lib/python3.10/site-packages/oci/optimizer/models/query_details.py +usr/lib/python3.10/site-packages/oci/optimizer/models/queryable_field_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/queryable_field_summary.py +usr/lib/python3.10/site-packages/oci/optimizer/models/recommendation.py +usr/lib/python3.10/site-packages/oci/optimizer/models/recommendation_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/recommendation_count.py +usr/lib/python3.10/site-packages/oci/optimizer/models/recommendation_strategy_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/recommendation_strategy_summary.py +usr/lib/python3.10/site-packages/oci/optimizer/models/recommendation_summary.py +usr/lib/python3.10/site-packages/oci/optimizer/models/resource_action.py +usr/lib/python3.10/site-packages/oci/optimizer/models/resource_action_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/resource_action_summary.py +usr/lib/python3.10/site-packages/oci/optimizer/models/resource_count.py +usr/lib/python3.10/site-packages/oci/optimizer/models/strategy.py +usr/lib/python3.10/site-packages/oci/optimizer/models/strategy_parameter.py +usr/lib/python3.10/site-packages/oci/optimizer/models/supported_level.py +usr/lib/python3.10/site-packages/oci/optimizer/models/supported_levels.py +usr/lib/python3.10/site-packages/oci/optimizer/models/target_compartments.py +usr/lib/python3.10/site-packages/oci/optimizer/models/target_tag.py +usr/lib/python3.10/site-packages/oci/optimizer/models/target_tags.py +usr/lib/python3.10/site-packages/oci/optimizer/models/update_enrollment_status_details.py +usr/lib/python3.10/site-packages/oci/optimizer/models/update_profile_details.py +usr/lib/python3.10/site-packages/oci/optimizer/models/update_recommendation_details.py +usr/lib/python3.10/site-packages/oci/optimizer/models/update_resource_action_details.py +usr/lib/python3.10/site-packages/oci/optimizer/models/work_request.py +usr/lib/python3.10/site-packages/oci/optimizer/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/optimizer/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/optimizer/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/optimizer/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/optimizer/optimizer_client.py +usr/lib/python3.10/site-packages/oci/optimizer/optimizer_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/os_management +usr/lib/python3.10/site-packages/oci/os_management/__init__.py +usr/lib/python3.10/site-packages/oci/os_management/event_client.py +usr/lib/python3.10/site-packages/oci/os_management/event_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/os_management/models +usr/lib/python3.10/site-packages/oci/os_management/models/__init__.py +usr/lib/python3.10/site-packages/oci/os_management/models/add_packages_to_software_source_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/api_error.py +usr/lib/python3.10/site-packages/oci/os_management/models/attach_child_software_source_to_managed_instance_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/attach_parent_software_source_to_managed_instance_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/autonomous_settings.py +usr/lib/python3.10/site-packages/oci/os_management/models/available_software_source_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/available_update_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/available_windows_update_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/change_managed_instance_group_compartment_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/change_scheduled_job_compartment_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/change_software_source_compartment_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/crash_event_system_information.py +usr/lib/python3.10/site-packages/oci/os_management/models/create_managed_instance_group_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/create_scheduled_job_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/create_software_source_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/detach_child_software_source_from_managed_instance_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/detach_parent_software_source_from_managed_instance_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/errata_id.py +usr/lib/python3.10/site-packages/oci/os_management/models/erratum.py +usr/lib/python3.10/site-packages/oci/os_management/models/erratum_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/event.py +usr/lib/python3.10/site-packages/oci/os_management/models/event_collection.py +usr/lib/python3.10/site-packages/oci/os_management/models/event_content.py +usr/lib/python3.10/site-packages/oci/os_management/models/event_report.py +usr/lib/python3.10/site-packages/oci/os_management/models/event_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/id.py +usr/lib/python3.10/site-packages/oci/os_management/models/installable_package_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/installed_package_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/installed_windows_update_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/kernel_crash_event.py +usr/lib/python3.10/site-packages/oci/os_management/models/kernel_oops_event.py +usr/lib/python3.10/site-packages/oci/os_management/models/kernel_vm_core_information.py +usr/lib/python3.10/site-packages/oci/os_management/models/managed_instance.py +usr/lib/python3.10/site-packages/oci/os_management/models/managed_instance_group.py +usr/lib/python3.10/site-packages/oci/os_management/models/managed_instance_group_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/managed_instance_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/managed_instance_update_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/package_name.py +usr/lib/python3.10/site-packages/oci/os_management/models/recurrence.py +usr/lib/python3.10/site-packages/oci/os_management/models/related_event_collection.py +usr/lib/python3.10/site-packages/oci/os_management/models/related_event_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/remove_packages_from_software_source_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/scheduled_job.py +usr/lib/python3.10/site-packages/oci/os_management/models/scheduled_job_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/software_package.py +usr/lib/python3.10/site-packages/oci/os_management/models/software_package_dependency.py +usr/lib/python3.10/site-packages/oci/os_management/models/software_package_file.py +usr/lib/python3.10/site-packages/oci/os_management/models/software_package_search_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/software_package_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/software_source.py +usr/lib/python3.10/site-packages/oci/os_management/models/software_source_id.py +usr/lib/python3.10/site-packages/oci/os_management/models/software_source_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/updatable_package_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/update_event_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/update_managed_instance_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/update_managed_instance_group_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/update_scheduled_job_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/update_software_source_details.py +usr/lib/python3.10/site-packages/oci/os_management/models/windows_update.py +usr/lib/python3.10/site-packages/oci/os_management/models/windows_update_summary.py +usr/lib/python3.10/site-packages/oci/os_management/models/work_request.py +usr/lib/python3.10/site-packages/oci/os_management/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/os_management/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/os_management/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/os_management/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/os_management/os_management_client.py +usr/lib/python3.10/site-packages/oci/os_management/os_management_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/osp_gateway +usr/lib/python3.10/site-packages/oci/osp_gateway/__init__.py +usr/lib/python3.10/site-packages/oci/osp_gateway/invoice_service_client.py +usr/lib/python3.10/site-packages/oci/osp_gateway/invoice_service_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models +usr/lib/python3.10/site-packages/oci/osp_gateway/models/__init__.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/address.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/country.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/credit_card_payment_detail.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/currency.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/invoice.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/invoice_collection.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/invoice_line_collection.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/invoice_line_summary.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/invoice_summary.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/other_payment_detail.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/pay_invoice_details.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/pay_invoice_receipt.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/payment_detail.py +usr/lib/python3.10/site-packages/oci/osp_gateway/models/paypal_payment_detail.py +usr/lib/python3.10/site-packages/oci/pagination +usr/lib/python3.10/site-packages/oci/pagination/__init__.py +usr/lib/python3.10/site-packages/oci/pagination/pagination_utils.py +usr/lib/python3.10/site-packages/oci/regions.py +usr/lib/python3.10/site-packages/oci/regions_definitions.py +usr/lib/python3.10/site-packages/oci/request.py +usr/lib/python3.10/site-packages/oci/resource_manager +usr/lib/python3.10/site-packages/oci/resource_manager/__init__.py +usr/lib/python3.10/site-packages/oci/resource_manager/models +usr/lib/python3.10/site-packages/oci/resource_manager/models/__init__.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/apply_job_operation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/apply_job_operation_details_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/apply_job_plan_resolution.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/cancellation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/change_configuration_source_provider_compartment_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/change_stack_compartment_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/change_template_compartment_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/compartment_config_source.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/config_source.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/config_source_record.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/configuration_source_provider.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/configuration_source_provider_collection.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/configuration_source_provider_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_apply_job_operation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_compartment_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_configuration_source_provider_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_destroy_job_operation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_git_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_github_access_token_configuration_source_provider_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_gitlab_access_token_configuration_source_provider_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_import_tf_state_job_operation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_job_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_job_operation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_object_storage_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_plan_job_operation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_stack_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_stack_template_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_template_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_template_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_template_zip_upload_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/create_zip_upload_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/destroy_job_operation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/destroy_job_operation_details_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/detect_stack_drift_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/failure_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/git_config_source.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/git_config_source_record.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/github_access_token_configuration_source_provider.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/github_access_token_configuration_source_provider_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/gitlab_access_token_configuration_source_provider.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/gitlab_access_token_configuration_source_provider_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/import_tf_state_job_operation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/import_tf_state_job_operation_details_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/job.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/job_operation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/job_operation_details_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/job_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/log_entry.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/object_storage_config_source.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/object_storage_config_source_record.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/plan_job_operation_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/plan_job_operation_details_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/resource_discovery_service_collection.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/resource_discovery_service_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/stack.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/stack_resource_drift_collection.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/stack_resource_drift_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/stack_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/template.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/template_category_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/template_category_summary_collection.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/template_config_source.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/template_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/template_summary_collection.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/template_zip_upload_config_source.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/terraform_advanced_options.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/terraform_version_collection.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/terraform_version_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_configuration_source_provider_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_git_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_github_access_token_configuration_source_provider_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_gitlab_access_token_configuration_source_provider_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_job_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_object_storage_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_stack_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_template_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_template_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_template_zip_upload_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/update_zip_upload_config_source_details.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/work_request.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/zip_upload_config_source.py +usr/lib/python3.10/site-packages/oci/resource_manager/models/zip_upload_config_source_record.py +usr/lib/python3.10/site-packages/oci/resource_manager/resource_manager_client.py +usr/lib/python3.10/site-packages/oci/resource_manager/resource_manager_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/resource_search +usr/lib/python3.10/site-packages/oci/resource_search/__init__.py +usr/lib/python3.10/site-packages/oci/resource_search/models +usr/lib/python3.10/site-packages/oci/resource_search/models/__init__.py +usr/lib/python3.10/site-packages/oci/resource_search/models/free_text_search_details.py +usr/lib/python3.10/site-packages/oci/resource_search/models/queryable_field_description.py +usr/lib/python3.10/site-packages/oci/resource_search/models/resource_summary.py +usr/lib/python3.10/site-packages/oci/resource_search/models/resource_summary_collection.py +usr/lib/python3.10/site-packages/oci/resource_search/models/resource_type.py +usr/lib/python3.10/site-packages/oci/resource_search/models/search_context.py +usr/lib/python3.10/site-packages/oci/resource_search/models/search_details.py +usr/lib/python3.10/site-packages/oci/resource_search/models/structured_search_details.py +usr/lib/python3.10/site-packages/oci/resource_search/resource_search_client.py +usr/lib/python3.10/site-packages/oci/resource_search/resource_search_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/response.py +usr/lib/python3.10/site-packages/oci/retry +usr/lib/python3.10/site-packages/oci/retry/__init__.py +usr/lib/python3.10/site-packages/oci/retry/retry.py +usr/lib/python3.10/site-packages/oci/retry/retry_checkers.py +usr/lib/python3.10/site-packages/oci/retry/retry_sleep_utils.py +usr/lib/python3.10/site-packages/oci/rover +usr/lib/python3.10/site-packages/oci/rover/__init__.py +usr/lib/python3.10/site-packages/oci/rover/models +usr/lib/python3.10/site-packages/oci/rover/models/__init__.py +usr/lib/python3.10/site-packages/oci/rover/models/change_rover_cluster_compartment_details.py +usr/lib/python3.10/site-packages/oci/rover/models/change_rover_entitlement_compartment_details.py +usr/lib/python3.10/site-packages/oci/rover/models/change_rover_node_compartment_details.py +usr/lib/python3.10/site-packages/oci/rover/models/create_rover_cluster_details.py +usr/lib/python3.10/site-packages/oci/rover/models/create_rover_entitlement_details.py +usr/lib/python3.10/site-packages/oci/rover/models/create_rover_node_details.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_cluster.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_cluster_certificate.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_cluster_collection.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_cluster_summary.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_entitlement.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_entitlement_collection.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_entitlement_summary.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_node.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_node_action_set_key_details.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_node_certificate.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_node_collection.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_node_encryption_key.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_node_get_rpt.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_node_set_key.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_node_summary.py +usr/lib/python3.10/site-packages/oci/rover/models/rover_workload.py +usr/lib/python3.10/site-packages/oci/rover/models/shipping_address.py +usr/lib/python3.10/site-packages/oci/rover/models/update_rover_cluster_details.py +usr/lib/python3.10/site-packages/oci/rover/models/update_rover_entitlement_details.py +usr/lib/python3.10/site-packages/oci/rover/models/update_rover_node_details.py +usr/lib/python3.10/site-packages/oci/rover/rover_cluster_client.py +usr/lib/python3.10/site-packages/oci/rover/rover_cluster_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/rover/rover_entitlement_client.py +usr/lib/python3.10/site-packages/oci/rover/rover_entitlement_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/rover/rover_node_client.py +usr/lib/python3.10/site-packages/oci/rover/rover_node_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/sch +usr/lib/python3.10/site-packages/oci/sch/__init__.py +usr/lib/python3.10/site-packages/oci/sch/models +usr/lib/python3.10/site-packages/oci/sch/models/__init__.py +usr/lib/python3.10/site-packages/oci/sch/models/change_service_connector_compartment_details.py +usr/lib/python3.10/site-packages/oci/sch/models/create_service_connector_details.py +usr/lib/python3.10/site-packages/oci/sch/models/dimension_details.py +usr/lib/python3.10/site-packages/oci/sch/models/dimension_value_details.py +usr/lib/python3.10/site-packages/oci/sch/models/function_task_details.py +usr/lib/python3.10/site-packages/oci/sch/models/functions_target_details.py +usr/lib/python3.10/site-packages/oci/sch/models/jmes_path_dimension_value.py +usr/lib/python3.10/site-packages/oci/sch/models/latest_streaming_cursor.py +usr/lib/python3.10/site-packages/oci/sch/models/log_rule_task_details.py +usr/lib/python3.10/site-packages/oci/sch/models/log_source.py +usr/lib/python3.10/site-packages/oci/sch/models/logging_analytics_target_details.py +usr/lib/python3.10/site-packages/oci/sch/models/logging_source_details.py +usr/lib/python3.10/site-packages/oci/sch/models/monitoring_target_details.py +usr/lib/python3.10/site-packages/oci/sch/models/notifications_target_details.py +usr/lib/python3.10/site-packages/oci/sch/models/object_storage_target_details.py +usr/lib/python3.10/site-packages/oci/sch/models/service_connector.py +usr/lib/python3.10/site-packages/oci/sch/models/service_connector_collection.py +usr/lib/python3.10/site-packages/oci/sch/models/service_connector_summary.py +usr/lib/python3.10/site-packages/oci/sch/models/source_details.py +usr/lib/python3.10/site-packages/oci/sch/models/static_dimension_value.py +usr/lib/python3.10/site-packages/oci/sch/models/streaming_cursor_details.py +usr/lib/python3.10/site-packages/oci/sch/models/streaming_source_details.py +usr/lib/python3.10/site-packages/oci/sch/models/streaming_target_details.py +usr/lib/python3.10/site-packages/oci/sch/models/target_details.py +usr/lib/python3.10/site-packages/oci/sch/models/task_details.py +usr/lib/python3.10/site-packages/oci/sch/models/trim_horizon_streaming_cursor.py +usr/lib/python3.10/site-packages/oci/sch/models/update_service_connector_details.py +usr/lib/python3.10/site-packages/oci/sch/models/work_request.py +usr/lib/python3.10/site-packages/oci/sch/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/sch/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/sch/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/sch/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/sch/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/sch/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/sch/service_connector_client.py +usr/lib/python3.10/site-packages/oci/sch/service_connector_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/secrets +usr/lib/python3.10/site-packages/oci/secrets/__init__.py +usr/lib/python3.10/site-packages/oci/secrets/models +usr/lib/python3.10/site-packages/oci/secrets/models/__init__.py +usr/lib/python3.10/site-packages/oci/secrets/models/base64_secret_bundle_content_details.py +usr/lib/python3.10/site-packages/oci/secrets/models/secret_bundle.py +usr/lib/python3.10/site-packages/oci/secrets/models/secret_bundle_content_details.py +usr/lib/python3.10/site-packages/oci/secrets/models/secret_bundle_version_summary.py +usr/lib/python3.10/site-packages/oci/secrets/secrets_client.py +usr/lib/python3.10/site-packages/oci/secrets/secrets_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/service_catalog +usr/lib/python3.10/site-packages/oci/service_catalog/__init__.py +usr/lib/python3.10/site-packages/oci/service_catalog/models +usr/lib/python3.10/site-packages/oci/service_catalog/models/__init__.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/application_collection.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/application_summary.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/bulk_replace_service_catalog_associations_details.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/change_private_application_compartment_details.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/change_service_catalog_compartment_details.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/create_private_application_details.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/create_private_application_package.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/create_private_application_stack_package.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/create_service_catalog_association_details.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/create_service_catalog_details.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/error_entity.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/private_application.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/private_application_collection.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/private_application_package.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/private_application_package_collection.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/private_application_package_summary.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/private_application_stack_package.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/private_application_summary.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/publisher_summary.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/service_catalog.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/service_catalog_association.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/service_catalog_association_collection.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/service_catalog_association_summary.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/service_catalog_collection.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/service_catalog_summary.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/update_private_application_details.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/update_service_catalog_details.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/upload_data.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/work_request.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/service_catalog/models/work_request_summary_collection.py +usr/lib/python3.10/site-packages/oci/service_catalog/service_catalog_client.py +usr/lib/python3.10/site-packages/oci/service_catalog/service_catalog_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/service_endpoints.py +usr/lib/python3.10/site-packages/oci/service_manager_proxy +usr/lib/python3.10/site-packages/oci/service_manager_proxy/__init__.py +usr/lib/python3.10/site-packages/oci/service_manager_proxy/models +usr/lib/python3.10/site-packages/oci/service_manager_proxy/models/__init__.py +usr/lib/python3.10/site-packages/oci/service_manager_proxy/models/error_entity.py +usr/lib/python3.10/site-packages/oci/service_manager_proxy/models/service_definition.py +usr/lib/python3.10/site-packages/oci/service_manager_proxy/models/service_environment.py +usr/lib/python3.10/site-packages/oci/service_manager_proxy/models/service_environment_collection.py +usr/lib/python3.10/site-packages/oci/service_manager_proxy/models/service_environment_end_point_overview.py +usr/lib/python3.10/site-packages/oci/service_manager_proxy/models/service_environment_summary.py +usr/lib/python3.10/site-packages/oci/service_manager_proxy/service_manager_proxy_client.py +usr/lib/python3.10/site-packages/oci/service_manager_proxy/service_manager_proxy_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/signer.py +usr/lib/python3.10/site-packages/oci/streaming +usr/lib/python3.10/site-packages/oci/streaming/__init__.py +usr/lib/python3.10/site-packages/oci/streaming/models +usr/lib/python3.10/site-packages/oci/streaming/models/__init__.py +usr/lib/python3.10/site-packages/oci/streaming/models/change_connect_harness_compartment_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/change_stream_compartment_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/change_stream_pool_compartment_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/connect_harness.py +usr/lib/python3.10/site-packages/oci/streaming/models/connect_harness_summary.py +usr/lib/python3.10/site-packages/oci/streaming/models/create_connect_harness_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/create_cursor_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/create_group_cursor_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/create_stream_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/create_stream_pool_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/cursor.py +usr/lib/python3.10/site-packages/oci/streaming/models/custom_encryption_key.py +usr/lib/python3.10/site-packages/oci/streaming/models/custom_encryption_key_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/group.py +usr/lib/python3.10/site-packages/oci/streaming/models/kafka_settings.py +usr/lib/python3.10/site-packages/oci/streaming/models/message.py +usr/lib/python3.10/site-packages/oci/streaming/models/partition_reservation.py +usr/lib/python3.10/site-packages/oci/streaming/models/private_endpoint_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/private_endpoint_settings.py +usr/lib/python3.10/site-packages/oci/streaming/models/put_messages_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/put_messages_details_entry.py +usr/lib/python3.10/site-packages/oci/streaming/models/put_messages_result.py +usr/lib/python3.10/site-packages/oci/streaming/models/put_messages_result_entry.py +usr/lib/python3.10/site-packages/oci/streaming/models/stream.py +usr/lib/python3.10/site-packages/oci/streaming/models/stream_pool.py +usr/lib/python3.10/site-packages/oci/streaming/models/stream_pool_summary.py +usr/lib/python3.10/site-packages/oci/streaming/models/stream_summary.py +usr/lib/python3.10/site-packages/oci/streaming/models/update_connect_harness_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/update_group_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/update_stream_details.py +usr/lib/python3.10/site-packages/oci/streaming/models/update_stream_pool_details.py +usr/lib/python3.10/site-packages/oci/streaming/stream_admin_client.py +usr/lib/python3.10/site-packages/oci/streaming/stream_admin_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/streaming/stream_client.py +usr/lib/python3.10/site-packages/oci/streaming/stream_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/__init__.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/domain_client.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/domain_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/domain_governance_client.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/domain_governance_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/link_client.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/link_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/__init__.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/activate_order_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/assigned_subscription.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/assigned_subscription_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/assigned_subscription_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/available_region_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/available_region_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/create_child_tenancy_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/create_domain_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/create_domain_governance_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/create_sender_invitation_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/create_subscription_mapping_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/domain.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/domain_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/domain_governance.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/domain_governance_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/domain_governance_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/domain_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/link.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/link_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/link_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/order.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/organization.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/organization_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/organization_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/organization_tenancy.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/organization_tenancy_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/organization_tenancy_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/recipient_invitation.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/recipient_invitation_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/recipient_invitation_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/sender_invitation.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/sender_invitation_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/sender_invitation_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/sku.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/subscription.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/subscription_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/subscription_info.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/subscription_mapping.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/subscription_mapping_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/subscription_mapping_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/subscription_sku.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/subscription_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/update_domain_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/update_domain_governance_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/update_organization_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/update_recipient_invitation_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/update_sender_invitation_details.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/work_request.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/orders_client.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/orders_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/organization_client.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/organization_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/recipient_invitation_client.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/recipient_invitation_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/sender_invitation_client.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/sender_invitation_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/subscription_client.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/subscription_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/work_request_client.py +usr/lib/python3.10/site-packages/oci/tenant_manager_control_plane/work_request_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/usage +usr/lib/python3.10/site-packages/oci/usage/__init__.py +usr/lib/python3.10/site-packages/oci/usage/models +usr/lib/python3.10/site-packages/oci/usage/models/__init__.py +usr/lib/python3.10/site-packages/oci/usage/models/create_redeemable_user_details.py +usr/lib/python3.10/site-packages/oci/usage/models/monthly_reward_summary.py +usr/lib/python3.10/site-packages/oci/usage/models/product_collection.py +usr/lib/python3.10/site-packages/oci/usage/models/product_summary.py +usr/lib/python3.10/site-packages/oci/usage/models/redeemable_user.py +usr/lib/python3.10/site-packages/oci/usage/models/redeemable_user_collection.py +usr/lib/python3.10/site-packages/oci/usage/models/redeemable_user_summary.py +usr/lib/python3.10/site-packages/oci/usage/models/reward_collection.py +usr/lib/python3.10/site-packages/oci/usage/models/reward_details.py +usr/lib/python3.10/site-packages/oci/usage/rewards_client.py +usr/lib/python3.10/site-packages/oci/usage/rewards_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/usage_api +usr/lib/python3.10/site-packages/oci/usage_api/__init__.py +usr/lib/python3.10/site-packages/oci/usage_api/models +usr/lib/python3.10/site-packages/oci/usage_api/models/__init__.py +usr/lib/python3.10/site-packages/oci/usage_api/models/configuration.py +usr/lib/python3.10/site-packages/oci/usage_api/models/configuration_aggregation.py +usr/lib/python3.10/site-packages/oci/usage_api/models/cost_analysis_ui.py +usr/lib/python3.10/site-packages/oci/usage_api/models/create_custom_table_details.py +usr/lib/python3.10/site-packages/oci/usage_api/models/create_query_details.py +usr/lib/python3.10/site-packages/oci/usage_api/models/create_schedule_report_details.py +usr/lib/python3.10/site-packages/oci/usage_api/models/custom_table.py +usr/lib/python3.10/site-packages/oci/usage_api/models/custom_table_collection.py +usr/lib/python3.10/site-packages/oci/usage_api/models/custom_table_summary.py +usr/lib/python3.10/site-packages/oci/usage_api/models/dimension.py +usr/lib/python3.10/site-packages/oci/usage_api/models/filter.py +usr/lib/python3.10/site-packages/oci/usage_api/models/forecast.py +usr/lib/python3.10/site-packages/oci/usage_api/models/query.py +usr/lib/python3.10/site-packages/oci/usage_api/models/query_collection.py +usr/lib/python3.10/site-packages/oci/usage_api/models/query_definition.py +usr/lib/python3.10/site-packages/oci/usage_api/models/query_summary.py +usr/lib/python3.10/site-packages/oci/usage_api/models/report_query.py +usr/lib/python3.10/site-packages/oci/usage_api/models/request_summarized_usages_details.py +usr/lib/python3.10/site-packages/oci/usage_api/models/saved_custom_table.py +usr/lib/python3.10/site-packages/oci/usage_api/models/saved_schedule_report.py +usr/lib/python3.10/site-packages/oci/usage_api/models/schedule_report.py +usr/lib/python3.10/site-packages/oci/usage_api/models/schedule_report_collection.py +usr/lib/python3.10/site-packages/oci/usage_api/models/schedule_report_summary.py +usr/lib/python3.10/site-packages/oci/usage_api/models/tag.py +usr/lib/python3.10/site-packages/oci/usage_api/models/update_custom_table_details.py +usr/lib/python3.10/site-packages/oci/usage_api/models/update_query_details.py +usr/lib/python3.10/site-packages/oci/usage_api/models/update_schedule_report_details.py +usr/lib/python3.10/site-packages/oci/usage_api/models/usage_aggregation.py +usr/lib/python3.10/site-packages/oci/usage_api/models/usage_summary.py +usr/lib/python3.10/site-packages/oci/usage_api/usageapi_client.py +usr/lib/python3.10/site-packages/oci/usage_api/usageapi_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/util.py +usr/lib/python3.10/site-packages/oci/vault +usr/lib/python3.10/site-packages/oci/vault/__init__.py +usr/lib/python3.10/site-packages/oci/vault/models +usr/lib/python3.10/site-packages/oci/vault/models/__init__.py +usr/lib/python3.10/site-packages/oci/vault/models/base64_secret_content_details.py +usr/lib/python3.10/site-packages/oci/vault/models/change_secret_compartment_details.py +usr/lib/python3.10/site-packages/oci/vault/models/create_secret_details.py +usr/lib/python3.10/site-packages/oci/vault/models/schedule_secret_deletion_details.py +usr/lib/python3.10/site-packages/oci/vault/models/schedule_secret_version_deletion_details.py +usr/lib/python3.10/site-packages/oci/vault/models/secret.py +usr/lib/python3.10/site-packages/oci/vault/models/secret_content_details.py +usr/lib/python3.10/site-packages/oci/vault/models/secret_expiry_rule.py +usr/lib/python3.10/site-packages/oci/vault/models/secret_reuse_rule.py +usr/lib/python3.10/site-packages/oci/vault/models/secret_rule.py +usr/lib/python3.10/site-packages/oci/vault/models/secret_summary.py +usr/lib/python3.10/site-packages/oci/vault/models/secret_version.py +usr/lib/python3.10/site-packages/oci/vault/models/secret_version_summary.py +usr/lib/python3.10/site-packages/oci/vault/models/update_secret_details.py +usr/lib/python3.10/site-packages/oci/vault/vaults_client.py +usr/lib/python3.10/site-packages/oci/vault/vaults_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/version.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/__init__.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/__init__.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/change_container_scan_recipe_compartment_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/change_container_scan_result_compartment_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/change_container_scan_target_compartment_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/change_host_agent_scan_result_compartment_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/change_host_cis_benchmark_scan_result_compartment_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/change_host_endpoint_protection_scan_result_compartment_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/change_host_port_scan_result_compartment_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/change_host_scan_recipe_compartment_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/change_host_scan_target_compartment_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_recipe.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_recipe_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_recipe_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_registry.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_result.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_result_problem.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_result_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_result_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_settings.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_target.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_target_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/container_scan_target_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/create_container_scan_recipe_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/create_container_scan_registry_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/create_container_scan_target_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/create_host_scan_recipe_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/create_host_scan_target_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/create_ocir_container_scan_registry_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/cve_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/export_host_agent_scan_result_csv_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/export_host_vulnerability_csv_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_agent_scan_result.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_agent_scan_result_problem.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_agent_scan_result_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_agent_scan_result_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_score.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_cis_benchmark_settings.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_endpoint_protection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_endpoint_protection_settings.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_port_scan_result.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_port_scan_result_open_port.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_port_scan_result_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_port_scan_result_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_scan_agent_configuration.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_scan_agent_configuration_oci.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_scan_agent_settings.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_scan_port_settings.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_scan_recipe.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_scan_recipe_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_scan_recipe_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_scan_target.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_scan_target_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_scan_target_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_vulnerability.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_vulnerability_impacted_host_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_vulnerability_impacted_host_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_vulnerability_summary.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/host_vulnerability_summary_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/ocir_container_scan_registry.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/schedule.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/update_container_scan_recipe_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/update_container_scan_registry_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/update_container_scan_target_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/update_host_scan_recipe_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/update_host_scan_target_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/update_ocir_container_scan_registry_details.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/work_request.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/vulnerability_scanning_client.py +usr/lib/python3.10/site-packages/oci/vulnerability_scanning/vulnerability_scanning_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/waas +usr/lib/python3.10/site-packages/oci/waas/__init__.py +usr/lib/python3.10/site-packages/oci/waas/models +usr/lib/python3.10/site-packages/oci/waas/models/__init__.py +usr/lib/python3.10/site-packages/oci/waas/models/access_rule.py +usr/lib/python3.10/site-packages/oci/waas/models/access_rule_criteria.py +usr/lib/python3.10/site-packages/oci/waas/models/add_http_response_header_action.py +usr/lib/python3.10/site-packages/oci/waas/models/address_list.py +usr/lib/python3.10/site-packages/oci/waas/models/address_list_summary.py +usr/lib/python3.10/site-packages/oci/waas/models/address_rate_limiting.py +usr/lib/python3.10/site-packages/oci/waas/models/block_challenge_settings.py +usr/lib/python3.10/site-packages/oci/waas/models/caching_rule.py +usr/lib/python3.10/site-packages/oci/waas/models/caching_rule_criteria.py +usr/lib/python3.10/site-packages/oci/waas/models/caching_rule_summary.py +usr/lib/python3.10/site-packages/oci/waas/models/captcha.py +usr/lib/python3.10/site-packages/oci/waas/models/certificate.py +usr/lib/python3.10/site-packages/oci/waas/models/certificate_extensions.py +usr/lib/python3.10/site-packages/oci/waas/models/certificate_issuer_name.py +usr/lib/python3.10/site-packages/oci/waas/models/certificate_public_key_info.py +usr/lib/python3.10/site-packages/oci/waas/models/certificate_subject_name.py +usr/lib/python3.10/site-packages/oci/waas/models/certificate_summary.py +usr/lib/python3.10/site-packages/oci/waas/models/change_address_list_compartment_details.py +usr/lib/python3.10/site-packages/oci/waas/models/change_certificate_compartment_details.py +usr/lib/python3.10/site-packages/oci/waas/models/change_custom_protection_rule_compartment_details.py +usr/lib/python3.10/site-packages/oci/waas/models/change_http_redirect_compartment_details.py +usr/lib/python3.10/site-packages/oci/waas/models/change_waas_policy_compartment_details.py +usr/lib/python3.10/site-packages/oci/waas/models/create_address_list_details.py +usr/lib/python3.10/site-packages/oci/waas/models/create_certificate_details.py +usr/lib/python3.10/site-packages/oci/waas/models/create_custom_protection_rule_details.py +usr/lib/python3.10/site-packages/oci/waas/models/create_http_redirect_details.py +usr/lib/python3.10/site-packages/oci/waas/models/create_waas_policy_details.py +usr/lib/python3.10/site-packages/oci/waas/models/custom_protection_rule.py +usr/lib/python3.10/site-packages/oci/waas/models/custom_protection_rule_setting.py +usr/lib/python3.10/site-packages/oci/waas/models/custom_protection_rule_summary.py +usr/lib/python3.10/site-packages/oci/waas/models/device_fingerprint_challenge.py +usr/lib/python3.10/site-packages/oci/waas/models/edge_subnet.py +usr/lib/python3.10/site-packages/oci/waas/models/extend_http_response_header_action.py +usr/lib/python3.10/site-packages/oci/waas/models/good_bot.py +usr/lib/python3.10/site-packages/oci/waas/models/header.py +usr/lib/python3.10/site-packages/oci/waas/models/header_manipulation_action.py +usr/lib/python3.10/site-packages/oci/waas/models/health_check.py +usr/lib/python3.10/site-packages/oci/waas/models/http_redirect.py +usr/lib/python3.10/site-packages/oci/waas/models/http_redirect_summary.py +usr/lib/python3.10/site-packages/oci/waas/models/http_redirect_target.py +usr/lib/python3.10/site-packages/oci/waas/models/human_interaction_challenge.py +usr/lib/python3.10/site-packages/oci/waas/models/ip_hash_load_balancing_method.py +usr/lib/python3.10/site-packages/oci/waas/models/js_challenge.py +usr/lib/python3.10/site-packages/oci/waas/models/load_balancing_method.py +usr/lib/python3.10/site-packages/oci/waas/models/origin.py +usr/lib/python3.10/site-packages/oci/waas/models/origin_group.py +usr/lib/python3.10/site-packages/oci/waas/models/origin_group_origins.py +usr/lib/python3.10/site-packages/oci/waas/models/policy_config.py +usr/lib/python3.10/site-packages/oci/waas/models/protection_rule.py +usr/lib/python3.10/site-packages/oci/waas/models/protection_rule_action.py +usr/lib/python3.10/site-packages/oci/waas/models/protection_rule_exclusion.py +usr/lib/python3.10/site-packages/oci/waas/models/protection_settings.py +usr/lib/python3.10/site-packages/oci/waas/models/purge_cache.py +usr/lib/python3.10/site-packages/oci/waas/models/recommendation.py +usr/lib/python3.10/site-packages/oci/waas/models/remove_http_response_header_action.py +usr/lib/python3.10/site-packages/oci/waas/models/round_robin_load_balancing_method.py +usr/lib/python3.10/site-packages/oci/waas/models/sticky_cookie_load_balancing_method.py +usr/lib/python3.10/site-packages/oci/waas/models/threat_feed.py +usr/lib/python3.10/site-packages/oci/waas/models/threat_feed_action.py +usr/lib/python3.10/site-packages/oci/waas/models/update_address_list_details.py +usr/lib/python3.10/site-packages/oci/waas/models/update_certificate_details.py +usr/lib/python3.10/site-packages/oci/waas/models/update_custom_protection_rule_details.py +usr/lib/python3.10/site-packages/oci/waas/models/update_http_redirect_details.py +usr/lib/python3.10/site-packages/oci/waas/models/update_waas_policy_details.py +usr/lib/python3.10/site-packages/oci/waas/models/waas_policy.py +usr/lib/python3.10/site-packages/oci/waas/models/waas_policy_custom_protection_rule_summary.py +usr/lib/python3.10/site-packages/oci/waas/models/waas_policy_summary.py +usr/lib/python3.10/site-packages/oci/waas/models/waf_blocked_request.py +usr/lib/python3.10/site-packages/oci/waas/models/waf_config.py +usr/lib/python3.10/site-packages/oci/waas/models/waf_config_details.py +usr/lib/python3.10/site-packages/oci/waas/models/waf_log.py +usr/lib/python3.10/site-packages/oci/waas/models/waf_meter_datum.py +usr/lib/python3.10/site-packages/oci/waas/models/waf_request.py +usr/lib/python3.10/site-packages/oci/waas/models/waf_traffic_datum.py +usr/lib/python3.10/site-packages/oci/waas/models/whitelist.py +usr/lib/python3.10/site-packages/oci/waas/models/work_request.py +usr/lib/python3.10/site-packages/oci/waas/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/waas/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/waas/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/waas/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/waas/redirect_client.py +usr/lib/python3.10/site-packages/oci/waas/redirect_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/waas/waas_client.py +usr/lib/python3.10/site-packages/oci/waas/waas_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/waf +usr/lib/python3.10/site-packages/oci/waf/__init__.py +usr/lib/python3.10/site-packages/oci/waf/models +usr/lib/python3.10/site-packages/oci/waf/models/__init__.py +usr/lib/python3.10/site-packages/oci/waf/models/access_control_rule.py +usr/lib/python3.10/site-packages/oci/waf/models/action.py +usr/lib/python3.10/site-packages/oci/waf/models/allow_action.py +usr/lib/python3.10/site-packages/oci/waf/models/change_network_address_list_compartment_details.py +usr/lib/python3.10/site-packages/oci/waf/models/change_resource_compartment_details.py +usr/lib/python3.10/site-packages/oci/waf/models/change_web_app_firewall_compartment_details.py +usr/lib/python3.10/site-packages/oci/waf/models/change_web_app_firewall_policy_compartment_details.py +usr/lib/python3.10/site-packages/oci/waf/models/check_action.py +usr/lib/python3.10/site-packages/oci/waf/models/collaborative_capability_weight.py +usr/lib/python3.10/site-packages/oci/waf/models/collaborative_capability_weight_override.py +usr/lib/python3.10/site-packages/oci/waf/models/create_network_address_list_addresses_details.py +usr/lib/python3.10/site-packages/oci/waf/models/create_network_address_list_details.py +usr/lib/python3.10/site-packages/oci/waf/models/create_network_address_list_vcn_addresses_details.py +usr/lib/python3.10/site-packages/oci/waf/models/create_web_app_firewall_details.py +usr/lib/python3.10/site-packages/oci/waf/models/create_web_app_firewall_load_balancer_details.py +usr/lib/python3.10/site-packages/oci/waf/models/create_web_app_firewall_policy_details.py +usr/lib/python3.10/site-packages/oci/waf/models/http_response_body.py +usr/lib/python3.10/site-packages/oci/waf/models/network_address_list.py +usr/lib/python3.10/site-packages/oci/waf/models/network_address_list_addresses.py +usr/lib/python3.10/site-packages/oci/waf/models/network_address_list_addresses_summary.py +usr/lib/python3.10/site-packages/oci/waf/models/network_address_list_collection.py +usr/lib/python3.10/site-packages/oci/waf/models/network_address_list_summary.py +usr/lib/python3.10/site-packages/oci/waf/models/network_address_list_vcn_addresses.py +usr/lib/python3.10/site-packages/oci/waf/models/network_address_list_vcn_addresses_summary.py +usr/lib/python3.10/site-packages/oci/waf/models/private_addresses.py +usr/lib/python3.10/site-packages/oci/waf/models/protection_capability.py +usr/lib/python3.10/site-packages/oci/waf/models/protection_capability_collection.py +usr/lib/python3.10/site-packages/oci/waf/models/protection_capability_exclusions.py +usr/lib/python3.10/site-packages/oci/waf/models/protection_capability_group_tag_collection.py +usr/lib/python3.10/site-packages/oci/waf/models/protection_capability_group_tag_summary.py +usr/lib/python3.10/site-packages/oci/waf/models/protection_capability_settings.py +usr/lib/python3.10/site-packages/oci/waf/models/protection_capability_summary.py +usr/lib/python3.10/site-packages/oci/waf/models/protection_rule.py +usr/lib/python3.10/site-packages/oci/waf/models/request_access_control.py +usr/lib/python3.10/site-packages/oci/waf/models/request_protection.py +usr/lib/python3.10/site-packages/oci/waf/models/request_rate_limiting.py +usr/lib/python3.10/site-packages/oci/waf/models/request_rate_limiting_configuration.py +usr/lib/python3.10/site-packages/oci/waf/models/request_rate_limiting_rule.py +usr/lib/python3.10/site-packages/oci/waf/models/response_access_control.py +usr/lib/python3.10/site-packages/oci/waf/models/response_header.py +usr/lib/python3.10/site-packages/oci/waf/models/response_protection.py +usr/lib/python3.10/site-packages/oci/waf/models/return_http_response_action.py +usr/lib/python3.10/site-packages/oci/waf/models/static_text_http_response_body.py +usr/lib/python3.10/site-packages/oci/waf/models/update_network_address_list_addresses_details.py +usr/lib/python3.10/site-packages/oci/waf/models/update_network_address_list_details.py +usr/lib/python3.10/site-packages/oci/waf/models/update_network_address_list_vcn_addresses_details.py +usr/lib/python3.10/site-packages/oci/waf/models/update_web_app_firewall_details.py +usr/lib/python3.10/site-packages/oci/waf/models/update_web_app_firewall_policy_details.py +usr/lib/python3.10/site-packages/oci/waf/models/web_app_firewall.py +usr/lib/python3.10/site-packages/oci/waf/models/web_app_firewall_collection.py +usr/lib/python3.10/site-packages/oci/waf/models/web_app_firewall_load_balancer.py +usr/lib/python3.10/site-packages/oci/waf/models/web_app_firewall_load_balancer_summary.py +usr/lib/python3.10/site-packages/oci/waf/models/web_app_firewall_policy.py +usr/lib/python3.10/site-packages/oci/waf/models/web_app_firewall_policy_collection.py +usr/lib/python3.10/site-packages/oci/waf/models/web_app_firewall_policy_rule.py +usr/lib/python3.10/site-packages/oci/waf/models/web_app_firewall_policy_summary.py +usr/lib/python3.10/site-packages/oci/waf/models/web_app_firewall_summary.py +usr/lib/python3.10/site-packages/oci/waf/models/work_request.py +usr/lib/python3.10/site-packages/oci/waf/models/work_request_collection.py +usr/lib/python3.10/site-packages/oci/waf/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/waf/models/work_request_error_collection.py +usr/lib/python3.10/site-packages/oci/waf/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/waf/models/work_request_log_entry_collection.py +usr/lib/python3.10/site-packages/oci/waf/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/waf/waf_client.py +usr/lib/python3.10/site-packages/oci/waf/waf_client_composite_operations.py +usr/lib/python3.10/site-packages/oci/waiter.py +usr/lib/python3.10/site-packages/oci/work_requests +usr/lib/python3.10/site-packages/oci/work_requests/__init__.py +usr/lib/python3.10/site-packages/oci/work_requests/models +usr/lib/python3.10/site-packages/oci/work_requests/models/__init__.py +usr/lib/python3.10/site-packages/oci/work_requests/models/work_request.py +usr/lib/python3.10/site-packages/oci/work_requests/models/work_request_error.py +usr/lib/python3.10/site-packages/oci/work_requests/models/work_request_log_entry.py +usr/lib/python3.10/site-packages/oci/work_requests/models/work_request_resource.py +usr/lib/python3.10/site-packages/oci/work_requests/models/work_request_summary.py +usr/lib/python3.10/site-packages/oci/work_requests/work_request_client.py +usr/lib/python3.10/site-packages/oci/work_requests/work_request_client_composite_operations.py diff --git a/config/rootfiles/packages/squid-accounting b/config/rootfiles/packages/proxy-accounting similarity index 90% rename from config/rootfiles/packages/squid-accounting rename to config/rootfiles/packages/proxy-accounting index 82b171e334..0c142ea5c9 100644 --- a/config/rootfiles/packages/squid-accounting +++ b/config/rootfiles/packages/proxy-accounting @@ -11,6 +11,6 @@ var/ipfire/addon-lang/acct.de.pl var/ipfire/addon-lang/acct.en.pl var/ipfire/addon-lang/acct.fr.pl var/ipfire/addon-lang/acct.tr.pl -var/ipfire/backup/addons/includes/squid-accounting +var/ipfire/backup/addons/includes/proxy-accounting var/ipfire/menu.d/EX-squid-accounting.menu var/log/accounting.log diff --git a/config/rootfiles/packages/python3-arrow b/config/rootfiles/packages/python3-arrow new file mode 100644 index 0000000000..bf8b333fec --- /dev/null +++ b/config/rootfiles/packages/python3-arrow @@ -0,0 +1,19 @@ +usr/lib/python3.10/site-packages/arrow +#usr/lib/python3.10/site-packages/arrow-1.2.2-py3.10.egg-info +#usr/lib/python3.10/site-packages/arrow-1.2.2-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/arrow-1.2.2-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/arrow-1.2.2-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/arrow-1.2.2-py3.10.egg-info/not-zip-safe +#usr/lib/python3.10/site-packages/arrow-1.2.2-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/arrow-1.2.2-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/arrow/__init__.py +usr/lib/python3.10/site-packages/arrow/_version.py +usr/lib/python3.10/site-packages/arrow/api.py +usr/lib/python3.10/site-packages/arrow/arrow.py +usr/lib/python3.10/site-packages/arrow/constants.py +usr/lib/python3.10/site-packages/arrow/factory.py +usr/lib/python3.10/site-packages/arrow/formatter.py +usr/lib/python3.10/site-packages/arrow/locales.py +usr/lib/python3.10/site-packages/arrow/parser.py +usr/lib/python3.10/site-packages/arrow/py.typed +usr/lib/python3.10/site-packages/arrow/util.py diff --git a/config/rootfiles/packages/python3-botocore b/config/rootfiles/packages/python3-botocore index c8d59974f3..c99fe5d258 100644 --- a/config/rootfiles/packages/python3-botocore +++ b/config/rootfiles/packages/python3-botocore @@ -1,1367 +1,1601 @@ -#usr/lib/python3.8/site-packages/botocore -#usr/lib/python3.8/site-packages/botocore-1.19.28-py3.8.egg-info -#usr/lib/python3.8/site-packages/botocore-1.19.28-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/botocore-1.19.28-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/botocore-1.19.28-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/botocore-1.19.28-py3.8.egg-info/requires.txt -#usr/lib/python3.8/site-packages/botocore-1.19.28-py3.8.egg-info/top_level.txt -usr/lib/python3.8/site-packages/botocore/__init__.py -usr/lib/python3.8/site-packages/botocore/args.py -usr/lib/python3.8/site-packages/botocore/auth.py -usr/lib/python3.8/site-packages/botocore/awsrequest.py -usr/lib/python3.8/site-packages/botocore/cacert.pem -usr/lib/python3.8/site-packages/botocore/client.py -usr/lib/python3.8/site-packages/botocore/compat.py -usr/lib/python3.8/site-packages/botocore/config.py -usr/lib/python3.8/site-packages/botocore/configloader.py -usr/lib/python3.8/site-packages/botocore/configprovider.py -usr/lib/python3.8/site-packages/botocore/credentials.py -usr/lib/python3.8/site-packages/botocore/data -#usr/lib/python3.8/site-packages/botocore/data/_retry.json -#usr/lib/python3.8/site-packages/botocore/data/accessanalyzer -#usr/lib/python3.8/site-packages/botocore/data/accessanalyzer/2019-11-01 -#usr/lib/python3.8/site-packages/botocore/data/accessanalyzer/2019-11-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/accessanalyzer/2019-11-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/acm -#usr/lib/python3.8/site-packages/botocore/data/acm-pca -#usr/lib/python3.8/site-packages/botocore/data/acm-pca/2017-08-22 -#usr/lib/python3.8/site-packages/botocore/data/acm-pca/2017-08-22/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/acm-pca/2017-08-22/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/acm-pca/2017-08-22/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/acm-pca/2017-08-22/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/acm/2015-12-08 -#usr/lib/python3.8/site-packages/botocore/data/acm/2015-12-08/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/acm/2015-12-08/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/acm/2015-12-08/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/acm/2015-12-08/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/alexaforbusiness -#usr/lib/python3.8/site-packages/botocore/data/alexaforbusiness/2017-11-09 -#usr/lib/python3.8/site-packages/botocore/data/alexaforbusiness/2017-11-09/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/alexaforbusiness/2017-11-09/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/alexaforbusiness/2017-11-09/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/amplify -#usr/lib/python3.8/site-packages/botocore/data/amplify/2017-07-25 -#usr/lib/python3.8/site-packages/botocore/data/amplify/2017-07-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/amplify/2017-07-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/amplifybackend -#usr/lib/python3.8/site-packages/botocore/data/amplifybackend/2020-08-11 -#usr/lib/python3.8/site-packages/botocore/data/amplifybackend/2020-08-11/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/amplifybackend/2020-08-11/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/apigateway -#usr/lib/python3.8/site-packages/botocore/data/apigateway/2015-07-09 -#usr/lib/python3.8/site-packages/botocore/data/apigateway/2015-07-09/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/apigateway/2015-07-09/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/apigateway/2015-07-09/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/apigatewaymanagementapi -#usr/lib/python3.8/site-packages/botocore/data/apigatewaymanagementapi/2018-11-29 -#usr/lib/python3.8/site-packages/botocore/data/apigatewaymanagementapi/2018-11-29/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/apigatewaymanagementapi/2018-11-29/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/apigatewayv2 -#usr/lib/python3.8/site-packages/botocore/data/apigatewayv2/2018-11-29 -#usr/lib/python3.8/site-packages/botocore/data/apigatewayv2/2018-11-29/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/apigatewayv2/2018-11-29/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/appconfig -#usr/lib/python3.8/site-packages/botocore/data/appconfig/2019-10-09 -#usr/lib/python3.8/site-packages/botocore/data/appconfig/2019-10-09/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/appconfig/2019-10-09/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/appflow -#usr/lib/python3.8/site-packages/botocore/data/appflow/2020-08-23 -#usr/lib/python3.8/site-packages/botocore/data/appflow/2020-08-23/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/appflow/2020-08-23/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/appintegrations -#usr/lib/python3.8/site-packages/botocore/data/appintegrations/2020-07-29 -#usr/lib/python3.8/site-packages/botocore/data/appintegrations/2020-07-29/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/appintegrations/2020-07-29/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/application-autoscaling -#usr/lib/python3.8/site-packages/botocore/data/application-autoscaling/2016-02-06 -#usr/lib/python3.8/site-packages/botocore/data/application-autoscaling/2016-02-06/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/application-autoscaling/2016-02-06/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/application-autoscaling/2016-02-06/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/application-insights -#usr/lib/python3.8/site-packages/botocore/data/application-insights/2018-11-25 -#usr/lib/python3.8/site-packages/botocore/data/application-insights/2018-11-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/application-insights/2018-11-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/appmesh -#usr/lib/python3.8/site-packages/botocore/data/appmesh/2018-10-01 -#usr/lib/python3.8/site-packages/botocore/data/appmesh/2018-10-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/appmesh/2018-10-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/appmesh/2019-01-25 -#usr/lib/python3.8/site-packages/botocore/data/appmesh/2019-01-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/appmesh/2019-01-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/appstream -#usr/lib/python3.8/site-packages/botocore/data/appstream/2016-12-01 -#usr/lib/python3.8/site-packages/botocore/data/appstream/2016-12-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/appstream/2016-12-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/appstream/2016-12-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/appstream/2016-12-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/appsync -#usr/lib/python3.8/site-packages/botocore/data/appsync/2017-07-25 -#usr/lib/python3.8/site-packages/botocore/data/appsync/2017-07-25/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/appsync/2017-07-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/appsync/2017-07-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/athena -#usr/lib/python3.8/site-packages/botocore/data/athena/2017-05-18 -#usr/lib/python3.8/site-packages/botocore/data/athena/2017-05-18/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/athena/2017-05-18/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/athena/2017-05-18/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/autoscaling -#usr/lib/python3.8/site-packages/botocore/data/autoscaling-plans -#usr/lib/python3.8/site-packages/botocore/data/autoscaling-plans/2018-01-06 -#usr/lib/python3.8/site-packages/botocore/data/autoscaling-plans/2018-01-06/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/autoscaling-plans/2018-01-06/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/autoscaling-plans/2018-01-06/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/autoscaling/2011-01-01 -#usr/lib/python3.8/site-packages/botocore/data/autoscaling/2011-01-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/autoscaling/2011-01-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/autoscaling/2011-01-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/backup -#usr/lib/python3.8/site-packages/botocore/data/backup/2018-11-15 -#usr/lib/python3.8/site-packages/botocore/data/backup/2018-11-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/backup/2018-11-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/batch -#usr/lib/python3.8/site-packages/botocore/data/batch/2016-08-10 -#usr/lib/python3.8/site-packages/botocore/data/batch/2016-08-10/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/batch/2016-08-10/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/batch/2016-08-10/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/braket -#usr/lib/python3.8/site-packages/botocore/data/braket/2019-09-01 -#usr/lib/python3.8/site-packages/botocore/data/braket/2019-09-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/braket/2019-09-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/budgets -#usr/lib/python3.8/site-packages/botocore/data/budgets/2016-10-20 -#usr/lib/python3.8/site-packages/botocore/data/budgets/2016-10-20/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/budgets/2016-10-20/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/budgets/2016-10-20/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ce -#usr/lib/python3.8/site-packages/botocore/data/ce/2017-10-25 -#usr/lib/python3.8/site-packages/botocore/data/ce/2017-10-25/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/ce/2017-10-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ce/2017-10-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/chime -#usr/lib/python3.8/site-packages/botocore/data/chime/2018-05-01 -#usr/lib/python3.8/site-packages/botocore/data/chime/2018-05-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/chime/2018-05-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloud9 -#usr/lib/python3.8/site-packages/botocore/data/cloud9/2017-09-23 -#usr/lib/python3.8/site-packages/botocore/data/cloud9/2017-09-23/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloud9/2017-09-23/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloud9/2017-09-23/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/clouddirectory -#usr/lib/python3.8/site-packages/botocore/data/clouddirectory/2016-05-10 -#usr/lib/python3.8/site-packages/botocore/data/clouddirectory/2016-05-10/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/clouddirectory/2016-05-10/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/clouddirectory/2017-01-11 -#usr/lib/python3.8/site-packages/botocore/data/clouddirectory/2017-01-11/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/clouddirectory/2017-01-11/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/clouddirectory/2017-01-11/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudformation -#usr/lib/python3.8/site-packages/botocore/data/cloudformation/2010-05-15 -#usr/lib/python3.8/site-packages/botocore/data/cloudformation/2010-05-15/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudformation/2010-05-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudformation/2010-05-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudformation/2010-05-15/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-05-31 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-05-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-05-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-05-31/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-10-21 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-10-21/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-10-21/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-10-21/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-11-06 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-11-06/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-11-06/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2014-11-06/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-04-17 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-04-17/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-04-17/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-04-17/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-07-27 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-07-27/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-07-27/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-07-27/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-09-17 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-09-17/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-09-17/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2015-09-17/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-01-13 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-01-13/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-01-13/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-01-13/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-01-28 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-01-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-01-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-01-28/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-08-01 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-08-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-08-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-08-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-08-20 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-08-20/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-08-20/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-08-20/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-09-07 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-09-07/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-09-07/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-09-07/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-09-29 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-09-29/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-09-29/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-09-29/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-11-25 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-11-25/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-11-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-11-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2016-11-25/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2017-03-25 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2017-03-25/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2017-03-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2017-03-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2017-03-25/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2017-10-30 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2017-10-30/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2017-10-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2017-10-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2017-10-30/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2018-06-18 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2018-06-18/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2018-06-18/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2018-06-18/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2018-06-18/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2018-11-05 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2018-11-05/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2018-11-05/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2018-11-05/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2018-11-05/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2019-03-26 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2019-03-26/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2019-03-26/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2019-03-26/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2019-03-26/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2020-05-31 -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2020-05-31/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2020-05-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2020-05-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudfront/2020-05-31/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudhsm -#usr/lib/python3.8/site-packages/botocore/data/cloudhsm/2014-05-30 -#usr/lib/python3.8/site-packages/botocore/data/cloudhsm/2014-05-30/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudhsm/2014-05-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudhsm/2014-05-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudhsmv2 -#usr/lib/python3.8/site-packages/botocore/data/cloudhsmv2/2017-04-28 -#usr/lib/python3.8/site-packages/botocore/data/cloudhsmv2/2017-04-28/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudhsmv2/2017-04-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudhsmv2/2017-04-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudsearch -#usr/lib/python3.8/site-packages/botocore/data/cloudsearch/2011-02-01 -#usr/lib/python3.8/site-packages/botocore/data/cloudsearch/2011-02-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudsearch/2013-01-01 -#usr/lib/python3.8/site-packages/botocore/data/cloudsearch/2013-01-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudsearch/2013-01-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudsearchdomain -#usr/lib/python3.8/site-packages/botocore/data/cloudsearchdomain/2013-01-01 -#usr/lib/python3.8/site-packages/botocore/data/cloudsearchdomain/2013-01-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudsearchdomain/2013-01-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudtrail -#usr/lib/python3.8/site-packages/botocore/data/cloudtrail/2013-11-01 -#usr/lib/python3.8/site-packages/botocore/data/cloudtrail/2013-11-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudtrail/2013-11-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudtrail/2013-11-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudwatch -#usr/lib/python3.8/site-packages/botocore/data/cloudwatch/2010-08-01 -#usr/lib/python3.8/site-packages/botocore/data/cloudwatch/2010-08-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudwatch/2010-08-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cloudwatch/2010-08-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cloudwatch/2010-08-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/codeartifact -#usr/lib/python3.8/site-packages/botocore/data/codeartifact/2018-09-22 -#usr/lib/python3.8/site-packages/botocore/data/codeartifact/2018-09-22/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/codeartifact/2018-09-22/paginators-1.sdk-extras.json -#usr/lib/python3.8/site-packages/botocore/data/codeartifact/2018-09-22/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/codebuild -#usr/lib/python3.8/site-packages/botocore/data/codebuild/2016-10-06 -#usr/lib/python3.8/site-packages/botocore/data/codebuild/2016-10-06/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/codebuild/2016-10-06/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/codebuild/2016-10-06/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/codecommit -#usr/lib/python3.8/site-packages/botocore/data/codecommit/2015-04-13 -#usr/lib/python3.8/site-packages/botocore/data/codecommit/2015-04-13/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/codecommit/2015-04-13/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/codecommit/2015-04-13/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/codedeploy -#usr/lib/python3.8/site-packages/botocore/data/codedeploy/2014-10-06 -#usr/lib/python3.8/site-packages/botocore/data/codedeploy/2014-10-06/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/codedeploy/2014-10-06/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/codedeploy/2014-10-06/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/codedeploy/2014-10-06/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/codeguru-reviewer -#usr/lib/python3.8/site-packages/botocore/data/codeguru-reviewer/2019-09-19 -#usr/lib/python3.8/site-packages/botocore/data/codeguru-reviewer/2019-09-19/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/codeguru-reviewer/2019-09-19/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/codeguruprofiler -#usr/lib/python3.8/site-packages/botocore/data/codeguruprofiler/2019-07-18 -#usr/lib/python3.8/site-packages/botocore/data/codeguruprofiler/2019-07-18/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/codeguruprofiler/2019-07-18/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/codepipeline -#usr/lib/python3.8/site-packages/botocore/data/codepipeline/2015-07-09 -#usr/lib/python3.8/site-packages/botocore/data/codepipeline/2015-07-09/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/codepipeline/2015-07-09/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/codepipeline/2015-07-09/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/codestar -#usr/lib/python3.8/site-packages/botocore/data/codestar-connections -#usr/lib/python3.8/site-packages/botocore/data/codestar-connections/2019-12-01 -#usr/lib/python3.8/site-packages/botocore/data/codestar-connections/2019-12-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/codestar-connections/2019-12-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/codestar-notifications -#usr/lib/python3.8/site-packages/botocore/data/codestar-notifications/2019-10-15 -#usr/lib/python3.8/site-packages/botocore/data/codestar-notifications/2019-10-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/codestar-notifications/2019-10-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/codestar/2017-04-19 -#usr/lib/python3.8/site-packages/botocore/data/codestar/2017-04-19/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/codestar/2017-04-19/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/codestar/2017-04-19/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cognito-identity -#usr/lib/python3.8/site-packages/botocore/data/cognito-identity/2014-06-30 -#usr/lib/python3.8/site-packages/botocore/data/cognito-identity/2014-06-30/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cognito-identity/2014-06-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cognito-identity/2014-06-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cognito-idp -#usr/lib/python3.8/site-packages/botocore/data/cognito-idp/2016-04-18 -#usr/lib/python3.8/site-packages/botocore/data/cognito-idp/2016-04-18/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cognito-idp/2016-04-18/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cognito-idp/2016-04-18/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cognito-sync -#usr/lib/python3.8/site-packages/botocore/data/cognito-sync/2014-06-30 -#usr/lib/python3.8/site-packages/botocore/data/cognito-sync/2014-06-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/comprehend -#usr/lib/python3.8/site-packages/botocore/data/comprehend/2017-11-27 -#usr/lib/python3.8/site-packages/botocore/data/comprehend/2017-11-27/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/comprehend/2017-11-27/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/comprehend/2017-11-27/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/comprehendmedical -#usr/lib/python3.8/site-packages/botocore/data/comprehendmedical/2018-10-30 -#usr/lib/python3.8/site-packages/botocore/data/comprehendmedical/2018-10-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/comprehendmedical/2018-10-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/compute-optimizer -#usr/lib/python3.8/site-packages/botocore/data/compute-optimizer/2019-11-01 -#usr/lib/python3.8/site-packages/botocore/data/compute-optimizer/2019-11-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/compute-optimizer/2019-11-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/config -#usr/lib/python3.8/site-packages/botocore/data/config/2014-11-12 -#usr/lib/python3.8/site-packages/botocore/data/config/2014-11-12/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/config/2014-11-12/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/config/2014-11-12/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/connect -#usr/lib/python3.8/site-packages/botocore/data/connect-contact-lens -#usr/lib/python3.8/site-packages/botocore/data/connect-contact-lens/2020-08-21 -#usr/lib/python3.8/site-packages/botocore/data/connect-contact-lens/2020-08-21/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/connect-contact-lens/2020-08-21/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/connect/2017-08-08 -#usr/lib/python3.8/site-packages/botocore/data/connect/2017-08-08/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/connect/2017-08-08/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/connect/2017-08-08/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/connectparticipant -#usr/lib/python3.8/site-packages/botocore/data/connectparticipant/2018-09-07 -#usr/lib/python3.8/site-packages/botocore/data/connectparticipant/2018-09-07/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/connectparticipant/2018-09-07/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/cur -#usr/lib/python3.8/site-packages/botocore/data/cur/2017-01-06 -#usr/lib/python3.8/site-packages/botocore/data/cur/2017-01-06/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/cur/2017-01-06/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/cur/2017-01-06/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/customer-profiles -#usr/lib/python3.8/site-packages/botocore/data/customer-profiles/2020-08-15 -#usr/lib/python3.8/site-packages/botocore/data/customer-profiles/2020-08-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/customer-profiles/2020-08-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/databrew -#usr/lib/python3.8/site-packages/botocore/data/databrew/2017-07-25 -#usr/lib/python3.8/site-packages/botocore/data/databrew/2017-07-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/databrew/2017-07-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/dataexchange -#usr/lib/python3.8/site-packages/botocore/data/dataexchange/2017-07-25 -#usr/lib/python3.8/site-packages/botocore/data/dataexchange/2017-07-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/dataexchange/2017-07-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/datapipeline -#usr/lib/python3.8/site-packages/botocore/data/datapipeline/2012-10-29 -#usr/lib/python3.8/site-packages/botocore/data/datapipeline/2012-10-29/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/datapipeline/2012-10-29/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/datasync -#usr/lib/python3.8/site-packages/botocore/data/datasync/2018-11-09 -#usr/lib/python3.8/site-packages/botocore/data/datasync/2018-11-09/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/datasync/2018-11-09/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/dax -#usr/lib/python3.8/site-packages/botocore/data/dax/2017-04-19 -#usr/lib/python3.8/site-packages/botocore/data/dax/2017-04-19/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/dax/2017-04-19/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/dax/2017-04-19/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/detective -#usr/lib/python3.8/site-packages/botocore/data/detective/2018-10-26 -#usr/lib/python3.8/site-packages/botocore/data/detective/2018-10-26/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/detective/2018-10-26/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/devicefarm -#usr/lib/python3.8/site-packages/botocore/data/devicefarm/2015-06-23 -#usr/lib/python3.8/site-packages/botocore/data/devicefarm/2015-06-23/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/devicefarm/2015-06-23/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/devicefarm/2015-06-23/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/devops-guru -#usr/lib/python3.8/site-packages/botocore/data/devops-guru/2020-12-01 -#usr/lib/python3.8/site-packages/botocore/data/devops-guru/2020-12-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/devops-guru/2020-12-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/directconnect -#usr/lib/python3.8/site-packages/botocore/data/directconnect/2012-10-25 -#usr/lib/python3.8/site-packages/botocore/data/directconnect/2012-10-25/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/directconnect/2012-10-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/directconnect/2012-10-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/discovery -#usr/lib/python3.8/site-packages/botocore/data/discovery/2015-11-01 -#usr/lib/python3.8/site-packages/botocore/data/discovery/2015-11-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/discovery/2015-11-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/discovery/2015-11-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/dlm -#usr/lib/python3.8/site-packages/botocore/data/dlm/2018-01-12 -#usr/lib/python3.8/site-packages/botocore/data/dlm/2018-01-12/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/dlm/2018-01-12/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/dlm/2018-01-12/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/dms -#usr/lib/python3.8/site-packages/botocore/data/dms/2016-01-01 -#usr/lib/python3.8/site-packages/botocore/data/dms/2016-01-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/dms/2016-01-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/dms/2016-01-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/dms/2016-01-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/docdb -#usr/lib/python3.8/site-packages/botocore/data/docdb/2014-10-31 -#usr/lib/python3.8/site-packages/botocore/data/docdb/2014-10-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/docdb/2014-10-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/docdb/2014-10-31/service-2.sdk-extras.json -#usr/lib/python3.8/site-packages/botocore/data/docdb/2014-10-31/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/ds -#usr/lib/python3.8/site-packages/botocore/data/ds/2015-04-16 -#usr/lib/python3.8/site-packages/botocore/data/ds/2015-04-16/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/ds/2015-04-16/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ds/2015-04-16/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/dynamodb -#usr/lib/python3.8/site-packages/botocore/data/dynamodb/2012-08-10 -#usr/lib/python3.8/site-packages/botocore/data/dynamodb/2012-08-10/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/dynamodb/2012-08-10/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/dynamodb/2012-08-10/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/dynamodb/2012-08-10/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/dynamodbstreams -#usr/lib/python3.8/site-packages/botocore/data/dynamodbstreams/2012-08-10 -#usr/lib/python3.8/site-packages/botocore/data/dynamodbstreams/2012-08-10/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/dynamodbstreams/2012-08-10/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/dynamodbstreams/2012-08-10/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ebs -#usr/lib/python3.8/site-packages/botocore/data/ebs/2019-11-02 -#usr/lib/python3.8/site-packages/botocore/data/ebs/2019-11-02/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ebs/2019-11-02/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2 -#usr/lib/python3.8/site-packages/botocore/data/ec2-instance-connect -#usr/lib/python3.8/site-packages/botocore/data/ec2-instance-connect/2018-04-02 -#usr/lib/python3.8/site-packages/botocore/data/ec2-instance-connect/2018-04-02/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2-instance-connect/2018-04-02/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2014-09-01 -#usr/lib/python3.8/site-packages/botocore/data/ec2/2014-09-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2014-09-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2014-09-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2014-10-01 -#usr/lib/python3.8/site-packages/botocore/data/ec2/2014-10-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2014-10-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2014-10-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-03-01 -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-03-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-03-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-03-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-04-15 -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-04-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-04-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-04-15/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-10-01 -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-10-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-10-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2015-10-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-04-01 -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-04-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-04-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-04-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-09-15 -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-09-15/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-09-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-09-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-09-15/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-11-15 -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-11-15/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-11-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-11-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ec2/2016-11-15/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/ecr -#usr/lib/python3.8/site-packages/botocore/data/ecr-public -#usr/lib/python3.8/site-packages/botocore/data/ecr-public/2020-10-30 -#usr/lib/python3.8/site-packages/botocore/data/ecr-public/2020-10-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ecr-public/2020-10-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ecr/2015-09-21 -#usr/lib/python3.8/site-packages/botocore/data/ecr/2015-09-21/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/ecr/2015-09-21/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ecr/2015-09-21/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ecr/2015-09-21/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/ecs -#usr/lib/python3.8/site-packages/botocore/data/ecs/2014-11-13 -#usr/lib/python3.8/site-packages/botocore/data/ecs/2014-11-13/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/ecs/2014-11-13/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ecs/2014-11-13/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ecs/2014-11-13/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/efs -#usr/lib/python3.8/site-packages/botocore/data/efs/2015-02-01 -#usr/lib/python3.8/site-packages/botocore/data/efs/2015-02-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/efs/2015-02-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/efs/2015-02-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/eks -#usr/lib/python3.8/site-packages/botocore/data/eks/2017-11-01 -#usr/lib/python3.8/site-packages/botocore/data/eks/2017-11-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/eks/2017-11-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/eks/2017-11-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/eks/2017-11-01/service-2.sdk-extras.json -#usr/lib/python3.8/site-packages/botocore/data/eks/2017-11-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/elastic-inference -#usr/lib/python3.8/site-packages/botocore/data/elastic-inference/2017-07-25 -#usr/lib/python3.8/site-packages/botocore/data/elastic-inference/2017-07-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/elastic-inference/2017-07-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/elasticache -#usr/lib/python3.8/site-packages/botocore/data/elasticache/2014-09-30 -#usr/lib/python3.8/site-packages/botocore/data/elasticache/2014-09-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/elasticache/2014-09-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/elasticache/2014-09-30/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/elasticache/2015-02-02 -#usr/lib/python3.8/site-packages/botocore/data/elasticache/2015-02-02/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/elasticache/2015-02-02/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/elasticache/2015-02-02/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/elasticache/2015-02-02/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/elasticbeanstalk -#usr/lib/python3.8/site-packages/botocore/data/elasticbeanstalk/2010-12-01 -#usr/lib/python3.8/site-packages/botocore/data/elasticbeanstalk/2010-12-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/elasticbeanstalk/2010-12-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/elasticbeanstalk/2010-12-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/elasticbeanstalk/2010-12-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/elastictranscoder -#usr/lib/python3.8/site-packages/botocore/data/elastictranscoder/2012-09-25 -#usr/lib/python3.8/site-packages/botocore/data/elastictranscoder/2012-09-25/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/elastictranscoder/2012-09-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/elastictranscoder/2012-09-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/elastictranscoder/2012-09-25/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/elb -#usr/lib/python3.8/site-packages/botocore/data/elb/2012-06-01 -#usr/lib/python3.8/site-packages/botocore/data/elb/2012-06-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/elb/2012-06-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/elb/2012-06-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/elb/2012-06-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/elbv2 -#usr/lib/python3.8/site-packages/botocore/data/elbv2/2015-12-01 -#usr/lib/python3.8/site-packages/botocore/data/elbv2/2015-12-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/elbv2/2015-12-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/elbv2/2015-12-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/elbv2/2015-12-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/emr -#usr/lib/python3.8/site-packages/botocore/data/emr/2009-03-31 -#usr/lib/python3.8/site-packages/botocore/data/emr/2009-03-31/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/emr/2009-03-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/emr/2009-03-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/emr/2009-03-31/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/endpoints.json -#usr/lib/python3.8/site-packages/botocore/data/es -#usr/lib/python3.8/site-packages/botocore/data/es/2015-01-01 -#usr/lib/python3.8/site-packages/botocore/data/es/2015-01-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/es/2015-01-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/es/2015-01-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/events -#usr/lib/python3.8/site-packages/botocore/data/events/2014-02-03 -#usr/lib/python3.8/site-packages/botocore/data/events/2014-02-03/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/events/2015-10-07 -#usr/lib/python3.8/site-packages/botocore/data/events/2015-10-07/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/events/2015-10-07/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/events/2015-10-07/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/firehose -#usr/lib/python3.8/site-packages/botocore/data/firehose/2015-08-04 -#usr/lib/python3.8/site-packages/botocore/data/firehose/2015-08-04/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/firehose/2015-08-04/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/firehose/2015-08-04/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/fms -#usr/lib/python3.8/site-packages/botocore/data/fms/2018-01-01 -#usr/lib/python3.8/site-packages/botocore/data/fms/2018-01-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/fms/2018-01-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/fms/2018-01-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/forecast -#usr/lib/python3.8/site-packages/botocore/data/forecast/2018-06-26 -#usr/lib/python3.8/site-packages/botocore/data/forecast/2018-06-26/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/forecast/2018-06-26/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/forecastquery -#usr/lib/python3.8/site-packages/botocore/data/forecastquery/2018-06-26 -#usr/lib/python3.8/site-packages/botocore/data/forecastquery/2018-06-26/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/forecastquery/2018-06-26/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/frauddetector -#usr/lib/python3.8/site-packages/botocore/data/frauddetector/2019-11-15 -#usr/lib/python3.8/site-packages/botocore/data/frauddetector/2019-11-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/frauddetector/2019-11-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/fsx -#usr/lib/python3.8/site-packages/botocore/data/fsx/2018-03-01 -#usr/lib/python3.8/site-packages/botocore/data/fsx/2018-03-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/fsx/2018-03-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/gamelift -#usr/lib/python3.8/site-packages/botocore/data/gamelift/2015-10-01 -#usr/lib/python3.8/site-packages/botocore/data/gamelift/2015-10-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/gamelift/2015-10-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/gamelift/2015-10-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/glacier -#usr/lib/python3.8/site-packages/botocore/data/glacier/2012-06-01 -#usr/lib/python3.8/site-packages/botocore/data/glacier/2012-06-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/glacier/2012-06-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/glacier/2012-06-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/glacier/2012-06-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/globalaccelerator -#usr/lib/python3.8/site-packages/botocore/data/globalaccelerator/2018-08-08 -#usr/lib/python3.8/site-packages/botocore/data/globalaccelerator/2018-08-08/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/globalaccelerator/2018-08-08/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/glue -#usr/lib/python3.8/site-packages/botocore/data/glue/2017-03-31 -#usr/lib/python3.8/site-packages/botocore/data/glue/2017-03-31/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/glue/2017-03-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/glue/2017-03-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/greengrass -#usr/lib/python3.8/site-packages/botocore/data/greengrass/2017-06-07 -#usr/lib/python3.8/site-packages/botocore/data/greengrass/2017-06-07/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/greengrass/2017-06-07/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/groundstation -#usr/lib/python3.8/site-packages/botocore/data/groundstation/2019-05-23 -#usr/lib/python3.8/site-packages/botocore/data/groundstation/2019-05-23/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/groundstation/2019-05-23/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/guardduty -#usr/lib/python3.8/site-packages/botocore/data/guardduty/2017-11-28 -#usr/lib/python3.8/site-packages/botocore/data/guardduty/2017-11-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/guardduty/2017-11-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/health -#usr/lib/python3.8/site-packages/botocore/data/health/2016-08-04 -#usr/lib/python3.8/site-packages/botocore/data/health/2016-08-04/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/health/2016-08-04/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/health/2016-08-04/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/honeycode -#usr/lib/python3.8/site-packages/botocore/data/honeycode/2020-03-01 -#usr/lib/python3.8/site-packages/botocore/data/honeycode/2020-03-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/honeycode/2020-03-01/paginators-1.sdk-extras.json -#usr/lib/python3.8/site-packages/botocore/data/honeycode/2020-03-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iam -#usr/lib/python3.8/site-packages/botocore/data/iam/2010-05-08 -#usr/lib/python3.8/site-packages/botocore/data/iam/2010-05-08/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/iam/2010-05-08/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iam/2010-05-08/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iam/2010-05-08/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/identitystore -#usr/lib/python3.8/site-packages/botocore/data/identitystore/2020-06-15 -#usr/lib/python3.8/site-packages/botocore/data/identitystore/2020-06-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/identitystore/2020-06-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/imagebuilder -#usr/lib/python3.8/site-packages/botocore/data/imagebuilder/2019-12-02 -#usr/lib/python3.8/site-packages/botocore/data/imagebuilder/2019-12-02/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/imagebuilder/2019-12-02/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/importexport -#usr/lib/python3.8/site-packages/botocore/data/importexport/2010-06-01 -#usr/lib/python3.8/site-packages/botocore/data/importexport/2010-06-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/importexport/2010-06-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/inspector -#usr/lib/python3.8/site-packages/botocore/data/inspector/2015-08-18 -#usr/lib/python3.8/site-packages/botocore/data/inspector/2015-08-18/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/inspector/2016-02-16 -#usr/lib/python3.8/site-packages/botocore/data/inspector/2016-02-16/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/inspector/2016-02-16/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/inspector/2016-02-16/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iot -#usr/lib/python3.8/site-packages/botocore/data/iot-data -#usr/lib/python3.8/site-packages/botocore/data/iot-data/2015-05-28 -#usr/lib/python3.8/site-packages/botocore/data/iot-data/2015-05-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iot-data/2015-05-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iot-jobs-data -#usr/lib/python3.8/site-packages/botocore/data/iot-jobs-data/2017-09-29 -#usr/lib/python3.8/site-packages/botocore/data/iot-jobs-data/2017-09-29/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/iot-jobs-data/2017-09-29/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iot-jobs-data/2017-09-29/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iot/2015-05-28 -#usr/lib/python3.8/site-packages/botocore/data/iot/2015-05-28/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/iot/2015-05-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iot/2015-05-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iot1click-devices -#usr/lib/python3.8/site-packages/botocore/data/iot1click-devices/2018-05-14 -#usr/lib/python3.8/site-packages/botocore/data/iot1click-devices/2018-05-14/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iot1click-devices/2018-05-14/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iot1click-projects -#usr/lib/python3.8/site-packages/botocore/data/iot1click-projects/2018-05-14 -#usr/lib/python3.8/site-packages/botocore/data/iot1click-projects/2018-05-14/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/iot1click-projects/2018-05-14/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iot1click-projects/2018-05-14/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iotanalytics -#usr/lib/python3.8/site-packages/botocore/data/iotanalytics/2017-11-27 -#usr/lib/python3.8/site-packages/botocore/data/iotanalytics/2017-11-27/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/iotanalytics/2017-11-27/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iotanalytics/2017-11-27/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iotevents -#usr/lib/python3.8/site-packages/botocore/data/iotevents-data -#usr/lib/python3.8/site-packages/botocore/data/iotevents-data/2018-10-23 -#usr/lib/python3.8/site-packages/botocore/data/iotevents-data/2018-10-23/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iotevents-data/2018-10-23/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iotevents/2018-07-27 -#usr/lib/python3.8/site-packages/botocore/data/iotevents/2018-07-27/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iotevents/2018-07-27/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iotsecuretunneling -#usr/lib/python3.8/site-packages/botocore/data/iotsecuretunneling/2018-10-05 -#usr/lib/python3.8/site-packages/botocore/data/iotsecuretunneling/2018-10-05/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iotsecuretunneling/2018-10-05/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iotsitewise -#usr/lib/python3.8/site-packages/botocore/data/iotsitewise/2019-12-02 -#usr/lib/python3.8/site-packages/botocore/data/iotsitewise/2019-12-02/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iotsitewise/2019-12-02/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/iotsitewise/2019-12-02/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/iotthingsgraph -#usr/lib/python3.8/site-packages/botocore/data/iotthingsgraph/2018-09-06 -#usr/lib/python3.8/site-packages/botocore/data/iotthingsgraph/2018-09-06/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/iotthingsgraph/2018-09-06/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ivs -#usr/lib/python3.8/site-packages/botocore/data/ivs/2020-07-14 -#usr/lib/python3.8/site-packages/botocore/data/ivs/2020-07-14/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ivs/2020-07-14/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/kafka -#usr/lib/python3.8/site-packages/botocore/data/kafka/2018-11-14 -#usr/lib/python3.8/site-packages/botocore/data/kafka/2018-11-14/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/kafka/2018-11-14/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/kendra -#usr/lib/python3.8/site-packages/botocore/data/kendra/2019-02-03 -#usr/lib/python3.8/site-packages/botocore/data/kendra/2019-02-03/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/kendra/2019-02-03/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-archived-media -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-archived-media/2017-09-30 -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-archived-media/2017-09-30/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-archived-media/2017-09-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-archived-media/2017-09-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-media -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-media/2017-09-30 -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-media/2017-09-30/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-media/2017-09-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-media/2017-09-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-signaling -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-signaling/2019-12-04 -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-signaling/2019-12-04/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis-video-signaling/2019-12-04/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis/2013-12-02 -#usr/lib/python3.8/site-packages/botocore/data/kinesis/2013-12-02/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis/2013-12-02/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis/2013-12-02/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/kinesis/2013-12-02/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/kinesisanalytics -#usr/lib/python3.8/site-packages/botocore/data/kinesisanalytics/2015-08-14 -#usr/lib/python3.8/site-packages/botocore/data/kinesisanalytics/2015-08-14/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesisanalytics/2015-08-14/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesisanalytics/2015-08-14/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/kinesisanalyticsv2 -#usr/lib/python3.8/site-packages/botocore/data/kinesisanalyticsv2/2018-05-23 -#usr/lib/python3.8/site-packages/botocore/data/kinesisanalyticsv2/2018-05-23/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesisanalyticsv2/2018-05-23/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/kinesisvideo -#usr/lib/python3.8/site-packages/botocore/data/kinesisvideo/2017-09-30 -#usr/lib/python3.8/site-packages/botocore/data/kinesisvideo/2017-09-30/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesisvideo/2017-09-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/kinesisvideo/2017-09-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/kms -#usr/lib/python3.8/site-packages/botocore/data/kms/2014-11-01 -#usr/lib/python3.8/site-packages/botocore/data/kms/2014-11-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/kms/2014-11-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/kms/2014-11-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/lakeformation -#usr/lib/python3.8/site-packages/botocore/data/lakeformation/2017-03-31 -#usr/lib/python3.8/site-packages/botocore/data/lakeformation/2017-03-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/lakeformation/2017-03-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/lambda -#usr/lib/python3.8/site-packages/botocore/data/lambda/2014-11-11 -#usr/lib/python3.8/site-packages/botocore/data/lambda/2014-11-11/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/lambda/2015-03-31 -#usr/lib/python3.8/site-packages/botocore/data/lambda/2015-03-31/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/lambda/2015-03-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/lambda/2015-03-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/lambda/2015-03-31/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/lex-models -#usr/lib/python3.8/site-packages/botocore/data/lex-models/2017-04-19 -#usr/lib/python3.8/site-packages/botocore/data/lex-models/2017-04-19/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/lex-models/2017-04-19/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/lex-models/2017-04-19/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/lex-runtime -#usr/lib/python3.8/site-packages/botocore/data/lex-runtime/2016-11-28 -#usr/lib/python3.8/site-packages/botocore/data/lex-runtime/2016-11-28/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/lex-runtime/2016-11-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/lex-runtime/2016-11-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/license-manager -#usr/lib/python3.8/site-packages/botocore/data/license-manager/2018-08-01 -#usr/lib/python3.8/site-packages/botocore/data/license-manager/2018-08-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/license-manager/2018-08-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/lightsail -#usr/lib/python3.8/site-packages/botocore/data/lightsail/2016-11-28 -#usr/lib/python3.8/site-packages/botocore/data/lightsail/2016-11-28/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/lightsail/2016-11-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/lightsail/2016-11-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/logs -#usr/lib/python3.8/site-packages/botocore/data/logs/2014-03-28 -#usr/lib/python3.8/site-packages/botocore/data/logs/2014-03-28/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/logs/2014-03-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/logs/2014-03-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/lookoutvision -#usr/lib/python3.8/site-packages/botocore/data/lookoutvision/2020-11-20 -#usr/lib/python3.8/site-packages/botocore/data/lookoutvision/2020-11-20/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/lookoutvision/2020-11-20/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/machinelearning -#usr/lib/python3.8/site-packages/botocore/data/machinelearning/2014-12-12 -#usr/lib/python3.8/site-packages/botocore/data/machinelearning/2014-12-12/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/machinelearning/2014-12-12/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/machinelearning/2014-12-12/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/machinelearning/2014-12-12/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/macie -#usr/lib/python3.8/site-packages/botocore/data/macie/2017-12-19 -#usr/lib/python3.8/site-packages/botocore/data/macie/2017-12-19/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/macie/2017-12-19/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/macie/2017-12-19/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/macie2 -#usr/lib/python3.8/site-packages/botocore/data/macie2/2020-01-01 -#usr/lib/python3.8/site-packages/botocore/data/macie2/2020-01-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/macie2/2020-01-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/managedblockchain -#usr/lib/python3.8/site-packages/botocore/data/managedblockchain/2018-09-24 -#usr/lib/python3.8/site-packages/botocore/data/managedblockchain/2018-09-24/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/managedblockchain/2018-09-24/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/marketplace-catalog -#usr/lib/python3.8/site-packages/botocore/data/marketplace-catalog/2018-09-17 -#usr/lib/python3.8/site-packages/botocore/data/marketplace-catalog/2018-09-17/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/marketplace-catalog/2018-09-17/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/marketplace-entitlement -#usr/lib/python3.8/site-packages/botocore/data/marketplace-entitlement/2017-01-11 -#usr/lib/python3.8/site-packages/botocore/data/marketplace-entitlement/2017-01-11/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/marketplace-entitlement/2017-01-11/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/marketplace-entitlement/2017-01-11/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/marketplacecommerceanalytics -#usr/lib/python3.8/site-packages/botocore/data/marketplacecommerceanalytics/2015-07-01 -#usr/lib/python3.8/site-packages/botocore/data/marketplacecommerceanalytics/2015-07-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/marketplacecommerceanalytics/2015-07-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mediaconnect -#usr/lib/python3.8/site-packages/botocore/data/mediaconnect/2018-11-14 -#usr/lib/python3.8/site-packages/botocore/data/mediaconnect/2018-11-14/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mediaconnect/2018-11-14/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mediaconvert -#usr/lib/python3.8/site-packages/botocore/data/mediaconvert/2017-08-29 -#usr/lib/python3.8/site-packages/botocore/data/mediaconvert/2017-08-29/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mediaconvert/2017-08-29/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/medialive -#usr/lib/python3.8/site-packages/botocore/data/medialive/2017-10-14 -#usr/lib/python3.8/site-packages/botocore/data/medialive/2017-10-14/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/medialive/2017-10-14/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/medialive/2017-10-14/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/mediapackage -#usr/lib/python3.8/site-packages/botocore/data/mediapackage-vod -#usr/lib/python3.8/site-packages/botocore/data/mediapackage-vod/2018-11-07 -#usr/lib/python3.8/site-packages/botocore/data/mediapackage-vod/2018-11-07/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mediapackage-vod/2018-11-07/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mediapackage/2017-10-12 -#usr/lib/python3.8/site-packages/botocore/data/mediapackage/2017-10-12/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mediapackage/2017-10-12/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mediastore -#usr/lib/python3.8/site-packages/botocore/data/mediastore-data -#usr/lib/python3.8/site-packages/botocore/data/mediastore-data/2017-09-01 -#usr/lib/python3.8/site-packages/botocore/data/mediastore-data/2017-09-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/mediastore-data/2017-09-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mediastore-data/2017-09-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mediastore/2017-09-01 -#usr/lib/python3.8/site-packages/botocore/data/mediastore/2017-09-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/mediastore/2017-09-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mediastore/2017-09-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mediatailor -#usr/lib/python3.8/site-packages/botocore/data/mediatailor/2018-04-23 -#usr/lib/python3.8/site-packages/botocore/data/mediatailor/2018-04-23/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mediatailor/2018-04-23/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/meteringmarketplace -#usr/lib/python3.8/site-packages/botocore/data/meteringmarketplace/2016-01-14 -#usr/lib/python3.8/site-packages/botocore/data/meteringmarketplace/2016-01-14/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/meteringmarketplace/2016-01-14/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/meteringmarketplace/2016-01-14/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mgh -#usr/lib/python3.8/site-packages/botocore/data/mgh/2017-05-31 -#usr/lib/python3.8/site-packages/botocore/data/mgh/2017-05-31/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/mgh/2017-05-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mgh/2017-05-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/migrationhub-config -#usr/lib/python3.8/site-packages/botocore/data/migrationhub-config/2019-06-30 -#usr/lib/python3.8/site-packages/botocore/data/migrationhub-config/2019-06-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/migrationhub-config/2019-06-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mobile -#usr/lib/python3.8/site-packages/botocore/data/mobile/2017-07-01 -#usr/lib/python3.8/site-packages/botocore/data/mobile/2017-07-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/mobile/2017-07-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mobile/2017-07-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mq -#usr/lib/python3.8/site-packages/botocore/data/mq/2017-11-27 -#usr/lib/python3.8/site-packages/botocore/data/mq/2017-11-27/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mq/2017-11-27/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mturk -#usr/lib/python3.8/site-packages/botocore/data/mturk/2017-01-17 -#usr/lib/python3.8/site-packages/botocore/data/mturk/2017-01-17/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/mturk/2017-01-17/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mturk/2017-01-17/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/mwaa -#usr/lib/python3.8/site-packages/botocore/data/mwaa/2020-07-01 -#usr/lib/python3.8/site-packages/botocore/data/mwaa/2020-07-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/mwaa/2020-07-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/neptune -#usr/lib/python3.8/site-packages/botocore/data/neptune/2014-10-31 -#usr/lib/python3.8/site-packages/botocore/data/neptune/2014-10-31/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/neptune/2014-10-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/neptune/2014-10-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/neptune/2014-10-31/service-2.sdk-extras.json -#usr/lib/python3.8/site-packages/botocore/data/neptune/2014-10-31/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/network-firewall -#usr/lib/python3.8/site-packages/botocore/data/network-firewall/2020-11-12 -#usr/lib/python3.8/site-packages/botocore/data/network-firewall/2020-11-12/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/network-firewall/2020-11-12/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/networkmanager -#usr/lib/python3.8/site-packages/botocore/data/networkmanager/2019-07-05 -#usr/lib/python3.8/site-packages/botocore/data/networkmanager/2019-07-05/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/networkmanager/2019-07-05/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/opsworks -#usr/lib/python3.8/site-packages/botocore/data/opsworks/2013-02-18 -#usr/lib/python3.8/site-packages/botocore/data/opsworks/2013-02-18/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/opsworks/2013-02-18/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/opsworks/2013-02-18/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/opsworks/2013-02-18/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/opsworkscm -#usr/lib/python3.8/site-packages/botocore/data/opsworkscm/2016-11-01 -#usr/lib/python3.8/site-packages/botocore/data/opsworkscm/2016-11-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/opsworkscm/2016-11-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/opsworkscm/2016-11-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/opsworkscm/2016-11-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/organizations -#usr/lib/python3.8/site-packages/botocore/data/organizations/2016-11-28 -#usr/lib/python3.8/site-packages/botocore/data/organizations/2016-11-28/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/organizations/2016-11-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/organizations/2016-11-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/outposts -#usr/lib/python3.8/site-packages/botocore/data/outposts/2019-12-03 -#usr/lib/python3.8/site-packages/botocore/data/outposts/2019-12-03/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/outposts/2019-12-03/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/personalize -#usr/lib/python3.8/site-packages/botocore/data/personalize-events -#usr/lib/python3.8/site-packages/botocore/data/personalize-events/2018-03-22 -#usr/lib/python3.8/site-packages/botocore/data/personalize-events/2018-03-22/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/personalize-events/2018-03-22/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/personalize-runtime -#usr/lib/python3.8/site-packages/botocore/data/personalize-runtime/2018-05-22 -#usr/lib/python3.8/site-packages/botocore/data/personalize-runtime/2018-05-22/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/personalize-runtime/2018-05-22/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/personalize/2018-05-22 -#usr/lib/python3.8/site-packages/botocore/data/personalize/2018-05-22/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/personalize/2018-05-22/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/pi -#usr/lib/python3.8/site-packages/botocore/data/pi/2018-02-27 -#usr/lib/python3.8/site-packages/botocore/data/pi/2018-02-27/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/pi/2018-02-27/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/pi/2018-02-27/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/pinpoint -#usr/lib/python3.8/site-packages/botocore/data/pinpoint-email -#usr/lib/python3.8/site-packages/botocore/data/pinpoint-email/2018-07-26 -#usr/lib/python3.8/site-packages/botocore/data/pinpoint-email/2018-07-26/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/pinpoint-email/2018-07-26/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/pinpoint-sms-voice -#usr/lib/python3.8/site-packages/botocore/data/pinpoint-sms-voice/2018-09-05 -#usr/lib/python3.8/site-packages/botocore/data/pinpoint-sms-voice/2018-09-05/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/pinpoint/2016-12-01 -#usr/lib/python3.8/site-packages/botocore/data/pinpoint/2016-12-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/pinpoint/2016-12-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/polly -#usr/lib/python3.8/site-packages/botocore/data/polly/2016-06-10 -#usr/lib/python3.8/site-packages/botocore/data/polly/2016-06-10/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/polly/2016-06-10/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/polly/2016-06-10/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/pricing -#usr/lib/python3.8/site-packages/botocore/data/pricing/2017-10-15 -#usr/lib/python3.8/site-packages/botocore/data/pricing/2017-10-15/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/pricing/2017-10-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/pricing/2017-10-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/qldb -#usr/lib/python3.8/site-packages/botocore/data/qldb-session -#usr/lib/python3.8/site-packages/botocore/data/qldb-session/2019-07-11 -#usr/lib/python3.8/site-packages/botocore/data/qldb-session/2019-07-11/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/qldb-session/2019-07-11/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/qldb/2019-01-02 -#usr/lib/python3.8/site-packages/botocore/data/qldb/2019-01-02/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/qldb/2019-01-02/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/quicksight -#usr/lib/python3.8/site-packages/botocore/data/quicksight/2018-04-01 -#usr/lib/python3.8/site-packages/botocore/data/quicksight/2018-04-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/quicksight/2018-04-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ram -#usr/lib/python3.8/site-packages/botocore/data/ram/2018-01-04 -#usr/lib/python3.8/site-packages/botocore/data/ram/2018-01-04/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ram/2018-01-04/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/rds -#usr/lib/python3.8/site-packages/botocore/data/rds-data -#usr/lib/python3.8/site-packages/botocore/data/rds-data/2018-08-01 -#usr/lib/python3.8/site-packages/botocore/data/rds-data/2018-08-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/rds-data/2018-08-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/rds/2014-09-01 -#usr/lib/python3.8/site-packages/botocore/data/rds/2014-09-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/rds/2014-09-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/rds/2014-09-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/rds/2014-10-31 -#usr/lib/python3.8/site-packages/botocore/data/rds/2014-10-31/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/rds/2014-10-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/rds/2014-10-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/rds/2014-10-31/service-2.sdk-extras.json -#usr/lib/python3.8/site-packages/botocore/data/rds/2014-10-31/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/redshift -#usr/lib/python3.8/site-packages/botocore/data/redshift-data -#usr/lib/python3.8/site-packages/botocore/data/redshift-data/2019-12-20 -#usr/lib/python3.8/site-packages/botocore/data/redshift-data/2019-12-20/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/redshift-data/2019-12-20/paginators-1.sdk-extras.json -#usr/lib/python3.8/site-packages/botocore/data/redshift-data/2019-12-20/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/redshift/2012-12-01 -#usr/lib/python3.8/site-packages/botocore/data/redshift/2012-12-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/redshift/2012-12-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/redshift/2012-12-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/redshift/2012-12-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/rekognition -#usr/lib/python3.8/site-packages/botocore/data/rekognition/2016-06-27 -#usr/lib/python3.8/site-packages/botocore/data/rekognition/2016-06-27/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/rekognition/2016-06-27/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/rekognition/2016-06-27/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/rekognition/2016-06-27/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/resource-groups -#usr/lib/python3.8/site-packages/botocore/data/resource-groups/2017-11-27 -#usr/lib/python3.8/site-packages/botocore/data/resource-groups/2017-11-27/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/resource-groups/2017-11-27/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/resource-groups/2017-11-27/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/resourcegroupstaggingapi -#usr/lib/python3.8/site-packages/botocore/data/resourcegroupstaggingapi/2017-01-26 -#usr/lib/python3.8/site-packages/botocore/data/resourcegroupstaggingapi/2017-01-26/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/resourcegroupstaggingapi/2017-01-26/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/resourcegroupstaggingapi/2017-01-26/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/robomaker -#usr/lib/python3.8/site-packages/botocore/data/robomaker/2018-06-29 -#usr/lib/python3.8/site-packages/botocore/data/robomaker/2018-06-29/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/robomaker/2018-06-29/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/route53 -#usr/lib/python3.8/site-packages/botocore/data/route53/2013-04-01 -#usr/lib/python3.8/site-packages/botocore/data/route53/2013-04-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/route53/2013-04-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/route53/2013-04-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/route53/2013-04-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/route53domains -#usr/lib/python3.8/site-packages/botocore/data/route53domains/2014-05-15 -#usr/lib/python3.8/site-packages/botocore/data/route53domains/2014-05-15/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/route53domains/2014-05-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/route53domains/2014-05-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/route53resolver -#usr/lib/python3.8/site-packages/botocore/data/route53resolver/2018-04-01 -#usr/lib/python3.8/site-packages/botocore/data/route53resolver/2018-04-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/route53resolver/2018-04-01/paginators-1.sdk-extras.json -#usr/lib/python3.8/site-packages/botocore/data/route53resolver/2018-04-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/s3 -#usr/lib/python3.8/site-packages/botocore/data/s3/2006-03-01 -#usr/lib/python3.8/site-packages/botocore/data/s3/2006-03-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/s3/2006-03-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/s3/2006-03-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/s3/2006-03-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/s3control -#usr/lib/python3.8/site-packages/botocore/data/s3control/2018-08-20 -#usr/lib/python3.8/site-packages/botocore/data/s3control/2018-08-20/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/s3control/2018-08-20/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/s3outposts -#usr/lib/python3.8/site-packages/botocore/data/s3outposts/2017-07-25 -#usr/lib/python3.8/site-packages/botocore/data/s3outposts/2017-07-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/s3outposts/2017-07-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-a2i-runtime -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-a2i-runtime/2019-11-07 -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-a2i-runtime/2019-11-07/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-a2i-runtime/2019-11-07/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-featurestore-runtime -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-featurestore-runtime/2020-07-01 -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-featurestore-runtime/2020-07-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-featurestore-runtime/2020-07-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-runtime -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-runtime/2017-05-13 -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-runtime/2017-05-13/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-runtime/2017-05-13/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker-runtime/2017-05-13/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker/2017-07-24 -#usr/lib/python3.8/site-packages/botocore/data/sagemaker/2017-07-24/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker/2017-07-24/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker/2017-07-24/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sagemaker/2017-07-24/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/savingsplans -#usr/lib/python3.8/site-packages/botocore/data/savingsplans/2019-06-28 -#usr/lib/python3.8/site-packages/botocore/data/savingsplans/2019-06-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/savingsplans/2019-06-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/schemas -#usr/lib/python3.8/site-packages/botocore/data/schemas/2019-12-02 -#usr/lib/python3.8/site-packages/botocore/data/schemas/2019-12-02/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/schemas/2019-12-02/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/schemas/2019-12-02/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/sdb -#usr/lib/python3.8/site-packages/botocore/data/sdb/2009-04-15 -#usr/lib/python3.8/site-packages/botocore/data/sdb/2009-04-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sdb/2009-04-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/secretsmanager -#usr/lib/python3.8/site-packages/botocore/data/secretsmanager/2017-10-17 -#usr/lib/python3.8/site-packages/botocore/data/secretsmanager/2017-10-17/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/secretsmanager/2017-10-17/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/secretsmanager/2017-10-17/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/secretsmanager/2017-10-17/service-2.sdk-extras.json -#usr/lib/python3.8/site-packages/botocore/data/securityhub -#usr/lib/python3.8/site-packages/botocore/data/securityhub/2018-10-26 -#usr/lib/python3.8/site-packages/botocore/data/securityhub/2018-10-26/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/securityhub/2018-10-26/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/serverlessrepo -#usr/lib/python3.8/site-packages/botocore/data/serverlessrepo/2017-09-08 -#usr/lib/python3.8/site-packages/botocore/data/serverlessrepo/2017-09-08/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/serverlessrepo/2017-09-08/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/service-quotas -#usr/lib/python3.8/site-packages/botocore/data/service-quotas/2019-06-24 -#usr/lib/python3.8/site-packages/botocore/data/service-quotas/2019-06-24/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/service-quotas/2019-06-24/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/servicecatalog -#usr/lib/python3.8/site-packages/botocore/data/servicecatalog-appregistry -#usr/lib/python3.8/site-packages/botocore/data/servicecatalog-appregistry/2020-06-24 -#usr/lib/python3.8/site-packages/botocore/data/servicecatalog-appregistry/2020-06-24/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/servicecatalog-appregistry/2020-06-24/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/servicecatalog/2015-12-10 -#usr/lib/python3.8/site-packages/botocore/data/servicecatalog/2015-12-10/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/servicecatalog/2015-12-10/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/servicecatalog/2015-12-10/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/servicediscovery -#usr/lib/python3.8/site-packages/botocore/data/servicediscovery/2017-03-14 -#usr/lib/python3.8/site-packages/botocore/data/servicediscovery/2017-03-14/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/servicediscovery/2017-03-14/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/servicediscovery/2017-03-14/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ses -#usr/lib/python3.8/site-packages/botocore/data/ses/2010-12-01 -#usr/lib/python3.8/site-packages/botocore/data/ses/2010-12-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/ses/2010-12-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ses/2010-12-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ses/2010-12-01/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/sesv2 -#usr/lib/python3.8/site-packages/botocore/data/sesv2/2019-09-27 -#usr/lib/python3.8/site-packages/botocore/data/sesv2/2019-09-27/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sesv2/2019-09-27/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/shield -#usr/lib/python3.8/site-packages/botocore/data/shield/2016-06-02 -#usr/lib/python3.8/site-packages/botocore/data/shield/2016-06-02/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/shield/2016-06-02/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/shield/2016-06-02/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/signer -#usr/lib/python3.8/site-packages/botocore/data/signer/2017-08-25 -#usr/lib/python3.8/site-packages/botocore/data/signer/2017-08-25/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/signer/2017-08-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/signer/2017-08-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/signer/2017-08-25/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/sms -#usr/lib/python3.8/site-packages/botocore/data/sms-voice -#usr/lib/python3.8/site-packages/botocore/data/sms-voice/2018-09-05 -#usr/lib/python3.8/site-packages/botocore/data/sms-voice/2018-09-05/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sms/2016-10-24 -#usr/lib/python3.8/site-packages/botocore/data/sms/2016-10-24/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/sms/2016-10-24/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sms/2016-10-24/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/snowball -#usr/lib/python3.8/site-packages/botocore/data/snowball/2016-06-30 -#usr/lib/python3.8/site-packages/botocore/data/snowball/2016-06-30/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/snowball/2016-06-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/snowball/2016-06-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sns -#usr/lib/python3.8/site-packages/botocore/data/sns/2010-03-31 -#usr/lib/python3.8/site-packages/botocore/data/sns/2010-03-31/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/sns/2010-03-31/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sns/2010-03-31/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sqs -#usr/lib/python3.8/site-packages/botocore/data/sqs/2012-11-05 -#usr/lib/python3.8/site-packages/botocore/data/sqs/2012-11-05/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/sqs/2012-11-05/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sqs/2012-11-05/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ssm -#usr/lib/python3.8/site-packages/botocore/data/ssm/2014-11-06 -#usr/lib/python3.8/site-packages/botocore/data/ssm/2014-11-06/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/ssm/2014-11-06/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/ssm/2014-11-06/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/ssm/2014-11-06/waiters-2.json -#usr/lib/python3.8/site-packages/botocore/data/sso -#usr/lib/python3.8/site-packages/botocore/data/sso-admin -#usr/lib/python3.8/site-packages/botocore/data/sso-admin/2020-07-20 -#usr/lib/python3.8/site-packages/botocore/data/sso-admin/2020-07-20/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sso-admin/2020-07-20/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sso-oidc -#usr/lib/python3.8/site-packages/botocore/data/sso-oidc/2019-06-10 -#usr/lib/python3.8/site-packages/botocore/data/sso-oidc/2019-06-10/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sso-oidc/2019-06-10/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sso/2019-06-10 -#usr/lib/python3.8/site-packages/botocore/data/sso/2019-06-10/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sso/2019-06-10/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/stepfunctions -#usr/lib/python3.8/site-packages/botocore/data/stepfunctions/2016-11-23 -#usr/lib/python3.8/site-packages/botocore/data/stepfunctions/2016-11-23/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/stepfunctions/2016-11-23/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/stepfunctions/2016-11-23/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/storagegateway -#usr/lib/python3.8/site-packages/botocore/data/storagegateway/2013-06-30 -#usr/lib/python3.8/site-packages/botocore/data/storagegateway/2013-06-30/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/storagegateway/2013-06-30/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/storagegateway/2013-06-30/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/sts -#usr/lib/python3.8/site-packages/botocore/data/sts/2011-06-15 -#usr/lib/python3.8/site-packages/botocore/data/sts/2011-06-15/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/sts/2011-06-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/sts/2011-06-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/support -#usr/lib/python3.8/site-packages/botocore/data/support/2013-04-15 -#usr/lib/python3.8/site-packages/botocore/data/support/2013-04-15/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/support/2013-04-15/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/support/2013-04-15/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/swf -#usr/lib/python3.8/site-packages/botocore/data/swf/2012-01-25 -#usr/lib/python3.8/site-packages/botocore/data/swf/2012-01-25/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/swf/2012-01-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/swf/2012-01-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/synthetics -#usr/lib/python3.8/site-packages/botocore/data/synthetics/2017-10-11 -#usr/lib/python3.8/site-packages/botocore/data/synthetics/2017-10-11/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/synthetics/2017-10-11/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/textract -#usr/lib/python3.8/site-packages/botocore/data/textract/2018-06-27 -#usr/lib/python3.8/site-packages/botocore/data/textract/2018-06-27/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/textract/2018-06-27/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/timestream-query -#usr/lib/python3.8/site-packages/botocore/data/timestream-query/2018-11-01 -#usr/lib/python3.8/site-packages/botocore/data/timestream-query/2018-11-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/timestream-query/2018-11-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/timestream-write -#usr/lib/python3.8/site-packages/botocore/data/timestream-write/2018-11-01 -#usr/lib/python3.8/site-packages/botocore/data/timestream-write/2018-11-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/timestream-write/2018-11-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/transcribe -#usr/lib/python3.8/site-packages/botocore/data/transcribe/2017-10-26 -#usr/lib/python3.8/site-packages/botocore/data/transcribe/2017-10-26/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/transcribe/2017-10-26/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/transcribe/2017-10-26/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/transfer -#usr/lib/python3.8/site-packages/botocore/data/transfer/2018-11-05 -#usr/lib/python3.8/site-packages/botocore/data/transfer/2018-11-05/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/transfer/2018-11-05/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/translate -#usr/lib/python3.8/site-packages/botocore/data/translate/2017-07-01 -#usr/lib/python3.8/site-packages/botocore/data/translate/2017-07-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/translate/2017-07-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/translate/2017-07-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/waf -#usr/lib/python3.8/site-packages/botocore/data/waf-regional -#usr/lib/python3.8/site-packages/botocore/data/waf-regional/2016-11-28 -#usr/lib/python3.8/site-packages/botocore/data/waf-regional/2016-11-28/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/waf-regional/2016-11-28/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/waf-regional/2016-11-28/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/waf/2015-08-24 -#usr/lib/python3.8/site-packages/botocore/data/waf/2015-08-24/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/waf/2015-08-24/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/waf/2015-08-24/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/wafv2 -#usr/lib/python3.8/site-packages/botocore/data/wafv2/2019-07-29 -#usr/lib/python3.8/site-packages/botocore/data/wafv2/2019-07-29/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/wafv2/2019-07-29/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/workdocs -#usr/lib/python3.8/site-packages/botocore/data/workdocs/2016-05-01 -#usr/lib/python3.8/site-packages/botocore/data/workdocs/2016-05-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/workdocs/2016-05-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/workdocs/2016-05-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/worklink -#usr/lib/python3.8/site-packages/botocore/data/worklink/2018-09-25 -#usr/lib/python3.8/site-packages/botocore/data/worklink/2018-09-25/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/worklink/2018-09-25/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/workmail -#usr/lib/python3.8/site-packages/botocore/data/workmail/2017-10-01 -#usr/lib/python3.8/site-packages/botocore/data/workmail/2017-10-01/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/workmail/2017-10-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/workmail/2017-10-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/workmailmessageflow -#usr/lib/python3.8/site-packages/botocore/data/workmailmessageflow/2019-05-01 -#usr/lib/python3.8/site-packages/botocore/data/workmailmessageflow/2019-05-01/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/workmailmessageflow/2019-05-01/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/workspaces -#usr/lib/python3.8/site-packages/botocore/data/workspaces/2015-04-08 -#usr/lib/python3.8/site-packages/botocore/data/workspaces/2015-04-08/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/workspaces/2015-04-08/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/workspaces/2015-04-08/service-2.json -#usr/lib/python3.8/site-packages/botocore/data/xray -#usr/lib/python3.8/site-packages/botocore/data/xray/2016-04-12 -#usr/lib/python3.8/site-packages/botocore/data/xray/2016-04-12/examples-1.json -#usr/lib/python3.8/site-packages/botocore/data/xray/2016-04-12/paginators-1.json -#usr/lib/python3.8/site-packages/botocore/data/xray/2016-04-12/service-2.json -usr/lib/python3.8/site-packages/botocore/discovery.py -#usr/lib/python3.8/site-packages/botocore/docs -usr/lib/python3.8/site-packages/botocore/docs/__init__.py -#usr/lib/python3.8/site-packages/botocore/docs/bcdoc -usr/lib/python3.8/site-packages/botocore/docs/bcdoc/__init__.py -usr/lib/python3.8/site-packages/botocore/docs/bcdoc/docstringparser.py -usr/lib/python3.8/site-packages/botocore/docs/bcdoc/restdoc.py -usr/lib/python3.8/site-packages/botocore/docs/bcdoc/style.py -usr/lib/python3.8/site-packages/botocore/docs/client.py -usr/lib/python3.8/site-packages/botocore/docs/docstring.py -usr/lib/python3.8/site-packages/botocore/docs/example.py -usr/lib/python3.8/site-packages/botocore/docs/method.py -usr/lib/python3.8/site-packages/botocore/docs/paginator.py -usr/lib/python3.8/site-packages/botocore/docs/params.py -usr/lib/python3.8/site-packages/botocore/docs/service.py -usr/lib/python3.8/site-packages/botocore/docs/shape.py -usr/lib/python3.8/site-packages/botocore/docs/sharedexample.py -usr/lib/python3.8/site-packages/botocore/docs/utils.py -usr/lib/python3.8/site-packages/botocore/docs/waiter.py -usr/lib/python3.8/site-packages/botocore/endpoint.py -usr/lib/python3.8/site-packages/botocore/errorfactory.py -usr/lib/python3.8/site-packages/botocore/eventstream.py -usr/lib/python3.8/site-packages/botocore/exceptions.py -usr/lib/python3.8/site-packages/botocore/handlers.py -usr/lib/python3.8/site-packages/botocore/history.py -usr/lib/python3.8/site-packages/botocore/hooks.py -usr/lib/python3.8/site-packages/botocore/httpsession.py -usr/lib/python3.8/site-packages/botocore/loaders.py -usr/lib/python3.8/site-packages/botocore/model.py -usr/lib/python3.8/site-packages/botocore/monitoring.py -usr/lib/python3.8/site-packages/botocore/paginate.py -usr/lib/python3.8/site-packages/botocore/parsers.py -usr/lib/python3.8/site-packages/botocore/regions.py -usr/lib/python3.8/site-packages/botocore/response.py -#usr/lib/python3.8/site-packages/botocore/retries -usr/lib/python3.8/site-packages/botocore/retries/__init__.py -usr/lib/python3.8/site-packages/botocore/retries/adaptive.py -usr/lib/python3.8/site-packages/botocore/retries/base.py -usr/lib/python3.8/site-packages/botocore/retries/bucket.py -usr/lib/python3.8/site-packages/botocore/retries/quota.py -usr/lib/python3.8/site-packages/botocore/retries/special.py -usr/lib/python3.8/site-packages/botocore/retries/standard.py -usr/lib/python3.8/site-packages/botocore/retries/throttling.py -usr/lib/python3.8/site-packages/botocore/retryhandler.py -usr/lib/python3.8/site-packages/botocore/serialize.py -usr/lib/python3.8/site-packages/botocore/session.py -usr/lib/python3.8/site-packages/botocore/signers.py -usr/lib/python3.8/site-packages/botocore/stub.py -usr/lib/python3.8/site-packages/botocore/translate.py -usr/lib/python3.8/site-packages/botocore/utils.py -usr/lib/python3.8/site-packages/botocore/validate.py -#usr/lib/python3.8/site-packages/botocore/vendored -usr/lib/python3.8/site-packages/botocore/vendored/__init__.py -#usr/lib/python3.8/site-packages/botocore/vendored/requests -usr/lib/python3.8/site-packages/botocore/vendored/requests/__init__.py -usr/lib/python3.8/site-packages/botocore/vendored/requests/exceptions.py -#usr/lib/python3.8/site-packages/botocore/vendored/requests/packages -usr/lib/python3.8/site-packages/botocore/vendored/requests/packages/__init__.py -#usr/lib/python3.8/site-packages/botocore/vendored/requests/packages/urllib3 -usr/lib/python3.8/site-packages/botocore/vendored/requests/packages/urllib3/__init__.py -usr/lib/python3.8/site-packages/botocore/vendored/requests/packages/urllib3/exceptions.py -usr/lib/python3.8/site-packages/botocore/vendored/six.py -usr/lib/python3.8/site-packages/botocore/waiter.py +#usr/lib/python3.10/site-packages/botocore +#usr/lib/python3.10/site-packages/botocore-1.23.21-py3.10.egg-info +#usr/lib/python3.10/site-packages/botocore-1.23.21-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/botocore-1.23.21-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/botocore-1.23.21-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/botocore-1.23.21-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/botocore-1.23.21-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/botocore/__init__.py +usr/lib/python3.10/site-packages/botocore/args.py +usr/lib/python3.10/site-packages/botocore/auth.py +usr/lib/python3.10/site-packages/botocore/awsrequest.py +usr/lib/python3.10/site-packages/botocore/cacert.pem +usr/lib/python3.10/site-packages/botocore/client.py +usr/lib/python3.10/site-packages/botocore/compat.py +usr/lib/python3.10/site-packages/botocore/config.py +usr/lib/python3.10/site-packages/botocore/configloader.py +usr/lib/python3.10/site-packages/botocore/configprovider.py +usr/lib/python3.10/site-packages/botocore/credentials.py +#usr/lib/python3.10/site-packages/botocore/crt +usr/lib/python3.10/site-packages/botocore/crt/__init__.py +usr/lib/python3.10/site-packages/botocore/crt/auth.py +#usr/lib/python3.10/site-packages/botocore/data +#usr/lib/python3.10/site-packages/botocore/data/_retry.json +#usr/lib/python3.10/site-packages/botocore/data/accessanalyzer +#usr/lib/python3.10/site-packages/botocore/data/accessanalyzer/2019-11-01 +#usr/lib/python3.10/site-packages/botocore/data/accessanalyzer/2019-11-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/accessanalyzer/2019-11-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/account +#usr/lib/python3.10/site-packages/botocore/data/account/2021-02-01 +#usr/lib/python3.10/site-packages/botocore/data/account/2021-02-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/account/2021-02-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/acm +#usr/lib/python3.10/site-packages/botocore/data/acm-pca +#usr/lib/python3.10/site-packages/botocore/data/acm-pca/2017-08-22 +#usr/lib/python3.10/site-packages/botocore/data/acm-pca/2017-08-22/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/acm-pca/2017-08-22/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/acm-pca/2017-08-22/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/acm-pca/2017-08-22/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/acm/2015-12-08 +#usr/lib/python3.10/site-packages/botocore/data/acm/2015-12-08/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/acm/2015-12-08/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/acm/2015-12-08/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/acm/2015-12-08/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/alexaforbusiness +#usr/lib/python3.10/site-packages/botocore/data/alexaforbusiness/2017-11-09 +#usr/lib/python3.10/site-packages/botocore/data/alexaforbusiness/2017-11-09/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/alexaforbusiness/2017-11-09/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/alexaforbusiness/2017-11-09/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/amp +#usr/lib/python3.10/site-packages/botocore/data/amp/2020-08-01 +#usr/lib/python3.10/site-packages/botocore/data/amp/2020-08-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/amp/2020-08-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/amp/2020-08-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/amplify +#usr/lib/python3.10/site-packages/botocore/data/amplify/2017-07-25 +#usr/lib/python3.10/site-packages/botocore/data/amplify/2017-07-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/amplify/2017-07-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/amplifybackend +#usr/lib/python3.10/site-packages/botocore/data/amplifybackend/2020-08-11 +#usr/lib/python3.10/site-packages/botocore/data/amplifybackend/2020-08-11/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/amplifybackend/2020-08-11/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/amplifyuibuilder +#usr/lib/python3.10/site-packages/botocore/data/amplifyuibuilder/2021-08-11 +#usr/lib/python3.10/site-packages/botocore/data/amplifyuibuilder/2021-08-11/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/amplifyuibuilder/2021-08-11/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/apigateway +#usr/lib/python3.10/site-packages/botocore/data/apigateway/2015-07-09 +#usr/lib/python3.10/site-packages/botocore/data/apigateway/2015-07-09/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/apigateway/2015-07-09/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/apigateway/2015-07-09/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/apigatewaymanagementapi +#usr/lib/python3.10/site-packages/botocore/data/apigatewaymanagementapi/2018-11-29 +#usr/lib/python3.10/site-packages/botocore/data/apigatewaymanagementapi/2018-11-29/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/apigatewaymanagementapi/2018-11-29/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/apigatewayv2 +#usr/lib/python3.10/site-packages/botocore/data/apigatewayv2/2018-11-29 +#usr/lib/python3.10/site-packages/botocore/data/apigatewayv2/2018-11-29/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/apigatewayv2/2018-11-29/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/appconfig +#usr/lib/python3.10/site-packages/botocore/data/appconfig/2019-10-09 +#usr/lib/python3.10/site-packages/botocore/data/appconfig/2019-10-09/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/appconfig/2019-10-09/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/appconfigdata +#usr/lib/python3.10/site-packages/botocore/data/appconfigdata/2021-11-11 +#usr/lib/python3.10/site-packages/botocore/data/appconfigdata/2021-11-11/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/appconfigdata/2021-11-11/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/appflow +#usr/lib/python3.10/site-packages/botocore/data/appflow/2020-08-23 +#usr/lib/python3.10/site-packages/botocore/data/appflow/2020-08-23/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/appflow/2020-08-23/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/appintegrations +#usr/lib/python3.10/site-packages/botocore/data/appintegrations/2020-07-29 +#usr/lib/python3.10/site-packages/botocore/data/appintegrations/2020-07-29/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/appintegrations/2020-07-29/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/application-autoscaling +#usr/lib/python3.10/site-packages/botocore/data/application-autoscaling/2016-02-06 +#usr/lib/python3.10/site-packages/botocore/data/application-autoscaling/2016-02-06/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/application-autoscaling/2016-02-06/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/application-autoscaling/2016-02-06/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/application-insights +#usr/lib/python3.10/site-packages/botocore/data/application-insights/2018-11-25 +#usr/lib/python3.10/site-packages/botocore/data/application-insights/2018-11-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/application-insights/2018-11-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/applicationcostprofiler +#usr/lib/python3.10/site-packages/botocore/data/applicationcostprofiler/2020-09-10 +#usr/lib/python3.10/site-packages/botocore/data/applicationcostprofiler/2020-09-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/applicationcostprofiler/2020-09-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/appmesh +#usr/lib/python3.10/site-packages/botocore/data/appmesh/2018-10-01 +#usr/lib/python3.10/site-packages/botocore/data/appmesh/2018-10-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/appmesh/2018-10-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/appmesh/2019-01-25 +#usr/lib/python3.10/site-packages/botocore/data/appmesh/2019-01-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/appmesh/2019-01-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/apprunner +#usr/lib/python3.10/site-packages/botocore/data/apprunner/2020-05-15 +#usr/lib/python3.10/site-packages/botocore/data/apprunner/2020-05-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/apprunner/2020-05-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/appstream +#usr/lib/python3.10/site-packages/botocore/data/appstream/2016-12-01 +#usr/lib/python3.10/site-packages/botocore/data/appstream/2016-12-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/appstream/2016-12-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/appstream/2016-12-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/appstream/2016-12-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/appsync +#usr/lib/python3.10/site-packages/botocore/data/appsync/2017-07-25 +#usr/lib/python3.10/site-packages/botocore/data/appsync/2017-07-25/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/appsync/2017-07-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/appsync/2017-07-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/athena +#usr/lib/python3.10/site-packages/botocore/data/athena/2017-05-18 +#usr/lib/python3.10/site-packages/botocore/data/athena/2017-05-18/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/athena/2017-05-18/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/athena/2017-05-18/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/auditmanager +#usr/lib/python3.10/site-packages/botocore/data/auditmanager/2017-07-25 +#usr/lib/python3.10/site-packages/botocore/data/auditmanager/2017-07-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/auditmanager/2017-07-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/autoscaling +#usr/lib/python3.10/site-packages/botocore/data/autoscaling-plans +#usr/lib/python3.10/site-packages/botocore/data/autoscaling-plans/2018-01-06 +#usr/lib/python3.10/site-packages/botocore/data/autoscaling-plans/2018-01-06/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/autoscaling-plans/2018-01-06/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/autoscaling-plans/2018-01-06/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/autoscaling/2011-01-01 +#usr/lib/python3.10/site-packages/botocore/data/autoscaling/2011-01-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/autoscaling/2011-01-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/autoscaling/2011-01-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/backup +#usr/lib/python3.10/site-packages/botocore/data/backup-gateway +#usr/lib/python3.10/site-packages/botocore/data/backup-gateway/2021-01-01 +#usr/lib/python3.10/site-packages/botocore/data/backup-gateway/2021-01-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/backup-gateway/2021-01-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/backup/2018-11-15 +#usr/lib/python3.10/site-packages/botocore/data/backup/2018-11-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/backup/2018-11-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/batch +#usr/lib/python3.10/site-packages/botocore/data/batch/2016-08-10 +#usr/lib/python3.10/site-packages/botocore/data/batch/2016-08-10/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/batch/2016-08-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/batch/2016-08-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/braket +#usr/lib/python3.10/site-packages/botocore/data/braket/2019-09-01 +#usr/lib/python3.10/site-packages/botocore/data/braket/2019-09-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/braket/2019-09-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/budgets +#usr/lib/python3.10/site-packages/botocore/data/budgets/2016-10-20 +#usr/lib/python3.10/site-packages/botocore/data/budgets/2016-10-20/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/budgets/2016-10-20/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/budgets/2016-10-20/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ce +#usr/lib/python3.10/site-packages/botocore/data/ce/2017-10-25 +#usr/lib/python3.10/site-packages/botocore/data/ce/2017-10-25/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/ce/2017-10-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ce/2017-10-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/chime +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-20 +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-20/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-20/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-15 +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-messaging +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-messaging/2021-05-15 +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-messaging/2021-05-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-messaging/2021-05-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/chime/2018-05-01 +#usr/lib/python3.10/site-packages/botocore/data/chime/2018-05-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/chime/2018-05-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloud9 +#usr/lib/python3.10/site-packages/botocore/data/cloud9/2017-09-23 +#usr/lib/python3.10/site-packages/botocore/data/cloud9/2017-09-23/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloud9/2017-09-23/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloud9/2017-09-23/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol +#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30 +#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/clouddirectory +#usr/lib/python3.10/site-packages/botocore/data/clouddirectory/2016-05-10 +#usr/lib/python3.10/site-packages/botocore/data/clouddirectory/2016-05-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/clouddirectory/2016-05-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/clouddirectory/2017-01-11 +#usr/lib/python3.10/site-packages/botocore/data/clouddirectory/2017-01-11/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/clouddirectory/2017-01-11/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/clouddirectory/2017-01-11/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudformation +#usr/lib/python3.10/site-packages/botocore/data/cloudformation/2010-05-15 +#usr/lib/python3.10/site-packages/botocore/data/cloudformation/2010-05-15/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudformation/2010-05-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudformation/2010-05-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudformation/2010-05-15/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-05-31 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-05-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-05-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-05-31/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-10-21 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-10-21/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-10-21/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-10-21/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-11-06 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-11-06/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-11-06/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2014-11-06/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-04-17 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-04-17/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-04-17/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-04-17/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-07-27 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-07-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-07-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-07-27/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-09-17 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-09-17/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-09-17/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2015-09-17/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-01-13 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-01-13/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-01-13/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-01-13/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-01-28 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-01-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-01-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-01-28/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-08-01 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-08-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-08-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-08-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-08-20 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-08-20/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-08-20/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-08-20/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-09-07 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-09-07/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-09-07/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-09-07/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-09-29 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-09-29/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-09-29/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-09-29/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-11-25 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-11-25/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-11-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-11-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2016-11-25/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2017-03-25 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2017-03-25/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2017-03-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2017-03-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2017-03-25/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2017-10-30 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2017-10-30/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2017-10-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2017-10-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2017-10-30/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2018-06-18 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2018-06-18/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2018-06-18/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2018-06-18/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2018-06-18/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2018-11-05 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2018-11-05/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2018-11-05/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2018-11-05/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2018-11-05/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2019-03-26 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2019-03-26/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2019-03-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2019-03-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2019-03-26/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2020-05-31 +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2020-05-31/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2020-05-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2020-05-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudfront/2020-05-31/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudhsm +#usr/lib/python3.10/site-packages/botocore/data/cloudhsm/2014-05-30 +#usr/lib/python3.10/site-packages/botocore/data/cloudhsm/2014-05-30/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudhsm/2014-05-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudhsm/2014-05-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudhsmv2 +#usr/lib/python3.10/site-packages/botocore/data/cloudhsmv2/2017-04-28 +#usr/lib/python3.10/site-packages/botocore/data/cloudhsmv2/2017-04-28/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudhsmv2/2017-04-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudhsmv2/2017-04-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudsearch +#usr/lib/python3.10/site-packages/botocore/data/cloudsearch/2011-02-01 +#usr/lib/python3.10/site-packages/botocore/data/cloudsearch/2011-02-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudsearch/2013-01-01 +#usr/lib/python3.10/site-packages/botocore/data/cloudsearch/2013-01-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudsearch/2013-01-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudsearchdomain +#usr/lib/python3.10/site-packages/botocore/data/cloudsearchdomain/2013-01-01 +#usr/lib/python3.10/site-packages/botocore/data/cloudsearchdomain/2013-01-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudsearchdomain/2013-01-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudtrail +#usr/lib/python3.10/site-packages/botocore/data/cloudtrail/2013-11-01 +#usr/lib/python3.10/site-packages/botocore/data/cloudtrail/2013-11-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudtrail/2013-11-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudtrail/2013-11-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudwatch +#usr/lib/python3.10/site-packages/botocore/data/cloudwatch/2010-08-01 +#usr/lib/python3.10/site-packages/botocore/data/cloudwatch/2010-08-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudwatch/2010-08-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cloudwatch/2010-08-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cloudwatch/2010-08-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/codeartifact +#usr/lib/python3.10/site-packages/botocore/data/codeartifact/2018-09-22 +#usr/lib/python3.10/site-packages/botocore/data/codeartifact/2018-09-22/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/codeartifact/2018-09-22/paginators-1.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/codeartifact/2018-09-22/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/codebuild +#usr/lib/python3.10/site-packages/botocore/data/codebuild/2016-10-06 +#usr/lib/python3.10/site-packages/botocore/data/codebuild/2016-10-06/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/codebuild/2016-10-06/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/codebuild/2016-10-06/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/codecommit +#usr/lib/python3.10/site-packages/botocore/data/codecommit/2015-04-13 +#usr/lib/python3.10/site-packages/botocore/data/codecommit/2015-04-13/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/codecommit/2015-04-13/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/codecommit/2015-04-13/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/codedeploy +#usr/lib/python3.10/site-packages/botocore/data/codedeploy/2014-10-06 +#usr/lib/python3.10/site-packages/botocore/data/codedeploy/2014-10-06/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/codedeploy/2014-10-06/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/codedeploy/2014-10-06/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/codedeploy/2014-10-06/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/codeguru-reviewer +#usr/lib/python3.10/site-packages/botocore/data/codeguru-reviewer/2019-09-19 +#usr/lib/python3.10/site-packages/botocore/data/codeguru-reviewer/2019-09-19/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/codeguru-reviewer/2019-09-19/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/codeguru-reviewer/2019-09-19/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/codeguruprofiler +#usr/lib/python3.10/site-packages/botocore/data/codeguruprofiler/2019-07-18 +#usr/lib/python3.10/site-packages/botocore/data/codeguruprofiler/2019-07-18/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/codeguruprofiler/2019-07-18/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/codepipeline +#usr/lib/python3.10/site-packages/botocore/data/codepipeline/2015-07-09 +#usr/lib/python3.10/site-packages/botocore/data/codepipeline/2015-07-09/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/codepipeline/2015-07-09/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/codepipeline/2015-07-09/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/codestar +#usr/lib/python3.10/site-packages/botocore/data/codestar-connections +#usr/lib/python3.10/site-packages/botocore/data/codestar-connections/2019-12-01 +#usr/lib/python3.10/site-packages/botocore/data/codestar-connections/2019-12-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/codestar-connections/2019-12-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/codestar-notifications +#usr/lib/python3.10/site-packages/botocore/data/codestar-notifications/2019-10-15 +#usr/lib/python3.10/site-packages/botocore/data/codestar-notifications/2019-10-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/codestar-notifications/2019-10-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/codestar/2017-04-19 +#usr/lib/python3.10/site-packages/botocore/data/codestar/2017-04-19/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/codestar/2017-04-19/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/codestar/2017-04-19/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cognito-identity +#usr/lib/python3.10/site-packages/botocore/data/cognito-identity/2014-06-30 +#usr/lib/python3.10/site-packages/botocore/data/cognito-identity/2014-06-30/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cognito-identity/2014-06-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cognito-identity/2014-06-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cognito-idp +#usr/lib/python3.10/site-packages/botocore/data/cognito-idp/2016-04-18 +#usr/lib/python3.10/site-packages/botocore/data/cognito-idp/2016-04-18/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cognito-idp/2016-04-18/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cognito-idp/2016-04-18/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cognito-sync +#usr/lib/python3.10/site-packages/botocore/data/cognito-sync/2014-06-30 +#usr/lib/python3.10/site-packages/botocore/data/cognito-sync/2014-06-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cognito-sync/2014-06-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/comprehend +#usr/lib/python3.10/site-packages/botocore/data/comprehend/2017-11-27 +#usr/lib/python3.10/site-packages/botocore/data/comprehend/2017-11-27/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/comprehend/2017-11-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/comprehend/2017-11-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/comprehendmedical +#usr/lib/python3.10/site-packages/botocore/data/comprehendmedical/2018-10-30 +#usr/lib/python3.10/site-packages/botocore/data/comprehendmedical/2018-10-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/comprehendmedical/2018-10-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/compute-optimizer +#usr/lib/python3.10/site-packages/botocore/data/compute-optimizer/2019-11-01 +#usr/lib/python3.10/site-packages/botocore/data/compute-optimizer/2019-11-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/compute-optimizer/2019-11-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/config +#usr/lib/python3.10/site-packages/botocore/data/config/2014-11-12 +#usr/lib/python3.10/site-packages/botocore/data/config/2014-11-12/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/config/2014-11-12/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/config/2014-11-12/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/connect +#usr/lib/python3.10/site-packages/botocore/data/connect-contact-lens +#usr/lib/python3.10/site-packages/botocore/data/connect-contact-lens/2020-08-21 +#usr/lib/python3.10/site-packages/botocore/data/connect-contact-lens/2020-08-21/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/connect-contact-lens/2020-08-21/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/connect/2017-08-08 +#usr/lib/python3.10/site-packages/botocore/data/connect/2017-08-08/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/connect/2017-08-08/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/connect/2017-08-08/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/connectparticipant +#usr/lib/python3.10/site-packages/botocore/data/connectparticipant/2018-09-07 +#usr/lib/python3.10/site-packages/botocore/data/connectparticipant/2018-09-07/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/connectparticipant/2018-09-07/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/cur +#usr/lib/python3.10/site-packages/botocore/data/cur/2017-01-06 +#usr/lib/python3.10/site-packages/botocore/data/cur/2017-01-06/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/cur/2017-01-06/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/cur/2017-01-06/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/customer-profiles +#usr/lib/python3.10/site-packages/botocore/data/customer-profiles/2020-08-15 +#usr/lib/python3.10/site-packages/botocore/data/customer-profiles/2020-08-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/customer-profiles/2020-08-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/databrew +#usr/lib/python3.10/site-packages/botocore/data/databrew/2017-07-25 +#usr/lib/python3.10/site-packages/botocore/data/databrew/2017-07-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/databrew/2017-07-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/dataexchange +#usr/lib/python3.10/site-packages/botocore/data/dataexchange/2017-07-25 +#usr/lib/python3.10/site-packages/botocore/data/dataexchange/2017-07-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/dataexchange/2017-07-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/datapipeline +#usr/lib/python3.10/site-packages/botocore/data/datapipeline/2012-10-29 +#usr/lib/python3.10/site-packages/botocore/data/datapipeline/2012-10-29/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/datapipeline/2012-10-29/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/datasync +#usr/lib/python3.10/site-packages/botocore/data/datasync/2018-11-09 +#usr/lib/python3.10/site-packages/botocore/data/datasync/2018-11-09/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/datasync/2018-11-09/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/dax +#usr/lib/python3.10/site-packages/botocore/data/dax/2017-04-19 +#usr/lib/python3.10/site-packages/botocore/data/dax/2017-04-19/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/dax/2017-04-19/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/dax/2017-04-19/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/detective +#usr/lib/python3.10/site-packages/botocore/data/detective/2018-10-26 +#usr/lib/python3.10/site-packages/botocore/data/detective/2018-10-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/detective/2018-10-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/devicefarm +#usr/lib/python3.10/site-packages/botocore/data/devicefarm/2015-06-23 +#usr/lib/python3.10/site-packages/botocore/data/devicefarm/2015-06-23/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/devicefarm/2015-06-23/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/devicefarm/2015-06-23/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/devops-guru +#usr/lib/python3.10/site-packages/botocore/data/devops-guru/2020-12-01 +#usr/lib/python3.10/site-packages/botocore/data/devops-guru/2020-12-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/devops-guru/2020-12-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/directconnect +#usr/lib/python3.10/site-packages/botocore/data/directconnect/2012-10-25 +#usr/lib/python3.10/site-packages/botocore/data/directconnect/2012-10-25/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/directconnect/2012-10-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/directconnect/2012-10-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/discovery +#usr/lib/python3.10/site-packages/botocore/data/discovery/2015-11-01 +#usr/lib/python3.10/site-packages/botocore/data/discovery/2015-11-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/discovery/2015-11-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/discovery/2015-11-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/dlm +#usr/lib/python3.10/site-packages/botocore/data/dlm/2018-01-12 +#usr/lib/python3.10/site-packages/botocore/data/dlm/2018-01-12/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/dlm/2018-01-12/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/dlm/2018-01-12/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/dms +#usr/lib/python3.10/site-packages/botocore/data/dms/2016-01-01 +#usr/lib/python3.10/site-packages/botocore/data/dms/2016-01-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/dms/2016-01-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/dms/2016-01-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/dms/2016-01-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/docdb +#usr/lib/python3.10/site-packages/botocore/data/docdb/2014-10-31 +#usr/lib/python3.10/site-packages/botocore/data/docdb/2014-10-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/docdb/2014-10-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/docdb/2014-10-31/service-2.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/docdb/2014-10-31/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/drs +#usr/lib/python3.10/site-packages/botocore/data/drs/2020-02-26 +#usr/lib/python3.10/site-packages/botocore/data/drs/2020-02-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/drs/2020-02-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ds +#usr/lib/python3.10/site-packages/botocore/data/ds/2015-04-16 +#usr/lib/python3.10/site-packages/botocore/data/ds/2015-04-16/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/ds/2015-04-16/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ds/2015-04-16/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/dynamodb +#usr/lib/python3.10/site-packages/botocore/data/dynamodb/2012-08-10 +#usr/lib/python3.10/site-packages/botocore/data/dynamodb/2012-08-10/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/dynamodb/2012-08-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/dynamodb/2012-08-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/dynamodb/2012-08-10/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/dynamodbstreams +#usr/lib/python3.10/site-packages/botocore/data/dynamodbstreams/2012-08-10 +#usr/lib/python3.10/site-packages/botocore/data/dynamodbstreams/2012-08-10/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/dynamodbstreams/2012-08-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/dynamodbstreams/2012-08-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ebs +#usr/lib/python3.10/site-packages/botocore/data/ebs/2019-11-02 +#usr/lib/python3.10/site-packages/botocore/data/ebs/2019-11-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ebs/2019-11-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2 +#usr/lib/python3.10/site-packages/botocore/data/ec2-instance-connect +#usr/lib/python3.10/site-packages/botocore/data/ec2-instance-connect/2018-04-02 +#usr/lib/python3.10/site-packages/botocore/data/ec2-instance-connect/2018-04-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2-instance-connect/2018-04-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2014-09-01 +#usr/lib/python3.10/site-packages/botocore/data/ec2/2014-09-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2014-09-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2014-09-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2014-10-01 +#usr/lib/python3.10/site-packages/botocore/data/ec2/2014-10-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2014-10-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2014-10-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-03-01 +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-03-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-03-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-03-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-04-15 +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-04-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-04-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-04-15/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-10-01 +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-10-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-10-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2015-10-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-04-01 +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-04-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-04-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-04-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-09-15 +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-09-15/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-09-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-09-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-09-15/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-11-15 +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-11-15/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-11-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-11-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ec2/2016-11-15/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/ecr +#usr/lib/python3.10/site-packages/botocore/data/ecr-public +#usr/lib/python3.10/site-packages/botocore/data/ecr-public/2020-10-30 +#usr/lib/python3.10/site-packages/botocore/data/ecr-public/2020-10-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ecr-public/2020-10-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ecr/2015-09-21 +#usr/lib/python3.10/site-packages/botocore/data/ecr/2015-09-21/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/ecr/2015-09-21/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ecr/2015-09-21/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ecr/2015-09-21/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/ecs +#usr/lib/python3.10/site-packages/botocore/data/ecs/2014-11-13 +#usr/lib/python3.10/site-packages/botocore/data/ecs/2014-11-13/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/ecs/2014-11-13/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ecs/2014-11-13/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ecs/2014-11-13/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/efs +#usr/lib/python3.10/site-packages/botocore/data/efs/2015-02-01 +#usr/lib/python3.10/site-packages/botocore/data/efs/2015-02-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/efs/2015-02-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/efs/2015-02-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/eks +#usr/lib/python3.10/site-packages/botocore/data/eks/2017-11-01 +#usr/lib/python3.10/site-packages/botocore/data/eks/2017-11-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/eks/2017-11-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/eks/2017-11-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/eks/2017-11-01/service-2.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/eks/2017-11-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/elastic-inference +#usr/lib/python3.10/site-packages/botocore/data/elastic-inference/2017-07-25 +#usr/lib/python3.10/site-packages/botocore/data/elastic-inference/2017-07-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/elastic-inference/2017-07-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/elasticache +#usr/lib/python3.10/site-packages/botocore/data/elasticache/2014-09-30 +#usr/lib/python3.10/site-packages/botocore/data/elasticache/2014-09-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/elasticache/2014-09-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/elasticache/2014-09-30/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/elasticache/2015-02-02 +#usr/lib/python3.10/site-packages/botocore/data/elasticache/2015-02-02/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/elasticache/2015-02-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/elasticache/2015-02-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/elasticache/2015-02-02/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/elasticbeanstalk +#usr/lib/python3.10/site-packages/botocore/data/elasticbeanstalk/2010-12-01 +#usr/lib/python3.10/site-packages/botocore/data/elasticbeanstalk/2010-12-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/elasticbeanstalk/2010-12-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/elasticbeanstalk/2010-12-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/elasticbeanstalk/2010-12-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/elastictranscoder +#usr/lib/python3.10/site-packages/botocore/data/elastictranscoder/2012-09-25 +#usr/lib/python3.10/site-packages/botocore/data/elastictranscoder/2012-09-25/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/elastictranscoder/2012-09-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/elastictranscoder/2012-09-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/elastictranscoder/2012-09-25/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/elb +#usr/lib/python3.10/site-packages/botocore/data/elb/2012-06-01 +#usr/lib/python3.10/site-packages/botocore/data/elb/2012-06-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/elb/2012-06-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/elb/2012-06-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/elb/2012-06-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/elbv2 +#usr/lib/python3.10/site-packages/botocore/data/elbv2/2015-12-01 +#usr/lib/python3.10/site-packages/botocore/data/elbv2/2015-12-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/elbv2/2015-12-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/elbv2/2015-12-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/elbv2/2015-12-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/emr +#usr/lib/python3.10/site-packages/botocore/data/emr-containers +#usr/lib/python3.10/site-packages/botocore/data/emr-containers/2020-10-01 +#usr/lib/python3.10/site-packages/botocore/data/emr-containers/2020-10-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/emr-containers/2020-10-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/emr/2009-03-31 +#usr/lib/python3.10/site-packages/botocore/data/emr/2009-03-31/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/emr/2009-03-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/emr/2009-03-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/emr/2009-03-31/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/endpoints.json +#usr/lib/python3.10/site-packages/botocore/data/es +#usr/lib/python3.10/site-packages/botocore/data/es/2015-01-01 +#usr/lib/python3.10/site-packages/botocore/data/es/2015-01-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/es/2015-01-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/es/2015-01-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/events +#usr/lib/python3.10/site-packages/botocore/data/events/2014-02-03 +#usr/lib/python3.10/site-packages/botocore/data/events/2014-02-03/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/events/2015-10-07 +#usr/lib/python3.10/site-packages/botocore/data/events/2015-10-07/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/events/2015-10-07/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/events/2015-10-07/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/evidently +#usr/lib/python3.10/site-packages/botocore/data/evidently/2021-02-01 +#usr/lib/python3.10/site-packages/botocore/data/evidently/2021-02-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/evidently/2021-02-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/finspace +#usr/lib/python3.10/site-packages/botocore/data/finspace-data +#usr/lib/python3.10/site-packages/botocore/data/finspace-data/2020-07-13 +#usr/lib/python3.10/site-packages/botocore/data/finspace-data/2020-07-13/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/finspace-data/2020-07-13/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/finspace/2021-03-12 +#usr/lib/python3.10/site-packages/botocore/data/finspace/2021-03-12/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/finspace/2021-03-12/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/firehose +#usr/lib/python3.10/site-packages/botocore/data/firehose/2015-08-04 +#usr/lib/python3.10/site-packages/botocore/data/firehose/2015-08-04/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/firehose/2015-08-04/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/firehose/2015-08-04/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/fis +#usr/lib/python3.10/site-packages/botocore/data/fis/2020-12-01 +#usr/lib/python3.10/site-packages/botocore/data/fis/2020-12-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/fis/2020-12-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/fms +#usr/lib/python3.10/site-packages/botocore/data/fms/2018-01-01 +#usr/lib/python3.10/site-packages/botocore/data/fms/2018-01-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/fms/2018-01-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/fms/2018-01-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/forecast +#usr/lib/python3.10/site-packages/botocore/data/forecast/2018-06-26 +#usr/lib/python3.10/site-packages/botocore/data/forecast/2018-06-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/forecast/2018-06-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/forecastquery +#usr/lib/python3.10/site-packages/botocore/data/forecastquery/2018-06-26 +#usr/lib/python3.10/site-packages/botocore/data/forecastquery/2018-06-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/forecastquery/2018-06-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/frauddetector +#usr/lib/python3.10/site-packages/botocore/data/frauddetector/2019-11-15 +#usr/lib/python3.10/site-packages/botocore/data/frauddetector/2019-11-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/frauddetector/2019-11-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/fsx +#usr/lib/python3.10/site-packages/botocore/data/fsx/2018-03-01 +#usr/lib/python3.10/site-packages/botocore/data/fsx/2018-03-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/fsx/2018-03-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/gamelift +#usr/lib/python3.10/site-packages/botocore/data/gamelift/2015-10-01 +#usr/lib/python3.10/site-packages/botocore/data/gamelift/2015-10-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/gamelift/2015-10-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/gamelift/2015-10-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/glacier +#usr/lib/python3.10/site-packages/botocore/data/glacier/2012-06-01 +#usr/lib/python3.10/site-packages/botocore/data/glacier/2012-06-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/glacier/2012-06-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/glacier/2012-06-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/glacier/2012-06-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/globalaccelerator +#usr/lib/python3.10/site-packages/botocore/data/globalaccelerator/2018-08-08 +#usr/lib/python3.10/site-packages/botocore/data/globalaccelerator/2018-08-08/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/globalaccelerator/2018-08-08/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/glue +#usr/lib/python3.10/site-packages/botocore/data/glue/2017-03-31 +#usr/lib/python3.10/site-packages/botocore/data/glue/2017-03-31/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/glue/2017-03-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/glue/2017-03-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/grafana +#usr/lib/python3.10/site-packages/botocore/data/grafana/2020-08-18 +#usr/lib/python3.10/site-packages/botocore/data/grafana/2020-08-18/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/grafana/2020-08-18/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/greengrass +#usr/lib/python3.10/site-packages/botocore/data/greengrass/2017-06-07 +#usr/lib/python3.10/site-packages/botocore/data/greengrass/2017-06-07/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/greengrass/2017-06-07/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/greengrassv2 +#usr/lib/python3.10/site-packages/botocore/data/greengrassv2/2020-11-30 +#usr/lib/python3.10/site-packages/botocore/data/greengrassv2/2020-11-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/greengrassv2/2020-11-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/groundstation +#usr/lib/python3.10/site-packages/botocore/data/groundstation/2019-05-23 +#usr/lib/python3.10/site-packages/botocore/data/groundstation/2019-05-23/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/groundstation/2019-05-23/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/guardduty +#usr/lib/python3.10/site-packages/botocore/data/guardduty/2017-11-28 +#usr/lib/python3.10/site-packages/botocore/data/guardduty/2017-11-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/guardduty/2017-11-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/health +#usr/lib/python3.10/site-packages/botocore/data/health/2016-08-04 +#usr/lib/python3.10/site-packages/botocore/data/health/2016-08-04/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/health/2016-08-04/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/health/2016-08-04/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/healthlake +#usr/lib/python3.10/site-packages/botocore/data/healthlake/2017-07-01 +#usr/lib/python3.10/site-packages/botocore/data/healthlake/2017-07-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/healthlake/2017-07-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/honeycode +#usr/lib/python3.10/site-packages/botocore/data/honeycode/2020-03-01 +#usr/lib/python3.10/site-packages/botocore/data/honeycode/2020-03-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/honeycode/2020-03-01/paginators-1.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/honeycode/2020-03-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iam +#usr/lib/python3.10/site-packages/botocore/data/iam/2010-05-08 +#usr/lib/python3.10/site-packages/botocore/data/iam/2010-05-08/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/iam/2010-05-08/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iam/2010-05-08/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iam/2010-05-08/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/identitystore +#usr/lib/python3.10/site-packages/botocore/data/identitystore/2020-06-15 +#usr/lib/python3.10/site-packages/botocore/data/identitystore/2020-06-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/identitystore/2020-06-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/imagebuilder +#usr/lib/python3.10/site-packages/botocore/data/imagebuilder/2019-12-02 +#usr/lib/python3.10/site-packages/botocore/data/imagebuilder/2019-12-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/imagebuilder/2019-12-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/importexport +#usr/lib/python3.10/site-packages/botocore/data/importexport/2010-06-01 +#usr/lib/python3.10/site-packages/botocore/data/importexport/2010-06-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/importexport/2010-06-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/inspector +#usr/lib/python3.10/site-packages/botocore/data/inspector/2015-08-18 +#usr/lib/python3.10/site-packages/botocore/data/inspector/2015-08-18/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/inspector/2016-02-16 +#usr/lib/python3.10/site-packages/botocore/data/inspector/2016-02-16/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/inspector/2016-02-16/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/inspector/2016-02-16/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/inspector2 +#usr/lib/python3.10/site-packages/botocore/data/inspector2/2020-06-08 +#usr/lib/python3.10/site-packages/botocore/data/inspector2/2020-06-08/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/inspector2/2020-06-08/paginators-1.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/inspector2/2020-06-08/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iot +#usr/lib/python3.10/site-packages/botocore/data/iot-data +#usr/lib/python3.10/site-packages/botocore/data/iot-data/2015-05-28 +#usr/lib/python3.10/site-packages/botocore/data/iot-data/2015-05-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iot-data/2015-05-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iot-jobs-data +#usr/lib/python3.10/site-packages/botocore/data/iot-jobs-data/2017-09-29 +#usr/lib/python3.10/site-packages/botocore/data/iot-jobs-data/2017-09-29/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/iot-jobs-data/2017-09-29/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iot-jobs-data/2017-09-29/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iot/2015-05-28 +#usr/lib/python3.10/site-packages/botocore/data/iot/2015-05-28/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/iot/2015-05-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iot/2015-05-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iot1click-devices +#usr/lib/python3.10/site-packages/botocore/data/iot1click-devices/2018-05-14 +#usr/lib/python3.10/site-packages/botocore/data/iot1click-devices/2018-05-14/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iot1click-devices/2018-05-14/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iot1click-projects +#usr/lib/python3.10/site-packages/botocore/data/iot1click-projects/2018-05-14 +#usr/lib/python3.10/site-packages/botocore/data/iot1click-projects/2018-05-14/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/iot1click-projects/2018-05-14/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iot1click-projects/2018-05-14/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iotanalytics +#usr/lib/python3.10/site-packages/botocore/data/iotanalytics/2017-11-27 +#usr/lib/python3.10/site-packages/botocore/data/iotanalytics/2017-11-27/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/iotanalytics/2017-11-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iotanalytics/2017-11-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iotdeviceadvisor +#usr/lib/python3.10/site-packages/botocore/data/iotdeviceadvisor/2020-09-18 +#usr/lib/python3.10/site-packages/botocore/data/iotdeviceadvisor/2020-09-18/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iotdeviceadvisor/2020-09-18/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iotevents +#usr/lib/python3.10/site-packages/botocore/data/iotevents-data +#usr/lib/python3.10/site-packages/botocore/data/iotevents-data/2018-10-23 +#usr/lib/python3.10/site-packages/botocore/data/iotevents-data/2018-10-23/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iotevents-data/2018-10-23/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iotevents/2018-07-27 +#usr/lib/python3.10/site-packages/botocore/data/iotevents/2018-07-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iotevents/2018-07-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iotfleethub +#usr/lib/python3.10/site-packages/botocore/data/iotfleethub/2020-11-03 +#usr/lib/python3.10/site-packages/botocore/data/iotfleethub/2020-11-03/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iotfleethub/2020-11-03/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iotsecuretunneling +#usr/lib/python3.10/site-packages/botocore/data/iotsecuretunneling/2018-10-05 +#usr/lib/python3.10/site-packages/botocore/data/iotsecuretunneling/2018-10-05/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iotsecuretunneling/2018-10-05/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iotsitewise +#usr/lib/python3.10/site-packages/botocore/data/iotsitewise/2019-12-02 +#usr/lib/python3.10/site-packages/botocore/data/iotsitewise/2019-12-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iotsitewise/2019-12-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iotsitewise/2019-12-02/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/iotthingsgraph +#usr/lib/python3.10/site-packages/botocore/data/iotthingsgraph/2018-09-06 +#usr/lib/python3.10/site-packages/botocore/data/iotthingsgraph/2018-09-06/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iotthingsgraph/2018-09-06/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iottwinmaker +#usr/lib/python3.10/site-packages/botocore/data/iottwinmaker/2021-11-29 +#usr/lib/python3.10/site-packages/botocore/data/iottwinmaker/2021-11-29/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iottwinmaker/2021-11-29/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/iottwinmaker/2021-11-29/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/iotwireless +#usr/lib/python3.10/site-packages/botocore/data/iotwireless/2020-11-22 +#usr/lib/python3.10/site-packages/botocore/data/iotwireless/2020-11-22/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/iotwireless/2020-11-22/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ivs +#usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14 +#usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kafka +#usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14 +#usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kafkaconnect +#usr/lib/python3.10/site-packages/botocore/data/kafkaconnect/2021-09-14 +#usr/lib/python3.10/site-packages/botocore/data/kafkaconnect/2021-09-14/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kafkaconnect/2021-09-14/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kendra +#usr/lib/python3.10/site-packages/botocore/data/kendra/2019-02-03 +#usr/lib/python3.10/site-packages/botocore/data/kendra/2019-02-03/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kendra/2019-02-03/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-archived-media +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-archived-media/2017-09-30 +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-archived-media/2017-09-30/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-archived-media/2017-09-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-archived-media/2017-09-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-media +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-media/2017-09-30 +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-media/2017-09-30/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-media/2017-09-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-media/2017-09-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-signaling +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-signaling/2019-12-04 +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-signaling/2019-12-04/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis-video-signaling/2019-12-04/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis/2013-12-02 +#usr/lib/python3.10/site-packages/botocore/data/kinesis/2013-12-02/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis/2013-12-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis/2013-12-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kinesis/2013-12-02/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/kinesisanalytics +#usr/lib/python3.10/site-packages/botocore/data/kinesisanalytics/2015-08-14 +#usr/lib/python3.10/site-packages/botocore/data/kinesisanalytics/2015-08-14/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesisanalytics/2015-08-14/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesisanalytics/2015-08-14/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kinesisanalyticsv2 +#usr/lib/python3.10/site-packages/botocore/data/kinesisanalyticsv2/2018-05-23 +#usr/lib/python3.10/site-packages/botocore/data/kinesisanalyticsv2/2018-05-23/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesisanalyticsv2/2018-05-23/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kinesisvideo +#usr/lib/python3.10/site-packages/botocore/data/kinesisvideo/2017-09-30 +#usr/lib/python3.10/site-packages/botocore/data/kinesisvideo/2017-09-30/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesisvideo/2017-09-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kinesisvideo/2017-09-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/kms +#usr/lib/python3.10/site-packages/botocore/data/kms/2014-11-01 +#usr/lib/python3.10/site-packages/botocore/data/kms/2014-11-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/kms/2014-11-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/kms/2014-11-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lakeformation +#usr/lib/python3.10/site-packages/botocore/data/lakeformation/2017-03-31 +#usr/lib/python3.10/site-packages/botocore/data/lakeformation/2017-03-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/lakeformation/2017-03-31/paginators-1.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/lakeformation/2017-03-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lambda +#usr/lib/python3.10/site-packages/botocore/data/lambda/2014-11-11 +#usr/lib/python3.10/site-packages/botocore/data/lambda/2014-11-11/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lambda/2015-03-31 +#usr/lib/python3.10/site-packages/botocore/data/lambda/2015-03-31/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/lambda/2015-03-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/lambda/2015-03-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lambda/2015-03-31/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/lex-models +#usr/lib/python3.10/site-packages/botocore/data/lex-models/2017-04-19 +#usr/lib/python3.10/site-packages/botocore/data/lex-models/2017-04-19/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/lex-models/2017-04-19/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/lex-models/2017-04-19/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lex-runtime +#usr/lib/python3.10/site-packages/botocore/data/lex-runtime/2016-11-28 +#usr/lib/python3.10/site-packages/botocore/data/lex-runtime/2016-11-28/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/lex-runtime/2016-11-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/lex-runtime/2016-11-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lexv2-models +#usr/lib/python3.10/site-packages/botocore/data/lexv2-models/2020-08-07 +#usr/lib/python3.10/site-packages/botocore/data/lexv2-models/2020-08-07/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/lexv2-models/2020-08-07/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lexv2-models/2020-08-07/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/lexv2-runtime +#usr/lib/python3.10/site-packages/botocore/data/lexv2-runtime/2020-08-07 +#usr/lib/python3.10/site-packages/botocore/data/lexv2-runtime/2020-08-07/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/lexv2-runtime/2020-08-07/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/license-manager +#usr/lib/python3.10/site-packages/botocore/data/license-manager/2018-08-01 +#usr/lib/python3.10/site-packages/botocore/data/license-manager/2018-08-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/license-manager/2018-08-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lightsail +#usr/lib/python3.10/site-packages/botocore/data/lightsail/2016-11-28 +#usr/lib/python3.10/site-packages/botocore/data/lightsail/2016-11-28/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/lightsail/2016-11-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/lightsail/2016-11-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/location +#usr/lib/python3.10/site-packages/botocore/data/location/2020-11-19 +#usr/lib/python3.10/site-packages/botocore/data/location/2020-11-19/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/location/2020-11-19/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/logs +#usr/lib/python3.10/site-packages/botocore/data/logs/2014-03-28 +#usr/lib/python3.10/site-packages/botocore/data/logs/2014-03-28/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/logs/2014-03-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/logs/2014-03-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lookoutequipment +#usr/lib/python3.10/site-packages/botocore/data/lookoutequipment/2020-12-15 +#usr/lib/python3.10/site-packages/botocore/data/lookoutequipment/2020-12-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/lookoutequipment/2020-12-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lookoutmetrics +#usr/lib/python3.10/site-packages/botocore/data/lookoutmetrics/2017-07-25 +#usr/lib/python3.10/site-packages/botocore/data/lookoutmetrics/2017-07-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/lookoutmetrics/2017-07-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/lookoutvision +#usr/lib/python3.10/site-packages/botocore/data/lookoutvision/2020-11-20 +#usr/lib/python3.10/site-packages/botocore/data/lookoutvision/2020-11-20/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/lookoutvision/2020-11-20/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/machinelearning +#usr/lib/python3.10/site-packages/botocore/data/machinelearning/2014-12-12 +#usr/lib/python3.10/site-packages/botocore/data/machinelearning/2014-12-12/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/machinelearning/2014-12-12/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/machinelearning/2014-12-12/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/machinelearning/2014-12-12/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/macie +#usr/lib/python3.10/site-packages/botocore/data/macie/2017-12-19 +#usr/lib/python3.10/site-packages/botocore/data/macie/2017-12-19/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/macie/2017-12-19/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/macie/2017-12-19/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/macie2 +#usr/lib/python3.10/site-packages/botocore/data/macie2/2020-01-01 +#usr/lib/python3.10/site-packages/botocore/data/macie2/2020-01-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/macie2/2020-01-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/managedblockchain +#usr/lib/python3.10/site-packages/botocore/data/managedblockchain/2018-09-24 +#usr/lib/python3.10/site-packages/botocore/data/managedblockchain/2018-09-24/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/managedblockchain/2018-09-24/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/marketplace-catalog +#usr/lib/python3.10/site-packages/botocore/data/marketplace-catalog/2018-09-17 +#usr/lib/python3.10/site-packages/botocore/data/marketplace-catalog/2018-09-17/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/marketplace-catalog/2018-09-17/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/marketplace-entitlement +#usr/lib/python3.10/site-packages/botocore/data/marketplace-entitlement/2017-01-11 +#usr/lib/python3.10/site-packages/botocore/data/marketplace-entitlement/2017-01-11/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/marketplace-entitlement/2017-01-11/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/marketplace-entitlement/2017-01-11/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/marketplacecommerceanalytics +#usr/lib/python3.10/site-packages/botocore/data/marketplacecommerceanalytics/2015-07-01 +#usr/lib/python3.10/site-packages/botocore/data/marketplacecommerceanalytics/2015-07-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/marketplacecommerceanalytics/2015-07-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mediaconnect +#usr/lib/python3.10/site-packages/botocore/data/mediaconnect/2018-11-14 +#usr/lib/python3.10/site-packages/botocore/data/mediaconnect/2018-11-14/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mediaconnect/2018-11-14/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mediaconnect/2018-11-14/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/mediaconvert +#usr/lib/python3.10/site-packages/botocore/data/mediaconvert/2017-08-29 +#usr/lib/python3.10/site-packages/botocore/data/mediaconvert/2017-08-29/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mediaconvert/2017-08-29/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/medialive +#usr/lib/python3.10/site-packages/botocore/data/medialive/2017-10-14 +#usr/lib/python3.10/site-packages/botocore/data/medialive/2017-10-14/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/medialive/2017-10-14/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/medialive/2017-10-14/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/mediapackage +#usr/lib/python3.10/site-packages/botocore/data/mediapackage-vod +#usr/lib/python3.10/site-packages/botocore/data/mediapackage-vod/2018-11-07 +#usr/lib/python3.10/site-packages/botocore/data/mediapackage-vod/2018-11-07/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mediapackage-vod/2018-11-07/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mediapackage/2017-10-12 +#usr/lib/python3.10/site-packages/botocore/data/mediapackage/2017-10-12/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mediapackage/2017-10-12/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mediastore +#usr/lib/python3.10/site-packages/botocore/data/mediastore-data +#usr/lib/python3.10/site-packages/botocore/data/mediastore-data/2017-09-01 +#usr/lib/python3.10/site-packages/botocore/data/mediastore-data/2017-09-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/mediastore-data/2017-09-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mediastore-data/2017-09-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mediastore/2017-09-01 +#usr/lib/python3.10/site-packages/botocore/data/mediastore/2017-09-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/mediastore/2017-09-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mediastore/2017-09-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mediatailor +#usr/lib/python3.10/site-packages/botocore/data/mediatailor/2018-04-23 +#usr/lib/python3.10/site-packages/botocore/data/mediatailor/2018-04-23/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mediatailor/2018-04-23/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/memorydb +#usr/lib/python3.10/site-packages/botocore/data/memorydb/2021-01-01 +#usr/lib/python3.10/site-packages/botocore/data/memorydb/2021-01-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/memorydb/2021-01-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/meteringmarketplace +#usr/lib/python3.10/site-packages/botocore/data/meteringmarketplace/2016-01-14 +#usr/lib/python3.10/site-packages/botocore/data/meteringmarketplace/2016-01-14/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/meteringmarketplace/2016-01-14/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/meteringmarketplace/2016-01-14/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mgh +#usr/lib/python3.10/site-packages/botocore/data/mgh/2017-05-31 +#usr/lib/python3.10/site-packages/botocore/data/mgh/2017-05-31/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/mgh/2017-05-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mgh/2017-05-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mgn +#usr/lib/python3.10/site-packages/botocore/data/mgn/2020-02-26 +#usr/lib/python3.10/site-packages/botocore/data/mgn/2020-02-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mgn/2020-02-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/migration-hub-refactor-spaces +#usr/lib/python3.10/site-packages/botocore/data/migration-hub-refactor-spaces/2021-10-26 +#usr/lib/python3.10/site-packages/botocore/data/migration-hub-refactor-spaces/2021-10-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/migration-hub-refactor-spaces/2021-10-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/migrationhub-config +#usr/lib/python3.10/site-packages/botocore/data/migrationhub-config/2019-06-30 +#usr/lib/python3.10/site-packages/botocore/data/migrationhub-config/2019-06-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/migrationhub-config/2019-06-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/migrationhubstrategy +#usr/lib/python3.10/site-packages/botocore/data/migrationhubstrategy/2020-02-19 +#usr/lib/python3.10/site-packages/botocore/data/migrationhubstrategy/2020-02-19/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/migrationhubstrategy/2020-02-19/paginators-1.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/migrationhubstrategy/2020-02-19/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mobile +#usr/lib/python3.10/site-packages/botocore/data/mobile/2017-07-01 +#usr/lib/python3.10/site-packages/botocore/data/mobile/2017-07-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/mobile/2017-07-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mobile/2017-07-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mq +#usr/lib/python3.10/site-packages/botocore/data/mq/2017-11-27 +#usr/lib/python3.10/site-packages/botocore/data/mq/2017-11-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mq/2017-11-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mturk +#usr/lib/python3.10/site-packages/botocore/data/mturk/2017-01-17 +#usr/lib/python3.10/site-packages/botocore/data/mturk/2017-01-17/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/mturk/2017-01-17/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mturk/2017-01-17/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/mwaa +#usr/lib/python3.10/site-packages/botocore/data/mwaa/2020-07-01 +#usr/lib/python3.10/site-packages/botocore/data/mwaa/2020-07-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/mwaa/2020-07-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/neptune +#usr/lib/python3.10/site-packages/botocore/data/neptune/2014-10-31 +#usr/lib/python3.10/site-packages/botocore/data/neptune/2014-10-31/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/neptune/2014-10-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/neptune/2014-10-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/neptune/2014-10-31/service-2.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/neptune/2014-10-31/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/network-firewall +#usr/lib/python3.10/site-packages/botocore/data/network-firewall/2020-11-12 +#usr/lib/python3.10/site-packages/botocore/data/network-firewall/2020-11-12/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/network-firewall/2020-11-12/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/networkmanager +#usr/lib/python3.10/site-packages/botocore/data/networkmanager/2019-07-05 +#usr/lib/python3.10/site-packages/botocore/data/networkmanager/2019-07-05/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/networkmanager/2019-07-05/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/nimble +#usr/lib/python3.10/site-packages/botocore/data/nimble/2020-08-01 +#usr/lib/python3.10/site-packages/botocore/data/nimble/2020-08-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/nimble/2020-08-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/nimble/2020-08-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/opensearch +#usr/lib/python3.10/site-packages/botocore/data/opensearch/2021-01-01 +#usr/lib/python3.10/site-packages/botocore/data/opensearch/2021-01-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/opensearch/2021-01-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/opsworks +#usr/lib/python3.10/site-packages/botocore/data/opsworks/2013-02-18 +#usr/lib/python3.10/site-packages/botocore/data/opsworks/2013-02-18/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/opsworks/2013-02-18/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/opsworks/2013-02-18/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/opsworks/2013-02-18/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/opsworkscm +#usr/lib/python3.10/site-packages/botocore/data/opsworkscm/2016-11-01 +#usr/lib/python3.10/site-packages/botocore/data/opsworkscm/2016-11-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/opsworkscm/2016-11-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/opsworkscm/2016-11-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/opsworkscm/2016-11-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/organizations +#usr/lib/python3.10/site-packages/botocore/data/organizations/2016-11-28 +#usr/lib/python3.10/site-packages/botocore/data/organizations/2016-11-28/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/organizations/2016-11-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/organizations/2016-11-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/outposts +#usr/lib/python3.10/site-packages/botocore/data/outposts/2019-12-03 +#usr/lib/python3.10/site-packages/botocore/data/outposts/2019-12-03/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/outposts/2019-12-03/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/panorama +#usr/lib/python3.10/site-packages/botocore/data/panorama/2019-07-24 +#usr/lib/python3.10/site-packages/botocore/data/panorama/2019-07-24/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/panorama/2019-07-24/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/personalize +#usr/lib/python3.10/site-packages/botocore/data/personalize-events +#usr/lib/python3.10/site-packages/botocore/data/personalize-events/2018-03-22 +#usr/lib/python3.10/site-packages/botocore/data/personalize-events/2018-03-22/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/personalize-events/2018-03-22/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/personalize-runtime +#usr/lib/python3.10/site-packages/botocore/data/personalize-runtime/2018-05-22 +#usr/lib/python3.10/site-packages/botocore/data/personalize-runtime/2018-05-22/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/personalize-runtime/2018-05-22/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/personalize/2018-05-22 +#usr/lib/python3.10/site-packages/botocore/data/personalize/2018-05-22/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/personalize/2018-05-22/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/pi +#usr/lib/python3.10/site-packages/botocore/data/pi/2018-02-27 +#usr/lib/python3.10/site-packages/botocore/data/pi/2018-02-27/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/pi/2018-02-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/pi/2018-02-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/pinpoint +#usr/lib/python3.10/site-packages/botocore/data/pinpoint-email +#usr/lib/python3.10/site-packages/botocore/data/pinpoint-email/2018-07-26 +#usr/lib/python3.10/site-packages/botocore/data/pinpoint-email/2018-07-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/pinpoint-email/2018-07-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/pinpoint-sms-voice +#usr/lib/python3.10/site-packages/botocore/data/pinpoint-sms-voice/2018-09-05 +#usr/lib/python3.10/site-packages/botocore/data/pinpoint-sms-voice/2018-09-05/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/pinpoint/2016-12-01 +#usr/lib/python3.10/site-packages/botocore/data/pinpoint/2016-12-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/pinpoint/2016-12-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/polly +#usr/lib/python3.10/site-packages/botocore/data/polly/2016-06-10 +#usr/lib/python3.10/site-packages/botocore/data/polly/2016-06-10/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/polly/2016-06-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/polly/2016-06-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/pricing +#usr/lib/python3.10/site-packages/botocore/data/pricing/2017-10-15 +#usr/lib/python3.10/site-packages/botocore/data/pricing/2017-10-15/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/pricing/2017-10-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/pricing/2017-10-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/proton +#usr/lib/python3.10/site-packages/botocore/data/proton/2020-07-20 +#usr/lib/python3.10/site-packages/botocore/data/proton/2020-07-20/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/proton/2020-07-20/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/proton/2020-07-20/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/qldb +#usr/lib/python3.10/site-packages/botocore/data/qldb-session +#usr/lib/python3.10/site-packages/botocore/data/qldb-session/2019-07-11 +#usr/lib/python3.10/site-packages/botocore/data/qldb-session/2019-07-11/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/qldb-session/2019-07-11/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/qldb/2019-01-02 +#usr/lib/python3.10/site-packages/botocore/data/qldb/2019-01-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/qldb/2019-01-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/quicksight +#usr/lib/python3.10/site-packages/botocore/data/quicksight/2018-04-01 +#usr/lib/python3.10/site-packages/botocore/data/quicksight/2018-04-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/quicksight/2018-04-01/paginators-1.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/quicksight/2018-04-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ram +#usr/lib/python3.10/site-packages/botocore/data/ram/2018-01-04 +#usr/lib/python3.10/site-packages/botocore/data/ram/2018-01-04/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ram/2018-01-04/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/rbin +#usr/lib/python3.10/site-packages/botocore/data/rbin/2021-06-15 +#usr/lib/python3.10/site-packages/botocore/data/rbin/2021-06-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/rbin/2021-06-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/rds +#usr/lib/python3.10/site-packages/botocore/data/rds-data +#usr/lib/python3.10/site-packages/botocore/data/rds-data/2018-08-01 +#usr/lib/python3.10/site-packages/botocore/data/rds-data/2018-08-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/rds-data/2018-08-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/rds/2014-09-01 +#usr/lib/python3.10/site-packages/botocore/data/rds/2014-09-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/rds/2014-09-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/rds/2014-09-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/rds/2014-10-31 +#usr/lib/python3.10/site-packages/botocore/data/rds/2014-10-31/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/rds/2014-10-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/rds/2014-10-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/rds/2014-10-31/service-2.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/rds/2014-10-31/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/redshift +#usr/lib/python3.10/site-packages/botocore/data/redshift-data +#usr/lib/python3.10/site-packages/botocore/data/redshift-data/2019-12-20 +#usr/lib/python3.10/site-packages/botocore/data/redshift-data/2019-12-20/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/redshift-data/2019-12-20/paginators-1.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/redshift-data/2019-12-20/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/redshift/2012-12-01 +#usr/lib/python3.10/site-packages/botocore/data/redshift/2012-12-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/redshift/2012-12-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/redshift/2012-12-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/redshift/2012-12-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/rekognition +#usr/lib/python3.10/site-packages/botocore/data/rekognition/2016-06-27 +#usr/lib/python3.10/site-packages/botocore/data/rekognition/2016-06-27/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/rekognition/2016-06-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/rekognition/2016-06-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/rekognition/2016-06-27/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/resiliencehub +#usr/lib/python3.10/site-packages/botocore/data/resiliencehub/2020-04-30 +#usr/lib/python3.10/site-packages/botocore/data/resiliencehub/2020-04-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/resiliencehub/2020-04-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/resource-groups +#usr/lib/python3.10/site-packages/botocore/data/resource-groups/2017-11-27 +#usr/lib/python3.10/site-packages/botocore/data/resource-groups/2017-11-27/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/resource-groups/2017-11-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/resource-groups/2017-11-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/resourcegroupstaggingapi +#usr/lib/python3.10/site-packages/botocore/data/resourcegroupstaggingapi/2017-01-26 +#usr/lib/python3.10/site-packages/botocore/data/resourcegroupstaggingapi/2017-01-26/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/resourcegroupstaggingapi/2017-01-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/resourcegroupstaggingapi/2017-01-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/robomaker +#usr/lib/python3.10/site-packages/botocore/data/robomaker/2018-06-29 +#usr/lib/python3.10/site-packages/botocore/data/robomaker/2018-06-29/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/robomaker/2018-06-29/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/route53 +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-cluster +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-cluster/2019-12-02 +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-cluster/2019-12-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-cluster/2019-12-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-control-config +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-control-config/2020-11-02 +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-control-config/2020-11-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-control-config/2020-11-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-control-config/2020-11-02/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-readiness +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-readiness/2019-12-02 +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-readiness/2019-12-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/route53-recovery-readiness/2019-12-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/route53/2013-04-01 +#usr/lib/python3.10/site-packages/botocore/data/route53/2013-04-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/route53/2013-04-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/route53/2013-04-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/route53/2013-04-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/route53domains +#usr/lib/python3.10/site-packages/botocore/data/route53domains/2014-05-15 +#usr/lib/python3.10/site-packages/botocore/data/route53domains/2014-05-15/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/route53domains/2014-05-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/route53domains/2014-05-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/route53resolver +#usr/lib/python3.10/site-packages/botocore/data/route53resolver/2018-04-01 +#usr/lib/python3.10/site-packages/botocore/data/route53resolver/2018-04-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/route53resolver/2018-04-01/paginators-1.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/route53resolver/2018-04-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/rum +#usr/lib/python3.10/site-packages/botocore/data/rum/2018-05-10 +#usr/lib/python3.10/site-packages/botocore/data/rum/2018-05-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/rum/2018-05-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/s3 +#usr/lib/python3.10/site-packages/botocore/data/s3/2006-03-01 +#usr/lib/python3.10/site-packages/botocore/data/s3/2006-03-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/s3/2006-03-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/s3/2006-03-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/s3/2006-03-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/s3control +#usr/lib/python3.10/site-packages/botocore/data/s3control/2018-08-20 +#usr/lib/python3.10/site-packages/botocore/data/s3control/2018-08-20/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/s3control/2018-08-20/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/s3outposts +#usr/lib/python3.10/site-packages/botocore/data/s3outposts/2017-07-25 +#usr/lib/python3.10/site-packages/botocore/data/s3outposts/2017-07-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/s3outposts/2017-07-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-a2i-runtime +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-a2i-runtime/2019-11-07 +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-a2i-runtime/2019-11-07/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-edge +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-edge/2020-09-23 +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-edge/2020-09-23/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-edge/2020-09-23/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-featurestore-runtime +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-featurestore-runtime/2020-07-01 +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-featurestore-runtime/2020-07-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-featurestore-runtime/2020-07-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-runtime +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-runtime/2017-05-13 +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-runtime/2017-05-13/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-runtime/2017-05-13/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker-runtime/2017-05-13/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker/2017-07-24 +#usr/lib/python3.10/site-packages/botocore/data/sagemaker/2017-07-24/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker/2017-07-24/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker/2017-07-24/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sagemaker/2017-07-24/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/savingsplans +#usr/lib/python3.10/site-packages/botocore/data/savingsplans/2019-06-28 +#usr/lib/python3.10/site-packages/botocore/data/savingsplans/2019-06-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/savingsplans/2019-06-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/schemas +#usr/lib/python3.10/site-packages/botocore/data/schemas/2019-12-02 +#usr/lib/python3.10/site-packages/botocore/data/schemas/2019-12-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/schemas/2019-12-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/schemas/2019-12-02/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/sdb +#usr/lib/python3.10/site-packages/botocore/data/sdb/2009-04-15 +#usr/lib/python3.10/site-packages/botocore/data/sdb/2009-04-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sdb/2009-04-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/secretsmanager +#usr/lib/python3.10/site-packages/botocore/data/secretsmanager/2017-10-17 +#usr/lib/python3.10/site-packages/botocore/data/secretsmanager/2017-10-17/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/secretsmanager/2017-10-17/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/secretsmanager/2017-10-17/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/secretsmanager/2017-10-17/service-2.sdk-extras.json +#usr/lib/python3.10/site-packages/botocore/data/securityhub +#usr/lib/python3.10/site-packages/botocore/data/securityhub/2018-10-26 +#usr/lib/python3.10/site-packages/botocore/data/securityhub/2018-10-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/securityhub/2018-10-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/serverlessrepo +#usr/lib/python3.10/site-packages/botocore/data/serverlessrepo/2017-09-08 +#usr/lib/python3.10/site-packages/botocore/data/serverlessrepo/2017-09-08/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/serverlessrepo/2017-09-08/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/service-quotas +#usr/lib/python3.10/site-packages/botocore/data/service-quotas/2019-06-24 +#usr/lib/python3.10/site-packages/botocore/data/service-quotas/2019-06-24/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/service-quotas/2019-06-24/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/servicecatalog +#usr/lib/python3.10/site-packages/botocore/data/servicecatalog-appregistry +#usr/lib/python3.10/site-packages/botocore/data/servicecatalog-appregistry/2020-06-24 +#usr/lib/python3.10/site-packages/botocore/data/servicecatalog-appregistry/2020-06-24/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/servicecatalog-appregistry/2020-06-24/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/servicecatalog/2015-12-10 +#usr/lib/python3.10/site-packages/botocore/data/servicecatalog/2015-12-10/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/servicecatalog/2015-12-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/servicecatalog/2015-12-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/servicediscovery +#usr/lib/python3.10/site-packages/botocore/data/servicediscovery/2017-03-14 +#usr/lib/python3.10/site-packages/botocore/data/servicediscovery/2017-03-14/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/servicediscovery/2017-03-14/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/servicediscovery/2017-03-14/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ses +#usr/lib/python3.10/site-packages/botocore/data/ses/2010-12-01 +#usr/lib/python3.10/site-packages/botocore/data/ses/2010-12-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/ses/2010-12-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ses/2010-12-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ses/2010-12-01/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/sesv2 +#usr/lib/python3.10/site-packages/botocore/data/sesv2/2019-09-27 +#usr/lib/python3.10/site-packages/botocore/data/sesv2/2019-09-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sesv2/2019-09-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/shield +#usr/lib/python3.10/site-packages/botocore/data/shield/2016-06-02 +#usr/lib/python3.10/site-packages/botocore/data/shield/2016-06-02/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/shield/2016-06-02/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/shield/2016-06-02/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/signer +#usr/lib/python3.10/site-packages/botocore/data/signer/2017-08-25 +#usr/lib/python3.10/site-packages/botocore/data/signer/2017-08-25/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/signer/2017-08-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/signer/2017-08-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/signer/2017-08-25/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/sms +#usr/lib/python3.10/site-packages/botocore/data/sms-voice +#usr/lib/python3.10/site-packages/botocore/data/sms-voice/2018-09-05 +#usr/lib/python3.10/site-packages/botocore/data/sms-voice/2018-09-05/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sms/2016-10-24 +#usr/lib/python3.10/site-packages/botocore/data/sms/2016-10-24/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/sms/2016-10-24/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sms/2016-10-24/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/snow-device-management +#usr/lib/python3.10/site-packages/botocore/data/snow-device-management/2021-08-04 +#usr/lib/python3.10/site-packages/botocore/data/snow-device-management/2021-08-04/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/snow-device-management/2021-08-04/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/snowball +#usr/lib/python3.10/site-packages/botocore/data/snowball/2016-06-30 +#usr/lib/python3.10/site-packages/botocore/data/snowball/2016-06-30/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/snowball/2016-06-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/snowball/2016-06-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sns +#usr/lib/python3.10/site-packages/botocore/data/sns/2010-03-31 +#usr/lib/python3.10/site-packages/botocore/data/sns/2010-03-31/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/sns/2010-03-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sns/2010-03-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sqs +#usr/lib/python3.10/site-packages/botocore/data/sqs/2012-11-05 +#usr/lib/python3.10/site-packages/botocore/data/sqs/2012-11-05/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/sqs/2012-11-05/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sqs/2012-11-05/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ssm +#usr/lib/python3.10/site-packages/botocore/data/ssm-contacts +#usr/lib/python3.10/site-packages/botocore/data/ssm-contacts/2021-05-03 +#usr/lib/python3.10/site-packages/botocore/data/ssm-contacts/2021-05-03/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ssm-contacts/2021-05-03/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ssm-incidents +#usr/lib/python3.10/site-packages/botocore/data/ssm-incidents/2018-05-10 +#usr/lib/python3.10/site-packages/botocore/data/ssm-incidents/2018-05-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ssm-incidents/2018-05-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ssm-incidents/2018-05-10/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/ssm/2014-11-06 +#usr/lib/python3.10/site-packages/botocore/data/ssm/2014-11-06/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/ssm/2014-11-06/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/ssm/2014-11-06/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/ssm/2014-11-06/waiters-2.json +#usr/lib/python3.10/site-packages/botocore/data/sso +#usr/lib/python3.10/site-packages/botocore/data/sso-admin +#usr/lib/python3.10/site-packages/botocore/data/sso-admin/2020-07-20 +#usr/lib/python3.10/site-packages/botocore/data/sso-admin/2020-07-20/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sso-admin/2020-07-20/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sso-oidc +#usr/lib/python3.10/site-packages/botocore/data/sso-oidc/2019-06-10 +#usr/lib/python3.10/site-packages/botocore/data/sso-oidc/2019-06-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sso-oidc/2019-06-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sso/2019-06-10 +#usr/lib/python3.10/site-packages/botocore/data/sso/2019-06-10/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sso/2019-06-10/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/stepfunctions +#usr/lib/python3.10/site-packages/botocore/data/stepfunctions/2016-11-23 +#usr/lib/python3.10/site-packages/botocore/data/stepfunctions/2016-11-23/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/stepfunctions/2016-11-23/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/stepfunctions/2016-11-23/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/storagegateway +#usr/lib/python3.10/site-packages/botocore/data/storagegateway/2013-06-30 +#usr/lib/python3.10/site-packages/botocore/data/storagegateway/2013-06-30/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/storagegateway/2013-06-30/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/storagegateway/2013-06-30/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/sts +#usr/lib/python3.10/site-packages/botocore/data/sts/2011-06-15 +#usr/lib/python3.10/site-packages/botocore/data/sts/2011-06-15/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/sts/2011-06-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/sts/2011-06-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/support +#usr/lib/python3.10/site-packages/botocore/data/support/2013-04-15 +#usr/lib/python3.10/site-packages/botocore/data/support/2013-04-15/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/support/2013-04-15/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/support/2013-04-15/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/swf +#usr/lib/python3.10/site-packages/botocore/data/swf/2012-01-25 +#usr/lib/python3.10/site-packages/botocore/data/swf/2012-01-25/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/swf/2012-01-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/swf/2012-01-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/synthetics +#usr/lib/python3.10/site-packages/botocore/data/synthetics/2017-10-11 +#usr/lib/python3.10/site-packages/botocore/data/synthetics/2017-10-11/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/synthetics/2017-10-11/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/textract +#usr/lib/python3.10/site-packages/botocore/data/textract/2018-06-27 +#usr/lib/python3.10/site-packages/botocore/data/textract/2018-06-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/textract/2018-06-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/timestream-query +#usr/lib/python3.10/site-packages/botocore/data/timestream-query/2018-11-01 +#usr/lib/python3.10/site-packages/botocore/data/timestream-query/2018-11-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/timestream-query/2018-11-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/timestream-write +#usr/lib/python3.10/site-packages/botocore/data/timestream-write/2018-11-01 +#usr/lib/python3.10/site-packages/botocore/data/timestream-write/2018-11-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/timestream-write/2018-11-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/transcribe +#usr/lib/python3.10/site-packages/botocore/data/transcribe/2017-10-26 +#usr/lib/python3.10/site-packages/botocore/data/transcribe/2017-10-26/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/transcribe/2017-10-26/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/transcribe/2017-10-26/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/transfer +#usr/lib/python3.10/site-packages/botocore/data/transfer/2018-11-05 +#usr/lib/python3.10/site-packages/botocore/data/transfer/2018-11-05/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/transfer/2018-11-05/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/translate +#usr/lib/python3.10/site-packages/botocore/data/translate/2017-07-01 +#usr/lib/python3.10/site-packages/botocore/data/translate/2017-07-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/translate/2017-07-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/translate/2017-07-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/voice-id +#usr/lib/python3.10/site-packages/botocore/data/voice-id/2021-09-27 +#usr/lib/python3.10/site-packages/botocore/data/voice-id/2021-09-27/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/voice-id/2021-09-27/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/waf +#usr/lib/python3.10/site-packages/botocore/data/waf-regional +#usr/lib/python3.10/site-packages/botocore/data/waf-regional/2016-11-28 +#usr/lib/python3.10/site-packages/botocore/data/waf-regional/2016-11-28/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/waf-regional/2016-11-28/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/waf-regional/2016-11-28/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/waf/2015-08-24 +#usr/lib/python3.10/site-packages/botocore/data/waf/2015-08-24/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/waf/2015-08-24/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/waf/2015-08-24/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/wafv2 +#usr/lib/python3.10/site-packages/botocore/data/wafv2/2019-07-29 +#usr/lib/python3.10/site-packages/botocore/data/wafv2/2019-07-29/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/wafv2/2019-07-29/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/wellarchitected +#usr/lib/python3.10/site-packages/botocore/data/wellarchitected/2020-03-31 +#usr/lib/python3.10/site-packages/botocore/data/wellarchitected/2020-03-31/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/wellarchitected/2020-03-31/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/wisdom +#usr/lib/python3.10/site-packages/botocore/data/wisdom/2020-10-19 +#usr/lib/python3.10/site-packages/botocore/data/wisdom/2020-10-19/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/wisdom/2020-10-19/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/workdocs +#usr/lib/python3.10/site-packages/botocore/data/workdocs/2016-05-01 +#usr/lib/python3.10/site-packages/botocore/data/workdocs/2016-05-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/workdocs/2016-05-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/workdocs/2016-05-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/worklink +#usr/lib/python3.10/site-packages/botocore/data/worklink/2018-09-25 +#usr/lib/python3.10/site-packages/botocore/data/worklink/2018-09-25/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/worklink/2018-09-25/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/workmail +#usr/lib/python3.10/site-packages/botocore/data/workmail/2017-10-01 +#usr/lib/python3.10/site-packages/botocore/data/workmail/2017-10-01/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/workmail/2017-10-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/workmail/2017-10-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/workmailmessageflow +#usr/lib/python3.10/site-packages/botocore/data/workmailmessageflow/2019-05-01 +#usr/lib/python3.10/site-packages/botocore/data/workmailmessageflow/2019-05-01/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/workmailmessageflow/2019-05-01/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/workspaces +#usr/lib/python3.10/site-packages/botocore/data/workspaces-web +#usr/lib/python3.10/site-packages/botocore/data/workspaces-web/2020-07-08 +#usr/lib/python3.10/site-packages/botocore/data/workspaces-web/2020-07-08/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/workspaces-web/2020-07-08/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/workspaces/2015-04-08 +#usr/lib/python3.10/site-packages/botocore/data/workspaces/2015-04-08/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/workspaces/2015-04-08/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/workspaces/2015-04-08/service-2.json +#usr/lib/python3.10/site-packages/botocore/data/xray +#usr/lib/python3.10/site-packages/botocore/data/xray/2016-04-12 +#usr/lib/python3.10/site-packages/botocore/data/xray/2016-04-12/examples-1.json +#usr/lib/python3.10/site-packages/botocore/data/xray/2016-04-12/paginators-1.json +#usr/lib/python3.10/site-packages/botocore/data/xray/2016-04-12/service-2.json +usr/lib/python3.10/site-packages/botocore/discovery.py +#usr/lib/python3.10/site-packages/botocore/docs +usr/lib/python3.10/site-packages/botocore/docs/__init__.py +#usr/lib/python3.10/site-packages/botocore/docs/bcdoc +usr/lib/python3.10/site-packages/botocore/docs/bcdoc/__init__.py +usr/lib/python3.10/site-packages/botocore/docs/bcdoc/docstringparser.py +usr/lib/python3.10/site-packages/botocore/docs/bcdoc/restdoc.py +usr/lib/python3.10/site-packages/botocore/docs/bcdoc/style.py +usr/lib/python3.10/site-packages/botocore/docs/client.py +usr/lib/python3.10/site-packages/botocore/docs/docstring.py +usr/lib/python3.10/site-packages/botocore/docs/example.py +usr/lib/python3.10/site-packages/botocore/docs/method.py +usr/lib/python3.10/site-packages/botocore/docs/paginator.py +usr/lib/python3.10/site-packages/botocore/docs/params.py +usr/lib/python3.10/site-packages/botocore/docs/service.py +usr/lib/python3.10/site-packages/botocore/docs/shape.py +usr/lib/python3.10/site-packages/botocore/docs/sharedexample.py +usr/lib/python3.10/site-packages/botocore/docs/utils.py +usr/lib/python3.10/site-packages/botocore/docs/waiter.py +usr/lib/python3.10/site-packages/botocore/endpoint.py +usr/lib/python3.10/site-packages/botocore/errorfactory.py +usr/lib/python3.10/site-packages/botocore/eventstream.py +usr/lib/python3.10/site-packages/botocore/exceptions.py +usr/lib/python3.10/site-packages/botocore/handlers.py +usr/lib/python3.10/site-packages/botocore/history.py +usr/lib/python3.10/site-packages/botocore/hooks.py +usr/lib/python3.10/site-packages/botocore/httpsession.py +usr/lib/python3.10/site-packages/botocore/loaders.py +usr/lib/python3.10/site-packages/botocore/model.py +usr/lib/python3.10/site-packages/botocore/monitoring.py +usr/lib/python3.10/site-packages/botocore/paginate.py +usr/lib/python3.10/site-packages/botocore/parsers.py +usr/lib/python3.10/site-packages/botocore/regions.py +usr/lib/python3.10/site-packages/botocore/response.py +#usr/lib/python3.10/site-packages/botocore/retries +usr/lib/python3.10/site-packages/botocore/retries/__init__.py +usr/lib/python3.10/site-packages/botocore/retries/adaptive.py +usr/lib/python3.10/site-packages/botocore/retries/base.py +usr/lib/python3.10/site-packages/botocore/retries/bucket.py +usr/lib/python3.10/site-packages/botocore/retries/quota.py +usr/lib/python3.10/site-packages/botocore/retries/special.py +usr/lib/python3.10/site-packages/botocore/retries/standard.py +usr/lib/python3.10/site-packages/botocore/retries/throttling.py +usr/lib/python3.10/site-packages/botocore/retryhandler.py +usr/lib/python3.10/site-packages/botocore/serialize.py +usr/lib/python3.10/site-packages/botocore/session.py +usr/lib/python3.10/site-packages/botocore/signers.py +usr/lib/python3.10/site-packages/botocore/stub.py +usr/lib/python3.10/site-packages/botocore/translate.py +usr/lib/python3.10/site-packages/botocore/utils.py +usr/lib/python3.10/site-packages/botocore/validate.py +#usr/lib/python3.10/site-packages/botocore/vendored +usr/lib/python3.10/site-packages/botocore/vendored/__init__.py +#usr/lib/python3.10/site-packages/botocore/vendored/requests +usr/lib/python3.10/site-packages/botocore/vendored/requests/__init__.py +usr/lib/python3.10/site-packages/botocore/vendored/requests/exceptions.py +#usr/lib/python3.10/site-packages/botocore/vendored/requests/packages +usr/lib/python3.10/site-packages/botocore/vendored/requests/packages/__init__.py +#usr/lib/python3.10/site-packages/botocore/vendored/requests/packages/urllib3 +usr/lib/python3.10/site-packages/botocore/vendored/requests/packages/urllib3/__init__.py +usr/lib/python3.10/site-packages/botocore/vendored/requests/packages/urllib3/exceptions.py +usr/lib/python3.10/site-packages/botocore/vendored/six.py +usr/lib/python3.10/site-packages/botocore/waiter.py diff --git a/config/rootfiles/packages/python3-certifi b/config/rootfiles/packages/python3-certifi new file mode 100644 index 0000000000..2f7e4eb90d --- /dev/null +++ b/config/rootfiles/packages/python3-certifi @@ -0,0 +1,11 @@ +usr/lib/python3.10/site-packages/certifi +#usr/lib/python3.10/site-packages/certifi-2021.10.8-py3.10.egg-info +#usr/lib/python3.10/site-packages/certifi-2021.10.8-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/certifi-2021.10.8-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/certifi-2021.10.8-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/certifi-2021.10.8-py3.10.egg-info/not-zip-safe +#usr/lib/python3.10/site-packages/certifi-2021.10.8-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/certifi/__init__.py +usr/lib/python3.10/site-packages/certifi/__main__.py +usr/lib/python3.10/site-packages/certifi/cacert.pem +usr/lib/python3.10/site-packages/certifi/core.py diff --git a/config/rootfiles/packages/python3-cffi b/config/rootfiles/packages/python3-cffi new file mode 100644 index 0000000000..9d2d929e67 --- /dev/null +++ b/config/rootfiles/packages/python3-cffi @@ -0,0 +1,30 @@ +usr/lib/python3.10/site-packages/_cffi_backend.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/cffi +#usr/lib/python3.10/site-packages/cffi-1.15.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/cffi-1.15.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/cffi-1.15.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/cffi-1.15.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/cffi-1.15.0-py3.10.egg-info/entry_points.txt +#usr/lib/python3.10/site-packages/cffi-1.15.0-py3.10.egg-info/not-zip-safe +#usr/lib/python3.10/site-packages/cffi-1.15.0-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/cffi-1.15.0-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/cffi/__init__.py +usr/lib/python3.10/site-packages/cffi/_cffi_errors.h +usr/lib/python3.10/site-packages/cffi/_cffi_include.h +usr/lib/python3.10/site-packages/cffi/_embedding.h +usr/lib/python3.10/site-packages/cffi/api.py +usr/lib/python3.10/site-packages/cffi/backend_ctypes.py +usr/lib/python3.10/site-packages/cffi/cffi_opcode.py +usr/lib/python3.10/site-packages/cffi/commontypes.py +usr/lib/python3.10/site-packages/cffi/cparser.py +usr/lib/python3.10/site-packages/cffi/error.py +usr/lib/python3.10/site-packages/cffi/ffiplatform.py +usr/lib/python3.10/site-packages/cffi/lock.py +usr/lib/python3.10/site-packages/cffi/model.py +usr/lib/python3.10/site-packages/cffi/parse_c_type.h +usr/lib/python3.10/site-packages/cffi/pkgconfig.py +usr/lib/python3.10/site-packages/cffi/recompiler.py +usr/lib/python3.10/site-packages/cffi/setuptools_ext.py +usr/lib/python3.10/site-packages/cffi/vengine_cpy.py +usr/lib/python3.10/site-packages/cffi/vengine_gen.py +usr/lib/python3.10/site-packages/cffi/verifier.py diff --git a/config/rootfiles/packages/python3-charset-normalizer b/config/rootfiles/packages/python3-charset-normalizer new file mode 100644 index 0000000000..8c754ad654 --- /dev/null +++ b/config/rootfiles/packages/python3-charset-normalizer @@ -0,0 +1,24 @@ +usr/bin/normalizer +usr/lib/python3.10/site-packages/charset_normalizer +#usr/lib/python3.10/site-packages/charset_normalizer-2.0.10-py3.10.egg-info +#usr/lib/python3.10/site-packages/charset_normalizer-2.0.10-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/charset_normalizer-2.0.10-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/charset_normalizer-2.0.10-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/charset_normalizer-2.0.10-py3.10.egg-info/entry_points.txt +#usr/lib/python3.10/site-packages/charset_normalizer-2.0.10-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/charset_normalizer-2.0.10-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/charset_normalizer/__init__.py +usr/lib/python3.10/site-packages/charset_normalizer/api.py +usr/lib/python3.10/site-packages/charset_normalizer/assets +usr/lib/python3.10/site-packages/charset_normalizer/assets/__init__.py +usr/lib/python3.10/site-packages/charset_normalizer/cd.py +usr/lib/python3.10/site-packages/charset_normalizer/cli +usr/lib/python3.10/site-packages/charset_normalizer/cli/__init__.py +usr/lib/python3.10/site-packages/charset_normalizer/cli/normalizer.py +usr/lib/python3.10/site-packages/charset_normalizer/constant.py +usr/lib/python3.10/site-packages/charset_normalizer/legacy.py +usr/lib/python3.10/site-packages/charset_normalizer/md.py +usr/lib/python3.10/site-packages/charset_normalizer/models.py +usr/lib/python3.10/site-packages/charset_normalizer/py.typed +usr/lib/python3.10/site-packages/charset_normalizer/utils.py +usr/lib/python3.10/site-packages/charset_normalizer/version.py diff --git a/config/rootfiles/packages/python3-circuitbreaker b/config/rootfiles/packages/python3-circuitbreaker new file mode 100644 index 0000000000..7c6d0f3875 --- /dev/null +++ b/config/rootfiles/packages/python3-circuitbreaker @@ -0,0 +1,8 @@ +#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info +#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/not-zip-safe +#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/circuitbreaker-1.3.2-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/circuitbreaker.py diff --git a/config/rootfiles/packages/python3-click b/config/rootfiles/packages/python3-click new file mode 100644 index 0000000000..f72d4a6792 --- /dev/null +++ b/config/rootfiles/packages/python3-click @@ -0,0 +1,25 @@ +usr/lib/python3.10/site-packages/click +#usr/lib/python3.10/site-packages/click-8.0.3-py3.10.egg-info +#usr/lib/python3.10/site-packages/click-8.0.3-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/click-8.0.3-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/click-8.0.3-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/click-8.0.3-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/click-8.0.3-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/click/__init__.py +usr/lib/python3.10/site-packages/click/_compat.py +usr/lib/python3.10/site-packages/click/_termui_impl.py +usr/lib/python3.10/site-packages/click/_textwrap.py +usr/lib/python3.10/site-packages/click/_unicodefun.py +usr/lib/python3.10/site-packages/click/_winconsole.py +usr/lib/python3.10/site-packages/click/core.py +usr/lib/python3.10/site-packages/click/decorators.py +usr/lib/python3.10/site-packages/click/exceptions.py +usr/lib/python3.10/site-packages/click/formatting.py +usr/lib/python3.10/site-packages/click/globals.py +usr/lib/python3.10/site-packages/click/parser.py +usr/lib/python3.10/site-packages/click/py.typed +usr/lib/python3.10/site-packages/click/shell_completion.py +usr/lib/python3.10/site-packages/click/termui.py +usr/lib/python3.10/site-packages/click/testing.py +usr/lib/python3.10/site-packages/click/types.py +usr/lib/python3.10/site-packages/click/utils.py diff --git a/config/rootfiles/packages/python3-colorama b/config/rootfiles/packages/python3-colorama index 3621f52141..ce669143c7 100644 --- a/config/rootfiles/packages/python3-colorama +++ b/config/rootfiles/packages/python3-colorama @@ -1,12 +1,12 @@ -#usr/lib/python3.8/site-packages/colorama -#usr/lib/python3.8/site-packages/colorama-0.4.3-py3.8.egg-info -#usr/lib/python3.8/site-packages/colorama-0.4.3-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/colorama-0.4.3-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/colorama-0.4.3-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/colorama-0.4.3-py3.8.egg-info/top_level.txt -usr/lib/python3.8/site-packages/colorama/__init__.py -usr/lib/python3.8/site-packages/colorama/ansi.py -usr/lib/python3.8/site-packages/colorama/ansitowin32.py -usr/lib/python3.8/site-packages/colorama/initialise.py -usr/lib/python3.8/site-packages/colorama/win32.py -usr/lib/python3.8/site-packages/colorama/winterm.py +#usr/lib/python3.10/site-packages/colorama +#usr/lib/python3.10/site-packages/colorama-0.4.4-py3.10.egg-info +#usr/lib/python3.10/site-packages/colorama-0.4.4-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/colorama-0.4.4-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/colorama-0.4.4-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/colorama-0.4.4-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/colorama/__init__.py +usr/lib/python3.10/site-packages/colorama/ansi.py +usr/lib/python3.10/site-packages/colorama/ansitowin32.py +usr/lib/python3.10/site-packages/colorama/initialise.py +usr/lib/python3.10/site-packages/colorama/win32.py +usr/lib/python3.10/site-packages/colorama/winterm.py diff --git a/config/rootfiles/packages/python3-cryptography b/config/rootfiles/packages/python3-cryptography new file mode 100644 index 0000000000..9f63606fb9 --- /dev/null +++ b/config/rootfiles/packages/python3-cryptography @@ -0,0 +1,111 @@ +usr/lib/python3.10/site-packages/cryptography +#usr/lib/python3.10/site-packages/cryptography-3.4.7-py3.10.egg-info +#usr/lib/python3.10/site-packages/cryptography-3.4.7-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/cryptography-3.4.7-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/cryptography-3.4.7-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/cryptography-3.4.7-py3.10.egg-info/not-zip-safe +#usr/lib/python3.10/site-packages/cryptography-3.4.7-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/cryptography-3.4.7-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/cryptography/__about__.py +usr/lib/python3.10/site-packages/cryptography/__init__.py +usr/lib/python3.10/site-packages/cryptography/exceptions.py +usr/lib/python3.10/site-packages/cryptography/fernet.py +usr/lib/python3.10/site-packages/cryptography/hazmat +usr/lib/python3.10/site-packages/cryptography/hazmat/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/_der.py +usr/lib/python3.10/site-packages/cryptography/hazmat/_oid.py +usr/lib/python3.10/site-packages/cryptography/hazmat/_types.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/interfaces.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/aead.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/backend.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ciphers.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/cmac.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/decode_asn1.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/dh.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/dsa.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ec.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ed25519.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ed448.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/encode_asn1.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/hashes.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/hmac.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ocsp.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/poly1305.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/rsa.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/utils.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/x25519.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/x448.py +usr/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/x509.py +usr/lib/python3.10/site-packages/cryptography/hazmat/bindings +usr/lib/python3.10/site-packages/cryptography/hazmat/bindings/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/bindings/_openssl.abi3.so +usr/lib/python3.10/site-packages/cryptography/hazmat/bindings/_padding.abi3.so +usr/lib/python3.10/site-packages/cryptography/hazmat/bindings/_rust.abi3.so +usr/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl +usr/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py +usr/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/binding.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/_asymmetric.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/_serialization.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/aead.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/base.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/modes.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/cmac.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/constant_time.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/hashes.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/hmac.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/concatkdf.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/hkdf.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/kbkdf.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/pbkdf2.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/x963kdf.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/keywrap.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/padding.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/poly1305.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/base.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/ssh.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__init__.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/hotp.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/totp.py +usr/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/utils.py +usr/lib/python3.10/site-packages/cryptography/py.typed +usr/lib/python3.10/site-packages/cryptography/utils.py +usr/lib/python3.10/site-packages/cryptography/x509 +usr/lib/python3.10/site-packages/cryptography/x509/__init__.py +usr/lib/python3.10/site-packages/cryptography/x509/base.py +usr/lib/python3.10/site-packages/cryptography/x509/certificate_transparency.py +usr/lib/python3.10/site-packages/cryptography/x509/extensions.py +usr/lib/python3.10/site-packages/cryptography/x509/general_name.py +usr/lib/python3.10/site-packages/cryptography/x509/name.py +usr/lib/python3.10/site-packages/cryptography/x509/ocsp.py +usr/lib/python3.10/site-packages/cryptography/x509/oid.py diff --git a/config/rootfiles/packages/python3-dateutil b/config/rootfiles/packages/python3-dateutil index d87fc499fa..5ff390dd06 100644 --- a/config/rootfiles/packages/python3-dateutil +++ b/config/rootfiles/packages/python3-dateutil @@ -1,30 +1,30 @@ -#usr/lib/python3.8/site-packages/dateutil -usr/lib/python3.8/site-packages/dateutil/__init__.py -usr/lib/python3.8/site-packages/dateutil/_common.py -usr/lib/python3.8/site-packages/dateutil/_version.py -usr/lib/python3.8/site-packages/dateutil/easter.py -#usr/lib/python3.8/site-packages/dateutil/parser -usr/lib/python3.8/site-packages/dateutil/parser/__init__.py -usr/lib/python3.8/site-packages/dateutil/parser/_parser.py -usr/lib/python3.8/site-packages/dateutil/parser/isoparser.py -usr/lib/python3.8/site-packages/dateutil/relativedelta.py -usr/lib/python3.8/site-packages/dateutil/rrule.py -#usr/lib/python3.8/site-packages/dateutil/tz -usr/lib/python3.8/site-packages/dateutil/tz/__init__.py -usr/lib/python3.8/site-packages/dateutil/tz/_common.py -usr/lib/python3.8/site-packages/dateutil/tz/_factories.py -usr/lib/python3.8/site-packages/dateutil/tz/tz.py -usr/lib/python3.8/site-packages/dateutil/tz/win.py -usr/lib/python3.8/site-packages/dateutil/tzwin.py -usr/lib/python3.8/site-packages/dateutil/utils.py -#usr/lib/python3.8/site-packages/dateutil/zoneinfo -usr/lib/python3.8/site-packages/dateutil/zoneinfo/__init__.py -usr/lib/python3.8/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz -usr/lib/python3.8/site-packages/dateutil/zoneinfo/rebuild.py -#usr/lib/python3.8/site-packages/python_dateutil-2.8.1-py3.8.egg-info -#usr/lib/python3.8/site-packages/python_dateutil-2.8.1-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/python_dateutil-2.8.1-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/python_dateutil-2.8.1-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/python_dateutil-2.8.1-py3.8.egg-info/requires.txt -#usr/lib/python3.8/site-packages/python_dateutil-2.8.1-py3.8.egg-info/top_level.txt -#usr/lib/python3.8/site-packages/python_dateutil-2.8.1-py3.8.egg-info/zip-safe +#usr/lib/python3.10/site-packages/dateutil +usr/lib/python3.10/site-packages/dateutil/__init__.py +usr/lib/python3.10/site-packages/dateutil/_common.py +usr/lib/python3.10/site-packages/dateutil/_version.py +usr/lib/python3.10/site-packages/dateutil/easter.py +#usr/lib/python3.10/site-packages/dateutil/parser +usr/lib/python3.10/site-packages/dateutil/parser/__init__.py +usr/lib/python3.10/site-packages/dateutil/parser/_parser.py +usr/lib/python3.10/site-packages/dateutil/parser/isoparser.py +usr/lib/python3.10/site-packages/dateutil/relativedelta.py +usr/lib/python3.10/site-packages/dateutil/rrule.py +#usr/lib/python3.10/site-packages/dateutil/tz +usr/lib/python3.10/site-packages/dateutil/tz/__init__.py +usr/lib/python3.10/site-packages/dateutil/tz/_common.py +usr/lib/python3.10/site-packages/dateutil/tz/_factories.py +usr/lib/python3.10/site-packages/dateutil/tz/tz.py +usr/lib/python3.10/site-packages/dateutil/tz/win.py +usr/lib/python3.10/site-packages/dateutil/tzwin.py +usr/lib/python3.10/site-packages/dateutil/utils.py +#usr/lib/python3.10/site-packages/dateutil/zoneinfo +usr/lib/python3.10/site-packages/dateutil/zoneinfo/__init__.py +usr/lib/python3.10/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz +usr/lib/python3.10/site-packages/dateutil/zoneinfo/rebuild.py +#usr/lib/python3.10/site-packages/python_dateutil-2.8.2-py3.10.egg-info +#usr/lib/python3.10/site-packages/python_dateutil-2.8.2-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/python_dateutil-2.8.2-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/python_dateutil-2.8.2-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/python_dateutil-2.8.2-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/python_dateutil-2.8.2-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/python_dateutil-2.8.2-py3.10.egg-info/zip-safe diff --git a/config/rootfiles/packages/python3-docutils b/config/rootfiles/packages/python3-docutils index fa0c6f3a77..52bf11c03f 100644 --- a/config/rootfiles/packages/python3-docutils +++ b/config/rootfiles/packages/python3-docutils @@ -10,221 +10,229 @@ usr/bin/rst2s5.py usr/bin/rst2xetex.py usr/bin/rst2xml.py usr/bin/rstpep2html.py -#usr/lib/python3.8/site-packages/docutils -#usr/lib/python3.8/site-packages/docutils-0.16-py3.8.egg-info -#usr/lib/python3.8/site-packages/docutils-0.16-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/docutils-0.16-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/docutils-0.16-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/docutils-0.16-py3.8.egg-info/top_level.txt -usr/lib/python3.8/site-packages/docutils/__init__.py -usr/lib/python3.8/site-packages/docutils/core.py -usr/lib/python3.8/site-packages/docutils/examples.py -usr/lib/python3.8/site-packages/docutils/frontend.py -usr/lib/python3.8/site-packages/docutils/io.py -#usr/lib/python3.8/site-packages/docutils/languages -usr/lib/python3.8/site-packages/docutils/languages/__init__.py -usr/lib/python3.8/site-packages/docutils/languages/af.py -usr/lib/python3.8/site-packages/docutils/languages/ca.py -usr/lib/python3.8/site-packages/docutils/languages/cs.py -usr/lib/python3.8/site-packages/docutils/languages/da.py -usr/lib/python3.8/site-packages/docutils/languages/de.py -usr/lib/python3.8/site-packages/docutils/languages/en.py -usr/lib/python3.8/site-packages/docutils/languages/eo.py -usr/lib/python3.8/site-packages/docutils/languages/es.py -usr/lib/python3.8/site-packages/docutils/languages/fa.py -usr/lib/python3.8/site-packages/docutils/languages/fi.py -usr/lib/python3.8/site-packages/docutils/languages/fr.py -usr/lib/python3.8/site-packages/docutils/languages/gl.py -usr/lib/python3.8/site-packages/docutils/languages/he.py -usr/lib/python3.8/site-packages/docutils/languages/it.py -usr/lib/python3.8/site-packages/docutils/languages/ja.py -usr/lib/python3.8/site-packages/docutils/languages/ko.py -usr/lib/python3.8/site-packages/docutils/languages/lt.py -usr/lib/python3.8/site-packages/docutils/languages/lv.py -usr/lib/python3.8/site-packages/docutils/languages/nl.py -usr/lib/python3.8/site-packages/docutils/languages/pl.py -usr/lib/python3.8/site-packages/docutils/languages/pt_br.py -usr/lib/python3.8/site-packages/docutils/languages/ru.py -usr/lib/python3.8/site-packages/docutils/languages/sk.py -usr/lib/python3.8/site-packages/docutils/languages/sv.py -usr/lib/python3.8/site-packages/docutils/languages/zh_cn.py -usr/lib/python3.8/site-packages/docutils/languages/zh_tw.py -usr/lib/python3.8/site-packages/docutils/nodes.py -#usr/lib/python3.8/site-packages/docutils/parsers -usr/lib/python3.8/site-packages/docutils/parsers/__init__.py -usr/lib/python3.8/site-packages/docutils/parsers/null.py -#usr/lib/python3.8/site-packages/docutils/parsers/rst -usr/lib/python3.8/site-packages/docutils/parsers/rst/__init__.py -#usr/lib/python3.8/site-packages/docutils/parsers/rst/directives -usr/lib/python3.8/site-packages/docutils/parsers/rst/directives/__init__.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/directives/admonitions.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/directives/body.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/directives/html.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/directives/images.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/directives/misc.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/directives/parts.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/directives/references.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/directives/tables.py -#usr/lib/python3.8/site-packages/docutils/parsers/rst/include -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/README.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isoamsa.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isoamsb.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isoamsc.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isoamsn.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isoamso.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isoamsr.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isobox.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isocyr1.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isocyr2.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isodia.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isogrk1.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isogrk2.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isogrk3.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isogrk4-wide.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isogrk4.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isolat1.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isolat2.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isomfrk-wide.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isomfrk.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isomopf-wide.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isomopf.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isomscr-wide.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isomscr.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isonum.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isopub.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/isotech.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/mmlalias.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/mmlextra-wide.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/mmlextra.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/s5defs.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/xhtml1-lat1.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/xhtml1-special.txt -usr/lib/python3.8/site-packages/docutils/parsers/rst/include/xhtml1-symbol.txt -#usr/lib/python3.8/site-packages/docutils/parsers/rst/languages -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/__init__.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/af.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/ca.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/cs.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/da.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/de.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/en.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/eo.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/es.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/fa.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/fi.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/fr.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/gl.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/he.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/it.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/ja.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/ko.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/lt.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/lv.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/nl.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/pl.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/pt_br.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/ru.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/sk.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/sv.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/zh_cn.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/languages/zh_tw.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/roles.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/states.py -usr/lib/python3.8/site-packages/docutils/parsers/rst/tableparser.py -#usr/lib/python3.8/site-packages/docutils/readers -usr/lib/python3.8/site-packages/docutils/readers/__init__.py -usr/lib/python3.8/site-packages/docutils/readers/doctree.py -usr/lib/python3.8/site-packages/docutils/readers/pep.py -usr/lib/python3.8/site-packages/docutils/readers/standalone.py -usr/lib/python3.8/site-packages/docutils/statemachine.py -#usr/lib/python3.8/site-packages/docutils/transforms -usr/lib/python3.8/site-packages/docutils/transforms/__init__.py -usr/lib/python3.8/site-packages/docutils/transforms/components.py -usr/lib/python3.8/site-packages/docutils/transforms/frontmatter.py -usr/lib/python3.8/site-packages/docutils/transforms/misc.py -usr/lib/python3.8/site-packages/docutils/transforms/parts.py -usr/lib/python3.8/site-packages/docutils/transforms/peps.py -usr/lib/python3.8/site-packages/docutils/transforms/references.py -usr/lib/python3.8/site-packages/docutils/transforms/universal.py -usr/lib/python3.8/site-packages/docutils/transforms/writer_aux.py -#usr/lib/python3.8/site-packages/docutils/utils -usr/lib/python3.8/site-packages/docutils/utils/__init__.py -usr/lib/python3.8/site-packages/docutils/utils/code_analyzer.py -usr/lib/python3.8/site-packages/docutils/utils/error_reporting.py -#usr/lib/python3.8/site-packages/docutils/utils/math -usr/lib/python3.8/site-packages/docutils/utils/math/__init__.py -usr/lib/python3.8/site-packages/docutils/utils/math/latex2mathml.py -usr/lib/python3.8/site-packages/docutils/utils/math/math2html.py -usr/lib/python3.8/site-packages/docutils/utils/math/tex2mathml_extern.py -usr/lib/python3.8/site-packages/docutils/utils/math/tex2unichar.py -usr/lib/python3.8/site-packages/docutils/utils/math/unichar2tex.py -usr/lib/python3.8/site-packages/docutils/utils/punctuation_chars.py -usr/lib/python3.8/site-packages/docutils/utils/roman.py -usr/lib/python3.8/site-packages/docutils/utils/smartquotes.py -usr/lib/python3.8/site-packages/docutils/utils/urischemes.py -#usr/lib/python3.8/site-packages/docutils/writers -usr/lib/python3.8/site-packages/docutils/writers/__init__.py -usr/lib/python3.8/site-packages/docutils/writers/_html_base.py -usr/lib/python3.8/site-packages/docutils/writers/docutils_xml.py -#usr/lib/python3.8/site-packages/docutils/writers/html4css1 -usr/lib/python3.8/site-packages/docutils/writers/html4css1/__init__.py -usr/lib/python3.8/site-packages/docutils/writers/html4css1/html4css1.css -usr/lib/python3.8/site-packages/docutils/writers/html4css1/template.txt -#usr/lib/python3.8/site-packages/docutils/writers/html5_polyglot -usr/lib/python3.8/site-packages/docutils/writers/html5_polyglot/__init__.py -usr/lib/python3.8/site-packages/docutils/writers/html5_polyglot/math.css -usr/lib/python3.8/site-packages/docutils/writers/html5_polyglot/minimal.css -usr/lib/python3.8/site-packages/docutils/writers/html5_polyglot/plain.css -usr/lib/python3.8/site-packages/docutils/writers/html5_polyglot/template.txt -#usr/lib/python3.8/site-packages/docutils/writers/latex2e -usr/lib/python3.8/site-packages/docutils/writers/latex2e/__init__.py -usr/lib/python3.8/site-packages/docutils/writers/latex2e/default.tex -usr/lib/python3.8/site-packages/docutils/writers/latex2e/titlepage.tex -usr/lib/python3.8/site-packages/docutils/writers/latex2e/xelatex.tex -usr/lib/python3.8/site-packages/docutils/writers/manpage.py -usr/lib/python3.8/site-packages/docutils/writers/null.py -#usr/lib/python3.8/site-packages/docutils/writers/odf_odt -usr/lib/python3.8/site-packages/docutils/writers/odf_odt/__init__.py -usr/lib/python3.8/site-packages/docutils/writers/odf_odt/pygmentsformatter.py -usr/lib/python3.8/site-packages/docutils/writers/odf_odt/styles.odt -#usr/lib/python3.8/site-packages/docutils/writers/pep_html -usr/lib/python3.8/site-packages/docutils/writers/pep_html/__init__.py -usr/lib/python3.8/site-packages/docutils/writers/pep_html/pep.css -usr/lib/python3.8/site-packages/docutils/writers/pep_html/template.txt -usr/lib/python3.8/site-packages/docutils/writers/pseudoxml.py -#usr/lib/python3.8/site-packages/docutils/writers/s5_html -usr/lib/python3.8/site-packages/docutils/writers/s5_html/__init__.py -#usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/README.txt -#usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/big-black -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/big-black/__base__ -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/big-black/framing.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/big-black/pretty.css -#usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/big-white -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/big-white/framing.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/big-white/pretty.css -#usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default/blank.gif -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default/framing.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default/iepngfix.htc -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default/opera.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default/outline.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default/pretty.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default/print.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default/s5-core.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default/slides.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/default/slides.js -#usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/medium-black -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/medium-black/__base__ -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/medium-black/pretty.css -#usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/medium-white -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/medium-white/framing.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/medium-white/pretty.css -#usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/small-black -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/small-black/__base__ -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/small-black/pretty.css -#usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/small-white -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/small-white/framing.css -usr/lib/python3.8/site-packages/docutils/writers/s5_html/themes/small-white/pretty.css -#usr/lib/python3.8/site-packages/docutils/writers/xetex -usr/lib/python3.8/site-packages/docutils/writers/xetex/__init__.py +#usr/lib/python3.10/site-packages/docutils +#usr/lib/python3.10/site-packages/docutils-0.18.1-py3.10.egg-info +#usr/lib/python3.10/site-packages/docutils-0.18.1-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/docutils-0.18.1-py3.10.egg-info/SOURCES.html +#usr/lib/python3.10/site-packages/docutils-0.18.1-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/docutils-0.18.1-py3.10.egg-info/dependency_links.html +#usr/lib/python3.10/site-packages/docutils-0.18.1-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/docutils-0.18.1-py3.10.egg-info/top_level.html +#usr/lib/python3.10/site-packages/docutils-0.18.1-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/docutils/__init__.py +usr/lib/python3.10/site-packages/docutils/core.py +usr/lib/python3.10/site-packages/docutils/examples.py +usr/lib/python3.10/site-packages/docutils/frontend.py +usr/lib/python3.10/site-packages/docutils/io.py +#usr/lib/python3.10/site-packages/docutils/languages +usr/lib/python3.10/site-packages/docutils/languages/__init__.py +usr/lib/python3.10/site-packages/docutils/languages/af.py +usr/lib/python3.10/site-packages/docutils/languages/ar.py +usr/lib/python3.10/site-packages/docutils/languages/ca.py +usr/lib/python3.10/site-packages/docutils/languages/cs.py +usr/lib/python3.10/site-packages/docutils/languages/da.py +usr/lib/python3.10/site-packages/docutils/languages/de.py +usr/lib/python3.10/site-packages/docutils/languages/en.py +usr/lib/python3.10/site-packages/docutils/languages/eo.py +usr/lib/python3.10/site-packages/docutils/languages/es.py +usr/lib/python3.10/site-packages/docutils/languages/fa.py +usr/lib/python3.10/site-packages/docutils/languages/fi.py +usr/lib/python3.10/site-packages/docutils/languages/fr.py +usr/lib/python3.10/site-packages/docutils/languages/gl.py +usr/lib/python3.10/site-packages/docutils/languages/he.py +usr/lib/python3.10/site-packages/docutils/languages/it.py +usr/lib/python3.10/site-packages/docutils/languages/ja.py +usr/lib/python3.10/site-packages/docutils/languages/ko.py +usr/lib/python3.10/site-packages/docutils/languages/lt.py +usr/lib/python3.10/site-packages/docutils/languages/lv.py +usr/lib/python3.10/site-packages/docutils/languages/nl.py +usr/lib/python3.10/site-packages/docutils/languages/pl.py +usr/lib/python3.10/site-packages/docutils/languages/pt_br.py +usr/lib/python3.10/site-packages/docutils/languages/ru.py +usr/lib/python3.10/site-packages/docutils/languages/sk.py +usr/lib/python3.10/site-packages/docutils/languages/sv.py +usr/lib/python3.10/site-packages/docutils/languages/zh_cn.py +usr/lib/python3.10/site-packages/docutils/languages/zh_tw.py +usr/lib/python3.10/site-packages/docutils/nodes.py +#usr/lib/python3.10/site-packages/docutils/parsers +usr/lib/python3.10/site-packages/docutils/parsers/__init__.py +usr/lib/python3.10/site-packages/docutils/parsers/null.py +usr/lib/python3.10/site-packages/docutils/parsers/recommonmark_wrapper.py +#usr/lib/python3.10/site-packages/docutils/parsers/rst +usr/lib/python3.10/site-packages/docutils/parsers/rst/__init__.py +#usr/lib/python3.10/site-packages/docutils/parsers/rst/directives +usr/lib/python3.10/site-packages/docutils/parsers/rst/directives/__init__.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/directives/admonitions.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/directives/body.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/directives/html.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/directives/images.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/directives/misc.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/directives/parts.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/directives/references.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/directives/tables.py +#usr/lib/python3.10/site-packages/docutils/parsers/rst/include +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/README.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isoamsa.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isoamsb.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isoamsc.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isoamsn.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isoamso.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isoamsr.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isobox.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isocyr1.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isocyr2.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isodia.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isogrk1.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isogrk2.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isogrk3.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isogrk4-wide.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isogrk4.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isolat1.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isolat2.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isomfrk-wide.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isomfrk.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isomopf-wide.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isomopf.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isomscr-wide.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isomscr.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isonum.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isopub.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/isotech.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/mmlalias.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/mmlextra-wide.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/mmlextra.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/s5defs.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/xhtml1-lat1.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/xhtml1-special.txt +usr/lib/python3.10/site-packages/docutils/parsers/rst/include/xhtml1-symbol.txt +#usr/lib/python3.10/site-packages/docutils/parsers/rst/languages +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/__init__.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/af.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/ar.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/ca.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/cs.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/da.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/de.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/en.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/eo.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/es.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/fa.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/fi.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/fr.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/gl.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/he.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/it.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/ja.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/ko.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/lt.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/lv.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/nl.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/pl.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/pt_br.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/ru.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/sk.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/sv.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/zh_cn.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/languages/zh_tw.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/roles.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/states.py +usr/lib/python3.10/site-packages/docutils/parsers/rst/tableparser.py +#usr/lib/python3.10/site-packages/docutils/readers +usr/lib/python3.10/site-packages/docutils/readers/__init__.py +usr/lib/python3.10/site-packages/docutils/readers/doctree.py +usr/lib/python3.10/site-packages/docutils/readers/pep.py +usr/lib/python3.10/site-packages/docutils/readers/standalone.py +usr/lib/python3.10/site-packages/docutils/statemachine.py +#usr/lib/python3.10/site-packages/docutils/transforms +usr/lib/python3.10/site-packages/docutils/transforms/__init__.py +usr/lib/python3.10/site-packages/docutils/transforms/components.py +usr/lib/python3.10/site-packages/docutils/transforms/frontmatter.py +usr/lib/python3.10/site-packages/docutils/transforms/misc.py +usr/lib/python3.10/site-packages/docutils/transforms/parts.py +usr/lib/python3.10/site-packages/docutils/transforms/peps.py +usr/lib/python3.10/site-packages/docutils/transforms/references.py +usr/lib/python3.10/site-packages/docutils/transforms/universal.py +usr/lib/python3.10/site-packages/docutils/transforms/writer_aux.py +#usr/lib/python3.10/site-packages/docutils/utils +usr/lib/python3.10/site-packages/docutils/utils/__init__.py +usr/lib/python3.10/site-packages/docutils/utils/code_analyzer.py +usr/lib/python3.10/site-packages/docutils/utils/error_reporting.py +#usr/lib/python3.10/site-packages/docutils/utils/math +usr/lib/python3.10/site-packages/docutils/utils/math/__init__.py +usr/lib/python3.10/site-packages/docutils/utils/math/latex2mathml.py +usr/lib/python3.10/site-packages/docutils/utils/math/math2html.py +usr/lib/python3.10/site-packages/docutils/utils/math/tex2mathml_extern.py +usr/lib/python3.10/site-packages/docutils/utils/math/tex2unichar.py +usr/lib/python3.10/site-packages/docutils/utils/math/unichar2tex.py +usr/lib/python3.10/site-packages/docutils/utils/punctuation_chars.py +usr/lib/python3.10/site-packages/docutils/utils/roman.py +usr/lib/python3.10/site-packages/docutils/utils/smartquotes.py +usr/lib/python3.10/site-packages/docutils/utils/urischemes.py +#usr/lib/python3.10/site-packages/docutils/writers +usr/lib/python3.10/site-packages/docutils/writers/__init__.py +usr/lib/python3.10/site-packages/docutils/writers/_html_base.py +usr/lib/python3.10/site-packages/docutils/writers/docutils_xml.py +#usr/lib/python3.10/site-packages/docutils/writers/html4css1 +usr/lib/python3.10/site-packages/docutils/writers/html4css1/__init__.py +usr/lib/python3.10/site-packages/docutils/writers/html4css1/html4css1.css +usr/lib/python3.10/site-packages/docutils/writers/html4css1/template.txt +#usr/lib/python3.10/site-packages/docutils/writers/html5_polyglot +usr/lib/python3.10/site-packages/docutils/writers/html5_polyglot/__init__.py +usr/lib/python3.10/site-packages/docutils/writers/html5_polyglot/math.css +usr/lib/python3.10/site-packages/docutils/writers/html5_polyglot/minimal.css +usr/lib/python3.10/site-packages/docutils/writers/html5_polyglot/plain.css +usr/lib/python3.10/site-packages/docutils/writers/html5_polyglot/responsive.css +usr/lib/python3.10/site-packages/docutils/writers/html5_polyglot/template.txt +usr/lib/python3.10/site-packages/docutils/writers/html5_polyglot/tuftig.css +#usr/lib/python3.10/site-packages/docutils/writers/latex2e +usr/lib/python3.10/site-packages/docutils/writers/latex2e/__init__.py +usr/lib/python3.10/site-packages/docutils/writers/latex2e/default.tex +usr/lib/python3.10/site-packages/docutils/writers/latex2e/docutils.sty +usr/lib/python3.10/site-packages/docutils/writers/latex2e/titlepage.tex +usr/lib/python3.10/site-packages/docutils/writers/latex2e/titlingpage.tex +usr/lib/python3.10/site-packages/docutils/writers/latex2e/xelatex.tex +usr/lib/python3.10/site-packages/docutils/writers/manpage.py +usr/lib/python3.10/site-packages/docutils/writers/null.py +#usr/lib/python3.10/site-packages/docutils/writers/odf_odt +usr/lib/python3.10/site-packages/docutils/writers/odf_odt/__init__.py +usr/lib/python3.10/site-packages/docutils/writers/odf_odt/pygmentsformatter.py +usr/lib/python3.10/site-packages/docutils/writers/odf_odt/styles.odt +#usr/lib/python3.10/site-packages/docutils/writers/pep_html +usr/lib/python3.10/site-packages/docutils/writers/pep_html/__init__.py +usr/lib/python3.10/site-packages/docutils/writers/pep_html/pep.css +usr/lib/python3.10/site-packages/docutils/writers/pep_html/template.txt +usr/lib/python3.10/site-packages/docutils/writers/pseudoxml.py +#usr/lib/python3.10/site-packages/docutils/writers/s5_html +usr/lib/python3.10/site-packages/docutils/writers/s5_html/__init__.py +#usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/README.txt +#usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/big-black +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/big-black/__base__ +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/big-black/framing.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/big-black/pretty.css +#usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/big-white +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/big-white/framing.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/big-white/pretty.css +#usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/default +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/default/framing.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/default/opera.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/default/outline.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/default/pretty.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/default/print.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/default/s5-core.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/default/slides.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/default/slides.js +#usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/medium-black +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/medium-black/__base__ +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/medium-black/pretty.css +#usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/medium-white +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/medium-white/framing.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/medium-white/pretty.css +#usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/small-black +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/small-black/__base__ +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/small-black/pretty.css +#usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/small-white +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/small-white/framing.css +usr/lib/python3.10/site-packages/docutils/writers/s5_html/themes/small-white/pretty.css +#usr/lib/python3.10/site-packages/docutils/writers/xetex +usr/lib/python3.10/site-packages/docutils/writers/xetex/__init__.py diff --git a/config/rootfiles/packages/python3-flit b/config/rootfiles/packages/python3-flit new file mode 100644 index 0000000000..ac483dddf0 --- /dev/null +++ b/config/rootfiles/packages/python3-flit @@ -0,0 +1,106 @@ +usr/lib/python3.10/site-packages/flit_core +#usr/lib/python3.10/site-packages/flit_core-3.6.0.dist-info +#usr/lib/python3.10/site-packages/flit_core-3.6.0.dist-info/INSTALLER +#usr/lib/python3.10/site-packages/flit_core-3.6.0.dist-info/METADATA +#usr/lib/python3.10/site-packages/flit_core-3.6.0.dist-info/RECORD +#usr/lib/python3.10/site-packages/flit_core-3.6.0.dist-info/REQUESTED +#usr/lib/python3.10/site-packages/flit_core-3.6.0.dist-info/WHEEL +#usr/lib/python3.10/site-packages/flit_core-3.6.0.dist-info/direct_url.json +usr/lib/python3.10/site-packages/flit_core/__init__.py +usr/lib/python3.10/site-packages/flit_core/buildapi.py +usr/lib/python3.10/site-packages/flit_core/common.py +usr/lib/python3.10/site-packages/flit_core/config.py +usr/lib/python3.10/site-packages/flit_core/sdist.py +#usr/lib/python3.10/site-packages/flit_core/tests +#usr/lib/python3.10/site-packages/flit_core/tests/__init__.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples +#usr/lib/python3.10/site-packages/flit_core/tests/samples/EG_README.rst +#usr/lib/python3.10/site-packages/flit_core/tests/samples/bad-description-ext.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/conflicting_modules +#usr/lib/python3.10/site-packages/flit_core/tests/samples/conflicting_modules/module1.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/conflicting_modules/pyproject.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/conflicting_modules/src +#usr/lib/python3.10/site-packages/flit_core/tests/samples/conflicting_modules/src/module1.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/constructed_version +#usr/lib/python3.10/site-packages/flit_core/tests/samples/constructed_version/module1.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/constructed_version/pyproject.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/extras-dev-conflict.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/extras.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/inclusion +#usr/lib/python3.10/site-packages/flit_core/tests/samples/inclusion/LICENSES +#usr/lib/python3.10/site-packages/flit_core/tests/samples/inclusion/LICENSES/README +#usr/lib/python3.10/site-packages/flit_core/tests/samples/inclusion/doc +#usr/lib/python3.10/site-packages/flit_core/tests/samples/inclusion/doc/subdir +#usr/lib/python3.10/site-packages/flit_core/tests/samples/inclusion/doc/subdir/test.txt +#usr/lib/python3.10/site-packages/flit_core/tests/samples/inclusion/doc/test.rst +#usr/lib/python3.10/site-packages/flit_core/tests/samples/inclusion/doc/test.txt +#usr/lib/python3.10/site-packages/flit_core/tests/samples/inclusion/module1.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/inclusion/pyproject.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/invalid_version1.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/missing-description-file.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/misspelled-key.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/module1-pkg.ini +#usr/lib/python3.10/site-packages/flit_core/tests/samples/module1-pkg.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/module1.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/module2.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/moduleunimportable.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/my-description.rst +#usr/lib/python3.10/site-packages/flit_core/tests/samples/no_docstring-pkg.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/no_docstring.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/ns1-pkg +#usr/lib/python3.10/site-packages/flit_core/tests/samples/ns1-pkg/EG_README.rst +#usr/lib/python3.10/site-packages/flit_core/tests/samples/ns1-pkg/ns1 +#usr/lib/python3.10/site-packages/flit_core/tests/samples/ns1-pkg/ns1/pkg +#usr/lib/python3.10/site-packages/flit_core/tests/samples/ns1-pkg/ns1/pkg/__init__.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/ns1-pkg/pyproject.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1 +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1/__init__.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1/data_dir +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1/data_dir/foo.sh +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1/foo.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1/subpkg +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1/subpkg/__init__.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1/subpkg/sp_data_dir +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1/subpkg/sp_data_dir/test.json +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1/subpkg2 +#usr/lib/python3.10/site-packages/flit_core/tests/samples/package1/subpkg2/__init__.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep517 +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep517/LICENSE +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep517/README.rst +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep517/module1.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep517/pyproject.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep621 +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep621/LICENSE +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep621/README.rst +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep621/module1a.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep621/pyproject.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep621_nodynamic +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep621_nodynamic/README.rst +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep621_nodynamic/module1.py +#usr/lib/python3.10/site-packages/flit_core/tests/samples/pep621_nodynamic/pyproject.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/requires-dev.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/requires-envmark.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/requires-extra-envmark.toml +#usr/lib/python3.10/site-packages/flit_core/tests/samples/requires-requests.toml +#usr/lib/python3.10/site-packages/flit_core/tests/test_build_thyself.py +#usr/lib/python3.10/site-packages/flit_core/tests/test_buildapi.py +#usr/lib/python3.10/site-packages/flit_core/tests/test_common.py +#usr/lib/python3.10/site-packages/flit_core/tests/test_config.py +#usr/lib/python3.10/site-packages/flit_core/tests/test_sdist.py +#usr/lib/python3.10/site-packages/flit_core/tests/test_versionno.py +#usr/lib/python3.10/site-packages/flit_core/tests/test_wheel.py +usr/lib/python3.10/site-packages/flit_core/vendor +usr/lib/python3.10/site-packages/flit_core/vendor/README +usr/lib/python3.10/site-packages/flit_core/vendor/__init__.py +usr/lib/python3.10/site-packages/flit_core/vendor/tomli +#usr/lib/python3.10/site-packages/flit_core/vendor/tomli-1.2.3.dist-info +#usr/lib/python3.10/site-packages/flit_core/vendor/tomli-1.2.3.dist-info/LICENSE +#usr/lib/python3.10/site-packages/flit_core/vendor/tomli-1.2.3.dist-info/METADATA +usr/lib/python3.10/site-packages/flit_core/vendor/tomli/__init__.py +usr/lib/python3.10/site-packages/flit_core/vendor/tomli/_parser.py +usr/lib/python3.10/site-packages/flit_core/vendor/tomli/_re.py +usr/lib/python3.10/site-packages/flit_core/vendor/tomli/_types.py +usr/lib/python3.10/site-packages/flit_core/vendor/tomli/py.typed +usr/lib/python3.10/site-packages/flit_core/versionno.py +usr/lib/python3.10/site-packages/flit_core/wheel.py diff --git a/config/rootfiles/packages/python3-idna b/config/rootfiles/packages/python3-idna new file mode 100644 index 0000000000..01ee2e1357 --- /dev/null +++ b/config/rootfiles/packages/python3-idna @@ -0,0 +1,15 @@ +usr/lib/python3.10/site-packages/idna +#usr/lib/python3.10/site-packages/idna-3.3-py3.10.egg-info +#usr/lib/python3.10/site-packages/idna-3.3-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/idna-3.3-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/idna-3.3-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/idna-3.3-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/idna/__init__.py +usr/lib/python3.10/site-packages/idna/codec.py +usr/lib/python3.10/site-packages/idna/compat.py +usr/lib/python3.10/site-packages/idna/core.py +usr/lib/python3.10/site-packages/idna/idnadata.py +usr/lib/python3.10/site-packages/idna/intranges.py +usr/lib/python3.10/site-packages/idna/package_data.py +usr/lib/python3.10/site-packages/idna/py.typed +usr/lib/python3.10/site-packages/idna/uts46data.py diff --git a/config/rootfiles/packages/python3-jmespath b/config/rootfiles/packages/python3-jmespath index 6f0022a13f..5232c958b6 100644 --- a/config/rootfiles/packages/python3-jmespath +++ b/config/rootfiles/packages/python3-jmespath @@ -1,15 +1,15 @@ usr/bin/jp.py -#usr/lib/python3.8/site-packages/jmespath -#usr/lib/python3.8/site-packages/jmespath-0.9.5-py3.8.egg-info -#usr/lib/python3.8/site-packages/jmespath-0.9.5-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/jmespath-0.9.5-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/jmespath-0.9.5-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/jmespath-0.9.5-py3.8.egg-info/top_level.txt -usr/lib/python3.8/site-packages/jmespath/__init__.py -usr/lib/python3.8/site-packages/jmespath/ast.py -usr/lib/python3.8/site-packages/jmespath/compat.py -usr/lib/python3.8/site-packages/jmespath/exceptions.py -usr/lib/python3.8/site-packages/jmespath/functions.py -usr/lib/python3.8/site-packages/jmespath/lexer.py -usr/lib/python3.8/site-packages/jmespath/parser.py -usr/lib/python3.8/site-packages/jmespath/visitor.py +#usr/lib/python3.10/site-packages/jmespath +#usr/lib/python3.10/site-packages/jmespath-0.10.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/jmespath-0.10.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/jmespath-0.10.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/jmespath-0.10.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/jmespath-0.10.0-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/jmespath/__init__.py +usr/lib/python3.10/site-packages/jmespath/ast.py +usr/lib/python3.10/site-packages/jmespath/compat.py +usr/lib/python3.10/site-packages/jmespath/exceptions.py +usr/lib/python3.10/site-packages/jmespath/functions.py +usr/lib/python3.10/site-packages/jmespath/lexer.py +usr/lib/python3.10/site-packages/jmespath/parser.py +usr/lib/python3.10/site-packages/jmespath/visitor.py diff --git a/config/rootfiles/packages/python3-msgpack b/config/rootfiles/packages/python3-msgpack deleted file mode 100644 index a0ecfc6e64..0000000000 --- a/config/rootfiles/packages/python3-msgpack +++ /dev/null @@ -1,12 +0,0 @@ -#usr/lib/python3.8/site-packages/msgpack -usr/lib/python3.8/site-packages/msgpack/__init__.py -usr/lib/python3.8/site-packages/msgpack/_packer.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/msgpack/_unpacker.cpython-38-xxxMACHINExxx-linux-gnu.so -usr/lib/python3.8/site-packages/msgpack/_version.py -usr/lib/python3.8/site-packages/msgpack/exceptions.py -usr/lib/python3.8/site-packages/msgpack/fallback.py -#usr/lib/python3.8/site-packages/msgpack_python-0.5.6-py3.8.egg-info -#usr/lib/python3.8/site-packages/msgpack_python-0.5.6-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/msgpack_python-0.5.6-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/msgpack_python-0.5.6-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/msgpack_python-0.5.6-py3.8.egg-info/top_level.txt diff --git a/config/rootfiles/packages/python3-pyasn1 b/config/rootfiles/packages/python3-pyasn1 index 39ba416845..e625f9130b 100644 --- a/config/rootfiles/packages/python3-pyasn1 +++ b/config/rootfiles/packages/python3-pyasn1 @@ -1,50 +1,50 @@ -#usr/lib/python3.8/site-packages/pyasn1 -#usr/lib/python3.8/site-packages/pyasn1-0.4.8-py3.8.egg-info -#usr/lib/python3.8/site-packages/pyasn1-0.4.8-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/pyasn1-0.4.8-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/pyasn1-0.4.8-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/pyasn1-0.4.8-py3.8.egg-info/top_level.txt -#usr/lib/python3.8/site-packages/pyasn1-0.4.8-py3.8.egg-info/zip-safe -usr/lib/python3.8/site-packages/pyasn1/__init__.py -#usr/lib/python3.8/site-packages/pyasn1/codec -usr/lib/python3.8/site-packages/pyasn1/codec/__init__.py -#usr/lib/python3.8/site-packages/pyasn1/codec/ber -usr/lib/python3.8/site-packages/pyasn1/codec/ber/__init__.py -usr/lib/python3.8/site-packages/pyasn1/codec/ber/decoder.py -usr/lib/python3.8/site-packages/pyasn1/codec/ber/encoder.py -usr/lib/python3.8/site-packages/pyasn1/codec/ber/eoo.py -#usr/lib/python3.8/site-packages/pyasn1/codec/cer -usr/lib/python3.8/site-packages/pyasn1/codec/cer/__init__.py -usr/lib/python3.8/site-packages/pyasn1/codec/cer/decoder.py -usr/lib/python3.8/site-packages/pyasn1/codec/cer/encoder.py -#usr/lib/python3.8/site-packages/pyasn1/codec/der -usr/lib/python3.8/site-packages/pyasn1/codec/der/__init__.py -usr/lib/python3.8/site-packages/pyasn1/codec/der/decoder.py -usr/lib/python3.8/site-packages/pyasn1/codec/der/encoder.py -#usr/lib/python3.8/site-packages/pyasn1/codec/native -usr/lib/python3.8/site-packages/pyasn1/codec/native/__init__.py -usr/lib/python3.8/site-packages/pyasn1/codec/native/decoder.py -usr/lib/python3.8/site-packages/pyasn1/codec/native/encoder.py -#usr/lib/python3.8/site-packages/pyasn1/compat -usr/lib/python3.8/site-packages/pyasn1/compat/__init__.py -usr/lib/python3.8/site-packages/pyasn1/compat/binary.py -usr/lib/python3.8/site-packages/pyasn1/compat/calling.py -usr/lib/python3.8/site-packages/pyasn1/compat/dateandtime.py -usr/lib/python3.8/site-packages/pyasn1/compat/integer.py -usr/lib/python3.8/site-packages/pyasn1/compat/octets.py -usr/lib/python3.8/site-packages/pyasn1/compat/string.py -usr/lib/python3.8/site-packages/pyasn1/debug.py -usr/lib/python3.8/site-packages/pyasn1/error.py -#usr/lib/python3.8/site-packages/pyasn1/type -usr/lib/python3.8/site-packages/pyasn1/type/__init__.py -usr/lib/python3.8/site-packages/pyasn1/type/base.py -usr/lib/python3.8/site-packages/pyasn1/type/char.py -usr/lib/python3.8/site-packages/pyasn1/type/constraint.py -usr/lib/python3.8/site-packages/pyasn1/type/error.py -usr/lib/python3.8/site-packages/pyasn1/type/namedtype.py -usr/lib/python3.8/site-packages/pyasn1/type/namedval.py -usr/lib/python3.8/site-packages/pyasn1/type/opentype.py -usr/lib/python3.8/site-packages/pyasn1/type/tag.py -usr/lib/python3.8/site-packages/pyasn1/type/tagmap.py -usr/lib/python3.8/site-packages/pyasn1/type/univ.py -usr/lib/python3.8/site-packages/pyasn1/type/useful.py +#usr/lib/python3.10/site-packages/pyasn1 +#usr/lib/python3.10/site-packages/pyasn1-0.4.8-py3.10.egg-info +#usr/lib/python3.10/site-packages/pyasn1-0.4.8-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/pyasn1-0.4.8-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/pyasn1-0.4.8-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/pyasn1-0.4.8-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/pyasn1-0.4.8-py3.10.egg-info/zip-safe +usr/lib/python3.10/site-packages/pyasn1/__init__.py +#usr/lib/python3.10/site-packages/pyasn1/codec +usr/lib/python3.10/site-packages/pyasn1/codec/__init__.py +#usr/lib/python3.10/site-packages/pyasn1/codec/ber +usr/lib/python3.10/site-packages/pyasn1/codec/ber/__init__.py +usr/lib/python3.10/site-packages/pyasn1/codec/ber/decoder.py +usr/lib/python3.10/site-packages/pyasn1/codec/ber/encoder.py +usr/lib/python3.10/site-packages/pyasn1/codec/ber/eoo.py +#usr/lib/python3.10/site-packages/pyasn1/codec/cer +usr/lib/python3.10/site-packages/pyasn1/codec/cer/__init__.py +usr/lib/python3.10/site-packages/pyasn1/codec/cer/decoder.py +usr/lib/python3.10/site-packages/pyasn1/codec/cer/encoder.py +#usr/lib/python3.10/site-packages/pyasn1/codec/der +usr/lib/python3.10/site-packages/pyasn1/codec/der/__init__.py +usr/lib/python3.10/site-packages/pyasn1/codec/der/decoder.py +usr/lib/python3.10/site-packages/pyasn1/codec/der/encoder.py +#usr/lib/python3.10/site-packages/pyasn1/codec/native +usr/lib/python3.10/site-packages/pyasn1/codec/native/__init__.py +usr/lib/python3.10/site-packages/pyasn1/codec/native/decoder.py +usr/lib/python3.10/site-packages/pyasn1/codec/native/encoder.py +#usr/lib/python3.10/site-packages/pyasn1/compat +usr/lib/python3.10/site-packages/pyasn1/compat/__init__.py +usr/lib/python3.10/site-packages/pyasn1/compat/binary.py +usr/lib/python3.10/site-packages/pyasn1/compat/calling.py +usr/lib/python3.10/site-packages/pyasn1/compat/dateandtime.py +usr/lib/python3.10/site-packages/pyasn1/compat/integer.py +usr/lib/python3.10/site-packages/pyasn1/compat/octets.py +usr/lib/python3.10/site-packages/pyasn1/compat/string.py +usr/lib/python3.10/site-packages/pyasn1/debug.py +usr/lib/python3.10/site-packages/pyasn1/error.py +#usr/lib/python3.10/site-packages/pyasn1/type +usr/lib/python3.10/site-packages/pyasn1/type/__init__.py +usr/lib/python3.10/site-packages/pyasn1/type/base.py +usr/lib/python3.10/site-packages/pyasn1/type/char.py +usr/lib/python3.10/site-packages/pyasn1/type/constraint.py +usr/lib/python3.10/site-packages/pyasn1/type/error.py +usr/lib/python3.10/site-packages/pyasn1/type/namedtype.py +usr/lib/python3.10/site-packages/pyasn1/type/namedval.py +usr/lib/python3.10/site-packages/pyasn1/type/opentype.py +usr/lib/python3.10/site-packages/pyasn1/type/tag.py +usr/lib/python3.10/site-packages/pyasn1/type/tagmap.py +usr/lib/python3.10/site-packages/pyasn1/type/univ.py +usr/lib/python3.10/site-packages/pyasn1/type/useful.py diff --git a/config/rootfiles/packages/python3-pyparsing b/config/rootfiles/packages/python3-pyparsing index 3106ff1b61..3dbfdcdafd 100644 --- a/config/rootfiles/packages/python3-pyparsing +++ b/config/rootfiles/packages/python3-pyparsing @@ -1,9 +1,22 @@ -#usr/lib/python3.8/site-packages/easy-install.pth -#usr/lib/python3.8/site-packages/pyparsing-2.4.7-py3.8.egg -#usr/lib/python3.8/site-packages/pyparsing-2.4.7-py3.8.egg/EGG-INFO -#usr/lib/python3.8/site-packages/pyparsing-2.4.7-py3.8.egg/EGG-INFO/PKG-INFO -#usr/lib/python3.8/site-packages/pyparsing-2.4.7-py3.8.egg/EGG-INFO/SOURCES.txt -#usr/lib/python3.8/site-packages/pyparsing-2.4.7-py3.8.egg/EGG-INFO/dependency_links.txt -#usr/lib/python3.8/site-packages/pyparsing-2.4.7-py3.8.egg/EGG-INFO/not-zip-safe -#usr/lib/python3.8/site-packages/pyparsing-2.4.7-py3.8.egg/EGG-INFO/top_level.txt -usr/lib/python3.8/site-packages/pyparsing-2.4.7-py3.8.egg/pyparsing.py +#usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg +#usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/EGG-INFO +#usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/EGG-INFO/PKG-INFO +#usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/EGG-INFO/SOURCES.txt +#usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/EGG-INFO/dependency_links.txt +#usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/EGG-INFO/not-zip-safe +#usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/EGG-INFO/requires.txt +#usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/EGG-INFO/top_level.txt +#usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/__init__.py +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/actions.py +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/common.py +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/core.py +#usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/diagram +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/diagram/__init__.py +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/diagram/template.jinja2 +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/exceptions.py +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/helpers.py +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/results.py +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/testing.py +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/unicode.py +usr/lib/python3.10/site-packages/pyparsing-3.0.6-py3.10.egg/pyparsing/util.py diff --git a/config/rootfiles/packages/python3-pytz b/config/rootfiles/packages/python3-pytz new file mode 100644 index 0000000000..5a7484621a --- /dev/null +++ b/config/rootfiles/packages/python3-pytz @@ -0,0 +1,634 @@ +usr/lib/python3.10/site-packages/pytz +#usr/lib/python3.10/site-packages/pytz-2021.3-py3.10.egg-info +#usr/lib/python3.10/site-packages/pytz-2021.3-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/pytz-2021.3-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/pytz-2021.3-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/pytz-2021.3-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/pytz-2021.3-py3.10.egg-info/zip-safe +usr/lib/python3.10/site-packages/pytz/__init__.py +usr/lib/python3.10/site-packages/pytz/exceptions.py +usr/lib/python3.10/site-packages/pytz/lazy.py +usr/lib/python3.10/site-packages/pytz/reference.py +usr/lib/python3.10/site-packages/pytz/tzfile.py +usr/lib/python3.10/site-packages/pytz/tzinfo.py +usr/lib/python3.10/site-packages/pytz/zoneinfo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Abidjan +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Accra +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Addis_Ababa +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Algiers +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Asmara +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Asmera +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Bamako +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Bangui +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Banjul +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Bissau +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Blantyre +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Brazzaville +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Bujumbura +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Cairo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Casablanca +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Ceuta +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Conakry +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Dakar +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Dar_es_Salaam +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Djibouti +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Douala +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/El_Aaiun +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Freetown +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Gaborone +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Harare +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Johannesburg +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Juba +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Kampala +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Khartoum +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Kigali +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Kinshasa +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Lagos +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Libreville +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Lome +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Luanda +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Lubumbashi +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Lusaka +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Malabo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Maputo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Maseru +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Mbabane +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Mogadishu +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Monrovia +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Nairobi +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Ndjamena +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Niamey +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Nouakchott +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Ouagadougou +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Porto-Novo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Sao_Tome +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Timbuktu +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Tripoli +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Tunis +usr/lib/python3.10/site-packages/pytz/zoneinfo/Africa/Windhoek +usr/lib/python3.10/site-packages/pytz/zoneinfo/America +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Adak +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Anchorage +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Anguilla +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Antigua +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Araguaina +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/Buenos_Aires +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/Catamarca +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/ComodRivadavia +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/Cordoba +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/Jujuy +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/La_Rioja +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/Mendoza +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/Rio_Gallegos +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/Salta +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/San_Juan +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/San_Luis +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/Tucuman +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Argentina/Ushuaia +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Aruba +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Asuncion +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Atikokan +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Atka +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Bahia +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Bahia_Banderas +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Barbados +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Belem +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Belize +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Blanc-Sablon +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Boa_Vista +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Bogota +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Boise +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Buenos_Aires +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Cambridge_Bay +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Campo_Grande +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Cancun +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Caracas +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Catamarca +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Cayenne +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Cayman +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Chicago +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Chihuahua +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Coral_Harbour +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Cordoba +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Costa_Rica +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Creston +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Cuiaba +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Curacao +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Danmarkshavn +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Dawson +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Dawson_Creek +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Denver +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Detroit +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Dominica +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Edmonton +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Eirunepe +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/El_Salvador +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Ensenada +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Fort_Nelson +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Fort_Wayne +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Fortaleza +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Glace_Bay +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Godthab +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Goose_Bay +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Grand_Turk +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Grenada +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Guadeloupe +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Guatemala +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Guayaquil +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Guyana +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Halifax +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Havana +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Hermosillo +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Indiana +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Indiana/Indianapolis +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Indiana/Knox +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Indiana/Marengo +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Indiana/Petersburg +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Indiana/Tell_City +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Indiana/Vevay +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Indiana/Vincennes +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Indiana/Winamac +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Indianapolis +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Inuvik +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Iqaluit +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Jamaica +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Jujuy +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Juneau +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Kentucky +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Kentucky/Louisville +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Kentucky/Monticello +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Knox_IN +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Kralendijk +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/La_Paz +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Lima +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Los_Angeles +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Louisville +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Lower_Princes +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Maceio +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Managua +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Manaus +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Marigot +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Martinique +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Matamoros +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Mazatlan +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Mendoza +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Menominee +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Merida +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Metlakatla +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Mexico_City +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Miquelon +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Moncton +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Monterrey +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Montevideo +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Montreal +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Montserrat +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Nassau +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/New_York +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Nipigon +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Nome +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Noronha +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/North_Dakota +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/North_Dakota/Beulah +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/North_Dakota/Center +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/North_Dakota/New_Salem +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Nuuk +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Ojinaga +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Panama +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Pangnirtung +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Paramaribo +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Phoenix +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Port-au-Prince +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Port_of_Spain +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Porto_Acre +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Porto_Velho +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Puerto_Rico +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Punta_Arenas +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Rainy_River +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Rankin_Inlet +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Recife +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Regina +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Resolute +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Rio_Branco +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Rosario +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Santa_Isabel +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Santarem +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Santiago +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Santo_Domingo +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Sao_Paulo +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Scoresbysund +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Shiprock +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Sitka +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/St_Barthelemy +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/St_Johns +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/St_Kitts +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/St_Lucia +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/St_Thomas +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/St_Vincent +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Swift_Current +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Tegucigalpa +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Thule +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Thunder_Bay +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Tijuana +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Toronto +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Tortola +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Vancouver +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Virgin +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Whitehorse +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Winnipeg +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Yakutat +usr/lib/python3.10/site-packages/pytz/zoneinfo/America/Yellowknife +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/Casey +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/Davis +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/DumontDUrville +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/Macquarie +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/Mawson +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/McMurdo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/Palmer +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/Rothera +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/South_Pole +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/Syowa +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/Troll +usr/lib/python3.10/site-packages/pytz/zoneinfo/Antarctica/Vostok +usr/lib/python3.10/site-packages/pytz/zoneinfo/Arctic +usr/lib/python3.10/site-packages/pytz/zoneinfo/Arctic/Longyearbyen +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Aden +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Almaty +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Amman +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Anadyr +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Aqtau +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Aqtobe +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Ashgabat +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Ashkhabad +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Atyrau +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Baghdad +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Bahrain +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Baku +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Bangkok +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Barnaul +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Beirut +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Bishkek +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Brunei +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Calcutta +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Chita +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Choibalsan +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Chongqing +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Chungking +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Colombo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Dacca +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Damascus +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Dhaka +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Dili +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Dubai +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Dushanbe +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Famagusta +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Gaza +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Harbin +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Hebron +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Ho_Chi_Minh +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Hong_Kong +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Hovd +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Irkutsk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Istanbul +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Jakarta +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Jayapura +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Jerusalem +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Kabul +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Kamchatka +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Karachi +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Kashgar +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Kathmandu +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Katmandu +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Khandyga +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Kolkata +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Krasnoyarsk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Kuala_Lumpur +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Kuching +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Kuwait +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Macao +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Macau +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Magadan +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Makassar +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Manila +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Muscat +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Nicosia +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Novokuznetsk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Novosibirsk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Omsk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Oral +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Phnom_Penh +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Pontianak +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Pyongyang +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Qatar +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Qostanay +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Qyzylorda +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Rangoon +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Riyadh +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Saigon +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Sakhalin +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Samarkand +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Seoul +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Shanghai +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Singapore +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Srednekolymsk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Taipei +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Tashkent +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Tbilisi +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Tehran +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Tel_Aviv +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Thimbu +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Thimphu +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Tokyo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Tomsk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Ujung_Pandang +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Ulaanbaatar +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Ulan_Bator +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Urumqi +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Ust-Nera +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Vientiane +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Vladivostok +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Yakutsk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Yangon +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Yekaterinburg +usr/lib/python3.10/site-packages/pytz/zoneinfo/Asia/Yerevan +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/Azores +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/Bermuda +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/Canary +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/Cape_Verde +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/Faeroe +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/Faroe +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/Jan_Mayen +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/Madeira +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/Reykjavik +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/South_Georgia +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/St_Helena +usr/lib/python3.10/site-packages/pytz/zoneinfo/Atlantic/Stanley +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/ACT +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Adelaide +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Brisbane +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Broken_Hill +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Canberra +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Currie +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Darwin +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Eucla +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Hobart +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/LHI +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Lindeman +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Lord_Howe +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Melbourne +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/NSW +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/North +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Perth +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Queensland +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/South +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Sydney +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Tasmania +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Victoria +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/West +usr/lib/python3.10/site-packages/pytz/zoneinfo/Australia/Yancowinna +usr/lib/python3.10/site-packages/pytz/zoneinfo/Brazil +usr/lib/python3.10/site-packages/pytz/zoneinfo/Brazil/Acre +usr/lib/python3.10/site-packages/pytz/zoneinfo/Brazil/DeNoronha +usr/lib/python3.10/site-packages/pytz/zoneinfo/Brazil/East +usr/lib/python3.10/site-packages/pytz/zoneinfo/Brazil/West +usr/lib/python3.10/site-packages/pytz/zoneinfo/CET +usr/lib/python3.10/site-packages/pytz/zoneinfo/CST6CDT +usr/lib/python3.10/site-packages/pytz/zoneinfo/Canada +usr/lib/python3.10/site-packages/pytz/zoneinfo/Canada/Atlantic +usr/lib/python3.10/site-packages/pytz/zoneinfo/Canada/Central +usr/lib/python3.10/site-packages/pytz/zoneinfo/Canada/Eastern +usr/lib/python3.10/site-packages/pytz/zoneinfo/Canada/Mountain +usr/lib/python3.10/site-packages/pytz/zoneinfo/Canada/Newfoundland +usr/lib/python3.10/site-packages/pytz/zoneinfo/Canada/Pacific +usr/lib/python3.10/site-packages/pytz/zoneinfo/Canada/Saskatchewan +usr/lib/python3.10/site-packages/pytz/zoneinfo/Canada/Yukon +usr/lib/python3.10/site-packages/pytz/zoneinfo/Chile +usr/lib/python3.10/site-packages/pytz/zoneinfo/Chile/Continental +usr/lib/python3.10/site-packages/pytz/zoneinfo/Chile/EasterIsland +usr/lib/python3.10/site-packages/pytz/zoneinfo/Cuba +usr/lib/python3.10/site-packages/pytz/zoneinfo/EET +usr/lib/python3.10/site-packages/pytz/zoneinfo/EST +usr/lib/python3.10/site-packages/pytz/zoneinfo/EST5EDT +usr/lib/python3.10/site-packages/pytz/zoneinfo/Egypt +usr/lib/python3.10/site-packages/pytz/zoneinfo/Eire +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+0 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+1 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+10 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+11 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+12 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+2 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+3 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+4 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+5 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+6 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+7 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+8 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT+9 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-0 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-1 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-10 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-11 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-12 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-13 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-14 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-2 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-3 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-4 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-5 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-6 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-7 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-8 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT-9 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/GMT0 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/Greenwich +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/UCT +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/UTC +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/Universal +usr/lib/python3.10/site-packages/pytz/zoneinfo/Etc/Zulu +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Amsterdam +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Andorra +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Astrakhan +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Athens +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Belfast +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Belgrade +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Berlin +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Bratislava +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Brussels +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Bucharest +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Budapest +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Busingen +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Chisinau +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Copenhagen +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Dublin +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Gibraltar +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Guernsey +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Helsinki +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Isle_of_Man +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Istanbul +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Jersey +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Kaliningrad +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Kiev +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Kirov +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Lisbon +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Ljubljana +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/London +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Luxembourg +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Madrid +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Malta +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Mariehamn +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Minsk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Monaco +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Moscow +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Nicosia +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Oslo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Paris +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Podgorica +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Prague +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Riga +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Rome +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Samara +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/San_Marino +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Sarajevo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Saratov +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Simferopol +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Skopje +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Sofia +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Stockholm +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Tallinn +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Tirane +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Tiraspol +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Ulyanovsk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Uzhgorod +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Vaduz +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Vatican +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Vienna +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Vilnius +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Volgograd +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Warsaw +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Zagreb +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Zaporozhye +usr/lib/python3.10/site-packages/pytz/zoneinfo/Europe/Zurich +usr/lib/python3.10/site-packages/pytz/zoneinfo/Factory +usr/lib/python3.10/site-packages/pytz/zoneinfo/GB +usr/lib/python3.10/site-packages/pytz/zoneinfo/GB-Eire +usr/lib/python3.10/site-packages/pytz/zoneinfo/GMT +usr/lib/python3.10/site-packages/pytz/zoneinfo/GMT+0 +usr/lib/python3.10/site-packages/pytz/zoneinfo/GMT-0 +usr/lib/python3.10/site-packages/pytz/zoneinfo/GMT0 +usr/lib/python3.10/site-packages/pytz/zoneinfo/Greenwich +usr/lib/python3.10/site-packages/pytz/zoneinfo/HST +usr/lib/python3.10/site-packages/pytz/zoneinfo/Hongkong +usr/lib/python3.10/site-packages/pytz/zoneinfo/Iceland +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Antananarivo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Chagos +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Christmas +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Cocos +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Comoro +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Kerguelen +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Mahe +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Maldives +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Mauritius +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Mayotte +usr/lib/python3.10/site-packages/pytz/zoneinfo/Indian/Reunion +usr/lib/python3.10/site-packages/pytz/zoneinfo/Iran +usr/lib/python3.10/site-packages/pytz/zoneinfo/Israel +usr/lib/python3.10/site-packages/pytz/zoneinfo/Jamaica +usr/lib/python3.10/site-packages/pytz/zoneinfo/Japan +usr/lib/python3.10/site-packages/pytz/zoneinfo/Kwajalein +usr/lib/python3.10/site-packages/pytz/zoneinfo/Libya +usr/lib/python3.10/site-packages/pytz/zoneinfo/MET +usr/lib/python3.10/site-packages/pytz/zoneinfo/MST +usr/lib/python3.10/site-packages/pytz/zoneinfo/MST7MDT +usr/lib/python3.10/site-packages/pytz/zoneinfo/Mexico +usr/lib/python3.10/site-packages/pytz/zoneinfo/Mexico/BajaNorte +usr/lib/python3.10/site-packages/pytz/zoneinfo/Mexico/BajaSur +usr/lib/python3.10/site-packages/pytz/zoneinfo/Mexico/General +usr/lib/python3.10/site-packages/pytz/zoneinfo/NZ +usr/lib/python3.10/site-packages/pytz/zoneinfo/NZ-CHAT +usr/lib/python3.10/site-packages/pytz/zoneinfo/Navajo +usr/lib/python3.10/site-packages/pytz/zoneinfo/PRC +usr/lib/python3.10/site-packages/pytz/zoneinfo/PST8PDT +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Apia +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Auckland +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Bougainville +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Chatham +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Chuuk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Easter +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Efate +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Enderbury +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Fakaofo +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Fiji +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Funafuti +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Galapagos +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Gambier +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Guadalcanal +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Guam +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Honolulu +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Johnston +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Kanton +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Kiritimati +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Kosrae +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Kwajalein +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Majuro +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Marquesas +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Midway +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Nauru +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Niue +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Norfolk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Noumea +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Pago_Pago +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Palau +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Pitcairn +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Pohnpei +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Ponape +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Port_Moresby +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Rarotonga +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Saipan +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Samoa +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Tahiti +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Tarawa +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Tongatapu +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Truk +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Wake +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Wallis +usr/lib/python3.10/site-packages/pytz/zoneinfo/Pacific/Yap +usr/lib/python3.10/site-packages/pytz/zoneinfo/Poland +usr/lib/python3.10/site-packages/pytz/zoneinfo/Portugal +usr/lib/python3.10/site-packages/pytz/zoneinfo/ROC +usr/lib/python3.10/site-packages/pytz/zoneinfo/ROK +usr/lib/python3.10/site-packages/pytz/zoneinfo/Singapore +usr/lib/python3.10/site-packages/pytz/zoneinfo/Turkey +usr/lib/python3.10/site-packages/pytz/zoneinfo/UCT +usr/lib/python3.10/site-packages/pytz/zoneinfo/US +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Alaska +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Aleutian +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Arizona +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Central +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/East-Indiana +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Eastern +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Hawaii +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Indiana-Starke +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Michigan +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Mountain +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Pacific +usr/lib/python3.10/site-packages/pytz/zoneinfo/US/Samoa +usr/lib/python3.10/site-packages/pytz/zoneinfo/UTC +usr/lib/python3.10/site-packages/pytz/zoneinfo/Universal +usr/lib/python3.10/site-packages/pytz/zoneinfo/W-SU +usr/lib/python3.10/site-packages/pytz/zoneinfo/WET +usr/lib/python3.10/site-packages/pytz/zoneinfo/Zulu +usr/lib/python3.10/site-packages/pytz/zoneinfo/iso3166.tab +usr/lib/python3.10/site-packages/pytz/zoneinfo/leapseconds +usr/lib/python3.10/site-packages/pytz/zoneinfo/tzdata.zi +usr/lib/python3.10/site-packages/pytz/zoneinfo/zone.tab +usr/lib/python3.10/site-packages/pytz/zoneinfo/zone1970.tab diff --git a/config/rootfiles/packages/python3-requests b/config/rootfiles/packages/python3-requests new file mode 100644 index 0000000000..d334559bbe --- /dev/null +++ b/config/rootfiles/packages/python3-requests @@ -0,0 +1,26 @@ +usr/lib/python3.10/site-packages/requests +#usr/lib/python3.10/site-packages/requests-2.27.1-py3.10.egg-info +#usr/lib/python3.10/site-packages/requests-2.27.1-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/requests-2.27.1-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/requests-2.27.1-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/requests-2.27.1-py3.10.egg-info/not-zip-safe +#usr/lib/python3.10/site-packages/requests-2.27.1-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/requests-2.27.1-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/requests/__init__.py +usr/lib/python3.10/site-packages/requests/__version__.py +usr/lib/python3.10/site-packages/requests/_internal_utils.py +usr/lib/python3.10/site-packages/requests/adapters.py +usr/lib/python3.10/site-packages/requests/api.py +usr/lib/python3.10/site-packages/requests/auth.py +usr/lib/python3.10/site-packages/requests/certs.py +usr/lib/python3.10/site-packages/requests/compat.py +usr/lib/python3.10/site-packages/requests/cookies.py +usr/lib/python3.10/site-packages/requests/exceptions.py +usr/lib/python3.10/site-packages/requests/help.py +usr/lib/python3.10/site-packages/requests/hooks.py +usr/lib/python3.10/site-packages/requests/models.py +usr/lib/python3.10/site-packages/requests/packages.py +usr/lib/python3.10/site-packages/requests/sessions.py +usr/lib/python3.10/site-packages/requests/status_codes.py +usr/lib/python3.10/site-packages/requests/structures.py +usr/lib/python3.10/site-packages/requests/utils.py diff --git a/config/rootfiles/packages/python3-rsa b/config/rootfiles/packages/python3-rsa index ae16a66492..73ac732ad2 100644 --- a/config/rootfiles/packages/python3-rsa +++ b/config/rootfiles/packages/python3-rsa @@ -4,27 +4,27 @@ usr/bin/pyrsa-keygen usr/bin/pyrsa-priv2pub usr/bin/pyrsa-sign usr/bin/pyrsa-verify -#usr/lib/python3.8/site-packages/rsa -#usr/lib/python3.8/site-packages/rsa-4.0-py3.8.egg-info -#usr/lib/python3.8/site-packages/rsa-4.0-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/rsa-4.0-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/rsa-4.0-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/rsa-4.0-py3.8.egg-info/entry_points.txt -#usr/lib/python3.8/site-packages/rsa-4.0-py3.8.egg-info/requires.txt -#usr/lib/python3.8/site-packages/rsa-4.0-py3.8.egg-info/top_level.txt -usr/lib/python3.8/site-packages/rsa/__init__.py -usr/lib/python3.8/site-packages/rsa/_compat.py -usr/lib/python3.8/site-packages/rsa/asn1.py -usr/lib/python3.8/site-packages/rsa/cli.py -usr/lib/python3.8/site-packages/rsa/common.py -usr/lib/python3.8/site-packages/rsa/core.py -usr/lib/python3.8/site-packages/rsa/key.py -usr/lib/python3.8/site-packages/rsa/machine_size.py -usr/lib/python3.8/site-packages/rsa/parallel.py -usr/lib/python3.8/site-packages/rsa/pem.py -usr/lib/python3.8/site-packages/rsa/pkcs1.py -usr/lib/python3.8/site-packages/rsa/pkcs1_v2.py -usr/lib/python3.8/site-packages/rsa/prime.py -usr/lib/python3.8/site-packages/rsa/randnum.py -usr/lib/python3.8/site-packages/rsa/transform.py -usr/lib/python3.8/site-packages/rsa/util.py +#usr/lib/python3.10/site-packages/rsa +#usr/lib/python3.10/site-packages/rsa-4.8-py3.10.egg-info +#usr/lib/python3.10/site-packages/rsa-4.8-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/rsa-4.8-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/rsa-4.8-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/rsa-4.8-py3.10.egg-info/entry_points.txt +#usr/lib/python3.10/site-packages/rsa-4.8-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/rsa-4.8-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/rsa/__init__.py +usr/lib/python3.10/site-packages/rsa/_compat.py +usr/lib/python3.10/site-packages/rsa/asn1.py +usr/lib/python3.10/site-packages/rsa/cli.py +usr/lib/python3.10/site-packages/rsa/common.py +usr/lib/python3.10/site-packages/rsa/core.py +usr/lib/python3.10/site-packages/rsa/key.py +usr/lib/python3.10/site-packages/rsa/parallel.py +usr/lib/python3.10/site-packages/rsa/pem.py +usr/lib/python3.10/site-packages/rsa/pkcs1.py +usr/lib/python3.10/site-packages/rsa/pkcs1_v2.py +usr/lib/python3.10/site-packages/rsa/prime.py +usr/lib/python3.10/site-packages/rsa/py.typed +usr/lib/python3.10/site-packages/rsa/randnum.py +usr/lib/python3.10/site-packages/rsa/transform.py +usr/lib/python3.10/site-packages/rsa/util.py diff --git a/config/rootfiles/packages/python3-s3transfer b/config/rootfiles/packages/python3-s3transfer index 5d172a62a1..07e2def398 100644 --- a/config/rootfiles/packages/python3-s3transfer +++ b/config/rootfiles/packages/python3-s3transfer @@ -1,22 +1,23 @@ -#usr/lib/python3.8/site-packages/s3transfer -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info/requires.txt -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info/top_level.txt -usr/lib/python3.8/site-packages/s3transfer/__init__.py -usr/lib/python3.8/site-packages/s3transfer/bandwidth.py -usr/lib/python3.8/site-packages/s3transfer/compat.py -usr/lib/python3.8/site-packages/s3transfer/constants.py -usr/lib/python3.8/site-packages/s3transfer/copies.py -usr/lib/python3.8/site-packages/s3transfer/delete.py -usr/lib/python3.8/site-packages/s3transfer/download.py -usr/lib/python3.8/site-packages/s3transfer/exceptions.py -usr/lib/python3.8/site-packages/s3transfer/futures.py -usr/lib/python3.8/site-packages/s3transfer/manager.py -usr/lib/python3.8/site-packages/s3transfer/processpool.py -usr/lib/python3.8/site-packages/s3transfer/subscribers.py -usr/lib/python3.8/site-packages/s3transfer/tasks.py -usr/lib/python3.8/site-packages/s3transfer/upload.py -usr/lib/python3.8/site-packages/s3transfer/utils.py +#usr/lib/python3.10/site-packages/s3transfer +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/s3transfer/__init__.py +usr/lib/python3.10/site-packages/s3transfer/bandwidth.py +usr/lib/python3.10/site-packages/s3transfer/compat.py +usr/lib/python3.10/site-packages/s3transfer/constants.py +usr/lib/python3.10/site-packages/s3transfer/copies.py +usr/lib/python3.10/site-packages/s3transfer/crt.py +usr/lib/python3.10/site-packages/s3transfer/delete.py +usr/lib/python3.10/site-packages/s3transfer/download.py +usr/lib/python3.10/site-packages/s3transfer/exceptions.py +usr/lib/python3.10/site-packages/s3transfer/futures.py +usr/lib/python3.10/site-packages/s3transfer/manager.py +usr/lib/python3.10/site-packages/s3transfer/processpool.py +usr/lib/python3.10/site-packages/s3transfer/subscribers.py +usr/lib/python3.10/site-packages/s3transfer/tasks.py +usr/lib/python3.10/site-packages/s3transfer/upload.py +usr/lib/python3.10/site-packages/s3transfer/utils.py diff --git a/config/rootfiles/packages/python3-semantic-version b/config/rootfiles/packages/python3-semantic-version new file mode 100644 index 0000000000..5c4ff5ec3e --- /dev/null +++ b/config/rootfiles/packages/python3-semantic-version @@ -0,0 +1,10 @@ +usr/lib/python3.10/site-packages/semantic_version +#usr/lib/python3.10/site-packages/semantic_version-2.8.5-py3.10.egg-info +#usr/lib/python3.10/site-packages/semantic_version-2.8.5-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/semantic_version-2.8.5-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/semantic_version-2.8.5-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/semantic_version-2.8.5-py3.10.egg-info/not-zip-safe +#usr/lib/python3.10/site-packages/semantic_version-2.8.5-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/semantic_version/__init__.py +usr/lib/python3.10/site-packages/semantic_version/base.py +usr/lib/python3.10/site-packages/semantic_version/django_fields.py diff --git a/config/rootfiles/packages/python3-setuptools b/config/rootfiles/packages/python3-setuptools index b3576d39f4..1f491c8a7d 100644 --- a/config/rootfiles/packages/python3-setuptools +++ b/config/rootfiles/packages/python3-setuptools @@ -1,177 +1,179 @@ -#usr/lib/python3.8/site-packages/easy-install.pth -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/EGG-INFO -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/EGG-INFO/PKG-INFO -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/EGG-INFO/SOURCES.txt -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/EGG-INFO/dependency_links.txt -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/EGG-INFO/entry_points.txt -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/EGG-INFO/not-zip-safe -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/EGG-INFO/requires.txt -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/EGG-INFO/top_level.txt -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/_distutils_hack -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/_distutils_hack/__init__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/_distutils_hack/override.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/__init__.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/__init__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/appdirs.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/__about__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/__init__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/_compat.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/_structures.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/_typing.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/markers.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/requirements.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/specifiers.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/tags.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/utils.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/packaging/version.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/_vendor/pyparsing.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/extern -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/extern/__init__.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/tests -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/tests/data -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/tests/data/my-test-package-source -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/pkg_resources/tests/data/my-test-package-source/setup.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/__init__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_deprecation_warning.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/__init__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/_msvccompiler.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/archive_util.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/bcppcompiler.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/ccompiler.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/cmd.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/__init__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/bdist.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/bdist_dumb.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/bdist_msi.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/bdist_rpm.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/bdist_wininst.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/build.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/build_clib.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/build_ext.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/build_py.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/build_scripts.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/check.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/clean.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/config.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/install.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/install_data.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/install_egg_info.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/install_headers.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/install_lib.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/install_scripts.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/py37compat.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/register.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/sdist.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/command/upload.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/config.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/core.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/cygwinccompiler.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/debug.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/dep_util.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/dir_util.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/dist.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/errors.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/extension.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/fancy_getopt.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/file_util.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/filelist.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/log.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/msvc9compiler.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/msvccompiler.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/py35compat.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/py38compat.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/spawn.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/sysconfig.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/text_file.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/unixccompiler.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/util.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/version.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_distutils/versionpredicate.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_imp.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/__init__.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/more_itertools -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/more_itertools/__init__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/more_itertools/more.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/more_itertools/recipes.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/ordered_set.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/__about__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/__init__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/_compat.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/_structures.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/_typing.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/markers.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/requirements.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/specifiers.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/tags.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/utils.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/packaging/version.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/_vendor/pyparsing.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/archive_util.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/build_meta.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/cli-32.exe -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/cli-64.exe -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/cli.exe -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/__init__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/alias.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/bdist_egg.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/bdist_rpm.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/build_clib.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/build_ext.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/build_py.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/develop.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/dist_info.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/easy_install.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/egg_info.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/install.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/install_egg_info.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/install_lib.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/install_scripts.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/launcher +#usr/lib/python3.10/site-packages/easy-install.pth +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/EGG-INFO +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/EGG-INFO/PKG-INFO +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/EGG-INFO/SOURCES.txt +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/EGG-INFO/dependency_links.txt +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/EGG-INFO/entry_points.txt +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/EGG-INFO/not-zip-safe +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/EGG-INFO/requires.txt +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/EGG-INFO/top_level.txt +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/_distutils_hack +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/_distutils_hack/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/_distutils_hack/override.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/__init__.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/appdirs.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/__about__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/_manylinux.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/_musllinux.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/_structures.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/markers.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/requirements.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/specifiers.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/tags.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/utils.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/packaging/version.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/_vendor/pyparsing.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/extern +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/extern/__init__.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/tests +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/tests/data +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/tests/data/my-test-package-source +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/pkg_resources/tests/data/my-test-package-source/setup.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_deprecation_warning.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/_msvccompiler.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/archive_util.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/bcppcompiler.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/ccompiler.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/cmd.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/bdist.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/bdist_dumb.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/bdist_msi.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/bdist_rpm.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/bdist_wininst.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/build.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/build_clib.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/build_ext.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/build_py.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/build_scripts.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/check.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/clean.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/config.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/install.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/install_data.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/install_egg_info.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/install_headers.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/install_lib.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/install_scripts.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/py37compat.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/register.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/sdist.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/command/upload.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/config.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/core.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/cygwinccompiler.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/debug.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/dep_util.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/dir_util.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/dist.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/errors.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/extension.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/fancy_getopt.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/file_util.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/filelist.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/log.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/msvc9compiler.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/msvccompiler.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/py35compat.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/py38compat.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/spawn.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/sysconfig.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/text_file.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/unixccompiler.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/util.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/version.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_distutils/versionpredicate.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_imp.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/more_itertools +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/more_itertools/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/more_itertools/more.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/more_itertools/recipes.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/ordered_set.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/__about__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/_manylinux.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/_musllinux.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/_structures.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/markers.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/requirements.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/specifiers.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/tags.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/utils.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/packaging/version.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/_vendor/pyparsing.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/archive_util.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/build_meta.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/cli-32.exe +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/cli-64.exe +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/cli-arm64.exe +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/cli.exe +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/alias.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/bdist_egg.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/bdist_rpm.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/build_clib.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/build_ext.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/build_py.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/develop.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/dist_info.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/easy_install.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/egg_info.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/install.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/install_egg_info.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/install_lib.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/install_scripts.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/launcher #manifest.xml -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/py36compat.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/register.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/rotate.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/saveopts.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/sdist.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/setopt.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/test.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/upload.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/command/upload_docs.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/config.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/dep_util.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/depends.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/dist.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/errors.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/extension.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/extern -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/extern/__init__.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/glob.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/gui-32.exe -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/gui-64.exe -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/gui.exe -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/installer.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/launch.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/monkey.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/msvc.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/namespaces.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/package_index.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/py34compat.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/sandbox.py -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/script +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/py36compat.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/register.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/rotate.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/saveopts.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/sdist.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/setopt.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/test.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/upload.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/command/upload_docs.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/config.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/dep_util.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/depends.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/dist.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/errors.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/extension.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/extern +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/extern/__init__.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/glob.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/gui-32.exe +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/gui-64.exe +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/gui-arm64.exe +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/gui.exe +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/installer.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/launch.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/monkey.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/msvc.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/namespaces.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/package_index.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/py34compat.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/sandbox.py +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/script #(dev).tmpl -#usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/script.tmpl -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/unicode_utils.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/version.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/wheel.py -usr/lib/python3.8/site-packages/setuptools-58.0.4-py3.8.egg/setuptools/windows_support.py -#usr/lib/python3.8/site-packages/setuptools.pth +#usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/script.tmpl +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/unicode_utils.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/version.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/wheel.py +usr/lib/python3.10/site-packages/setuptools-59.5.0-py3.10.egg/setuptools/windows_support.py +#usr/lib/python3.10/site-packages/setuptools.pth diff --git a/config/rootfiles/packages/python3-six b/config/rootfiles/packages/python3-six index 0801d36daf..3c14469321 100644 --- a/config/rootfiles/packages/python3-six +++ b/config/rootfiles/packages/python3-six @@ -1,6 +1,6 @@ -#usr/lib/python3.8/site-packages/six-1.14.0-py3.8.egg-info -#usr/lib/python3.8/site-packages/six-1.14.0-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/six-1.14.0-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/six-1.14.0-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/six-1.14.0-py3.8.egg-info/top_level.txt -usr/lib/python3.8/site-packages/six.py +#usr/lib/python3.10/site-packages/six-1.16.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/six-1.16.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/six-1.16.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/six-1.16.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/six-1.16.0-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/six.py diff --git a/config/rootfiles/packages/python3-terminaltables b/config/rootfiles/packages/python3-terminaltables new file mode 100644 index 0000000000..3bbd956a0a --- /dev/null +++ b/config/rootfiles/packages/python3-terminaltables @@ -0,0 +1,14 @@ +usr/lib/python3.10/site-packages/terminaltables +#usr/lib/python3.10/site-packages/terminaltables-3.1.10-py3.10.egg-info +#usr/lib/python3.10/site-packages/terminaltables-3.1.10-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/terminaltables-3.1.10-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/terminaltables-3.1.10-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/terminaltables-3.1.10-py3.10.egg-info/top_level.txt +usr/lib/python3.10/site-packages/terminaltables/__init__.py +usr/lib/python3.10/site-packages/terminaltables/ascii_table.py +usr/lib/python3.10/site-packages/terminaltables/base_table.py +usr/lib/python3.10/site-packages/terminaltables/build.py +usr/lib/python3.10/site-packages/terminaltables/github_table.py +usr/lib/python3.10/site-packages/terminaltables/other_tables.py +usr/lib/python3.10/site-packages/terminaltables/terminal_io.py +usr/lib/python3.10/site-packages/terminaltables/width_and_alignment.py diff --git a/config/rootfiles/packages/python3-typing-extensions b/config/rootfiles/packages/python3-typing-extensions new file mode 100644 index 0000000000..3cf68834d3 --- /dev/null +++ b/config/rootfiles/packages/python3-typing-extensions @@ -0,0 +1,6 @@ +#usr/lib/python3.10/site-packages/typing_extensions-4.0.1.dist-info +#usr/lib/python3.10/site-packages/typing_extensions-4.0.1.dist-info/LICENSE +#usr/lib/python3.10/site-packages/typing_extensions-4.0.1.dist-info/METADATA +#usr/lib/python3.10/site-packages/typing_extensions-4.0.1.dist-info/RECORD +#usr/lib/python3.10/site-packages/typing_extensions-4.0.1.dist-info/WHEEL +usr/lib/python3.10/site-packages/typing_extensions.py diff --git a/config/rootfiles/packages/python3-urllib3 b/config/rootfiles/packages/python3-urllib3 index 1bb68c774a..9a76302cba 100644 --- a/config/rootfiles/packages/python3-urllib3 +++ b/config/rootfiles/packages/python3-urllib3 @@ -1,52 +1,52 @@ -usr/lib/python3.8/site-packages/urllib3 -#usr/lib/python3.8/site-packages/urllib3-1.26.2-py3.8.egg-info -#usr/lib/python3.8/site-packages/urllib3-1.26.2-py3.8.egg-info/PKG-INFO -#usr/lib/python3.8/site-packages/urllib3-1.26.2-py3.8.egg-info/SOURCES.txt -#usr/lib/python3.8/site-packages/urllib3-1.26.2-py3.8.egg-info/dependency_links.txt -#usr/lib/python3.8/site-packages/urllib3-1.26.2-py3.8.egg-info/requires.txt -#usr/lib/python3.8/site-packages/urllib3-1.26.2-py3.8.egg-info/top_level.txt -#usr/lib/python3.8/site-packages/urllib3/__init__.py -#usr/lib/python3.8/site-packages/urllib3/_collections.py -#usr/lib/python3.8/site-packages/urllib3/_version.py -#usr/lib/python3.8/site-packages/urllib3/connection.py -#usr/lib/python3.8/site-packages/urllib3/connectionpool.py -#usr/lib/python3.8/site-packages/urllib3/contrib -#usr/lib/python3.8/site-packages/urllib3/contrib/__init__.py -#usr/lib/python3.8/site-packages/urllib3/contrib/_appengine_environ.py -#usr/lib/python3.8/site-packages/urllib3/contrib/_securetransport -#usr/lib/python3.8/site-packages/urllib3/contrib/_securetransport/__init__.py -#usr/lib/python3.8/site-packages/urllib3/contrib/_securetransport/bindings.py -#usr/lib/python3.8/site-packages/urllib3/contrib/_securetransport/low_level.py -#usr/lib/python3.8/site-packages/urllib3/contrib/appengine.py -#usr/lib/python3.8/site-packages/urllib3/contrib/ntlmpool.py -#usr/lib/python3.8/site-packages/urllib3/contrib/pyopenssl.py -#usr/lib/python3.8/site-packages/urllib3/contrib/securetransport.py -#usr/lib/python3.8/site-packages/urllib3/contrib/socks.py -#usr/lib/python3.8/site-packages/urllib3/exceptions.py -#usr/lib/python3.8/site-packages/urllib3/fields.py -#usr/lib/python3.8/site-packages/urllib3/filepost.py -#usr/lib/python3.8/site-packages/urllib3/packages -#usr/lib/python3.8/site-packages/urllib3/packages/__init__.py -#usr/lib/python3.8/site-packages/urllib3/packages/backports -#usr/lib/python3.8/site-packages/urllib3/packages/backports/__init__.py -#usr/lib/python3.8/site-packages/urllib3/packages/backports/makefile.py -#usr/lib/python3.8/site-packages/urllib3/packages/six.py -#usr/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname -#usr/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__init__.py -#usr/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/_implementation.py -#usr/lib/python3.8/site-packages/urllib3/poolmanager.py -#usr/lib/python3.8/site-packages/urllib3/request.py -#usr/lib/python3.8/site-packages/urllib3/response.py -#usr/lib/python3.8/site-packages/urllib3/util -#usr/lib/python3.8/site-packages/urllib3/util/__init__.py -#usr/lib/python3.8/site-packages/urllib3/util/connection.py -#usr/lib/python3.8/site-packages/urllib3/util/proxy.py -#usr/lib/python3.8/site-packages/urllib3/util/queue.py -#usr/lib/python3.8/site-packages/urllib3/util/request.py -#usr/lib/python3.8/site-packages/urllib3/util/response.py -#usr/lib/python3.8/site-packages/urllib3/util/retry.py -#usr/lib/python3.8/site-packages/urllib3/util/ssl_.py -#usr/lib/python3.8/site-packages/urllib3/util/ssltransport.py -#usr/lib/python3.8/site-packages/urllib3/util/timeout.py -#usr/lib/python3.8/site-packages/urllib3/util/url.py -#usr/lib/python3.8/site-packages/urllib3/util/wait.py +usr/lib/python3.10/site-packages/urllib3 +#usr/lib/python3.10/site-packages/urllib3-1.26.7-py3.10.egg-info +#usr/lib/python3.10/site-packages/urllib3-1.26.7-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/urllib3-1.26.7-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/urllib3-1.26.7-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/urllib3-1.26.7-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/urllib3-1.26.7-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/urllib3/__init__.py +#usr/lib/python3.10/site-packages/urllib3/_collections.py +#usr/lib/python3.10/site-packages/urllib3/_version.py +#usr/lib/python3.10/site-packages/urllib3/connection.py +#usr/lib/python3.10/site-packages/urllib3/connectionpool.py +#usr/lib/python3.10/site-packages/urllib3/contrib +#usr/lib/python3.10/site-packages/urllib3/contrib/__init__.py +#usr/lib/python3.10/site-packages/urllib3/contrib/_appengine_environ.py +#usr/lib/python3.10/site-packages/urllib3/contrib/_securetransport +#usr/lib/python3.10/site-packages/urllib3/contrib/_securetransport/__init__.py +#usr/lib/python3.10/site-packages/urllib3/contrib/_securetransport/bindings.py +#usr/lib/python3.10/site-packages/urllib3/contrib/_securetransport/low_level.py +#usr/lib/python3.10/site-packages/urllib3/contrib/appengine.py +#usr/lib/python3.10/site-packages/urllib3/contrib/ntlmpool.py +#usr/lib/python3.10/site-packages/urllib3/contrib/pyopenssl.py +#usr/lib/python3.10/site-packages/urllib3/contrib/securetransport.py +#usr/lib/python3.10/site-packages/urllib3/contrib/socks.py +#usr/lib/python3.10/site-packages/urllib3/exceptions.py +#usr/lib/python3.10/site-packages/urllib3/fields.py +#usr/lib/python3.10/site-packages/urllib3/filepost.py +#usr/lib/python3.10/site-packages/urllib3/packages +#usr/lib/python3.10/site-packages/urllib3/packages/__init__.py +#usr/lib/python3.10/site-packages/urllib3/packages/backports +#usr/lib/python3.10/site-packages/urllib3/packages/backports/__init__.py +#usr/lib/python3.10/site-packages/urllib3/packages/backports/makefile.py +#usr/lib/python3.10/site-packages/urllib3/packages/six.py +#usr/lib/python3.10/site-packages/urllib3/packages/ssl_match_hostname +#usr/lib/python3.10/site-packages/urllib3/packages/ssl_match_hostname/__init__.py +#usr/lib/python3.10/site-packages/urllib3/packages/ssl_match_hostname/_implementation.py +#usr/lib/python3.10/site-packages/urllib3/poolmanager.py +#usr/lib/python3.10/site-packages/urllib3/request.py +#usr/lib/python3.10/site-packages/urllib3/response.py +#usr/lib/python3.10/site-packages/urllib3/util +#usr/lib/python3.10/site-packages/urllib3/util/__init__.py +#usr/lib/python3.10/site-packages/urllib3/util/connection.py +#usr/lib/python3.10/site-packages/urllib3/util/proxy.py +#usr/lib/python3.10/site-packages/urllib3/util/queue.py +#usr/lib/python3.10/site-packages/urllib3/util/request.py +#usr/lib/python3.10/site-packages/urllib3/util/response.py +#usr/lib/python3.10/site-packages/urllib3/util/retry.py +#usr/lib/python3.10/site-packages/urllib3/util/ssl_.py +#usr/lib/python3.10/site-packages/urllib3/util/ssltransport.py +#usr/lib/python3.10/site-packages/urllib3/util/timeout.py +#usr/lib/python3.10/site-packages/urllib3/util/url.py +#usr/lib/python3.10/site-packages/urllib3/util/wait.py diff --git a/config/rootfiles/packages/python3-yaml b/config/rootfiles/packages/python3-yaml index 0870a23465..bd4009a089 100644 --- a/config/rootfiles/packages/python3-yaml +++ b/config/rootfiles/packages/python3-yaml @@ -1,20 +1,25 @@ -#usr/lib/python3.8/site-packages/PyYAML-3.13-py3.8.egg-info -usr/lib/python3.8/site-packages/_yaml.cpython-38-xxxMACHINExxx-linux-gnu.so -#usr/lib/python3.8/site-packages/yaml -usr/lib/python3.8/site-packages/yaml/__init__.py -usr/lib/python3.8/site-packages/yaml/composer.py -usr/lib/python3.8/site-packages/yaml/constructor.py -usr/lib/python3.8/site-packages/yaml/cyaml.py -usr/lib/python3.8/site-packages/yaml/dumper.py -usr/lib/python3.8/site-packages/yaml/emitter.py -usr/lib/python3.8/site-packages/yaml/error.py -usr/lib/python3.8/site-packages/yaml/events.py -usr/lib/python3.8/site-packages/yaml/loader.py -usr/lib/python3.8/site-packages/yaml/nodes.py -usr/lib/python3.8/site-packages/yaml/parser.py -usr/lib/python3.8/site-packages/yaml/reader.py -usr/lib/python3.8/site-packages/yaml/representer.py -usr/lib/python3.8/site-packages/yaml/resolver.py -usr/lib/python3.8/site-packages/yaml/scanner.py -usr/lib/python3.8/site-packages/yaml/serializer.py -usr/lib/python3.8/site-packages/yaml/tokens.py +#usr/lib/python3.10/site-packages/PyYAML-6.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/PyYAML-6.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/PyYAML-6.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/PyYAML-6.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/PyYAML-6.0-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/_yaml +usr/lib/python3.10/site-packages/_yaml/__init__.py +#usr/lib/python3.10/site-packages/yaml +usr/lib/python3.10/site-packages/yaml/__init__.py +usr/lib/python3.10/site-packages/yaml/composer.py +usr/lib/python3.10/site-packages/yaml/constructor.py +usr/lib/python3.10/site-packages/yaml/cyaml.py +usr/lib/python3.10/site-packages/yaml/dumper.py +usr/lib/python3.10/site-packages/yaml/emitter.py +usr/lib/python3.10/site-packages/yaml/error.py +usr/lib/python3.10/site-packages/yaml/events.py +usr/lib/python3.10/site-packages/yaml/loader.py +usr/lib/python3.10/site-packages/yaml/nodes.py +usr/lib/python3.10/site-packages/yaml/parser.py +usr/lib/python3.10/site-packages/yaml/reader.py +usr/lib/python3.10/site-packages/yaml/representer.py +usr/lib/python3.10/site-packages/yaml/resolver.py +usr/lib/python3.10/site-packages/yaml/scanner.py +usr/lib/python3.10/site-packages/yaml/serializer.py +usr/lib/python3.10/site-packages/yaml/tokens.py diff --git a/config/rootfiles/packages/riscv64/samba b/config/rootfiles/packages/riscv64/samba index 1db9d5006c..e29400d4e2 100644 --- a/config/rootfiles/packages/riscv64/samba +++ b/config/rootfiles/packages/riscv64/samba @@ -173,9 +173,9 @@ usr/lib/libsamba-hostconfig.so.0.0.1 usr/lib/libsamba-passdb.so usr/lib/libsamba-passdb.so.0 usr/lib/libsamba-passdb.so.0.28.0 -usr/lib/libsamba-policy.cpython-38-riscv64-linux-gnu.so -usr/lib/libsamba-policy.cpython-38-riscv64-linux-gnu.so.0 -usr/lib/libsamba-policy.cpython-38-riscv64-linux-gnu.so.0.0.1 +usr/lib/libsamba-policy.cpython-310-riscv64-linux-gnu.so +usr/lib/libsamba-policy.cpython-310-riscv64-linux-gnu.so.0 +usr/lib/libsamba-policy.cpython-310-riscv64-linux-gnu.so.0.0.1 usr/lib/libsamba-util.so usr/lib/libsamba-util.so.0 usr/lib/libsamba-util.so.0.0.1 @@ -204,382 +204,382 @@ usr/lib/libwbclient.so.0.15 #usr/lib/pkgconfig/netapi.pc #usr/lib/pkgconfig/samba-credentials.pc #usr/lib/pkgconfig/samba-hostconfig.pc -#usr/lib/pkgconfig/samba-policy.cpython-38-riscv64-linux-gnu.pc +#usr/lib/pkgconfig/samba-policy.cpython-310-riscv64-linux-gnu.pc #usr/lib/pkgconfig/samba-util.pc #usr/lib/pkgconfig/samdb.pc #usr/lib/pkgconfig/smbclient.pc #usr/lib/pkgconfig/wbclient.pc -usr/lib/python3.8/site-packages/_ldb_text.py -usr/lib/python3.8/site-packages/_tdb_text.py -usr/lib/python3.8/site-packages/_tevent.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/ldb.cpython-38-riscv64-linux-gnu.so -#usr/lib/python3.8/site-packages/samba -usr/lib/python3.8/site-packages/samba/__init__.py -usr/lib/python3.8/site-packages/samba/_glue.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/_ldb.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/auth.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/auth_util.py -usr/lib/python3.8/site-packages/samba/colour.py -usr/lib/python3.8/site-packages/samba/common.py -usr/lib/python3.8/site-packages/samba/compat.py -usr/lib/python3.8/site-packages/samba/credentials.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/crypto.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dbchecker.py -#usr/lib/python3.8/site-packages/samba/dcerpc -usr/lib/python3.8/site-packages/samba/dcerpc/__init__.py -usr/lib/python3.8/site-packages/samba/dcerpc/atsvc.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/auth.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/base.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dcerpc.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dfs.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dns.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dnsp.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dnsserver.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/drsblobs.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/drsuapi.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/echo.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/epmapper.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/idmap.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/initshutdown.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/irpc.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/krb5pac.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/lsa.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/mdssvc.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/messaging.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/mgmt.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/misc.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/nbt.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/netlogon.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/ntlmssp.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/preg.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/samr.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/security.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/server_id.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/smb_acl.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/spoolss.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/srvsvc.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/svcctl.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/unixinfo.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/winbind.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/windows_event_ids.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/winreg.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/winspool.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/witness.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/wkssvc.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/xattr.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/descriptor.py -usr/lib/python3.8/site-packages/samba/dnsresolver.py -usr/lib/python3.8/site-packages/samba/dnsserver.py -usr/lib/python3.8/site-packages/samba/domain_update.py -usr/lib/python3.8/site-packages/samba/drs_utils.py -#usr/lib/python3.8/site-packages/samba/emulate -usr/lib/python3.8/site-packages/samba/emulate/__init__.py -usr/lib/python3.8/site-packages/samba/emulate/traffic.py -usr/lib/python3.8/site-packages/samba/emulate/traffic_packets.py -usr/lib/python3.8/site-packages/samba/forest_update.py -usr/lib/python3.8/site-packages/samba/gensec.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/getopt.py -usr/lib/python3.8/site-packages/samba/gp_ext_loader.py -#usr/lib/python3.8/site-packages/samba/gp_parse -usr/lib/python3.8/site-packages/samba/gp_parse/__init__.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_aas.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_csv.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_inf.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_ini.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_pol.py -usr/lib/python3.8/site-packages/samba/gp_scripts_ext.py -usr/lib/python3.8/site-packages/samba/gp_sec_ext.py -usr/lib/python3.8/site-packages/samba/gpclass.py -usr/lib/python3.8/site-packages/samba/gpo.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/graph.py -usr/lib/python3.8/site-packages/samba/hostconfig.py -usr/lib/python3.8/site-packages/samba/idmap.py -usr/lib/python3.8/site-packages/samba/join.py -#usr/lib/python3.8/site-packages/samba/kcc -usr/lib/python3.8/site-packages/samba/kcc/__init__.py -usr/lib/python3.8/site-packages/samba/kcc/debug.py -usr/lib/python3.8/site-packages/samba/kcc/graph.py -usr/lib/python3.8/site-packages/samba/kcc/graph_utils.py -usr/lib/python3.8/site-packages/samba/kcc/kcc_utils.py -usr/lib/python3.8/site-packages/samba/kcc/ldif_import_export.py -usr/lib/python3.8/site-packages/samba/logger.py -usr/lib/python3.8/site-packages/samba/mdb_util.py -usr/lib/python3.8/site-packages/samba/messaging.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/ms_display_specifiers.py -usr/lib/python3.8/site-packages/samba/ms_forest_updates_markdown.py -usr/lib/python3.8/site-packages/samba/ms_schema.py -usr/lib/python3.8/site-packages/samba/ms_schema_markdown.py -usr/lib/python3.8/site-packages/samba/ndr.py -usr/lib/python3.8/site-packages/samba/net.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/netbios.cpython-38-riscv64-linux-gnu.so -#usr/lib/python3.8/site-packages/samba/netcmd -usr/lib/python3.8/site-packages/samba/netcmd/__init__.py -usr/lib/python3.8/site-packages/samba/netcmd/common.py -usr/lib/python3.8/site-packages/samba/netcmd/computer.py -usr/lib/python3.8/site-packages/samba/netcmd/contact.py -usr/lib/python3.8/site-packages/samba/netcmd/dbcheck.py -usr/lib/python3.8/site-packages/samba/netcmd/delegation.py -usr/lib/python3.8/site-packages/samba/netcmd/dns.py -usr/lib/python3.8/site-packages/samba/netcmd/domain.py -usr/lib/python3.8/site-packages/samba/netcmd/domain_backup.py -usr/lib/python3.8/site-packages/samba/netcmd/drs.py -usr/lib/python3.8/site-packages/samba/netcmd/dsacl.py -usr/lib/python3.8/site-packages/samba/netcmd/forest.py -usr/lib/python3.8/site-packages/samba/netcmd/fsmo.py -usr/lib/python3.8/site-packages/samba/netcmd/gpo.py -usr/lib/python3.8/site-packages/samba/netcmd/group.py -usr/lib/python3.8/site-packages/samba/netcmd/ldapcmp.py -usr/lib/python3.8/site-packages/samba/netcmd/main.py -usr/lib/python3.8/site-packages/samba/netcmd/nettime.py -usr/lib/python3.8/site-packages/samba/netcmd/ntacl.py -usr/lib/python3.8/site-packages/samba/netcmd/ou.py -usr/lib/python3.8/site-packages/samba/netcmd/processes.py -usr/lib/python3.8/site-packages/samba/netcmd/pso.py -usr/lib/python3.8/site-packages/samba/netcmd/rodc.py -usr/lib/python3.8/site-packages/samba/netcmd/schema.py -usr/lib/python3.8/site-packages/samba/netcmd/sites.py -usr/lib/python3.8/site-packages/samba/netcmd/spn.py -usr/lib/python3.8/site-packages/samba/netcmd/testparm.py -usr/lib/python3.8/site-packages/samba/netcmd/user.py -usr/lib/python3.8/site-packages/samba/netcmd/visualize.py -usr/lib/python3.8/site-packages/samba/ntacls.py -usr/lib/python3.8/site-packages/samba/ntstatus.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/param.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/policy.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/posix_eadb.cpython-38-riscv64-linux-gnu.so -#usr/lib/python3.8/site-packages/samba/provision -usr/lib/python3.8/site-packages/samba/provision/__init__.py -usr/lib/python3.8/site-packages/samba/provision/backend.py -usr/lib/python3.8/site-packages/samba/provision/common.py -usr/lib/python3.8/site-packages/samba/provision/kerberos.py -usr/lib/python3.8/site-packages/samba/provision/kerberos_implementation.py -usr/lib/python3.8/site-packages/samba/provision/sambadns.py -usr/lib/python3.8/site-packages/samba/registry.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/remove_dc.py -#usr/lib/python3.8/site-packages/samba/samba3 -usr/lib/python3.8/site-packages/samba/samba3/__init__.py -usr/lib/python3.8/site-packages/samba/samba3/libsmb_samba_internal.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/mdscli.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/param.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/passdb.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/smbd.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samdb.py -usr/lib/python3.8/site-packages/samba/schema.py -usr/lib/python3.8/site-packages/samba/sd_utils.py -usr/lib/python3.8/site-packages/samba/security.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/sites.py -usr/lib/python3.8/site-packages/samba/subnets.py -#usr/lib/python3.8/site-packages/samba/subunit -usr/lib/python3.8/site-packages/samba/subunit/__init__.py -usr/lib/python3.8/site-packages/samba/subunit/run.py -usr/lib/python3.8/site-packages/samba/tdb_util.py -#usr/lib/python3.8/site-packages/samba/tests -#usr/lib/python3.8/site-packages/samba/tests/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_base.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_dsdb.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_pass_change.py -#usr/lib/python3.8/site-packages/samba/tests/auth.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_base.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_ncalrpc.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_netlogon.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_netlogon_bad_creds.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_pass_change.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_samlogon.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_winbind.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox -#usr/lib/python3.8/site-packages/samba/tests/blackbox/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/bug13653.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/check_output.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/downgradedatabase.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/mdfind.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/ndrdump.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/netads_json.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/samba_dnsupdate.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls_basic.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcontrol.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcontrol_process.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_learner.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_replay.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_summary.py -#usr/lib/python3.8/site-packages/samba/tests/common.py -#usr/lib/python3.8/site-packages/samba/tests/complex_expressions.py -#usr/lib/python3.8/site-packages/samba/tests/core.py -#usr/lib/python3.8/site-packages/samba/tests/credentials.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/array.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/bare.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/dnsserver.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/integer.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/mdssvc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/misc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/raw_protocol.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/raw_testcase.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/registry.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/rpc_talloc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/rpcecho.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/sam.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/srvsvc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/string_tests.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/testrpc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/unix.py -#usr/lib/python3.8/site-packages/samba/tests/dckeytab.py -#usr/lib/python3.8/site-packages/samba/tests/dns.py -#usr/lib/python3.8/site-packages/samba/tests/dns_base.py -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder.py -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder_helpers -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder_helpers/server.py -#usr/lib/python3.8/site-packages/samba/tests/dns_invalid.py -#usr/lib/python3.8/site-packages/samba/tests/dns_packet.py -#usr/lib/python3.8/site-packages/samba/tests/dns_tkey.py -#usr/lib/python3.8/site-packages/samba/tests/dns_wildcard.py -#usr/lib/python3.8/site-packages/samba/tests/docs.py -#usr/lib/python3.8/site-packages/samba/tests/domain_backup.py -#usr/lib/python3.8/site-packages/samba/tests/domain_backup_offline.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb_lock.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb_schema_attributes.py -#usr/lib/python3.8/site-packages/samba/tests/emulate -#usr/lib/python3.8/site-packages/samba/tests/emulate/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/emulate/traffic.py -#usr/lib/python3.8/site-packages/samba/tests/emulate/traffic_packet.py -#usr/lib/python3.8/site-packages/samba/tests/encrypted_secrets.py -#usr/lib/python3.8/site-packages/samba/tests/gensec.py -#usr/lib/python3.8/site-packages/samba/tests/get_opt.py -#usr/lib/python3.8/site-packages/samba/tests/getdcname.py -#usr/lib/python3.8/site-packages/samba/tests/glue.py -#usr/lib/python3.8/site-packages/samba/tests/gpo.py -#usr/lib/python3.8/site-packages/samba/tests/graph.py -#usr/lib/python3.8/site-packages/samba/tests/group_audit.py -#usr/lib/python3.8/site-packages/samba/tests/hostconfig.py -#usr/lib/python3.8/site-packages/samba/tests/join.py -#usr/lib/python3.8/site-packages/samba/tests/kcc -#usr/lib/python3.8/site-packages/samba/tests/kcc/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/graph.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/graph_utils.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/kcc_utils.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/ldif_import_export.py -#usr/lib/python3.8/site-packages/samba/tests/krb5 -#usr/lib/python3.8/site-packages/samba/tests/krb5/kcrypto.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/raw_testcase.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/rfc4120_pyasn1.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/s4u_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/simple_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/xrealm_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5_credentials.py -#usr/lib/python3.8/site-packages/samba/tests/ldap_raw.py -#usr/lib/python3.8/site-packages/samba/tests/ldap_referrals.py -#usr/lib/python3.8/site-packages/samba/tests/libsmb.py -#usr/lib/python3.8/site-packages/samba/tests/loadparm.py -#usr/lib/python3.8/site-packages/samba/tests/lsa_string.py -#usr/lib/python3.8/site-packages/samba/tests/messaging.py -#usr/lib/python3.8/site-packages/samba/tests/net_join.py -#usr/lib/python3.8/site-packages/samba/tests/net_join_no_spnego.py -#usr/lib/python3.8/site-packages/samba/tests/netbios.py -#usr/lib/python3.8/site-packages/samba/tests/netcmd.py -#usr/lib/python3.8/site-packages/samba/tests/netlogonsvc.py -#usr/lib/python3.8/site-packages/samba/tests/ntacls.py -#usr/lib/python3.8/site-packages/samba/tests/ntacls_backup.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth_base.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth_krb5.py -#usr/lib/python3.8/site-packages/samba/tests/ntlmdisabled.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind_chauthtok.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind_warn_pwd_expire.py -#usr/lib/python3.8/site-packages/samba/tests/param.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_fl2003.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_fl2008.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_gpgme.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_ldap.py -#usr/lib/python3.8/site-packages/samba/tests/password_quality.py -#usr/lib/python3.8/site-packages/samba/tests/password_test.py -#usr/lib/python3.8/site-packages/samba/tests/policy.py -#usr/lib/python3.8/site-packages/samba/tests/posixacl.py -#usr/lib/python3.8/site-packages/samba/tests/prefork_restart.py -#usr/lib/python3.8/site-packages/samba/tests/process_limits.py -#usr/lib/python3.8/site-packages/samba/tests/provision.py -#usr/lib/python3.8/site-packages/samba/tests/pso.py -#usr/lib/python3.8/site-packages/samba/tests/py_credentials.py -#usr/lib/python3.8/site-packages/samba/tests/registry.py -#usr/lib/python3.8/site-packages/samba/tests/s3idmapdb.py -#usr/lib/python3.8/site-packages/samba/tests/s3param.py -#usr/lib/python3.8/site-packages/samba/tests/s3passdb.py -#usr/lib/python3.8/site-packages/samba/tests/s3registry.py -#usr/lib/python3.8/site-packages/samba/tests/s3windb.py -#usr/lib/python3.8/site-packages/samba/tests/samba3sam.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/base.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/computer.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/contact.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/demote.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/dnscmd.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/drs_clone_dc_data_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/dsacl.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/forest.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/fsmo.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/gpo.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/group.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/help.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/join.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/join_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/ntacl.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/ou.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/passwordsettings.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/processes.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/promote_dc_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/provision_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/provision_password_check.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/rodc.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/schema.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/sites.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/timecmd.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_check_password_script.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_base.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_gpg.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_userPassword.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_wdigest.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/visualize.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/visualize_drs.py -#usr/lib/python3.8/site-packages/samba/tests/samba_upgradedns_lmdb.py -#usr/lib/python3.8/site-packages/samba/tests/samdb.py -#usr/lib/python3.8/site-packages/samba/tests/samdb_api.py -#usr/lib/python3.8/site-packages/samba/tests/security.py -#usr/lib/python3.8/site-packages/samba/tests/segfault.py -#usr/lib/python3.8/site-packages/samba/tests/smb.py -#usr/lib/python3.8/site-packages/samba/tests/smbd_base.py -#usr/lib/python3.8/site-packages/samba/tests/smbd_fuzztest.py -#usr/lib/python3.8/site-packages/samba/tests/source.py -#usr/lib/python3.8/site-packages/samba/tests/strings.py -#usr/lib/python3.8/site-packages/samba/tests/subunitrun.py -#usr/lib/python3.8/site-packages/samba/tests/tdb_util.py -#usr/lib/python3.8/site-packages/samba/tests/upgrade.py -#usr/lib/python3.8/site-packages/samba/tests/upgradeprovision.py -#usr/lib/python3.8/site-packages/samba/tests/upgradeprovisionneeddc.py -#usr/lib/python3.8/site-packages/samba/tests/usage.py -#usr/lib/python3.8/site-packages/samba/tests/xattr.py -#usr/lib/python3.8/site-packages/samba/third_party -usr/lib/python3.8/site-packages/samba/third_party/__init__.py -usr/lib/python3.8/site-packages/samba/third_party/iso8601 -usr/lib/python3.8/site-packages/samba/third_party/iso8601/__init__.py -usr/lib/python3.8/site-packages/samba/third_party/iso8601/iso8601.py -usr/lib/python3.8/site-packages/samba/third_party/iso8601/test_iso8601.py -usr/lib/python3.8/site-packages/samba/upgrade.py -usr/lib/python3.8/site-packages/samba/upgradehelpers.py -usr/lib/python3.8/site-packages/samba/uptodateness.py -usr/lib/python3.8/site-packages/samba/werror.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/xattr.py -usr/lib/python3.8/site-packages/samba/xattr_native.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/xattr_tdb.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/talloc.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/tdb.cpython-38-riscv64-linux-gnu.so -usr/lib/python3.8/site-packages/tevent.py +usr/lib/python3.10/site-packages/_ldb_text.py +usr/lib/python3.10/site-packages/_tdb_text.py +usr/lib/python3.10/site-packages/_tevent.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/ldb.cpython-310-riscv64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba +usr/lib/python3.10/site-packages/samba/__init__.py +usr/lib/python3.10/site-packages/samba/_glue.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/_ldb.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/auth.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/auth_util.py +usr/lib/python3.10/site-packages/samba/colour.py +usr/lib/python3.10/site-packages/samba/common.py +usr/lib/python3.10/site-packages/samba/compat.py +usr/lib/python3.10/site-packages/samba/credentials.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/crypto.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dbchecker.py +#usr/lib/python3.10/site-packages/samba/dcerpc +usr/lib/python3.10/site-packages/samba/dcerpc/__init__.py +usr/lib/python3.10/site-packages/samba/dcerpc/atsvc.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/auth.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/base.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dcerpc.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dfs.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dns.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dnsp.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dnsserver.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/drsblobs.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/drsuapi.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/echo.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/epmapper.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/idmap.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/initshutdown.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/irpc.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/krb5pac.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/lsa.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/mdssvc.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/messaging.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/mgmt.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/misc.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/nbt.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/netlogon.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/ntlmssp.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/preg.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/samr.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/security.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/server_id.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/smb_acl.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/spoolss.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/srvsvc.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/svcctl.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/unixinfo.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/winbind.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/windows_event_ids.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/winreg.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/winspool.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/witness.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/wkssvc.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/xattr.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/descriptor.py +usr/lib/python3.10/site-packages/samba/dnsresolver.py +usr/lib/python3.10/site-packages/samba/dnsserver.py +usr/lib/python3.10/site-packages/samba/domain_update.py +usr/lib/python3.10/site-packages/samba/drs_utils.py +#usr/lib/python3.10/site-packages/samba/emulate +usr/lib/python3.10/site-packages/samba/emulate/__init__.py +usr/lib/python3.10/site-packages/samba/emulate/traffic.py +usr/lib/python3.10/site-packages/samba/emulate/traffic_packets.py +usr/lib/python3.10/site-packages/samba/forest_update.py +usr/lib/python3.10/site-packages/samba/gensec.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/getopt.py +usr/lib/python3.10/site-packages/samba/gp_ext_loader.py +#usr/lib/python3.10/site-packages/samba/gp_parse +usr/lib/python3.10/site-packages/samba/gp_parse/__init__.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_aas.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_csv.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_inf.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_ini.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_pol.py +usr/lib/python3.10/site-packages/samba/gp_scripts_ext.py +usr/lib/python3.10/site-packages/samba/gp_sec_ext.py +usr/lib/python3.10/site-packages/samba/gpclass.py +usr/lib/python3.10/site-packages/samba/gpo.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/graph.py +usr/lib/python3.10/site-packages/samba/hostconfig.py +usr/lib/python3.10/site-packages/samba/idmap.py +usr/lib/python3.10/site-packages/samba/join.py +#usr/lib/python3.10/site-packages/samba/kcc +usr/lib/python3.10/site-packages/samba/kcc/__init__.py +usr/lib/python3.10/site-packages/samba/kcc/debug.py +usr/lib/python3.10/site-packages/samba/kcc/graph.py +usr/lib/python3.10/site-packages/samba/kcc/graph_utils.py +usr/lib/python3.10/site-packages/samba/kcc/kcc_utils.py +usr/lib/python3.10/site-packages/samba/kcc/ldif_import_export.py +usr/lib/python3.10/site-packages/samba/logger.py +usr/lib/python3.10/site-packages/samba/mdb_util.py +usr/lib/python3.10/site-packages/samba/messaging.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/ms_display_specifiers.py +usr/lib/python3.10/site-packages/samba/ms_forest_updates_markdown.py +usr/lib/python3.10/site-packages/samba/ms_schema.py +usr/lib/python3.10/site-packages/samba/ms_schema_markdown.py +usr/lib/python3.10/site-packages/samba/ndr.py +usr/lib/python3.10/site-packages/samba/net.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/netbios.cpython-310-riscv64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba/netcmd +usr/lib/python3.10/site-packages/samba/netcmd/__init__.py +usr/lib/python3.10/site-packages/samba/netcmd/common.py +usr/lib/python3.10/site-packages/samba/netcmd/computer.py +usr/lib/python3.10/site-packages/samba/netcmd/contact.py +usr/lib/python3.10/site-packages/samba/netcmd/dbcheck.py +usr/lib/python3.10/site-packages/samba/netcmd/delegation.py +usr/lib/python3.10/site-packages/samba/netcmd/dns.py +usr/lib/python3.10/site-packages/samba/netcmd/domain.py +usr/lib/python3.10/site-packages/samba/netcmd/domain_backup.py +usr/lib/python3.10/site-packages/samba/netcmd/drs.py +usr/lib/python3.10/site-packages/samba/netcmd/dsacl.py +usr/lib/python3.10/site-packages/samba/netcmd/forest.py +usr/lib/python3.10/site-packages/samba/netcmd/fsmo.py +usr/lib/python3.10/site-packages/samba/netcmd/gpo.py +usr/lib/python3.10/site-packages/samba/netcmd/group.py +usr/lib/python3.10/site-packages/samba/netcmd/ldapcmp.py +usr/lib/python3.10/site-packages/samba/netcmd/main.py +usr/lib/python3.10/site-packages/samba/netcmd/nettime.py +usr/lib/python3.10/site-packages/samba/netcmd/ntacl.py +usr/lib/python3.10/site-packages/samba/netcmd/ou.py +usr/lib/python3.10/site-packages/samba/netcmd/processes.py +usr/lib/python3.10/site-packages/samba/netcmd/pso.py +usr/lib/python3.10/site-packages/samba/netcmd/rodc.py +usr/lib/python3.10/site-packages/samba/netcmd/schema.py +usr/lib/python3.10/site-packages/samba/netcmd/sites.py +usr/lib/python3.10/site-packages/samba/netcmd/spn.py +usr/lib/python3.10/site-packages/samba/netcmd/testparm.py +usr/lib/python3.10/site-packages/samba/netcmd/user.py +usr/lib/python3.10/site-packages/samba/netcmd/visualize.py +usr/lib/python3.10/site-packages/samba/ntacls.py +usr/lib/python3.10/site-packages/samba/ntstatus.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/param.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/policy.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/posix_eadb.cpython-310-riscv64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba/provision +usr/lib/python3.10/site-packages/samba/provision/__init__.py +usr/lib/python3.10/site-packages/samba/provision/backend.py +usr/lib/python3.10/site-packages/samba/provision/common.py +usr/lib/python3.10/site-packages/samba/provision/kerberos.py +usr/lib/python3.10/site-packages/samba/provision/kerberos_implementation.py +usr/lib/python3.10/site-packages/samba/provision/sambadns.py +usr/lib/python3.10/site-packages/samba/registry.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/remove_dc.py +#usr/lib/python3.10/site-packages/samba/samba3 +usr/lib/python3.10/site-packages/samba/samba3/__init__.py +usr/lib/python3.10/site-packages/samba/samba3/libsmb_samba_internal.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/mdscli.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/param.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/passdb.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/smbd.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samdb.py +usr/lib/python3.10/site-packages/samba/schema.py +usr/lib/python3.10/site-packages/samba/sd_utils.py +usr/lib/python3.10/site-packages/samba/security.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/sites.py +usr/lib/python3.10/site-packages/samba/subnets.py +#usr/lib/python3.10/site-packages/samba/subunit +usr/lib/python3.10/site-packages/samba/subunit/__init__.py +usr/lib/python3.10/site-packages/samba/subunit/run.py +usr/lib/python3.10/site-packages/samba/tdb_util.py +#usr/lib/python3.10/site-packages/samba/tests +#usr/lib/python3.10/site-packages/samba/tests/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_base.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_dsdb.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_pass_change.py +#usr/lib/python3.10/site-packages/samba/tests/auth.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_base.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_ncalrpc.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_netlogon.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_netlogon_bad_creds.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_pass_change.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_samlogon.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_winbind.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox +#usr/lib/python3.10/site-packages/samba/tests/blackbox/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/bug13653.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/check_output.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/downgradedatabase.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/mdfind.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/ndrdump.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/netads_json.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/samba_dnsupdate.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls_basic.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcontrol.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcontrol_process.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_learner.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_replay.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_summary.py +#usr/lib/python3.10/site-packages/samba/tests/common.py +#usr/lib/python3.10/site-packages/samba/tests/complex_expressions.py +#usr/lib/python3.10/site-packages/samba/tests/core.py +#usr/lib/python3.10/site-packages/samba/tests/credentials.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/array.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/bare.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/dnsserver.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/integer.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/mdssvc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/misc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/raw_protocol.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/raw_testcase.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/registry.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/rpc_talloc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/rpcecho.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/sam.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/srvsvc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/string_tests.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/testrpc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/unix.py +#usr/lib/python3.10/site-packages/samba/tests/dckeytab.py +#usr/lib/python3.10/site-packages/samba/tests/dns.py +#usr/lib/python3.10/site-packages/samba/tests/dns_base.py +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder.py +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder_helpers +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder_helpers/server.py +#usr/lib/python3.10/site-packages/samba/tests/dns_invalid.py +#usr/lib/python3.10/site-packages/samba/tests/dns_packet.py +#usr/lib/python3.10/site-packages/samba/tests/dns_tkey.py +#usr/lib/python3.10/site-packages/samba/tests/dns_wildcard.py +#usr/lib/python3.10/site-packages/samba/tests/docs.py +#usr/lib/python3.10/site-packages/samba/tests/domain_backup.py +#usr/lib/python3.10/site-packages/samba/tests/domain_backup_offline.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_lock.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_schema_attributes.py +#usr/lib/python3.10/site-packages/samba/tests/emulate +#usr/lib/python3.10/site-packages/samba/tests/emulate/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/emulate/traffic.py +#usr/lib/python3.10/site-packages/samba/tests/emulate/traffic_packet.py +#usr/lib/python3.10/site-packages/samba/tests/encrypted_secrets.py +#usr/lib/python3.10/site-packages/samba/tests/gensec.py +#usr/lib/python3.10/site-packages/samba/tests/get_opt.py +#usr/lib/python3.10/site-packages/samba/tests/getdcname.py +#usr/lib/python3.10/site-packages/samba/tests/glue.py +#usr/lib/python3.10/site-packages/samba/tests/gpo.py +#usr/lib/python3.10/site-packages/samba/tests/graph.py +#usr/lib/python3.10/site-packages/samba/tests/group_audit.py +#usr/lib/python3.10/site-packages/samba/tests/hostconfig.py +#usr/lib/python3.10/site-packages/samba/tests/join.py +#usr/lib/python3.10/site-packages/samba/tests/kcc +#usr/lib/python3.10/site-packages/samba/tests/kcc/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/graph.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/graph_utils.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/kcc_utils.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/ldif_import_export.py +#usr/lib/python3.10/site-packages/samba/tests/krb5 +#usr/lib/python3.10/site-packages/samba/tests/krb5/kcrypto.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/raw_testcase.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/rfc4120_pyasn1.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/s4u_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/simple_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/xrealm_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5_credentials.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_raw.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_referrals.py +#usr/lib/python3.10/site-packages/samba/tests/libsmb.py +#usr/lib/python3.10/site-packages/samba/tests/loadparm.py +#usr/lib/python3.10/site-packages/samba/tests/lsa_string.py +#usr/lib/python3.10/site-packages/samba/tests/messaging.py +#usr/lib/python3.10/site-packages/samba/tests/net_join.py +#usr/lib/python3.10/site-packages/samba/tests/net_join_no_spnego.py +#usr/lib/python3.10/site-packages/samba/tests/netbios.py +#usr/lib/python3.10/site-packages/samba/tests/netcmd.py +#usr/lib/python3.10/site-packages/samba/tests/netlogonsvc.py +#usr/lib/python3.10/site-packages/samba/tests/ntacls.py +#usr/lib/python3.10/site-packages/samba/tests/ntacls_backup.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth_base.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth_krb5.py +#usr/lib/python3.10/site-packages/samba/tests/ntlmdisabled.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind_chauthtok.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind_warn_pwd_expire.py +#usr/lib/python3.10/site-packages/samba/tests/param.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_fl2003.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_fl2008.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_gpgme.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_ldap.py +#usr/lib/python3.10/site-packages/samba/tests/password_quality.py +#usr/lib/python3.10/site-packages/samba/tests/password_test.py +#usr/lib/python3.10/site-packages/samba/tests/policy.py +#usr/lib/python3.10/site-packages/samba/tests/posixacl.py +#usr/lib/python3.10/site-packages/samba/tests/prefork_restart.py +#usr/lib/python3.10/site-packages/samba/tests/process_limits.py +#usr/lib/python3.10/site-packages/samba/tests/provision.py +#usr/lib/python3.10/site-packages/samba/tests/pso.py +#usr/lib/python3.10/site-packages/samba/tests/py_credentials.py +#usr/lib/python3.10/site-packages/samba/tests/registry.py +#usr/lib/python3.10/site-packages/samba/tests/s3idmapdb.py +#usr/lib/python3.10/site-packages/samba/tests/s3param.py +#usr/lib/python3.10/site-packages/samba/tests/s3passdb.py +#usr/lib/python3.10/site-packages/samba/tests/s3registry.py +#usr/lib/python3.10/site-packages/samba/tests/s3windb.py +#usr/lib/python3.10/site-packages/samba/tests/samba3sam.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/base.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/computer.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/contact.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/demote.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/dnscmd.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/drs_clone_dc_data_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/dsacl.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/forest.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/fsmo.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/gpo.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/group.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/help.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/join.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/join_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/ntacl.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/ou.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/passwordsettings.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/processes.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/promote_dc_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_password_check.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/rodc.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/schema.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/sites.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/timecmd.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_check_password_script.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_base.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_gpg.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_userPassword.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_wdigest.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/visualize.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/visualize_drs.py +#usr/lib/python3.10/site-packages/samba/tests/samba_upgradedns_lmdb.py +#usr/lib/python3.10/site-packages/samba/tests/samdb.py +#usr/lib/python3.10/site-packages/samba/tests/samdb_api.py +#usr/lib/python3.10/site-packages/samba/tests/security.py +#usr/lib/python3.10/site-packages/samba/tests/segfault.py +#usr/lib/python3.10/site-packages/samba/tests/smb.py +#usr/lib/python3.10/site-packages/samba/tests/smbd_base.py +#usr/lib/python3.10/site-packages/samba/tests/smbd_fuzztest.py +#usr/lib/python3.10/site-packages/samba/tests/source.py +#usr/lib/python3.10/site-packages/samba/tests/strings.py +#usr/lib/python3.10/site-packages/samba/tests/subunitrun.py +#usr/lib/python3.10/site-packages/samba/tests/tdb_util.py +#usr/lib/python3.10/site-packages/samba/tests/upgrade.py +#usr/lib/python3.10/site-packages/samba/tests/upgradeprovision.py +#usr/lib/python3.10/site-packages/samba/tests/upgradeprovisionneeddc.py +#usr/lib/python3.10/site-packages/samba/tests/usage.py +#usr/lib/python3.10/site-packages/samba/tests/xattr.py +#usr/lib/python3.10/site-packages/samba/third_party +usr/lib/python3.10/site-packages/samba/third_party/__init__.py +usr/lib/python3.10/site-packages/samba/third_party/iso8601 +usr/lib/python3.10/site-packages/samba/third_party/iso8601/__init__.py +usr/lib/python3.10/site-packages/samba/third_party/iso8601/iso8601.py +usr/lib/python3.10/site-packages/samba/third_party/iso8601/test_iso8601.py +usr/lib/python3.10/site-packages/samba/upgrade.py +usr/lib/python3.10/site-packages/samba/upgradehelpers.py +usr/lib/python3.10/site-packages/samba/uptodateness.py +usr/lib/python3.10/site-packages/samba/werror.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/xattr.py +usr/lib/python3.10/site-packages/samba/xattr_native.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/xattr_tdb.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/talloc.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/tdb.cpython-310-riscv64-linux-gnu.so +usr/lib/python3.10/site-packages/tevent.py #usr/lib/samba usr/lib/samba/idmap usr/lib/samba/idmap/ad.so @@ -687,10 +687,10 @@ usr/lib/samba/libpopt-samba3-samba4.so usr/lib/samba/libposix-eadb-samba4.so usr/lib/samba/libprinter-driver-samba4.so usr/lib/samba/libprinting-migrate-samba4.so -usr/lib/samba/libpyldb-util.cpython-38-riscv64-linux-gnu.so.2 -usr/lib/samba/libpyldb-util.cpython-38-riscv64-linux-gnu.so.2.2.0 -usr/lib/samba/libpytalloc-util.cpython-38-riscv64-linux-gnu.so.2 -usr/lib/samba/libpytalloc-util.cpython-38-riscv64-linux-gnu.so.2.3.1 +usr/lib/samba/libpyldb-util.cpython-310-riscv64-linux-gnu.so.2 +usr/lib/samba/libpyldb-util.cpython-310-riscv64-linux-gnu.so.2.2.0 +usr/lib/samba/libpytalloc-util.cpython-310-riscv64-linux-gnu.so.2 +usr/lib/samba/libpytalloc-util.cpython-310-riscv64-linux-gnu.so.2.3.1 usr/lib/samba/libregistry-samba4.so usr/lib/samba/libreplace-samba4.so usr/lib/samba/libroken-samba4.so.19 @@ -698,8 +698,8 @@ usr/lib/samba/libroken-samba4.so.19.0.1 usr/lib/samba/libsamba-cluster-support-samba4.so usr/lib/samba/libsamba-debug-samba4.so usr/lib/samba/libsamba-modules-samba4.so -usr/lib/samba/libsamba-net.cpython-38-riscv64-linux-gnu-samba4.so -usr/lib/samba/libsamba-python.cpython-38-riscv64-linux-gnu-samba4.so +usr/lib/samba/libsamba-net.cpython-310-riscv64-linux-gnu-samba4.so +usr/lib/samba/libsamba-python.cpython-310-riscv64-linux-gnu-samba4.so usr/lib/samba/libsamba-security-samba4.so usr/lib/samba/libsamba-sockets-samba4.so usr/lib/samba/libsamba3-util-samba4.so diff --git a/config/rootfiles/packages/sdl2 b/config/rootfiles/packages/sdl2 index b843b9d989..ae18130fb3 100644 --- a/config/rootfiles/packages/sdl2 +++ b/config/rootfiles/packages/sdl2 @@ -81,7 +81,7 @@ #usr/lib/cmake/SDL2/sdl2-config-version.cmake #usr/lib/cmake/SDL2/sdl2-config.cmake usr/lib/libSDL2-2.0.so.0 -usr/lib/libSDL2-2.0.so.0.18.0 +usr/lib/libSDL2-2.0.so.0.18.2 #usr/lib/libSDL2.la usr/lib/libSDL2.so #usr/lib/libSDL2_test.a diff --git a/config/rootfiles/packages/speedtest-cli b/config/rootfiles/packages/speedtest-cli index 48320f6b68..16cd36b6fd 100644 --- a/config/rootfiles/packages/speedtest-cli +++ b/config/rootfiles/packages/speedtest-cli @@ -1,9 +1,9 @@ usr/bin/speedtest usr/bin/speedtest-cli -usr/lib/python3.8/site-packages/speedtest.py -usr/lib/python3.8/site-packages/speedtest_cli-2.1.3-py3.8.egg-info -usr/lib/python3.8/site-packages/speedtest_cli-2.1.3-py3.8.egg-info/PKG-INFO -usr/lib/python3.8/site-packages/speedtest_cli-2.1.3-py3.8.egg-info/SOURCES.txt -usr/lib/python3.8/site-packages/speedtest_cli-2.1.3-py3.8.egg-info/dependency_links.txt -usr/lib/python3.8/site-packages/speedtest_cli-2.1.3-py3.8.egg-info/entry_points.txt -usr/lib/python3.8/site-packages/speedtest_cli-2.1.3-py3.8.egg-info/top_level.txt +usr/lib/python3.10/site-packages/speedtest.py +usr/lib/python3.10/site-packages/speedtest_cli-2.1.3-py3.10.egg-info +usr/lib/python3.10/site-packages/speedtest_cli-2.1.3-py3.10.egg-info/PKG-INFO +usr/lib/python3.10/site-packages/speedtest_cli-2.1.3-py3.10.egg-info/SOURCES.txt +usr/lib/python3.10/site-packages/speedtest_cli-2.1.3-py3.10.egg-info/dependency_links.txt +usr/lib/python3.10/site-packages/speedtest_cli-2.1.3-py3.10.egg-info/entry_points.txt +usr/lib/python3.10/site-packages/speedtest_cli-2.1.3-py3.10.egg-info/top_level.txt diff --git a/config/rootfiles/packages/stunnel b/config/rootfiles/packages/stunnel index 0882ef4dec..c44cbc90ca 100644 --- a/config/rootfiles/packages/stunnel +++ b/config/rootfiles/packages/stunnel @@ -7,6 +7,7 @@ usr/bin/stunnel #usr/lib/stunnel #usr/lib/stunnel/libstunnel.la usr/lib/stunnel/libstunnel.so +#usr/share/bash-completion/completions/stunnel.bash #usr/share/doc/stunnel #usr/share/doc/stunnel/AUTHORS.md #usr/share/doc/stunnel/BUGS.md diff --git a/config/rootfiles/packages/wio b/config/rootfiles/packages/wio index 899dccf06d..e1a0313d09 100644 --- a/config/rootfiles/packages/wio +++ b/config/rootfiles/packages/wio @@ -1,23 +1,6 @@ +etc/fcron.minutely/wio srv/web/ipfire/cgi-bin/wio.cgi srv/web/ipfire/cgi-bin/wiographs.cgi -etc/fcron.minutely/wio -var/ipfire/wio -var/ipfire/wio/wio.conf -var/ipfire/wio/wio.pl -var/ipfire/wio/wiovpn.pl -usr/lib/wio -usr/lib/wio/wio-lib.pl -usr/lib/wio/wio-graphs.pl -usr/local/bin/wiohelper -usr/local/bin/wioscan -var/log/wio -var/log/wio/wioips -var/log/rrd/wio -var/ipfire/addon-lang/wio.de.pl -var/ipfire/addon-lang/wio.en.pl -var/ipfire/addon-lang/wio.tr.pl -var/ipfire/addon-lang/wio.fr.pl -var/ipfire/menu.d/EX-wio.menu srv/web/ipfire/html/images/wio srv/web/ipfire/html/images/wio/add.png srv/web/ipfire/html/images/wio/back.png @@ -40,8 +23,26 @@ srv/web/ipfire/html/images/wio/ovpnn2n.png srv/web/ipfire/html/images/wio/ovpnrw.png srv/web/ipfire/html/images/wio/red.png srv/web/ipfire/html/images/wio/refresh.png -srv/web/ipfire/html/images/wio/vpnn2n.png srv/web/ipfire/html/images/wio/vpn.png +srv/web/ipfire/html/images/wio/vpnn2n.png srv/web/ipfire/html/images/wio/vpnrw.png srv/web/ipfire/html/images/wio/white.png +usr/lib/wio +usr/lib/wio/wio-graphs.pl +usr/lib/wio/wio-lib.pl +usr/local/bin/wiohelper +usr/local/bin/wioscan +var/ipfire/addon-lang/wio.de.pl +var/ipfire/addon-lang/wio.en.pl +var/ipfire/addon-lang/wio.es.pl +var/ipfire/addon-lang/wio.fr.pl +var/ipfire/addon-lang/wio.tr.pl var/ipfire/backup/addons/includes/wio +var/ipfire/menu.d/EX-wio.menu +var/ipfire/wio +var/ipfire/wio/wio.conf +var/ipfire/wio/wio.pl +var/ipfire/wio/wiovpn.pl +var/log/rrd/wio +var/log/wio +var/log/wio/wioips diff --git a/config/rootfiles/packages/x86_64/samba b/config/rootfiles/packages/x86_64/samba index 61d39ebb11..decb4c04c2 100644 --- a/config/rootfiles/packages/x86_64/samba +++ b/config/rootfiles/packages/x86_64/samba @@ -2,7 +2,6 @@ etc/rc.d/init.d/samba usr/bin/cifsdd usr/bin/dbwrap_tool usr/bin/dumpmscat -usr/bin/findsmb usr/bin/gentest usr/bin/ldbadd usr/bin/ldbdel @@ -12,7 +11,7 @@ usr/bin/ldbrename usr/bin/ldbsearch usr/bin/locktest usr/bin/masktest -usr/bin/mdfind +usr/bin/mdsearch usr/bin/mvxattr usr/bin/ndrdump usr/bin/net @@ -27,6 +26,7 @@ usr/bin/regshell usr/bin/regtree usr/bin/rpcclient usr/bin/samba-regedit +usr/bin/samba-tool usr/bin/sharesec usr/bin/smbcacls usr/bin/smbclient @@ -154,10 +154,11 @@ usr/lib/libndr-standard.so usr/lib/libndr-standard.so.0 usr/lib/libndr-standard.so.0.0.1 usr/lib/libndr.so -usr/lib/libndr.so.1 -usr/lib/libndr.so.1.0.1 +usr/lib/libndr.so.2 +usr/lib/libndr.so.2.0.0 usr/lib/libnetapi.so -usr/lib/libnetapi.so.0 +usr/lib/libnetapi.so.1 +usr/lib/libnetapi.so.1.0.0 usr/lib/libnss_winbind.so usr/lib/libnss_winbind.so.2 usr/lib/libnss_wins.so @@ -173,9 +174,9 @@ usr/lib/libsamba-hostconfig.so.0.0.1 usr/lib/libsamba-passdb.so usr/lib/libsamba-passdb.so.0 usr/lib/libsamba-passdb.so.0.28.0 -usr/lib/libsamba-policy.cpython-38-x86-64-linux-gnu.so -usr/lib/libsamba-policy.cpython-38-x86-64-linux-gnu.so.0 -usr/lib/libsamba-policy.cpython-38-x86-64-linux-gnu.so.0.0.1 +usr/lib/libsamba-policy.cpython-310-x86-64-linux-gnu.so +usr/lib/libsamba-policy.cpython-310-x86-64-linux-gnu.so.0 +usr/lib/libsamba-policy.cpython-310-x86-64-linux-gnu.so.0.0.1 usr/lib/libsamba-util.so usr/lib/libsamba-util.so.0 usr/lib/libsamba-util.so.0.0.1 @@ -205,394 +206,432 @@ usr/lib/libwbclient.so.0.15 #usr/lib/pkgconfig/netapi.pc #usr/lib/pkgconfig/samba-credentials.pc #usr/lib/pkgconfig/samba-hostconfig.pc -#usr/lib/pkgconfig/samba-policy.cpython-38-x86_64-linux-gnu.pc +#usr/lib/pkgconfig/samba-policy.cpython-310-x86_64-linux-gnu.pc #usr/lib/pkgconfig/samba-util.pc #usr/lib/pkgconfig/samdb.pc #usr/lib/pkgconfig/smbclient.pc #usr/lib/pkgconfig/wbclient.pc -usr/lib/python3.8/site-packages/_ldb_text.py -usr/lib/python3.8/site-packages/_tdb_text.py -usr/lib/python3.8/site-packages/_tevent.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/ldb.cpython-38-x86_64-linux-gnu.so -#usr/lib/python3.8/site-packages/samba -usr/lib/python3.8/site-packages/samba/__init__.py -usr/lib/python3.8/site-packages/samba/_glue.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/_ldb.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/auth.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/auth_util.py -usr/lib/python3.8/site-packages/samba/colour.py -usr/lib/python3.8/site-packages/samba/common.py -usr/lib/python3.8/site-packages/samba/credentials.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/crypto.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dbchecker.py -#usr/lib/python3.8/site-packages/samba/dcerpc -usr/lib/python3.8/site-packages/samba/dcerpc/__init__.py -usr/lib/python3.8/site-packages/samba/dcerpc/atsvc.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/auth.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/base.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dcerpc.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dfs.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dns.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dnsp.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/dnsserver.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/drsblobs.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/drsuapi.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/echo.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/epmapper.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/idmap.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/initshutdown.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/irpc.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/krb5pac.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/lsa.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/mdssvc.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/messaging.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/mgmt.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/misc.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/nbt.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/netlogon.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/ntlmssp.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/preg.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/samr.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/security.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/server_id.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/smb_acl.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/spoolss.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/srvsvc.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/svcctl.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/unixinfo.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/winbind.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/windows_event_ids.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/winreg.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/winspool.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/witness.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/wkssvc.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/dcerpc/xattr.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/descriptor.py -usr/lib/python3.8/site-packages/samba/dnsresolver.py -usr/lib/python3.8/site-packages/samba/dnsserver.py -usr/lib/python3.8/site-packages/samba/domain_update.py -usr/lib/python3.8/site-packages/samba/drs_utils.py -#usr/lib/python3.8/site-packages/samba/emulate -usr/lib/python3.8/site-packages/samba/emulate/__init__.py -usr/lib/python3.8/site-packages/samba/emulate/traffic.py -usr/lib/python3.8/site-packages/samba/emulate/traffic_packets.py -usr/lib/python3.8/site-packages/samba/forest_update.py -usr/lib/python3.8/site-packages/samba/gensec.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/getopt.py -usr/lib/python3.8/site-packages/samba/gp_ext_loader.py -usr/lib/python3.8/site-packages/samba/gp_msgs_ext.py -#usr/lib/python3.8/site-packages/samba/gp_parse -usr/lib/python3.8/site-packages/samba/gp_parse/__init__.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_aas.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_csv.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_inf.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_ini.py -usr/lib/python3.8/site-packages/samba/gp_parse/gp_pol.py -usr/lib/python3.8/site-packages/samba/gp_scripts_ext.py -usr/lib/python3.8/site-packages/samba/gp_sec_ext.py -usr/lib/python3.8/site-packages/samba/gp_smb_conf_ext.py -usr/lib/python3.8/site-packages/samba/gp_sudoers_ext.py -usr/lib/python3.8/site-packages/samba/gpclass.py -usr/lib/python3.8/site-packages/samba/gpo.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/graph.py -usr/lib/python3.8/site-packages/samba/hostconfig.py -usr/lib/python3.8/site-packages/samba/idmap.py -usr/lib/python3.8/site-packages/samba/join.py -#usr/lib/python3.8/site-packages/samba/kcc -usr/lib/python3.8/site-packages/samba/kcc/__init__.py -usr/lib/python3.8/site-packages/samba/kcc/debug.py -usr/lib/python3.8/site-packages/samba/kcc/graph.py -usr/lib/python3.8/site-packages/samba/kcc/graph_utils.py -usr/lib/python3.8/site-packages/samba/kcc/kcc_utils.py -usr/lib/python3.8/site-packages/samba/kcc/ldif_import_export.py -usr/lib/python3.8/site-packages/samba/logger.py -usr/lib/python3.8/site-packages/samba/mdb_util.py -usr/lib/python3.8/site-packages/samba/messaging.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/ms_display_specifiers.py -usr/lib/python3.8/site-packages/samba/ms_forest_updates_markdown.py -usr/lib/python3.8/site-packages/samba/ms_schema.py -usr/lib/python3.8/site-packages/samba/ms_schema_markdown.py -usr/lib/python3.8/site-packages/samba/ndr.py -usr/lib/python3.8/site-packages/samba/net.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/netbios.cpython-38-x86_64-linux-gnu.so -#usr/lib/python3.8/site-packages/samba/netcmd -usr/lib/python3.8/site-packages/samba/netcmd/__init__.py -usr/lib/python3.8/site-packages/samba/netcmd/common.py -usr/lib/python3.8/site-packages/samba/netcmd/computer.py -usr/lib/python3.8/site-packages/samba/netcmd/contact.py -usr/lib/python3.8/site-packages/samba/netcmd/dbcheck.py -usr/lib/python3.8/site-packages/samba/netcmd/delegation.py -usr/lib/python3.8/site-packages/samba/netcmd/dns.py -usr/lib/python3.8/site-packages/samba/netcmd/domain.py -usr/lib/python3.8/site-packages/samba/netcmd/domain_backup.py -usr/lib/python3.8/site-packages/samba/netcmd/drs.py -usr/lib/python3.8/site-packages/samba/netcmd/dsacl.py -usr/lib/python3.8/site-packages/samba/netcmd/forest.py -usr/lib/python3.8/site-packages/samba/netcmd/fsmo.py -usr/lib/python3.8/site-packages/samba/netcmd/gpo.py -usr/lib/python3.8/site-packages/samba/netcmd/group.py -usr/lib/python3.8/site-packages/samba/netcmd/ldapcmp.py -usr/lib/python3.8/site-packages/samba/netcmd/main.py -usr/lib/python3.8/site-packages/samba/netcmd/nettime.py -usr/lib/python3.8/site-packages/samba/netcmd/ntacl.py -usr/lib/python3.8/site-packages/samba/netcmd/ou.py -usr/lib/python3.8/site-packages/samba/netcmd/processes.py -usr/lib/python3.8/site-packages/samba/netcmd/pso.py -usr/lib/python3.8/site-packages/samba/netcmd/rodc.py -usr/lib/python3.8/site-packages/samba/netcmd/schema.py -usr/lib/python3.8/site-packages/samba/netcmd/sites.py -usr/lib/python3.8/site-packages/samba/netcmd/spn.py -usr/lib/python3.8/site-packages/samba/netcmd/testparm.py -usr/lib/python3.8/site-packages/samba/netcmd/user.py -usr/lib/python3.8/site-packages/samba/netcmd/visualize.py -usr/lib/python3.8/site-packages/samba/ntacls.py -usr/lib/python3.8/site-packages/samba/ntstatus.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/param.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/policy.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/posix_eadb.cpython-38-x86_64-linux-gnu.so -#usr/lib/python3.8/site-packages/samba/provision -usr/lib/python3.8/site-packages/samba/provision/__init__.py -usr/lib/python3.8/site-packages/samba/provision/backend.py -usr/lib/python3.8/site-packages/samba/provision/common.py -usr/lib/python3.8/site-packages/samba/provision/kerberos.py -usr/lib/python3.8/site-packages/samba/provision/kerberos_implementation.py -usr/lib/python3.8/site-packages/samba/provision/sambadns.py -usr/lib/python3.8/site-packages/samba/registry.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/remove_dc.py -#usr/lib/python3.8/site-packages/samba/samba3 -usr/lib/python3.8/site-packages/samba/samba3/__init__.py -usr/lib/python3.8/site-packages/samba/samba3/libsmb_samba_cwrapper.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/libsmb_samba_internal.py -usr/lib/python3.8/site-packages/samba/samba3/mdscli.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/param.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/passdb.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samba3/smbd.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/samdb.py -usr/lib/python3.8/site-packages/samba/schema.py -usr/lib/python3.8/site-packages/samba/sd_utils.py -usr/lib/python3.8/site-packages/samba/security.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/sites.py -usr/lib/python3.8/site-packages/samba/subnets.py -#usr/lib/python3.8/site-packages/samba/subunit -usr/lib/python3.8/site-packages/samba/subunit/__init__.py -usr/lib/python3.8/site-packages/samba/subunit/run.py -usr/lib/python3.8/site-packages/samba/tdb_util.py -#usr/lib/python3.8/site-packages/samba/tests -#usr/lib/python3.8/site-packages/samba/tests/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_base.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_dsdb.py -#usr/lib/python3.8/site-packages/samba/tests/audit_log_pass_change.py -#usr/lib/python3.8/site-packages/samba/tests/auth.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_base.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_ncalrpc.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_netlogon.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_netlogon_bad_creds.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_pass_change.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_samlogon.py -#usr/lib/python3.8/site-packages/samba/tests/auth_log_winbind.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox -#usr/lib/python3.8/site-packages/samba/tests/blackbox/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/bug13653.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/check_output.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/downgradedatabase.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/mdfind.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/ndrdump.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/netads_json.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/samba_dnsupdate.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls_basic.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls_dfs_propagate_inherit.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcacls_propagate_inhertance.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcontrol.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/smbcontrol_process.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_learner.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_replay.py -#usr/lib/python3.8/site-packages/samba/tests/blackbox/traffic_summary.py -#usr/lib/python3.8/site-packages/samba/tests/common.py -#usr/lib/python3.8/site-packages/samba/tests/complex_expressions.py -#usr/lib/python3.8/site-packages/samba/tests/core.py -#usr/lib/python3.8/site-packages/samba/tests/cred_opt.py -#usr/lib/python3.8/site-packages/samba/tests/credentials.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/array.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/bare.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/binding.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/createtrustrelax.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/dnsserver.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/integer.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/mdssvc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/misc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/raw_protocol.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/raw_testcase.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/registry.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/rpc_talloc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/rpcecho.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/sam.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/samr_change_password.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/srvsvc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/string_tests.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/testrpc.py -#usr/lib/python3.8/site-packages/samba/tests/dcerpc/unix.py -#usr/lib/python3.8/site-packages/samba/tests/dckeytab.py -#usr/lib/python3.8/site-packages/samba/tests/dns.py -#usr/lib/python3.8/site-packages/samba/tests/dns_base.py -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder.py -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder_helpers -#usr/lib/python3.8/site-packages/samba/tests/dns_forwarder_helpers/server.py -#usr/lib/python3.8/site-packages/samba/tests/dns_invalid.py -#usr/lib/python3.8/site-packages/samba/tests/dns_packet.py -#usr/lib/python3.8/site-packages/samba/tests/dns_tkey.py -#usr/lib/python3.8/site-packages/samba/tests/dns_wildcard.py -#usr/lib/python3.8/site-packages/samba/tests/docs.py -#usr/lib/python3.8/site-packages/samba/tests/domain_backup.py -#usr/lib/python3.8/site-packages/samba/tests/domain_backup_offline.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb_lock.py -#usr/lib/python3.8/site-packages/samba/tests/dsdb_schema_attributes.py -#usr/lib/python3.8/site-packages/samba/tests/emulate -#usr/lib/python3.8/site-packages/samba/tests/emulate/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/emulate/traffic.py -#usr/lib/python3.8/site-packages/samba/tests/emulate/traffic_packet.py -#usr/lib/python3.8/site-packages/samba/tests/encrypted_secrets.py -#usr/lib/python3.8/site-packages/samba/tests/gensec.py -#usr/lib/python3.8/site-packages/samba/tests/get_opt.py -#usr/lib/python3.8/site-packages/samba/tests/getdcname.py -#usr/lib/python3.8/site-packages/samba/tests/glue.py -#usr/lib/python3.8/site-packages/samba/tests/gpo.py -#usr/lib/python3.8/site-packages/samba/tests/graph.py -#usr/lib/python3.8/site-packages/samba/tests/group_audit.py -#usr/lib/python3.8/site-packages/samba/tests/hostconfig.py -#usr/lib/python3.8/site-packages/samba/tests/join.py -#usr/lib/python3.8/site-packages/samba/tests/kcc -#usr/lib/python3.8/site-packages/samba/tests/kcc/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/graph.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/graph_utils.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/kcc_utils.py -#usr/lib/python3.8/site-packages/samba/tests/kcc/ldif_import_export.py -#usr/lib/python3.8/site-packages/samba/tests/krb5 -#usr/lib/python3.8/site-packages/samba/tests/krb5/as_canonicalization_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/compatability_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kcrypto.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kdc_base_test.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kdc_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/kdc_tgs_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/raw_testcase.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/rfc4120_constants.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/rfc4120_pyasn1.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/s4u_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/simple_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5/xrealm_tests.py -#usr/lib/python3.8/site-packages/samba/tests/krb5_credentials.py -#usr/lib/python3.8/site-packages/samba/tests/ldap_raw.py -#usr/lib/python3.8/site-packages/samba/tests/ldap_referrals.py -#usr/lib/python3.8/site-packages/samba/tests/libsmb.py -#usr/lib/python3.8/site-packages/samba/tests/loadparm.py -#usr/lib/python3.8/site-packages/samba/tests/lsa_string.py -#usr/lib/python3.8/site-packages/samba/tests/messaging.py -#usr/lib/python3.8/site-packages/samba/tests/net_join.py -#usr/lib/python3.8/site-packages/samba/tests/net_join_no_spnego.py -#usr/lib/python3.8/site-packages/samba/tests/netbios.py -#usr/lib/python3.8/site-packages/samba/tests/netcmd.py -#usr/lib/python3.8/site-packages/samba/tests/netlogonsvc.py -#usr/lib/python3.8/site-packages/samba/tests/ntacls.py -#usr/lib/python3.8/site-packages/samba/tests/ntacls_backup.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth_base.py -#usr/lib/python3.8/site-packages/samba/tests/ntlm_auth_krb5.py -#usr/lib/python3.8/site-packages/samba/tests/ntlmdisabled.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind_chauthtok.py -#usr/lib/python3.8/site-packages/samba/tests/pam_winbind_warn_pwd_expire.py -#usr/lib/python3.8/site-packages/samba/tests/param.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_fl2003.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_fl2008.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_gpgme.py -#usr/lib/python3.8/site-packages/samba/tests/password_hash_ldap.py -#usr/lib/python3.8/site-packages/samba/tests/password_quality.py -#usr/lib/python3.8/site-packages/samba/tests/password_test.py -#usr/lib/python3.8/site-packages/samba/tests/policy.py -#usr/lib/python3.8/site-packages/samba/tests/posixacl.py -#usr/lib/python3.8/site-packages/samba/tests/prefork_restart.py -#usr/lib/python3.8/site-packages/samba/tests/process_limits.py -#usr/lib/python3.8/site-packages/samba/tests/provision.py -#usr/lib/python3.8/site-packages/samba/tests/pso.py -#usr/lib/python3.8/site-packages/samba/tests/py_credentials.py -#usr/lib/python3.8/site-packages/samba/tests/registry.py -#usr/lib/python3.8/site-packages/samba/tests/s3idmapdb.py -#usr/lib/python3.8/site-packages/samba/tests/s3param.py -#usr/lib/python3.8/site-packages/samba/tests/s3passdb.py -#usr/lib/python3.8/site-packages/samba/tests/s3registry.py -#usr/lib/python3.8/site-packages/samba/tests/s3windb.py -#usr/lib/python3.8/site-packages/samba/tests/samba3sam.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/__init__.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/base.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/computer.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/contact.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/demote.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/dnscmd.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/drs_clone_dc_data_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/dsacl.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/forest.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/fsmo.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/gpo.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/group.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/help.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/join.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/join_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/ntacl.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/ou.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/passwordsettings.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/processes.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/promote_dc_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/provision_lmdb_size.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/provision_password_check.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/rodc.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/schema.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/sites.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/timecmd.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_check_password_script.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_base.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_gpg.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_userPassword.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/user_wdigest.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/visualize.py -#usr/lib/python3.8/site-packages/samba/tests/samba_tool/visualize_drs.py -#usr/lib/python3.8/site-packages/samba/tests/samba_upgradedns_lmdb.py -#usr/lib/python3.8/site-packages/samba/tests/samdb.py -#usr/lib/python3.8/site-packages/samba/tests/samdb_api.py -#usr/lib/python3.8/site-packages/samba/tests/security.py -#usr/lib/python3.8/site-packages/samba/tests/segfault.py -#usr/lib/python3.8/site-packages/samba/tests/smb-notify.py -#usr/lib/python3.8/site-packages/samba/tests/smb.py -#usr/lib/python3.8/site-packages/samba/tests/smbd_base.py -#usr/lib/python3.8/site-packages/samba/tests/smbd_fuzztest.py -#usr/lib/python3.8/site-packages/samba/tests/source.py -#usr/lib/python3.8/site-packages/samba/tests/strings.py -#usr/lib/python3.8/site-packages/samba/tests/subunitrun.py -#usr/lib/python3.8/site-packages/samba/tests/tdb_util.py -#usr/lib/python3.8/site-packages/samba/tests/upgrade.py -#usr/lib/python3.8/site-packages/samba/tests/upgradeprovision.py -#usr/lib/python3.8/site-packages/samba/tests/upgradeprovisionneeddc.py -#usr/lib/python3.8/site-packages/samba/tests/usage.py -#usr/lib/python3.8/site-packages/samba/tests/xattr.py -usr/lib/python3.8/site-packages/samba/trust_utils.py -usr/lib/python3.8/site-packages/samba/upgrade.py -usr/lib/python3.8/site-packages/samba/upgradehelpers.py -usr/lib/python3.8/site-packages/samba/uptodateness.py -usr/lib/python3.8/site-packages/samba/vgp_sudoers_ext.py -usr/lib/python3.8/site-packages/samba/werror.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/xattr.py -usr/lib/python3.8/site-packages/samba/xattr_native.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/samba/xattr_tdb.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/talloc.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/tdb.cpython-38-x86_64-linux-gnu.so -usr/lib/python3.8/site-packages/tevent.py +usr/lib/python3.10/site-packages/_ldb_text.py +usr/lib/python3.10/site-packages/_tdb_text.py +usr/lib/python3.10/site-packages/_tevent.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/ldb.cpython-310-x86_64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba +usr/lib/python3.10/site-packages/samba/__init__.py +usr/lib/python3.10/site-packages/samba/_glue.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/_ldb.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/auth.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/auth_util.py +usr/lib/python3.10/site-packages/samba/colour.py +usr/lib/python3.10/site-packages/samba/common.py +usr/lib/python3.10/site-packages/samba/credentials.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/crypto.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dbchecker.py +#usr/lib/python3.10/site-packages/samba/dcerpc +usr/lib/python3.10/site-packages/samba/dcerpc/__init__.py +usr/lib/python3.10/site-packages/samba/dcerpc/atsvc.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/auth.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/base.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dcerpc.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dfs.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dns.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dnsp.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/dnsserver.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/drsblobs.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/drsuapi.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/echo.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/epmapper.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/idmap.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/initshutdown.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/irpc.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/krb5ccache.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/krb5pac.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/lsa.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/mdssvc.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/messaging.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/mgmt.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/misc.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/nbt.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/netlogon.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/ntlmssp.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/preg.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/samr.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/security.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/server_id.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/smb_acl.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/spoolss.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/srvsvc.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/svcctl.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/unixinfo.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/winbind.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/windows_event_ids.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/winreg.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/winspool.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/witness.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/wkssvc.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dcerpc/xattr.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/descriptor.py +usr/lib/python3.10/site-packages/samba/dnsresolver.py +usr/lib/python3.10/site-packages/samba/dnsserver.py +usr/lib/python3.10/site-packages/samba/domain_update.py +usr/lib/python3.10/site-packages/samba/drs_utils.py +usr/lib/python3.10/site-packages/samba/dsdb.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/dsdb_dns.cpython-310-x86_64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba/emulate +usr/lib/python3.10/site-packages/samba/emulate/__init__.py +usr/lib/python3.10/site-packages/samba/emulate/traffic.py +usr/lib/python3.10/site-packages/samba/emulate/traffic_packets.py +usr/lib/python3.10/site-packages/samba/forest_update.py +usr/lib/python3.10/site-packages/samba/gensec.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/getopt.py +usr/lib/python3.10/site-packages/samba/gp_ext_loader.py +usr/lib/python3.10/site-packages/samba/gp_gnome_settings_ext.py +usr/lib/python3.10/site-packages/samba/gp_msgs_ext.py +#usr/lib/python3.10/site-packages/samba/gp_parse +usr/lib/python3.10/site-packages/samba/gp_parse/__init__.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_aas.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_csv.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_inf.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_ini.py +usr/lib/python3.10/site-packages/samba/gp_parse/gp_pol.py +usr/lib/python3.10/site-packages/samba/gp_scripts_ext.py +usr/lib/python3.10/site-packages/samba/gp_sec_ext.py +usr/lib/python3.10/site-packages/samba/gp_smb_conf_ext.py +usr/lib/python3.10/site-packages/samba/gp_sudoers_ext.py +usr/lib/python3.10/site-packages/samba/gpclass.py +usr/lib/python3.10/site-packages/samba/gpo.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/graph.py +usr/lib/python3.10/site-packages/samba/hostconfig.py +usr/lib/python3.10/site-packages/samba/idmap.py +usr/lib/python3.10/site-packages/samba/join.py +#usr/lib/python3.10/site-packages/samba/kcc +usr/lib/python3.10/site-packages/samba/kcc/__init__.py +usr/lib/python3.10/site-packages/samba/kcc/debug.py +usr/lib/python3.10/site-packages/samba/kcc/graph.py +usr/lib/python3.10/site-packages/samba/kcc/graph_utils.py +usr/lib/python3.10/site-packages/samba/kcc/kcc_utils.py +usr/lib/python3.10/site-packages/samba/kcc/ldif_import_export.py +usr/lib/python3.10/site-packages/samba/logger.py +usr/lib/python3.10/site-packages/samba/mdb_util.py +usr/lib/python3.10/site-packages/samba/messaging.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/ms_display_specifiers.py +usr/lib/python3.10/site-packages/samba/ms_forest_updates_markdown.py +usr/lib/python3.10/site-packages/samba/ms_schema.py +usr/lib/python3.10/site-packages/samba/ms_schema_markdown.py +usr/lib/python3.10/site-packages/samba/ndr.py +usr/lib/python3.10/site-packages/samba/net.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/net_s3.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/netbios.cpython-310-x86_64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba/netcmd +usr/lib/python3.10/site-packages/samba/netcmd/__init__.py +usr/lib/python3.10/site-packages/samba/netcmd/common.py +usr/lib/python3.10/site-packages/samba/netcmd/computer.py +usr/lib/python3.10/site-packages/samba/netcmd/contact.py +usr/lib/python3.10/site-packages/samba/netcmd/dbcheck.py +usr/lib/python3.10/site-packages/samba/netcmd/delegation.py +usr/lib/python3.10/site-packages/samba/netcmd/dns.py +usr/lib/python3.10/site-packages/samba/netcmd/domain.py +usr/lib/python3.10/site-packages/samba/netcmd/domain_backup.py +usr/lib/python3.10/site-packages/samba/netcmd/drs.py +usr/lib/python3.10/site-packages/samba/netcmd/dsacl.py +usr/lib/python3.10/site-packages/samba/netcmd/forest.py +usr/lib/python3.10/site-packages/samba/netcmd/fsmo.py +usr/lib/python3.10/site-packages/samba/netcmd/gpo.py +usr/lib/python3.10/site-packages/samba/netcmd/group.py +usr/lib/python3.10/site-packages/samba/netcmd/ldapcmp.py +usr/lib/python3.10/site-packages/samba/netcmd/main.py +usr/lib/python3.10/site-packages/samba/netcmd/nettime.py +usr/lib/python3.10/site-packages/samba/netcmd/ntacl.py +usr/lib/python3.10/site-packages/samba/netcmd/ou.py +usr/lib/python3.10/site-packages/samba/netcmd/processes.py +usr/lib/python3.10/site-packages/samba/netcmd/pso.py +usr/lib/python3.10/site-packages/samba/netcmd/rodc.py +usr/lib/python3.10/site-packages/samba/netcmd/schema.py +usr/lib/python3.10/site-packages/samba/netcmd/sites.py +usr/lib/python3.10/site-packages/samba/netcmd/spn.py +usr/lib/python3.10/site-packages/samba/netcmd/testparm.py +usr/lib/python3.10/site-packages/samba/netcmd/user.py +usr/lib/python3.10/site-packages/samba/netcmd/visualize.py +usr/lib/python3.10/site-packages/samba/ntacls.py +usr/lib/python3.10/site-packages/samba/ntstatus.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/param.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/policy.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/posix_eadb.cpython-310-x86_64-linux-gnu.so +#usr/lib/python3.10/site-packages/samba/provision +usr/lib/python3.10/site-packages/samba/provision/__init__.py +usr/lib/python3.10/site-packages/samba/provision/backend.py +usr/lib/python3.10/site-packages/samba/provision/common.py +usr/lib/python3.10/site-packages/samba/provision/kerberos.py +usr/lib/python3.10/site-packages/samba/provision/kerberos_implementation.py +usr/lib/python3.10/site-packages/samba/provision/sambadns.py +usr/lib/python3.10/site-packages/samba/registry.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/remove_dc.py +#usr/lib/python3.10/site-packages/samba/samba3 +usr/lib/python3.10/site-packages/samba/samba3/__init__.py +usr/lib/python3.10/site-packages/samba/samba3/libsmb_samba_cwrapper.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/libsmb_samba_internal.py +usr/lib/python3.10/site-packages/samba/samba3/mdscli.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/param.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/passdb.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samba3/smbd.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/samdb.py +usr/lib/python3.10/site-packages/samba/schema.py +usr/lib/python3.10/site-packages/samba/sd_utils.py +usr/lib/python3.10/site-packages/samba/security.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/sites.py +usr/lib/python3.10/site-packages/samba/subnets.py +#usr/lib/python3.10/site-packages/samba/subunit +usr/lib/python3.10/site-packages/samba/subunit/__init__.py +usr/lib/python3.10/site-packages/samba/subunit/run.py +usr/lib/python3.10/site-packages/samba/tdb_util.py +#usr/lib/python3.10/site-packages/samba/tests +#usr/lib/python3.10/site-packages/samba/tests/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_base.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_dsdb.py +#usr/lib/python3.10/site-packages/samba/tests/audit_log_pass_change.py +#usr/lib/python3.10/site-packages/samba/tests/auth.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_base.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_ncalrpc.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_netlogon.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_netlogon_bad_creds.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_pass_change.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_samlogon.py +#usr/lib/python3.10/site-packages/samba/tests/auth_log_winbind.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox +#usr/lib/python3.10/site-packages/samba/tests/blackbox/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/bug13653.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/check_output.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/downgradedatabase.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/mdsearch.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/ndrdump.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/netads_json.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/samba_dnsupdate.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls_basic.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls_dfs_propagate_inherit.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcacls_propagate_inhertance.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcontrol.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/smbcontrol_process.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_learner.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_replay.py +#usr/lib/python3.10/site-packages/samba/tests/blackbox/traffic_summary.py +#usr/lib/python3.10/site-packages/samba/tests/common.py +#usr/lib/python3.10/site-packages/samba/tests/complex_expressions.py +#usr/lib/python3.10/site-packages/samba/tests/core.py +#usr/lib/python3.10/site-packages/samba/tests/cred_opt.py +#usr/lib/python3.10/site-packages/samba/tests/credentials.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/array.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/bare.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/binding.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/createtrustrelax.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/dnsserver.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/integer.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/lsa.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/mdssvc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/misc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/raw_protocol.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/raw_testcase.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/registry.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/rpc_talloc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/rpcecho.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/sam.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/samr_change_password.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/srvsvc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/string_tests.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/testrpc.py +#usr/lib/python3.10/site-packages/samba/tests/dcerpc/unix.py +#usr/lib/python3.10/site-packages/samba/tests/dckeytab.py +#usr/lib/python3.10/site-packages/samba/tests/dns.py +#usr/lib/python3.10/site-packages/samba/tests/dns_aging.py +#usr/lib/python3.10/site-packages/samba/tests/dns_base.py +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder.py +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder_helpers +#usr/lib/python3.10/site-packages/samba/tests/dns_forwarder_helpers/server.py +#usr/lib/python3.10/site-packages/samba/tests/dns_invalid.py +#usr/lib/python3.10/site-packages/samba/tests/dns_packet.py +#usr/lib/python3.10/site-packages/samba/tests/dns_tkey.py +#usr/lib/python3.10/site-packages/samba/tests/dns_wildcard.py +#usr/lib/python3.10/site-packages/samba/tests/docs.py +#usr/lib/python3.10/site-packages/samba/tests/domain_backup.py +#usr/lib/python3.10/site-packages/samba/tests/domain_backup_offline.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_api.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_dns.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_lock.py +#usr/lib/python3.10/site-packages/samba/tests/dsdb_schema_attributes.py +#usr/lib/python3.10/site-packages/samba/tests/emulate +#usr/lib/python3.10/site-packages/samba/tests/emulate/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/emulate/traffic.py +#usr/lib/python3.10/site-packages/samba/tests/emulate/traffic_packet.py +#usr/lib/python3.10/site-packages/samba/tests/encrypted_secrets.py +#usr/lib/python3.10/site-packages/samba/tests/gensec.py +#usr/lib/python3.10/site-packages/samba/tests/get_opt.py +#usr/lib/python3.10/site-packages/samba/tests/getdcname.py +#usr/lib/python3.10/site-packages/samba/tests/glue.py +#usr/lib/python3.10/site-packages/samba/tests/gpo.py +#usr/lib/python3.10/site-packages/samba/tests/gpo_member.py +#usr/lib/python3.10/site-packages/samba/tests/graph.py +#usr/lib/python3.10/site-packages/samba/tests/group_audit.py +#usr/lib/python3.10/site-packages/samba/tests/hostconfig.py +#usr/lib/python3.10/site-packages/samba/tests/imports.py +#usr/lib/python3.10/site-packages/samba/tests/join.py +#usr/lib/python3.10/site-packages/samba/tests/kcc +#usr/lib/python3.10/site-packages/samba/tests/kcc/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/graph.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/graph_utils.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/kcc_utils.py +#usr/lib/python3.10/site-packages/samba/tests/kcc/ldif_import_export.py +#usr/lib/python3.10/site-packages/samba/tests/krb5 +#usr/lib/python3.10/site-packages/samba/tests/krb5/alias_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/as_canonicalization_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/as_req_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/compatability_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/fast_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kcrypto.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kdc_base_test.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kdc_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/kdc_tgs_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/ms_kile_client_principal_lookup_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/raw_testcase.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/rfc4120_constants.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/rfc4120_pyasn1.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/rodc_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/s4u_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/salt_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/simple_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/spn_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_ccache.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_idmap_nss.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_ldap.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_min_domain_uid.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_rpc.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/test_smb.py +#usr/lib/python3.10/site-packages/samba/tests/krb5/xrealm_tests.py +#usr/lib/python3.10/site-packages/samba/tests/krb5_credentials.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_raw.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_referrals.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_spn.py +#usr/lib/python3.10/site-packages/samba/tests/ldap_upn_sam_account.py +#usr/lib/python3.10/site-packages/samba/tests/libsmb.py +#usr/lib/python3.10/site-packages/samba/tests/loadparm.py +#usr/lib/python3.10/site-packages/samba/tests/lsa_string.py +#usr/lib/python3.10/site-packages/samba/tests/messaging.py +#usr/lib/python3.10/site-packages/samba/tests/ndr.py +#usr/lib/python3.10/site-packages/samba/tests/net_join.py +#usr/lib/python3.10/site-packages/samba/tests/net_join_no_spnego.py +#usr/lib/python3.10/site-packages/samba/tests/netbios.py +#usr/lib/python3.10/site-packages/samba/tests/netcmd.py +#usr/lib/python3.10/site-packages/samba/tests/netlogonsvc.py +#usr/lib/python3.10/site-packages/samba/tests/ntacls.py +#usr/lib/python3.10/site-packages/samba/tests/ntacls_backup.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth_base.py +#usr/lib/python3.10/site-packages/samba/tests/ntlm_auth_krb5.py +#usr/lib/python3.10/site-packages/samba/tests/ntlmdisabled.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind_chauthtok.py +#usr/lib/python3.10/site-packages/samba/tests/pam_winbind_warn_pwd_expire.py +#usr/lib/python3.10/site-packages/samba/tests/param.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_fl2003.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_fl2008.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_gpgme.py +#usr/lib/python3.10/site-packages/samba/tests/password_hash_ldap.py +#usr/lib/python3.10/site-packages/samba/tests/password_quality.py +#usr/lib/python3.10/site-packages/samba/tests/password_test.py +#usr/lib/python3.10/site-packages/samba/tests/policy.py +#usr/lib/python3.10/site-packages/samba/tests/posixacl.py +#usr/lib/python3.10/site-packages/samba/tests/prefork_restart.py +#usr/lib/python3.10/site-packages/samba/tests/process_limits.py +#usr/lib/python3.10/site-packages/samba/tests/provision.py +#usr/lib/python3.10/site-packages/samba/tests/pso.py +#usr/lib/python3.10/site-packages/samba/tests/py_credentials.py +#usr/lib/python3.10/site-packages/samba/tests/registry.py +#usr/lib/python3.10/site-packages/samba/tests/s3_net_join.py +#usr/lib/python3.10/site-packages/samba/tests/s3idmapdb.py +#usr/lib/python3.10/site-packages/samba/tests/s3param.py +#usr/lib/python3.10/site-packages/samba/tests/s3passdb.py +#usr/lib/python3.10/site-packages/samba/tests/s3registry.py +#usr/lib/python3.10/site-packages/samba/tests/s3windb.py +#usr/lib/python3.10/site-packages/samba/tests/samba3sam.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/__init__.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/base.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/computer.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/contact.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/demote.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/dnscmd.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/drs_clone_dc_data_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/dsacl.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/forest.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/fsmo.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/gpo.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/gpo_exts.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/group.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/help.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/join.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/join_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/ntacl.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/ou.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/passwordsettings.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/processes.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/promote_dc_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_lmdb_size.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_password_check.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/provision_userPassword_crypt.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/rodc.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/schema.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/sites.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/timecmd.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_check_password_script.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_base.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_gpg.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_virtualCryptSHA_userPassword.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/user_wdigest.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/visualize.py +#usr/lib/python3.10/site-packages/samba/tests/samba_tool/visualize_drs.py +#usr/lib/python3.10/site-packages/samba/tests/samba_upgradedns_lmdb.py +#usr/lib/python3.10/site-packages/samba/tests/samdb.py +#usr/lib/python3.10/site-packages/samba/tests/samdb_api.py +#usr/lib/python3.10/site-packages/samba/tests/sddl.py +#usr/lib/python3.10/site-packages/samba/tests/security.py +#usr/lib/python3.10/site-packages/samba/tests/segfault.py +#usr/lib/python3.10/site-packages/samba/tests/smb-notify.py +#usr/lib/python3.10/site-packages/samba/tests/smb.py +#usr/lib/python3.10/site-packages/samba/tests/smbd_base.py +#usr/lib/python3.10/site-packages/samba/tests/smbd_fuzztest.py +#usr/lib/python3.10/site-packages/samba/tests/source.py +#usr/lib/python3.10/site-packages/samba/tests/strings.py +#usr/lib/python3.10/site-packages/samba/tests/subunitrun.py +#usr/lib/python3.10/site-packages/samba/tests/tdb_util.py +#usr/lib/python3.10/site-packages/samba/tests/upgrade.py +#usr/lib/python3.10/site-packages/samba/tests/upgradeprovision.py +#usr/lib/python3.10/site-packages/samba/tests/upgradeprovisionneeddc.py +#usr/lib/python3.10/site-packages/samba/tests/usage.py +#usr/lib/python3.10/site-packages/samba/tests/xattr.py +usr/lib/python3.10/site-packages/samba/trust_utils.py +usr/lib/python3.10/site-packages/samba/upgrade.py +usr/lib/python3.10/site-packages/samba/upgradehelpers.py +usr/lib/python3.10/site-packages/samba/uptodateness.py +usr/lib/python3.10/site-packages/samba/vgp_access_ext.py +usr/lib/python3.10/site-packages/samba/vgp_files_ext.py +usr/lib/python3.10/site-packages/samba/vgp_issue_ext.py +usr/lib/python3.10/site-packages/samba/vgp_motd_ext.py +usr/lib/python3.10/site-packages/samba/vgp_openssh_ext.py +usr/lib/python3.10/site-packages/samba/vgp_startup_scripts_ext.py +usr/lib/python3.10/site-packages/samba/vgp_sudoers_ext.py +usr/lib/python3.10/site-packages/samba/vgp_symlink_ext.py +usr/lib/python3.10/site-packages/samba/werror.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/xattr.py +usr/lib/python3.10/site-packages/samba/xattr_native.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/samba/xattr_tdb.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/talloc.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/tdb.cpython-310-x86_64-linux-gnu.so +usr/lib/python3.10/site-packages/tevent.py #usr/lib/samba usr/lib/samba/idmap usr/lib/samba/idmap/ad.so @@ -639,14 +678,16 @@ usr/lib/samba/libcliauth-samba4.so usr/lib/samba/libclidns-samba4.so usr/lib/samba/libcluster-samba4.so usr/lib/samba/libcmdline-contexts-samba4.so -usr/lib/samba/libcmdline-credentials-samba4.so +usr/lib/samba/libcmdline-samba4.so usr/lib/samba/libcmocka-samba4.so usr/lib/samba/libcom_err-samba4.so.0 usr/lib/samba/libcom_err-samba4.so.0.25 usr/lib/samba/libcommon-auth-samba4.so usr/lib/samba/libdbwrap-samba4.so +usr/lib/samba/libdcerpc-pkt-auth-samba4.so usr/lib/samba/libdcerpc-samba-samba4.so usr/lib/samba/libdcerpc-samba4.so +usr/lib/samba/libdnsserver-common-samba4.so usr/lib/samba/libdsdb-module-samba4.so usr/lib/samba/libevents-samba4.so usr/lib/samba/libflag-mapping-samba4.so @@ -681,7 +722,7 @@ usr/lib/samba/libldb-key-value-samba4.so usr/lib/samba/libldb-tdb-err-map-samba4.so usr/lib/samba/libldb-tdb-int-samba4.so usr/lib/samba/libldb.so.2 -usr/lib/samba/libldb.so.2.3.0 +usr/lib/samba/libldb.so.2.4.1 usr/lib/samba/libldbsamba-samba4.so usr/lib/samba/liblibcli-lsa3-samba4.so usr/lib/samba/liblibcli-netlogon3-samba4.so @@ -697,15 +738,13 @@ usr/lib/samba/libnet-keytab-samba4.so usr/lib/samba/libnetif-samba4.so usr/lib/samba/libnpa-tstream-samba4.so usr/lib/samba/libnss-info-samba4.so -usr/lib/samba/libpopt-samba3-cmdline-samba4.so -usr/lib/samba/libpopt-samba3-samba4.so usr/lib/samba/libposix-eadb-samba4.so usr/lib/samba/libprinter-driver-samba4.so usr/lib/samba/libprinting-migrate-samba4.so -usr/lib/samba/libpyldb-util.cpython-38-x86-64-linux-gnu.so.2 -usr/lib/samba/libpyldb-util.cpython-38-x86-64-linux-gnu.so.2.3.0 -usr/lib/samba/libpytalloc-util.cpython-38-x86-64-linux-gnu.so.2 -usr/lib/samba/libpytalloc-util.cpython-38-x86-64-linux-gnu.so.2.3.2 +usr/lib/samba/libpyldb-util.cpython-310-x86-64-linux-gnu.so.2 +usr/lib/samba/libpyldb-util.cpython-310-x86-64-linux-gnu.so.2.4.1 +usr/lib/samba/libpytalloc-util.cpython-310-x86-64-linux-gnu.so.2 +usr/lib/samba/libpytalloc-util.cpython-310-x86-64-linux-gnu.so.2.3.3 usr/lib/samba/libregistry-samba4.so usr/lib/samba/libreplace-samba4.so usr/lib/samba/libroken-samba4.so.19 @@ -713,8 +752,8 @@ usr/lib/samba/libroken-samba4.so.19.0.1 usr/lib/samba/libsamba-cluster-support-samba4.so usr/lib/samba/libsamba-debug-samba4.so usr/lib/samba/libsamba-modules-samba4.so -usr/lib/samba/libsamba-net.cpython-38-x86-64-linux-gnu-samba4.so -usr/lib/samba/libsamba-python.cpython-38-x86-64-linux-gnu-samba4.so +usr/lib/samba/libsamba-net.cpython-310-x86-64-linux-gnu-samba4.so +usr/lib/samba/libsamba-python.cpython-310-x86-64-linux-gnu-samba4.so usr/lib/samba/libsamba-security-samba4.so usr/lib/samba/libsamba-sockets-samba4.so usr/lib/samba/libsamba3-util-samba4.so @@ -734,16 +773,15 @@ usr/lib/samba/libsys-rw-samba4.so usr/lib/samba/libtalloc-report-printf-samba4.so usr/lib/samba/libtalloc-report-samba4.so usr/lib/samba/libtalloc.so.2 -usr/lib/samba/libtalloc.so.2.3.2 +usr/lib/samba/libtalloc.so.2.3.3 usr/lib/samba/libtdb-wrap-samba4.so usr/lib/samba/libtdb.so.1 -usr/lib/samba/libtdb.so.1.4.3 +usr/lib/samba/libtdb.so.1.4.4 usr/lib/samba/libtevent.so.0 -usr/lib/samba/libtevent.so.0.10.2 +usr/lib/samba/libtevent.so.0.11.0 usr/lib/samba/libtime-basic-samba4.so usr/lib/samba/libtorture-samba4.so usr/lib/samba/libtrusts-util-samba4.so -usr/lib/samba/libutil-cmdline-samba4.so usr/lib/samba/libutil-reg-samba4.so usr/lib/samba/libutil-setid-samba4.so usr/lib/samba/libutil-tdb-samba4.so @@ -800,6 +838,7 @@ usr/lib/samba/vfs/xattr_tdb.so usr/lib/security usr/lib/security/pam_winbind.so #usr/libexec/samba +usr/libexec/samba/samba-bgqd usr/libexec/samba/smbspool_krb5_wrapper usr/sbin/eventlogadm usr/sbin/nmbd @@ -824,6 +863,3 @@ var/lib/samba/private var/lib/samba/winbindd_privileged var/log/samba var/spool/samba -srv/web/ipfire/cgi-bin/samba.cgi -var/ipfire/menu.d/EX-samba.menu -usr/local/bin/sambactrl diff --git a/doc/language_issues.de b/doc/language_issues.de index 630ca9ff3d..c66806be71 100644 --- a/doc/language_issues.de +++ b/doc/language_issues.de @@ -153,6 +153,7 @@ WARNING: translation string unused: class in use WARNING: translation string unused: clear cache WARNING: translation string unused: client WARNING: translation string unused: comment +WARNING: translation string unused: community rules WARNING: translation string unused: compression WARNING: translation string unused: connect WARNING: translation string unused: connect the modem @@ -263,6 +264,8 @@ WARNING: translation string unused: email subject WARNING: translation string unused: email success WARNING: translation string unused: email text WARNING: translation string unused: emailreportlevel +WARNING: translation string unused: emerging pro rules +WARNING: translation string unused: emerging rules WARNING: translation string unused: enable javascript WARNING: translation string unused: enable wildcards WARNING: translation string unused: enabledtitle @@ -379,6 +382,8 @@ WARNING: translation string unused: ibod for dual isdn only WARNING: translation string unused: icmp selected but no type WARNING: translation string unused: icmp type WARNING: translation string unused: id +WARNING: translation string unused: ids oinkcode required +WARNING: translation string unused: ids rules update WARNING: translation string unused: ike encryption WARNING: translation string unused: ike grouptype WARNING: translation string unused: ike integrity @@ -401,6 +406,7 @@ WARNING: translation string unused: intrusion prevention system WARNING: translation string unused: invalid cache size WARNING: translation string unused: invalid date entered WARNING: translation string unused: invalid downlink speed +WARNING: translation string unused: invalid input for oink code WARNING: translation string unused: invalid loaded file WARNING: translation string unused: invalid md5sum WARNING: translation string unused: invalid port list @@ -629,7 +635,9 @@ WARNING: translation string unused: reboot question WARNING: translation string unused: reboot schedule WARNING: translation string unused: reboot sure WARNING: translation string unused: refresh update list +WARNING: translation string unused: registered user rules WARNING: translation string unused: released +WARNING: translation string unused: reload WARNING: translation string unused: removable device advice WARNING: translation string unused: reportfile WARNING: translation string unused: reportlevel @@ -712,6 +720,7 @@ WARNING: translation string unused: subject test WARNING: translation string unused: subject warn WARNING: translation string unused: subnet WARNING: translation string unused: subnet is invalid +WARNING: translation string unused: subscripted user rules WARNING: translation string unused: successfully refreshed updates list WARNING: translation string unused: system graphs WARNING: translation string unused: system has hwrng @@ -776,6 +785,7 @@ WARNING: translation string unused: unix charset WARNING: translation string unused: unix group WARNING: translation string unused: unix password sync WARNING: translation string unused: unix shell +WARNING: translation string unused: update ruleset WARNING: translation string unused: update transcript WARNING: translation string unused: updatedatabase WARNING: translation string unused: updates @@ -907,6 +917,8 @@ WARNING: untranslated string: guardian logtarget_file = unknown string WARNING: untranslated string: guardian logtarget_syslog = unknown string WARNING: untranslated string: guardian no entries = unknown string WARNING: untranslated string: guardian service = unknown string +WARNING: untranslated string: ids subscription code required = The selected ruleset requires a subscription code +WARNING: untranslated string: invalid input for subscription code = Invalid input for subscription code WARNING: untranslated string: ipsec dns server address is invalid = Invalid DNS server IP address(es) WARNING: untranslated string: ipsec invalid ip address or fqdn for rw endpoint = Invalid IP address or FQDN for Host-to-Net Endpoint WARNING: untranslated string: ipsec roadwarrior endpoint = Host-to-Net Endpoint @@ -923,6 +935,7 @@ WARNING: untranslated string: samba server role member = Domain Member WARNING: untranslated string: samba server role standalone = Standalone WARNING: untranslated string: show tls-auth key = Show tls-auth key WARNING: untranslated string: smb daemon = SMB Daemon +WARNING: untranslated string: subscription code = Subscription code WARNING: untranslated string: user management = User Management WARNING: untranslated string: winbind daemon = Winbind Daemon WARNING: untranslated string: wlan client encryption wpa3 = WPA3 diff --git a/doc/language_issues.en b/doc/language_issues.en index 3d733c7d40..6536ad71fa 100644 --- a/doc/language_issues.en +++ b/doc/language_issues.en @@ -486,7 +486,6 @@ WARNING: untranslated string: click to enable = Disabled (click to enable) WARNING: untranslated string: clock has not been synchronized = Clock has not been synchronized WARNING: untranslated string: clock last synchronized at = Clock was last synchronized at WARNING: untranslated string: common name = Common name -WARNING: untranslated string: community rules = Snort/VRT GPLv2 Community Rules WARNING: untranslated string: comp-lzo = LZO-Compression: WARNING: untranslated string: computer to modem rate = Computer to modem rate: WARNING: untranslated string: concentrator name = Concentrator name: @@ -676,12 +675,14 @@ WARNING: untranslated string: drop action = Default behaviour of (forward) firew WARNING: untranslated string: drop action1 = Default behaviour of (outgoing) firewall in mode "Blocked" WARNING: untranslated string: drop action2 = Default behaviour of (input) firewall WARNING: untranslated string: drop forward = Log dropped forward packets +WARNING: untranslated string: drop hostile = Drop packets from and to hostile networks (listed at Spamhaus DROP, etc.) WARNING: untranslated string: drop input = Log dropped input packets WARNING: untranslated string: drop newnotsyn = Log dropped new not SYN packets WARNING: untranslated string: drop outgoing = Log dropped outgoing packets WARNING: untranslated string: drop portscan = Log dropped portscan packets WARNING: untranslated string: drop proxy = Drop all packets not addressed to proxy WARNING: untranslated string: drop samba = Drop all Microsoft ports 135,137,138,139,445,1025 +WARNING: untranslated string: drop spoofed martians = Log dropped spoofed packets and marsians WARNING: untranslated string: drop wirelessforward = Log dropped wireless forward packets WARNING: untranslated string: drop wirelessinput = Log dropped wireless input packets WARNING: untranslated string: dst port = Dst Port @@ -720,8 +721,6 @@ WARNING: untranslated string: email tls = TLS mode WARNING: untranslated string: email tls explicit = explicit (STARTTLS) WARNING: untranslated string: email tls implicit = implicit (TLS) WARNING: untranslated string: email usemail = Activate Mail Service -WARNING: untranslated string: emerging pro rules = Emergingthreats.net Pro Rules -WARNING: untranslated string: emerging rules = Emergingthreats.net Community Rules WARNING: untranslated string: empty = This field may be left blank WARNING: untranslated string: empty profile = empty WARNING: untranslated string: enable = Enable @@ -811,6 +810,7 @@ WARNING: untranslated string: from = From WARNING: untranslated string: fw blue = Firewall options for BLUE interface WARNING: untranslated string: fw default drop = Firewall policy WARNING: untranslated string: fw logging = Firewall logging +WARNING: untranslated string: fw red = Firewall options for RED interface WARNING: untranslated string: fw settings = Firewall settings WARNING: untranslated string: fw settings color = Show colors in ruletable WARNING: untranslated string: fw settings dropdown = Show all networks on rulecreation site @@ -1029,6 +1029,7 @@ WARNING: untranslated string: holdoff = Holdoff time (in seconds) WARNING: untranslated string: host certificate = Host Certificate WARNING: untranslated string: host ip = Host IP address WARNING: untranslated string: host to net vpn = Host-to-Net Virtual Private Network (RoadWarrior) +WARNING: untranslated string: hostile networks = Hostile networks WARNING: untranslated string: hostname = Hostname WARNING: untranslated string: hostname cant be empty = Hostname cannot be empty. WARNING: untranslated string: hostname not set = Hostname not set. @@ -1039,11 +1040,17 @@ WARNING: untranslated string: hours = Hours WARNING: untranslated string: idle = Idle WARNING: untranslated string: idle timeout = Idle timeout (mins; 0 to disable): WARNING: untranslated string: idle timeout not set = Idle timeout not set. +WARNING: untranslated string: ids add provider = Add provider WARNING: untranslated string: ids apply = Apply WARNING: untranslated string: ids apply ruleset changes = The ruleset changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: ids automatic rules update = Automatic Rule Update +WARNING: untranslated string: ids autoupdates = Automatic updates +WARNING: untranslated string: ids could not add provider = Could not add provider +WARNING: untranslated string: ids customize ruleset = Customize ruleset WARNING: untranslated string: ids download new ruleset = Downloading and unpacking new ruleset. Please wait until all operations have completed successfully... WARNING: untranslated string: ids enable = Enable Intrusion Prevention System +WARNING: untranslated string: ids enable automatic updates = Enable automatic updates +WARNING: untranslated string: ids force ruleset update = Force ruleset update WARNING: untranslated string: ids hide = Hide WARNING: untranslated string: ids ignored hosts = Whitelisted Hosts WARNING: untranslated string: ids log hits = Total of number of activated rules for @@ -1051,13 +1058,18 @@ WARNING: untranslated string: ids log viewer = IPS Log Viewer WARNING: untranslated string: ids logs = IPS Logs WARNING: untranslated string: ids monitor traffic only = Monitor traffic only WARNING: untranslated string: ids monitored interfaces = Monitored Interfaces +WARNING: untranslated string: ids no enabled ruleset provider = No enabled ruleset is available. Please activate or add one first. WARNING: untranslated string: ids no network zone = Please select at least one network zone to be monitored -WARNING: untranslated string: ids no ruleset available = No ruleset is available. Please download one first -WARNING: untranslated string: ids oinkcode required = The selected ruleset requires a subscription or an Oinkcode -WARNING: untranslated string: ids rules update = Ruleset +WARNING: untranslated string: ids provider = Provider +WARNING: untranslated string: ids provider settings = Provider settings +WARNING: untranslated string: ids reset provider = Reset provider WARNING: untranslated string: ids ruleset autoupdate in progress = Ruleset update in progress. Please wait until all operations have completed successfully... WARNING: untranslated string: ids ruleset settings = Ruleset Settings WARNING: untranslated string: ids show = Show +WARNING: untranslated string: ids subscription code required = The selected ruleset requires a subscription code +WARNING: untranslated string: ids the choosen provider is already in use = The choosen provider is already in use. +WARNING: untranslated string: ids unable to download the ruleset = Unable to download the ruleset +WARNING: untranslated string: ids visit provider website = Visit provider website WARNING: untranslated string: ids working = Changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: iface = Iface WARNING: untranslated string: ignore filter = Ignore filter @@ -1113,10 +1125,10 @@ WARNING: untranslated string: invalid input for local ip address = Invalid input WARNING: untranslated string: invalid input for max clients = Invalid input for Max Clients. The maximum of 1024 clients has been exceeded WARNING: untranslated string: invalid input for mode = Invalid input for mode WARNING: untranslated string: invalid input for name = Invalid input for user's full name or system hostname -WARNING: untranslated string: invalid input for oink code = Invalid input for Oink code WARNING: untranslated string: invalid input for organization = Invalid input for organization WARNING: untranslated string: invalid input for remote host/ip = Invalid input for remote host/ip. WARNING: untranslated string: invalid input for state or province = Invalid input for state or province. +WARNING: untranslated string: invalid input for subscription code = Invalid input for subscription code WARNING: untranslated string: invalid input for valid till days = Invalid input for Valid till (days). WARNING: untranslated string: invalid ip = Invalid IP Address WARNING: untranslated string: invalid ip or hostname = Invalid IP Address or Hostname @@ -1438,6 +1450,8 @@ WARNING: untranslated string: pakfire ago = ago. WARNING: untranslated string: pakfire available addons = Available Addons: WARNING: untranslated string: pakfire configuration = Pakfire Configuration WARNING: untranslated string: pakfire core update level = Core-Update-Level +WARNING: untranslated string: pakfire finished = Pakfire has finished! Returning... +WARNING: untranslated string: pakfire finished error = Pakfire has finished! Errors occurred, please check the log output before proceeding. WARNING: untranslated string: pakfire install description = Please choose one or more items from the list below and click the plus to install. WARNING: untranslated string: pakfire install package = You want to install the following packages: WARNING: untranslated string: pakfire installed addons = Installed Addons: @@ -1447,6 +1461,7 @@ WARNING: untranslated string: pakfire last package update = Last packages list u WARNING: untranslated string: pakfire last serverlist update = Last server list update made WARNING: untranslated string: pakfire last update = Last update made WARNING: untranslated string: pakfire possible dependency = There may be depending packages, here is a list of packages that need to be installed. +WARNING: untranslated string: pakfire return = Return to Pakfire WARNING: untranslated string: pakfire system state = System Status WARNING: untranslated string: pakfire tree = Repository WARNING: untranslated string: pakfire tree stable = Stable @@ -1533,8 +1548,6 @@ WARNING: untranslated string: red1 = RED WARNING: untranslated string: references = References WARNING: untranslated string: refresh = Refresh WARNING: untranslated string: refresh index page while connected = Refresh index.cgi page while connected -WARNING: untranslated string: registered user rules = Talos VRT rules for registered users -WARNING: untranslated string: reload = reload WARNING: untranslated string: remark = Remark WARNING: untranslated string: remark title = Remark: WARNING: untranslated string: remote access = Remote access @@ -1636,6 +1649,7 @@ WARNING: untranslated string: speaker on = Speaker on: WARNING: untranslated string: spectre variant 1 = Spectre Variant 1 WARNING: untranslated string: spectre variant 2 = Spectre Variant 2 WARNING: untranslated string: spectre variant 4 = Spectre Variant 4 +WARNING: untranslated string: spoofed or martians = Spoofed/Martians WARNING: untranslated string: srbds = Special register buffer data sampling WARNING: untranslated string: src port = Src Port WARNING: untranslated string: ssh = SSH @@ -1677,7 +1691,7 @@ WARNING: untranslated string: stopped = STOPPED WARNING: untranslated string: strict = Strict WARNING: untranslated string: subject = Subject WARNING: untranslated string: subnet mask = Subnet Mask -WARNING: untranslated string: subscripted user rules = Talos VRT rules with subscription +WARNING: untranslated string: subscription code = Subscription code WARNING: untranslated string: summaries kept = Keep summaries for WARNING: untranslated string: sunday = Sunday WARNING: untranslated string: support donation = Support the IPFire project with your donation @@ -1782,7 +1796,6 @@ WARNING: untranslated string: unlimited = Unlimited WARNING: untranslated string: unnamed = Unnamed WARNING: untranslated string: update = Update WARNING: untranslated string: update accelerator = Update Accelerator -WARNING: untranslated string: update ruleset = Update ruleset WARNING: untranslated string: update time = Update the time: WARNING: untranslated string: updxlrtr 3 months = three months WARNING: untranslated string: updxlrtr 6 months = six months @@ -2141,7 +2154,6 @@ WARNING: untranslated string: wlan client edit entry = Edit wireless client conf WARNING: untranslated string: wlan client encryption = Encryption WARNING: untranslated string: wlan client encryption eap = EAP WARNING: untranslated string: wlan client encryption none = None -WARNING: untranslated string: wlan client encryption wep = WEP WARNING: untranslated string: wlan client encryption wpa = WPA WARNING: untranslated string: wlan client encryption wpa2 = WPA2 WARNING: untranslated string: wlan client encryption wpa3 = WPA3 diff --git a/doc/language_issues.es b/doc/language_issues.es index 3ebc2d9257..160d2a27ec 100644 --- a/doc/language_issues.es +++ b/doc/language_issues.es @@ -164,6 +164,7 @@ WARNING: translation string unused: class in use WARNING: translation string unused: clear cache WARNING: translation string unused: client WARNING: translation string unused: comment +WARNING: translation string unused: community rules WARNING: translation string unused: compression WARNING: translation string unused: connect WARNING: translation string unused: connect the modem @@ -352,6 +353,7 @@ WARNING: translation string unused: ids rules license WARNING: translation string unused: ids rules license1 WARNING: translation string unused: ids rules license2 WARNING: translation string unused: ids rules license3 +WARNING: translation string unused: ids rules update WARNING: translation string unused: ike encryption WARNING: translation string unused: ike grouptype WARNING: translation string unused: ike integrity @@ -374,6 +376,7 @@ WARNING: translation string unused: intrusion detection system2 WARNING: translation string unused: invalid cache size WARNING: translation string unused: invalid date entered WARNING: translation string unused: invalid downlink speed +WARNING: translation string unused: invalid input for oink code WARNING: translation string unused: invalid loaded file WARNING: translation string unused: invalid md5sum WARNING: translation string unused: invalid port list @@ -576,7 +579,9 @@ WARNING: translation string unused: reboot question WARNING: translation string unused: reboot schedule WARNING: translation string unused: reboot sure WARNING: translation string unused: refresh update list +WARNING: translation string unused: registered user rules WARNING: translation string unused: released +WARNING: translation string unused: reload WARNING: translation string unused: removable device advice WARNING: translation string unused: reportfile WARNING: translation string unused: reportlevel @@ -663,6 +668,7 @@ WARNING: translation string unused: subject test WARNING: translation string unused: subject warn WARNING: translation string unused: subnet WARNING: translation string unused: subnet is invalid +WARNING: translation string unused: subscripted user rules WARNING: translation string unused: successfully refreshed updates list WARNING: translation string unused: system graphs WARNING: translation string unused: system log viewer @@ -955,7 +961,9 @@ WARNING: untranslated string: drop action = Default behaviour of (forward) firew WARNING: untranslated string: drop action1 = Default behaviour of (outgoing) firewall in mode "Blocked" WARNING: untranslated string: drop action2 = Default behaviour of (input) firewall WARNING: untranslated string: drop forward = Log dropped forward packets +WARNING: untranslated string: drop hostile = Drop packets from and to hostile networks (listed at Spamhaus DROP, etc.) WARNING: untranslated string: drop outgoing = Log dropped outgoing packets +WARNING: untranslated string: drop spoofed martians = Log dropped spoofed packets and marsians WARNING: untranslated string: duration = Duration WARNING: untranslated string: eight hours = 8 Hours WARNING: untranslated string: email config = Configuration @@ -976,8 +984,6 @@ WARNING: untranslated string: email tls = TLS mode WARNING: untranslated string: email tls explicit = explicit (STARTTLS) WARNING: untranslated string: email tls implicit = implicit (TLS) WARNING: untranslated string: email usemail = Activate Mail Service -WARNING: untranslated string: emerging pro rules = Emergingthreats.net Pro Rules -WARNING: untranslated string: emerging rules = Emergingthreats.net Community Rules WARNING: untranslated string: enable = Enable WARNING: untranslated string: enable smt = Enable Simultaneous Multi-Threading (SMT) WARNING: untranslated string: encryption = Encryption: @@ -1020,6 +1026,7 @@ WARNING: untranslated string: force enable = Forced WARNING: untranslated string: foreshadow = Foreshadow WARNING: untranslated string: four hours = 4 Hours WARNING: untranslated string: fw default drop = Firewall policy +WARNING: untranslated string: fw red = Firewall options for RED interface WARNING: untranslated string: fw settings = Firewall settings WARNING: untranslated string: fw settings color = Show colors in ruletable WARNING: untranslated string: fw settings dropdown = Show all networks on rulecreation site @@ -1209,22 +1216,35 @@ WARNING: untranslated string: guardian no entries = unknown string WARNING: untranslated string: guardian service = unknown string WARNING: untranslated string: hardware support = Hardware Support WARNING: untranslated string: hardware vulnerabilities = Hardware Vulnerabilities +WARNING: untranslated string: hostile networks = Hostile networks +WARNING: untranslated string: ids add provider = Add provider WARNING: untranslated string: ids apply = Apply WARNING: untranslated string: ids apply ruleset changes = The ruleset changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: ids automatic rules update = Automatic Rule Update +WARNING: untranslated string: ids autoupdates = Automatic updates +WARNING: untranslated string: ids could not add provider = Could not add provider +WARNING: untranslated string: ids customize ruleset = Customize ruleset WARNING: untranslated string: ids download new ruleset = Downloading and unpacking new ruleset. Please wait until all operations have completed successfully... WARNING: untranslated string: ids enable = Enable Intrusion Prevention System +WARNING: untranslated string: ids enable automatic updates = Enable automatic updates +WARNING: untranslated string: ids force ruleset update = Force ruleset update WARNING: untranslated string: ids hide = Hide WARNING: untranslated string: ids ignored hosts = Whitelisted Hosts WARNING: untranslated string: ids log hits = Total of number of activated rules for WARNING: untranslated string: ids monitor traffic only = Monitor traffic only WARNING: untranslated string: ids monitored interfaces = Monitored Interfaces +WARNING: untranslated string: ids no enabled ruleset provider = No enabled ruleset is available. Please activate or add one first. WARNING: untranslated string: ids no network zone = Please select at least one network zone to be monitored -WARNING: untranslated string: ids no ruleset available = No ruleset is available. Please download one first -WARNING: untranslated string: ids oinkcode required = The selected ruleset requires a subscription or an Oinkcode +WARNING: untranslated string: ids provider = Provider +WARNING: untranslated string: ids provider settings = Provider settings +WARNING: untranslated string: ids reset provider = Reset provider WARNING: untranslated string: ids ruleset autoupdate in progress = Ruleset update in progress. Please wait until all operations have completed successfully... WARNING: untranslated string: ids ruleset settings = Ruleset Settings WARNING: untranslated string: ids show = Show +WARNING: untranslated string: ids subscription code required = The selected ruleset requires a subscription code +WARNING: untranslated string: ids the choosen provider is already in use = The choosen provider is already in use. +WARNING: untranslated string: ids unable to download the ruleset = Unable to download the ruleset +WARNING: untranslated string: ids visit provider website = Visit provider website WARNING: untranslated string: ids working = Changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: imei = IMEI WARNING: untranslated string: imsi = IMSI @@ -1242,6 +1262,7 @@ WARNING: untranslated string: invalid input for interface mode = Invalid input f WARNING: untranslated string: invalid input for interface mtu = Invalid input to interface MTU WARNING: untranslated string: invalid input for local ip address = Invalid input for local IP address WARNING: untranslated string: invalid input for mode = Invalid input for mode +WARNING: untranslated string: invalid input for subscription code = Invalid input for subscription code WARNING: untranslated string: invalid input for valid till days = Invalid input for Valid till (days). WARNING: untranslated string: invalid ip or hostname = Invalid IP Address or Hostname WARNING: untranslated string: invalid logserver protocol = Invalid syslogd server protocol @@ -1349,7 +1370,10 @@ WARNING: untranslated string: ovpn warning rfc3280 = Your host certificate is no WARNING: untranslated string: p2p block = P2P networks WARNING: untranslated string: p2p block save notice = Please reload the firewall ruleset in order to apply your changes. WARNING: untranslated string: pakfire ago = ago. +WARNING: untranslated string: pakfire finished = Pakfire has finished! Returning... +WARNING: untranslated string: pakfire finished error = Pakfire has finished! Errors occurred, please check the log output before proceeding. WARNING: untranslated string: pakfire invalid tree = Invalid repository selected +WARNING: untranslated string: pakfire return = Return to Pakfire WARNING: untranslated string: pakfire tree = Repository WARNING: untranslated string: pakfire tree stable = Stable WARNING: untranslated string: pakfire tree testing = Testing @@ -1397,6 +1421,7 @@ WARNING: untranslated string: source ip country = Source IP Country WARNING: untranslated string: spectre variant 1 = Spectre Variant 1 WARNING: untranslated string: spectre variant 2 = Spectre Variant 2 WARNING: untranslated string: spectre variant 4 = Spectre Variant 4 +WARNING: untranslated string: spoofed or martians = Spoofed/Martians WARNING: untranslated string: srbds = Special register buffer data sampling WARNING: untranslated string: ssh = SSH WARNING: untranslated string: ssh active sessions = Active logins @@ -1408,6 +1433,7 @@ WARNING: untranslated string: standard = Standard WARNING: untranslated string: static routes = Static Routes WARNING: untranslated string: strict = Strict WARNING: untranslated string: subnet mask = Subnet Mask +WARNING: untranslated string: subscription code = Subscription code WARNING: untranslated string: support donation = Support the IPFire project with your donation WARNING: untranslated string: system has rdrand = This system has support for Intel(R) RDRAND. WARNING: untranslated string: system information = System Information @@ -1478,7 +1504,6 @@ WARNING: untranslated string: unblock = Unblock WARNING: untranslated string: unblock all = Unblock all WARNING: untranslated string: uncheck all = Uncheck all WARNING: untranslated string: unlimited = Unlimited -WARNING: untranslated string: update ruleset = Update ruleset WARNING: untranslated string: updxlrtr passive mode = Delivery only/no download mode WARNING: untranslated string: uplink = Uplink WARNING: untranslated string: uplink bit rate = Uplink Bit Rate @@ -1529,7 +1554,6 @@ WARNING: untranslated string: wlan client edit entry = Edit wireless client conf WARNING: untranslated string: wlan client encryption = Encryption WARNING: untranslated string: wlan client encryption eap = EAP WARNING: untranslated string: wlan client encryption none = None -WARNING: untranslated string: wlan client encryption wep = WEP WARNING: untranslated string: wlan client encryption wpa = WPA WARNING: untranslated string: wlan client encryption wpa2 = WPA2 WARNING: untranslated string: wlan client encryption wpa3 = WPA3 diff --git a/doc/language_issues.fr b/doc/language_issues.fr index 1c1e04c6aa..4a85e641d1 100644 --- a/doc/language_issues.fr +++ b/doc/language_issues.fr @@ -174,6 +174,7 @@ WARNING: translation string unused: class in use WARNING: translation string unused: clear cache WARNING: translation string unused: client WARNING: translation string unused: comment +WARNING: translation string unused: community rules WARNING: translation string unused: compression WARNING: translation string unused: connect WARNING: translation string unused: connect the modem @@ -291,6 +292,8 @@ WARNING: translation string unused: email subject WARNING: translation string unused: email success WARNING: translation string unused: email text WARNING: translation string unused: emailreportlevel +WARNING: translation string unused: emerging pro rules +WARNING: translation string unused: emerging rules WARNING: translation string unused: enable javascript WARNING: translation string unused: enable wildcards WARNING: translation string unused: enabledtitle @@ -410,6 +413,9 @@ WARNING: translation string unused: ibod for dual isdn only WARNING: translation string unused: icmp selected but no type WARNING: translation string unused: icmp type WARNING: translation string unused: id +WARNING: translation string unused: ids no ruleset available +WARNING: translation string unused: ids oinkcode required +WARNING: translation string unused: ids rules update WARNING: translation string unused: ike encryption WARNING: translation string unused: ike grouptype WARNING: translation string unused: ike integrity @@ -433,6 +439,7 @@ WARNING: translation string unused: intrusion prevention system WARNING: translation string unused: invalid cache size WARNING: translation string unused: invalid date entered WARNING: translation string unused: invalid downlink speed +WARNING: translation string unused: invalid input for oink code WARNING: translation string unused: invalid loaded file WARNING: translation string unused: invalid md5sum WARNING: translation string unused: invalid port list @@ -665,7 +672,9 @@ WARNING: translation string unused: reboot question WARNING: translation string unused: reboot schedule WARNING: translation string unused: reboot sure WARNING: translation string unused: refresh update list +WARNING: translation string unused: registered user rules WARNING: translation string unused: released +WARNING: translation string unused: reload WARNING: translation string unused: removable device advice WARNING: translation string unused: reportfile WARNING: translation string unused: reportlevel @@ -751,6 +760,7 @@ WARNING: translation string unused: subject test WARNING: translation string unused: subject warn WARNING: translation string unused: subnet WARNING: translation string unused: subnet is invalid +WARNING: translation string unused: subscripted user rules WARNING: translation string unused: successfully refreshed updates list WARNING: translation string unused: system graphs WARNING: translation string unused: system has hwrng @@ -818,6 +828,7 @@ WARNING: translation string unused: unix charset WARNING: translation string unused: unix group WARNING: translation string unused: unix password sync WARNING: translation string unused: unix shell +WARNING: translation string unused: update ruleset WARNING: translation string unused: update transcript WARNING: translation string unused: updatedatabase WARNING: translation string unused: updates @@ -915,9 +926,12 @@ WARNING: untranslated string: cake profile pppoe-llcsnap 40 = PPPoE LLC SNAP (40 WARNING: untranslated string: cake profile pppoe-ptm 27 = PPPoE PTM (27 bytes) WARNING: untranslated string: cake profile pppoe-vcmux 32 = PPPoE VC-MUX (32 bytes) WARNING: untranslated string: cake profile raw 0 = Raw (no overhead compensation) +WARNING: untranslated string: drop hostile = Drop packets from and to hostile networks (listed at Spamhaus DROP, etc.) +WARNING: untranslated string: drop spoofed martians = Log dropped spoofed packets and marsians WARNING: untranslated string: eol architecture warning = You are running an architecture of IPFire which reached its end of life. You will not receive updates anymore. This is a security risk. WARNING: untranslated string: false max bandwidth = Maximum bandwidth is false. WARNING: untranslated string: false min bandwidth = Minimum bandwidth is false. +WARNING: untranslated string: fw red = Firewall options for RED interface WARNING: untranslated string: fwhost cust locationgrp = unknown string WARNING: untranslated string: fwhost err hostip = unknown string WARNING: untranslated string: guaranteed bandwidth = Guaranteed bandwidth @@ -950,9 +964,30 @@ WARNING: untranslated string: guardian logtarget_file = unknown string WARNING: untranslated string: guardian logtarget_syslog = unknown string WARNING: untranslated string: guardian no entries = unknown string WARNING: untranslated string: guardian service = unknown string +WARNING: untranslated string: hostile networks = Hostile networks +WARNING: untranslated string: ids add provider = Add provider +WARNING: untranslated string: ids autoupdates = Automatic updates +WARNING: untranslated string: ids could not add provider = Could not add provider +WARNING: untranslated string: ids customize ruleset = Customize ruleset +WARNING: untranslated string: ids enable automatic updates = Enable automatic updates +WARNING: untranslated string: ids force ruleset update = Force ruleset update +WARNING: untranslated string: ids no enabled ruleset provider = No enabled ruleset is available. Please activate or add one first. +WARNING: untranslated string: ids provider = Provider +WARNING: untranslated string: ids provider settings = Provider settings +WARNING: untranslated string: ids reset provider = Reset provider +WARNING: untranslated string: ids subscription code required = The selected ruleset requires a subscription code +WARNING: untranslated string: ids the choosen provider is already in use = The choosen provider is already in use. +WARNING: untranslated string: ids unable to download the ruleset = Unable to download the ruleset +WARNING: untranslated string: ids visit provider website = Visit provider website +WARNING: untranslated string: invalid input for subscription code = Invalid input for subscription code WARNING: untranslated string: link-layer encapsulation = Link-Layer Encapsulation WARNING: untranslated string: max bandwidth = Maximum bandwidth WARNING: untranslated string: pakfire ago = ago. +WARNING: untranslated string: pakfire finished = Pakfire has finished! Returning... +WARNING: untranslated string: pakfire finished error = Pakfire has finished! Errors occurred, please check the log output before proceeding. +WARNING: untranslated string: pakfire return = Return to Pakfire WARNING: untranslated string: route config changed = unknown string WARNING: untranslated string: routing config added = unknown string WARNING: untranslated string: routing config changed = unknown string +WARNING: untranslated string: spoofed or martians = Spoofed/Martians +WARNING: untranslated string: subscription code = Subscription code diff --git a/doc/language_issues.it b/doc/language_issues.it index 9c5ff395aa..6a4c2f26f1 100644 --- a/doc/language_issues.it +++ b/doc/language_issues.it @@ -150,6 +150,7 @@ WARNING: translation string unused: class in use WARNING: translation string unused: clear cache WARNING: translation string unused: client WARNING: translation string unused: comment +WARNING: translation string unused: community rules WARNING: translation string unused: compression WARNING: translation string unused: connect WARNING: translation string unused: connect the modem @@ -261,6 +262,7 @@ WARNING: translation string unused: editor WARNING: translation string unused: eg WARNING: translation string unused: email server can not be empty WARNING: translation string unused: emailreportlevel +WARNING: translation string unused: emerging rules WARNING: translation string unused: enable javascript WARNING: translation string unused: enable wildcards WARNING: translation string unused: enabledtitle @@ -385,6 +387,7 @@ WARNING: translation string unused: ids rules license WARNING: translation string unused: ids rules license1 WARNING: translation string unused: ids rules license2 WARNING: translation string unused: ids rules license3 +WARNING: translation string unused: ids rules update WARNING: translation string unused: ike encryption WARNING: translation string unused: ike grouptype WARNING: translation string unused: ike integrity @@ -407,6 +410,7 @@ WARNING: translation string unused: intrusion detection system2 WARNING: translation string unused: invalid cache size WARNING: translation string unused: invalid date entered WARNING: translation string unused: invalid downlink speed +WARNING: translation string unused: invalid input for oink code WARNING: translation string unused: invalid loaded file WARNING: translation string unused: invalid md5sum WARNING: translation string unused: invalid port list @@ -632,7 +636,9 @@ WARNING: translation string unused: reboot question WARNING: translation string unused: reboot schedule WARNING: translation string unused: reboot sure WARNING: translation string unused: refresh update list +WARNING: translation string unused: registered user rules WARNING: translation string unused: released +WARNING: translation string unused: reload WARNING: translation string unused: removable device advice WARNING: translation string unused: reportfile WARNING: translation string unused: reportlevel @@ -719,6 +725,7 @@ WARNING: translation string unused: subject test WARNING: translation string unused: subject warn WARNING: translation string unused: subnet WARNING: translation string unused: subnet is invalid +WARNING: translation string unused: subscripted user rules WARNING: translation string unused: successfully refreshed updates list WARNING: translation string unused: system graphs WARNING: translation string unused: system has hwrng @@ -971,6 +978,8 @@ WARNING: untranslated string: dns use protocol for dns queries = Protocol for DN WARNING: untranslated string: dnsforward dnssec disabled = DNSSEC Validation is disabled WARNING: untranslated string: dnsforward forward_servers = Nameservers WARNING: untranslated string: download apple profile = Download Apple Configuration Profile +WARNING: untranslated string: drop hostile = Drop packets from and to hostile networks (listed at Spamhaus DROP, etc.) +WARNING: untranslated string: drop spoofed martians = Log dropped spoofed packets and marsians WARNING: untranslated string: duration = Duration WARNING: untranslated string: eight hours = 8 Hours WARNING: untranslated string: email config = Configuration @@ -991,7 +1000,6 @@ WARNING: untranslated string: email tls = TLS mode WARNING: untranslated string: email tls explicit = explicit (STARTTLS) WARNING: untranslated string: email tls implicit = implicit (TLS) WARNING: untranslated string: email usemail = Activate Mail Service -WARNING: untranslated string: emerging pro rules = Emergingthreats.net Pro Rules WARNING: untranslated string: enable = Enable WARNING: untranslated string: enable smt = Enable Simultaneous Multi-Threading (SMT) WARNING: untranslated string: eol architecture warning = You are running an architecture of IPFire which reached its end of life. You will not receive updates anymore. This is a security risk. @@ -1009,6 +1017,7 @@ WARNING: untranslated string: five minutes = 5 Minutes WARNING: untranslated string: force enable = Forced WARNING: untranslated string: foreshadow = Foreshadow WARNING: untranslated string: four hours = 4 Hours +WARNING: untranslated string: fw red = Firewall options for RED interface WARNING: untranslated string: fwdfw all subnets = All subnets WARNING: untranslated string: fwdfw err concon = Invalid number for concurrent connections WARNING: untranslated string: fwdfw err ratecon = Invalid value for connections in Rate-limit @@ -1055,22 +1064,35 @@ WARNING: untranslated string: guardian logtarget_syslog = unknown string WARNING: untranslated string: guardian no entries = unknown string WARNING: untranslated string: guardian service = unknown string WARNING: untranslated string: hardware vulnerabilities = Hardware Vulnerabilities +WARNING: untranslated string: hostile networks = Hostile networks +WARNING: untranslated string: ids add provider = Add provider WARNING: untranslated string: ids apply = Apply WARNING: untranslated string: ids apply ruleset changes = The ruleset changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: ids automatic rules update = Automatic Rule Update +WARNING: untranslated string: ids autoupdates = Automatic updates +WARNING: untranslated string: ids could not add provider = Could not add provider +WARNING: untranslated string: ids customize ruleset = Customize ruleset WARNING: untranslated string: ids download new ruleset = Downloading and unpacking new ruleset. Please wait until all operations have completed successfully... WARNING: untranslated string: ids enable = Enable Intrusion Prevention System +WARNING: untranslated string: ids enable automatic updates = Enable automatic updates +WARNING: untranslated string: ids force ruleset update = Force ruleset update WARNING: untranslated string: ids hide = Hide WARNING: untranslated string: ids ignored hosts = Whitelisted Hosts WARNING: untranslated string: ids log hits = Total of number of activated rules for WARNING: untranslated string: ids monitor traffic only = Monitor traffic only WARNING: untranslated string: ids monitored interfaces = Monitored Interfaces +WARNING: untranslated string: ids no enabled ruleset provider = No enabled ruleset is available. Please activate or add one first. WARNING: untranslated string: ids no network zone = Please select at least one network zone to be monitored -WARNING: untranslated string: ids no ruleset available = No ruleset is available. Please download one first -WARNING: untranslated string: ids oinkcode required = The selected ruleset requires a subscription or an Oinkcode +WARNING: untranslated string: ids provider = Provider +WARNING: untranslated string: ids provider settings = Provider settings +WARNING: untranslated string: ids reset provider = Reset provider WARNING: untranslated string: ids ruleset autoupdate in progress = Ruleset update in progress. Please wait until all operations have completed successfully... WARNING: untranslated string: ids ruleset settings = Ruleset Settings WARNING: untranslated string: ids show = Show +WARNING: untranslated string: ids subscription code required = The selected ruleset requires a subscription code +WARNING: untranslated string: ids the choosen provider is already in use = The choosen provider is already in use. +WARNING: untranslated string: ids unable to download the ruleset = Unable to download the ruleset +WARNING: untranslated string: ids visit provider website = Visit provider website WARNING: untranslated string: ids working = Changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: incoming compression in bytes per second = Incoming Compression WARNING: untranslated string: incoming overhead in bytes per second = Incoming Overhead @@ -1082,6 +1104,7 @@ WARNING: untranslated string: invalid input for interface mode = Invalid input f WARNING: untranslated string: invalid input for interface mtu = Invalid input to interface MTU WARNING: untranslated string: invalid input for local ip address = Invalid input for local IP address WARNING: untranslated string: invalid input for mode = Invalid input for mode +WARNING: untranslated string: invalid input for subscription code = Invalid input for subscription code WARNING: untranslated string: invalid input for valid till days = Invalid input for Valid till (days). WARNING: untranslated string: invalid ip or hostname = Invalid IP Address or Hostname WARNING: untranslated string: invalid logserver protocol = Invalid syslogd server protocol @@ -1140,7 +1163,10 @@ WARNING: untranslated string: ovpn error md5 = You host certificate uses MD5 for WARNING: untranslated string: ovpn rw connection log = OpenVPN Roadwarrior Connections Log WARNING: untranslated string: ovpn tls auth = TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 = Your host certificate is not RFC3280 compliant.
Please update to the latest IPFire version and generate as soon as possible a new root and host certificate.

All OpenVPN clients needs then to be renewed!
+WARNING: untranslated string: pakfire finished = Pakfire has finished! Returning... +WARNING: untranslated string: pakfire finished error = Pakfire has finished! Errors occurred, please check the log output before proceeding. WARNING: untranslated string: pakfire invalid tree = Invalid repository selected +WARNING: untranslated string: pakfire return = Return to Pakfire WARNING: untranslated string: pakfire tree = Repository WARNING: untranslated string: pakfire tree stable = Stable WARNING: untranslated string: pakfire tree testing = Testing @@ -1174,6 +1200,7 @@ WARNING: untranslated string: smt not supported = Simultaneous Multi-Threading ( WARNING: untranslated string: spectre variant 1 = Spectre Variant 1 WARNING: untranslated string: spectre variant 2 = Spectre Variant 2 WARNING: untranslated string: spectre variant 4 = Spectre Variant 4 +WARNING: untranslated string: spoofed or martians = Spoofed/Martians WARNING: untranslated string: srbds = Special register buffer data sampling WARNING: untranslated string: ssh active sessions = Active logins WARNING: untranslated string: ssh agent forwarding = Allow SSH Agent Forwarding @@ -1183,6 +1210,7 @@ WARNING: untranslated string: ssh username = Username WARNING: untranslated string: standard = Standard WARNING: untranslated string: strict = Strict WARNING: untranslated string: subnet mask = Subnet Mask +WARNING: untranslated string: subscription code = Subscription code WARNING: untranslated string: system is offline = The system is offline. WARNING: untranslated string: taa zombieload2 = TSX Async Abort / ZombieLoad v2 WARNING: untranslated string: tcp more reliable = TCP (more reliable) @@ -1201,7 +1229,6 @@ WARNING: untranslated string: unblock = Unblock WARNING: untranslated string: unblock all = Unblock all WARNING: untranslated string: uncheck all = Uncheck all WARNING: untranslated string: unlimited = Unlimited -WARNING: untranslated string: update ruleset = Update ruleset WARNING: untranslated string: updxlrtr passive mode = Delivery only/no download mode WARNING: untranslated string: uplink bit rate = Uplink Bit Rate WARNING: untranslated string: user management = User Management diff --git a/doc/language_issues.nl b/doc/language_issues.nl index ab5dada51c..4cf42c6249 100644 --- a/doc/language_issues.nl +++ b/doc/language_issues.nl @@ -149,6 +149,7 @@ WARNING: translation string unused: class in use WARNING: translation string unused: clear cache WARNING: translation string unused: client WARNING: translation string unused: comment +WARNING: translation string unused: community rules WARNING: translation string unused: compression WARNING: translation string unused: connect WARNING: translation string unused: connect the modem @@ -259,6 +260,7 @@ WARNING: translation string unused: editor WARNING: translation string unused: eg WARNING: translation string unused: email server can not be empty WARNING: translation string unused: emailreportlevel +WARNING: translation string unused: emerging rules WARNING: translation string unused: enable javascript WARNING: translation string unused: enable wildcards WARNING: translation string unused: enabledtitle @@ -383,6 +385,7 @@ WARNING: translation string unused: ids rules license WARNING: translation string unused: ids rules license1 WARNING: translation string unused: ids rules license2 WARNING: translation string unused: ids rules license3 +WARNING: translation string unused: ids rules update WARNING: translation string unused: ike encryption WARNING: translation string unused: ike grouptype WARNING: translation string unused: ike integrity @@ -405,6 +408,7 @@ WARNING: translation string unused: intrusion detection system2 WARNING: translation string unused: invalid cache size WARNING: translation string unused: invalid date entered WARNING: translation string unused: invalid downlink speed +WARNING: translation string unused: invalid input for oink code WARNING: translation string unused: invalid loaded file WARNING: translation string unused: invalid md5sum WARNING: translation string unused: invalid port list @@ -628,7 +632,9 @@ WARNING: translation string unused: reboot question WARNING: translation string unused: reboot schedule WARNING: translation string unused: reboot sure WARNING: translation string unused: refresh update list +WARNING: translation string unused: registered user rules WARNING: translation string unused: released +WARNING: translation string unused: reload WARNING: translation string unused: removable device advice WARNING: translation string unused: reportfile WARNING: translation string unused: reportlevel @@ -715,6 +721,7 @@ WARNING: translation string unused: subject test WARNING: translation string unused: subject warn WARNING: translation string unused: subnet WARNING: translation string unused: subnet is invalid +WARNING: translation string unused: subscripted user rules WARNING: translation string unused: successfully refreshed updates list WARNING: translation string unused: system graphs WARNING: translation string unused: system has hwrng @@ -977,7 +984,9 @@ WARNING: untranslated string: dnssec not supported = DNSSEC Not supported WARNING: untranslated string: dnssec validating = DNSSEC Validating WARNING: untranslated string: download apple profile = Download Apple Configuration Profile WARNING: untranslated string: download tls-auth key = Download tls-auth key +WARNING: untranslated string: drop hostile = Drop packets from and to hostile networks (listed at Spamhaus DROP, etc.) WARNING: untranslated string: drop outgoing = Log dropped outgoing packets +WARNING: untranslated string: drop spoofed martians = Log dropped spoofed packets and marsians WARNING: untranslated string: duration = Duration WARNING: untranslated string: eight hours = 8 Hours WARNING: untranslated string: email config = Configuration @@ -998,7 +1007,6 @@ WARNING: untranslated string: email tls = TLS mode WARNING: untranslated string: email tls explicit = explicit (STARTTLS) WARNING: untranslated string: email tls implicit = implicit (TLS) WARNING: untranslated string: email usemail = Activate Mail Service -WARNING: untranslated string: emerging pro rules = Emergingthreats.net Pro Rules WARNING: untranslated string: enable = Enable WARNING: untranslated string: enable smt = Enable Simultaneous Multi-Threading (SMT) WARNING: untranslated string: eol architecture warning = You are running an architecture of IPFire which reached its end of life. You will not receive updates anymore. This is a security risk. @@ -1017,6 +1025,7 @@ WARNING: untranslated string: five minutes = 5 Minutes WARNING: untranslated string: force enable = Forced WARNING: untranslated string: foreshadow = Foreshadow WARNING: untranslated string: four hours = 4 Hours +WARNING: untranslated string: fw red = Firewall options for RED interface WARNING: untranslated string: fwdfw all subnets = All subnets WARNING: untranslated string: fwdfw err concon = Invalid number for concurrent connections WARNING: untranslated string: fwdfw err ratecon = Invalid value for connections in Rate-limit @@ -1064,22 +1073,35 @@ WARNING: untranslated string: guardian logtarget_syslog = unknown string WARNING: untranslated string: guardian no entries = unknown string WARNING: untranslated string: guardian service = unknown string WARNING: untranslated string: hardware vulnerabilities = Hardware Vulnerabilities +WARNING: untranslated string: hostile networks = Hostile networks +WARNING: untranslated string: ids add provider = Add provider WARNING: untranslated string: ids apply = Apply WARNING: untranslated string: ids apply ruleset changes = The ruleset changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: ids automatic rules update = Automatic Rule Update +WARNING: untranslated string: ids autoupdates = Automatic updates +WARNING: untranslated string: ids could not add provider = Could not add provider +WARNING: untranslated string: ids customize ruleset = Customize ruleset WARNING: untranslated string: ids download new ruleset = Downloading and unpacking new ruleset. Please wait until all operations have completed successfully... WARNING: untranslated string: ids enable = Enable Intrusion Prevention System +WARNING: untranslated string: ids enable automatic updates = Enable automatic updates +WARNING: untranslated string: ids force ruleset update = Force ruleset update WARNING: untranslated string: ids hide = Hide WARNING: untranslated string: ids ignored hosts = Whitelisted Hosts WARNING: untranslated string: ids log hits = Total of number of activated rules for WARNING: untranslated string: ids monitor traffic only = Monitor traffic only WARNING: untranslated string: ids monitored interfaces = Monitored Interfaces +WARNING: untranslated string: ids no enabled ruleset provider = No enabled ruleset is available. Please activate or add one first. WARNING: untranslated string: ids no network zone = Please select at least one network zone to be monitored -WARNING: untranslated string: ids no ruleset available = No ruleset is available. Please download one first -WARNING: untranslated string: ids oinkcode required = The selected ruleset requires a subscription or an Oinkcode +WARNING: untranslated string: ids provider = Provider +WARNING: untranslated string: ids provider settings = Provider settings +WARNING: untranslated string: ids reset provider = Reset provider WARNING: untranslated string: ids ruleset autoupdate in progress = Ruleset update in progress. Please wait until all operations have completed successfully... WARNING: untranslated string: ids ruleset settings = Ruleset Settings WARNING: untranslated string: ids show = Show +WARNING: untranslated string: ids subscription code required = The selected ruleset requires a subscription code +WARNING: untranslated string: ids the choosen provider is already in use = The choosen provider is already in use. +WARNING: untranslated string: ids unable to download the ruleset = Unable to download the ruleset +WARNING: untranslated string: ids visit provider website = Visit provider website WARNING: untranslated string: ids working = Changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: imei = IMEI WARNING: untranslated string: imsi = IMSI @@ -1093,6 +1115,7 @@ WARNING: untranslated string: invalid input for interface mode = Invalid input f WARNING: untranslated string: invalid input for interface mtu = Invalid input to interface MTU WARNING: untranslated string: invalid input for local ip address = Invalid input for local IP address WARNING: untranslated string: invalid input for mode = Invalid input for mode +WARNING: untranslated string: invalid input for subscription code = Invalid input for subscription code WARNING: untranslated string: invalid input for valid till days = Invalid input for Valid till (days). WARNING: untranslated string: invalid ip or hostname = Invalid IP Address or Hostname WARNING: untranslated string: invalid logserver protocol = Invalid syslogd server protocol @@ -1174,7 +1197,10 @@ WARNING: untranslated string: ovpn ha = Hash algorithm WARNING: untranslated string: ovpn rw connection log = OpenVPN Roadwarrior Connections Log WARNING: untranslated string: ovpn tls auth = TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 = Your host certificate is not RFC3280 compliant.
Please update to the latest IPFire version and generate as soon as possible a new root and host certificate.

All OpenVPN clients needs then to be renewed!
+WARNING: untranslated string: pakfire finished = Pakfire has finished! Returning... +WARNING: untranslated string: pakfire finished error = Pakfire has finished! Errors occurred, please check the log output before proceeding. WARNING: untranslated string: pakfire invalid tree = Invalid repository selected +WARNING: untranslated string: pakfire return = Return to Pakfire WARNING: untranslated string: pakfire tree = Repository WARNING: untranslated string: pakfire tree stable = Stable WARNING: untranslated string: pakfire tree testing = Testing @@ -1213,6 +1239,7 @@ WARNING: untranslated string: source ip country = Source IP Country WARNING: untranslated string: spectre variant 1 = Spectre Variant 1 WARNING: untranslated string: spectre variant 2 = Spectre Variant 2 WARNING: untranslated string: spectre variant 4 = Spectre Variant 4 +WARNING: untranslated string: spoofed or martians = Spoofed/Martians WARNING: untranslated string: srbds = Special register buffer data sampling WARNING: untranslated string: ssh active sessions = Active logins WARNING: untranslated string: ssh agent forwarding = Allow SSH Agent Forwarding @@ -1222,6 +1249,7 @@ WARNING: untranslated string: ssh username = Username WARNING: untranslated string: standard = Standard WARNING: untranslated string: strict = Strict WARNING: untranslated string: subnet mask = Subnet Mask +WARNING: untranslated string: subscription code = Subscription code WARNING: untranslated string: system is offline = The system is offline. WARNING: untranslated string: ta key = TLS-Authentification-Key WARNING: untranslated string: taa zombieload2 = TSX Async Abort / ZombieLoad v2 @@ -1241,7 +1269,6 @@ WARNING: untranslated string: unblock = Unblock WARNING: untranslated string: unblock all = Unblock all WARNING: untranslated string: uncheck all = Uncheck all WARNING: untranslated string: unlimited = Unlimited -WARNING: untranslated string: update ruleset = Update ruleset WARNING: untranslated string: updxlrtr passive mode = Delivery only/no download mode WARNING: untranslated string: uplink bit rate = Uplink Bit Rate WARNING: untranslated string: upload dh key = Upload Diffie-Hellman parameters diff --git a/doc/language_issues.pl b/doc/language_issues.pl index f57c485a7e..67ca845578 100644 --- a/doc/language_issues.pl +++ b/doc/language_issues.pl @@ -328,6 +328,7 @@ WARNING: translation string unused: ids rules license WARNING: translation string unused: ids rules license1 WARNING: translation string unused: ids rules license2 WARNING: translation string unused: ids rules license3 +WARNING: translation string unused: ids rules update WARNING: translation string unused: ike encryption WARNING: translation string unused: ike grouptype WARNING: translation string unused: ike integrity @@ -350,6 +351,7 @@ WARNING: translation string unused: intrusion detection system2 WARNING: translation string unused: invalid cache size WARNING: translation string unused: invalid date entered WARNING: translation string unused: invalid downlink speed +WARNING: translation string unused: invalid input for oink code WARNING: translation string unused: invalid loaded file WARNING: translation string unused: invalid md5sum WARNING: translation string unused: invalid port list @@ -560,7 +562,9 @@ WARNING: translation string unused: reboot question WARNING: translation string unused: reboot schedule WARNING: translation string unused: reboot sure WARNING: translation string unused: refresh update list +WARNING: translation string unused: registered user rules WARNING: translation string unused: released +WARNING: translation string unused: reload WARNING: translation string unused: removable device advice WARNING: translation string unused: reportfile WARNING: translation string unused: reportlevel @@ -647,6 +651,7 @@ WARNING: translation string unused: subject test WARNING: translation string unused: subject warn WARNING: translation string unused: subnet WARNING: translation string unused: subnet is invalid +WARNING: translation string unused: subscripted user rules WARNING: translation string unused: successfully refreshed updates list WARNING: translation string unused: system graphs WARNING: translation string unused: system log viewer @@ -905,7 +910,6 @@ WARNING: untranslated string: ccd routes = Routing: WARNING: untranslated string: ccd subnet = Subnet WARNING: untranslated string: ccd used = Used addresses WARNING: untranslated string: check all = Check all -WARNING: untranslated string: community rules = Snort/VRT GPLv2 Community Rules WARNING: untranslated string: count = Count WARNING: untranslated string: countries = Countries WARNING: untranslated string: country codes and flags = Country Codes and Flags: @@ -970,7 +974,9 @@ WARNING: untranslated string: drop action = Default behaviour of (forward) firew WARNING: untranslated string: drop action1 = Default behaviour of (outgoing) firewall in mode "Blocked" WARNING: untranslated string: drop action2 = Default behaviour of (input) firewall WARNING: untranslated string: drop forward = Log dropped forward packets +WARNING: untranslated string: drop hostile = Drop packets from and to hostile networks (listed at Spamhaus DROP, etc.) WARNING: untranslated string: drop outgoing = Log dropped outgoing packets +WARNING: untranslated string: drop spoofed martians = Log dropped spoofed packets and marsians WARNING: untranslated string: duration = Duration WARNING: untranslated string: eight hours = 8 Hours WARNING: untranslated string: email config = Configuration @@ -991,8 +997,6 @@ WARNING: untranslated string: email tls = TLS mode WARNING: untranslated string: email tls explicit = explicit (STARTTLS) WARNING: untranslated string: email tls implicit = implicit (TLS) WARNING: untranslated string: email usemail = Activate Mail Service -WARNING: untranslated string: emerging pro rules = Emergingthreats.net Pro Rules -WARNING: untranslated string: emerging rules = Emergingthreats.net Community Rules WARNING: untranslated string: enable = Enable WARNING: untranslated string: enable smt = Enable Simultaneous Multi-Threading (SMT) WARNING: untranslated string: encryption = Encryption: @@ -1025,6 +1029,7 @@ WARNING: untranslated string: force enable = Forced WARNING: untranslated string: foreshadow = Foreshadow WARNING: untranslated string: four hours = 4 Hours WARNING: untranslated string: fw default drop = Firewall policy +WARNING: untranslated string: fw red = Firewall options for RED interface WARNING: untranslated string: fw settings = Firewall settings WARNING: untranslated string: fw settings color = Show colors in ruletable WARNING: untranslated string: fw settings dropdown = Show all networks on rulecreation site @@ -1214,22 +1219,35 @@ WARNING: untranslated string: guardian no entries = unknown string WARNING: untranslated string: guardian service = unknown string WARNING: untranslated string: hardware support = Hardware Support WARNING: untranslated string: hardware vulnerabilities = Hardware Vulnerabilities +WARNING: untranslated string: hostile networks = Hostile networks +WARNING: untranslated string: ids add provider = Add provider WARNING: untranslated string: ids apply = Apply WARNING: untranslated string: ids apply ruleset changes = The ruleset changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: ids automatic rules update = Automatic Rule Update +WARNING: untranslated string: ids autoupdates = Automatic updates +WARNING: untranslated string: ids could not add provider = Could not add provider +WARNING: untranslated string: ids customize ruleset = Customize ruleset WARNING: untranslated string: ids download new ruleset = Downloading and unpacking new ruleset. Please wait until all operations have completed successfully... WARNING: untranslated string: ids enable = Enable Intrusion Prevention System +WARNING: untranslated string: ids enable automatic updates = Enable automatic updates +WARNING: untranslated string: ids force ruleset update = Force ruleset update WARNING: untranslated string: ids hide = Hide WARNING: untranslated string: ids ignored hosts = Whitelisted Hosts WARNING: untranslated string: ids log hits = Total of number of activated rules for WARNING: untranslated string: ids monitor traffic only = Monitor traffic only WARNING: untranslated string: ids monitored interfaces = Monitored Interfaces +WARNING: untranslated string: ids no enabled ruleset provider = No enabled ruleset is available. Please activate or add one first. WARNING: untranslated string: ids no network zone = Please select at least one network zone to be monitored -WARNING: untranslated string: ids no ruleset available = No ruleset is available. Please download one first -WARNING: untranslated string: ids oinkcode required = The selected ruleset requires a subscription or an Oinkcode +WARNING: untranslated string: ids provider = Provider +WARNING: untranslated string: ids provider settings = Provider settings +WARNING: untranslated string: ids reset provider = Reset provider WARNING: untranslated string: ids ruleset autoupdate in progress = Ruleset update in progress. Please wait until all operations have completed successfully... WARNING: untranslated string: ids ruleset settings = Ruleset Settings WARNING: untranslated string: ids show = Show +WARNING: untranslated string: ids subscription code required = The selected ruleset requires a subscription code +WARNING: untranslated string: ids the choosen provider is already in use = The choosen provider is already in use. +WARNING: untranslated string: ids unable to download the ruleset = Unable to download the ruleset +WARNING: untranslated string: ids visit provider website = Visit provider website WARNING: untranslated string: ids working = Changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: imei = IMEI WARNING: untranslated string: imsi = IMSI @@ -1247,6 +1265,7 @@ WARNING: untranslated string: invalid input for interface mode = Invalid input f WARNING: untranslated string: invalid input for interface mtu = Invalid input to interface MTU WARNING: untranslated string: invalid input for local ip address = Invalid input for local IP address WARNING: untranslated string: invalid input for mode = Invalid input for mode +WARNING: untranslated string: invalid input for subscription code = Invalid input for subscription code WARNING: untranslated string: invalid input for valid till days = Invalid input for Valid till (days). WARNING: untranslated string: invalid ip or hostname = Invalid IP Address or Hostname WARNING: untranslated string: invalid logserver protocol = Invalid syslogd server protocol @@ -1358,7 +1377,10 @@ WARNING: untranslated string: ovpn tls auth = TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 = Your host certificate is not RFC3280 compliant.
Please update to the latest IPFire version and generate as soon as possible a new root and host certificate.

All OpenVPN clients needs then to be renewed!
WARNING: untranslated string: p2p block = P2P networks WARNING: untranslated string: p2p block save notice = Please reload the firewall ruleset in order to apply your changes. +WARNING: untranslated string: pakfire finished = Pakfire has finished! Returning... +WARNING: untranslated string: pakfire finished error = Pakfire has finished! Errors occurred, please check the log output before proceeding. WARNING: untranslated string: pakfire invalid tree = Invalid repository selected +WARNING: untranslated string: pakfire return = Return to Pakfire WARNING: untranslated string: pakfire tree = Repository WARNING: untranslated string: pakfire tree stable = Stable WARNING: untranslated string: pakfire tree testing = Testing @@ -1406,6 +1428,7 @@ WARNING: untranslated string: source ip country = Source IP Country WARNING: untranslated string: spectre variant 1 = Spectre Variant 1 WARNING: untranslated string: spectre variant 2 = Spectre Variant 2 WARNING: untranslated string: spectre variant 4 = Spectre Variant 4 +WARNING: untranslated string: spoofed or martians = Spoofed/Martians WARNING: untranslated string: srbds = Special register buffer data sampling WARNING: untranslated string: ssh = SSH WARNING: untranslated string: ssh active sessions = Active logins @@ -1417,6 +1440,7 @@ WARNING: untranslated string: standard = Standard WARNING: untranslated string: static routes = Static Routes WARNING: untranslated string: strict = Strict WARNING: untranslated string: subnet mask = Subnet Mask +WARNING: untranslated string: subscription code = Subscription code WARNING: untranslated string: support donation = Support the IPFire project with your donation WARNING: untranslated string: system has rdrand = This system has support for Intel(R) RDRAND. WARNING: untranslated string: system is offline = The system is offline. @@ -1486,7 +1510,6 @@ WARNING: untranslated string: unblock = Unblock WARNING: untranslated string: unblock all = Unblock all WARNING: untranslated string: uncheck all = Uncheck all WARNING: untranslated string: unlimited = Unlimited -WARNING: untranslated string: update ruleset = Update ruleset WARNING: untranslated string: updxlrtr passive mode = Delivery only/no download mode WARNING: untranslated string: uplink = Uplink WARNING: untranslated string: uplink bit rate = Uplink Bit Rate @@ -1537,7 +1560,6 @@ WARNING: untranslated string: wlan client edit entry = Edit wireless client conf WARNING: untranslated string: wlan client encryption = Encryption WARNING: untranslated string: wlan client encryption eap = EAP WARNING: untranslated string: wlan client encryption none = None -WARNING: untranslated string: wlan client encryption wep = WEP WARNING: untranslated string: wlan client encryption wpa = WPA WARNING: untranslated string: wlan client encryption wpa2 = WPA2 WARNING: untranslated string: wlan client encryption wpa3 = WPA3 diff --git a/doc/language_issues.ru b/doc/language_issues.ru index 96b84751dd..7b7425db2b 100644 --- a/doc/language_issues.ru +++ b/doc/language_issues.ru @@ -325,6 +325,7 @@ WARNING: translation string unused: ids rules license WARNING: translation string unused: ids rules license1 WARNING: translation string unused: ids rules license2 WARNING: translation string unused: ids rules license3 +WARNING: translation string unused: ids rules update WARNING: translation string unused: ike encryption WARNING: translation string unused: ike grouptype WARNING: translation string unused: ike integrity @@ -347,6 +348,7 @@ WARNING: translation string unused: intrusion detection system2 WARNING: translation string unused: invalid cache size WARNING: translation string unused: invalid date entered WARNING: translation string unused: invalid downlink speed +WARNING: translation string unused: invalid input for oink code WARNING: translation string unused: invalid loaded file WARNING: translation string unused: invalid md5sum WARNING: translation string unused: invalid port list @@ -556,7 +558,9 @@ WARNING: translation string unused: reboot question WARNING: translation string unused: reboot schedule WARNING: translation string unused: reboot sure WARNING: translation string unused: refresh update list +WARNING: translation string unused: registered user rules WARNING: translation string unused: released +WARNING: translation string unused: reload WARNING: translation string unused: removable device advice WARNING: translation string unused: reportfile WARNING: translation string unused: reportlevel @@ -643,6 +647,7 @@ WARNING: translation string unused: subject test WARNING: translation string unused: subject warn WARNING: translation string unused: subnet WARNING: translation string unused: subnet is invalid +WARNING: translation string unused: subscripted user rules WARNING: translation string unused: successfully refreshed updates list WARNING: translation string unused: system graphs WARNING: translation string unused: system log viewer @@ -901,7 +906,6 @@ WARNING: untranslated string: ccd routes = Routing: WARNING: untranslated string: ccd subnet = Subnet WARNING: untranslated string: ccd used = Used addresses WARNING: untranslated string: check all = Check all -WARNING: untranslated string: community rules = Snort/VRT GPLv2 Community Rules WARNING: untranslated string: count = Count WARNING: untranslated string: countries = Countries WARNING: untranslated string: country codes and flags = Country Codes and Flags: @@ -967,7 +971,9 @@ WARNING: untranslated string: drop action = Default behaviour of (forward) firew WARNING: untranslated string: drop action1 = Default behaviour of (outgoing) firewall in mode "Blocked" WARNING: untranslated string: drop action2 = Default behaviour of (input) firewall WARNING: untranslated string: drop forward = Log dropped forward packets +WARNING: untranslated string: drop hostile = Drop packets from and to hostile networks (listed at Spamhaus DROP, etc.) WARNING: untranslated string: drop outgoing = Log dropped outgoing packets +WARNING: untranslated string: drop spoofed martians = Log dropped spoofed packets and marsians WARNING: untranslated string: duration = Duration WARNING: untranslated string: eight hours = 8 Hours WARNING: untranslated string: email config = Configuration @@ -988,8 +994,6 @@ WARNING: untranslated string: email tls = TLS mode WARNING: untranslated string: email tls explicit = explicit (STARTTLS) WARNING: untranslated string: email tls implicit = implicit (TLS) WARNING: untranslated string: email usemail = Activate Mail Service -WARNING: untranslated string: emerging pro rules = Emergingthreats.net Pro Rules -WARNING: untranslated string: emerging rules = Emergingthreats.net Community Rules WARNING: untranslated string: enable = Enable WARNING: untranslated string: enable smt = Enable Simultaneous Multi-Threading (SMT) WARNING: untranslated string: encryption = Encryption: @@ -1022,6 +1026,7 @@ WARNING: untranslated string: force enable = Forced WARNING: untranslated string: foreshadow = Foreshadow WARNING: untranslated string: four hours = 4 Hours WARNING: untranslated string: fw default drop = Firewall policy +WARNING: untranslated string: fw red = Firewall options for RED interface WARNING: untranslated string: fw settings = Firewall settings WARNING: untranslated string: fw settings color = Show colors in ruletable WARNING: untranslated string: fw settings dropdown = Show all networks on rulecreation site @@ -1211,22 +1216,35 @@ WARNING: untranslated string: guardian no entries = unknown string WARNING: untranslated string: guardian service = unknown string WARNING: untranslated string: hardware support = Hardware Support WARNING: untranslated string: hardware vulnerabilities = Hardware Vulnerabilities +WARNING: untranslated string: hostile networks = Hostile networks +WARNING: untranslated string: ids add provider = Add provider WARNING: untranslated string: ids apply = Apply WARNING: untranslated string: ids apply ruleset changes = The ruleset changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: ids automatic rules update = Automatic Rule Update +WARNING: untranslated string: ids autoupdates = Automatic updates +WARNING: untranslated string: ids could not add provider = Could not add provider +WARNING: untranslated string: ids customize ruleset = Customize ruleset WARNING: untranslated string: ids download new ruleset = Downloading and unpacking new ruleset. Please wait until all operations have completed successfully... WARNING: untranslated string: ids enable = Enable Intrusion Prevention System +WARNING: untranslated string: ids enable automatic updates = Enable automatic updates +WARNING: untranslated string: ids force ruleset update = Force ruleset update WARNING: untranslated string: ids hide = Hide WARNING: untranslated string: ids ignored hosts = Whitelisted Hosts WARNING: untranslated string: ids log hits = Total of number of activated rules for WARNING: untranslated string: ids monitor traffic only = Monitor traffic only WARNING: untranslated string: ids monitored interfaces = Monitored Interfaces +WARNING: untranslated string: ids no enabled ruleset provider = No enabled ruleset is available. Please activate or add one first. WARNING: untranslated string: ids no network zone = Please select at least one network zone to be monitored -WARNING: untranslated string: ids no ruleset available = No ruleset is available. Please download one first -WARNING: untranslated string: ids oinkcode required = The selected ruleset requires a subscription or an Oinkcode +WARNING: untranslated string: ids provider = Provider +WARNING: untranslated string: ids provider settings = Provider settings +WARNING: untranslated string: ids reset provider = Reset provider WARNING: untranslated string: ids ruleset autoupdate in progress = Ruleset update in progress. Please wait until all operations have completed successfully... WARNING: untranslated string: ids ruleset settings = Ruleset Settings WARNING: untranslated string: ids show = Show +WARNING: untranslated string: ids subscription code required = The selected ruleset requires a subscription code +WARNING: untranslated string: ids the choosen provider is already in use = The choosen provider is already in use. +WARNING: untranslated string: ids unable to download the ruleset = Unable to download the ruleset +WARNING: untranslated string: ids visit provider website = Visit provider website WARNING: untranslated string: ids working = Changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: imei = IMEI WARNING: untranslated string: imsi = IMSI @@ -1245,6 +1263,7 @@ WARNING: untranslated string: invalid input for interface mode = Invalid input f WARNING: untranslated string: invalid input for interface mtu = Invalid input to interface MTU WARNING: untranslated string: invalid input for local ip address = Invalid input for local IP address WARNING: untranslated string: invalid input for mode = Invalid input for mode +WARNING: untranslated string: invalid input for subscription code = Invalid input for subscription code WARNING: untranslated string: invalid input for valid till days = Invalid input for Valid till (days). WARNING: untranslated string: invalid ip or hostname = Invalid IP Address or Hostname WARNING: untranslated string: invalid logserver protocol = Invalid syslogd server protocol @@ -1353,7 +1372,10 @@ WARNING: untranslated string: ovpn tls auth = TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 = Your host certificate is not RFC3280 compliant.
Please update to the latest IPFire version and generate as soon as possible a new root and host certificate.

All OpenVPN clients needs then to be renewed!
WARNING: untranslated string: p2p block = P2P networks WARNING: untranslated string: p2p block save notice = Please reload the firewall ruleset in order to apply your changes. +WARNING: untranslated string: pakfire finished = Pakfire has finished! Returning... +WARNING: untranslated string: pakfire finished error = Pakfire has finished! Errors occurred, please check the log output before proceeding. WARNING: untranslated string: pakfire invalid tree = Invalid repository selected +WARNING: untranslated string: pakfire return = Return to Pakfire WARNING: untranslated string: pakfire tree = Repository WARNING: untranslated string: pakfire tree stable = Stable WARNING: untranslated string: pakfire tree testing = Testing @@ -1401,6 +1423,7 @@ WARNING: untranslated string: source ip country = Source IP Country WARNING: untranslated string: spectre variant 1 = Spectre Variant 1 WARNING: untranslated string: spectre variant 2 = Spectre Variant 2 WARNING: untranslated string: spectre variant 4 = Spectre Variant 4 +WARNING: untranslated string: spoofed or martians = Spoofed/Martians WARNING: untranslated string: srbds = Special register buffer data sampling WARNING: untranslated string: ssh = SSH WARNING: untranslated string: ssh active sessions = Active logins @@ -1412,6 +1435,7 @@ WARNING: untranslated string: standard = Standard WARNING: untranslated string: static routes = Static Routes WARNING: untranslated string: strict = Strict WARNING: untranslated string: subnet mask = Subnet Mask +WARNING: untranslated string: subscription code = Subscription code WARNING: untranslated string: support donation = Support the IPFire project with your donation WARNING: untranslated string: system has rdrand = This system has support for Intel(R) RDRAND. WARNING: untranslated string: system is offline = The system is offline. @@ -1481,7 +1505,6 @@ WARNING: untranslated string: unblock = Unblock WARNING: untranslated string: unblock all = Unblock all WARNING: untranslated string: uncheck all = Uncheck all WARNING: untranslated string: unlimited = Unlimited -WARNING: untranslated string: update ruleset = Update ruleset WARNING: untranslated string: updxlrtr passive mode = Delivery only/no download mode WARNING: untranslated string: uplink = Uplink WARNING: untranslated string: uplink bit rate = Uplink Bit Rate @@ -1532,7 +1555,6 @@ WARNING: untranslated string: wlan client edit entry = Edit wireless client conf WARNING: untranslated string: wlan client encryption = Encryption WARNING: untranslated string: wlan client encryption eap = EAP WARNING: untranslated string: wlan client encryption none = None -WARNING: untranslated string: wlan client encryption wep = WEP WARNING: untranslated string: wlan client encryption wpa = WPA WARNING: untranslated string: wlan client encryption wpa2 = WPA2 WARNING: untranslated string: wlan client encryption wpa3 = WPA3 diff --git a/doc/language_issues.tr b/doc/language_issues.tr index 821d79f05a..995ad711c2 100644 --- a/doc/language_issues.tr +++ b/doc/language_issues.tr @@ -172,6 +172,7 @@ WARNING: translation string unused: class in use WARNING: translation string unused: clear cache WARNING: translation string unused: client WARNING: translation string unused: comment +WARNING: translation string unused: community rules WARNING: translation string unused: compression WARNING: translation string unused: connect WARNING: translation string unused: connect the modem @@ -288,6 +289,7 @@ WARNING: translation string unused: email subject WARNING: translation string unused: email success WARNING: translation string unused: email text WARNING: translation string unused: emailreportlevel +WARNING: translation string unused: emerging rules WARNING: translation string unused: enable javascript WARNING: translation string unused: enable wildcards WARNING: translation string unused: enabledtitle @@ -411,6 +413,7 @@ WARNING: translation string unused: ids rules license WARNING: translation string unused: ids rules license1 WARNING: translation string unused: ids rules license2 WARNING: translation string unused: ids rules license3 +WARNING: translation string unused: ids rules update WARNING: translation string unused: ike encryption WARNING: translation string unused: ike grouptype WARNING: translation string unused: ike integrity @@ -433,6 +436,7 @@ WARNING: translation string unused: intrusion detection system2 WARNING: translation string unused: invalid cache size WARNING: translation string unused: invalid date entered WARNING: translation string unused: invalid downlink speed +WARNING: translation string unused: invalid input for oink code WARNING: translation string unused: invalid loaded file WARNING: translation string unused: invalid md5sum WARNING: translation string unused: invalid port list @@ -662,7 +666,9 @@ WARNING: translation string unused: reboot question WARNING: translation string unused: reboot schedule WARNING: translation string unused: reboot sure WARNING: translation string unused: refresh update list +WARNING: translation string unused: registered user rules WARNING: translation string unused: released +WARNING: translation string unused: reload WARNING: translation string unused: removable device advice WARNING: translation string unused: reportfile WARNING: translation string unused: reportlevel @@ -749,6 +755,7 @@ WARNING: translation string unused: subject test WARNING: translation string unused: subject warn WARNING: translation string unused: subnet WARNING: translation string unused: subnet is invalid +WARNING: translation string unused: subscripted user rules WARNING: translation string unused: successfully refreshed updates list WARNING: translation string unused: system graphs WARNING: translation string unused: system has hwrng @@ -951,10 +958,11 @@ WARNING: untranslated string: dns use protocol for dns queries = Protocol for DN WARNING: untranslated string: dnsforward dnssec disabled = DNSSEC Validation is disabled WARNING: untranslated string: dnsforward forward_servers = Nameservers WARNING: untranslated string: download apple profile = Download Apple Configuration Profile +WARNING: untranslated string: drop hostile = Drop packets from and to hostile networks (listed at Spamhaus DROP, etc.) +WARNING: untranslated string: drop spoofed martians = Log dropped spoofed packets and marsians WARNING: untranslated string: duration = Duration WARNING: untranslated string: email tls explicit = explicit (STARTTLS) WARNING: untranslated string: email tls implicit = implicit (TLS) -WARNING: untranslated string: emerging pro rules = Emergingthreats.net Pro Rules WARNING: untranslated string: enable = Enable WARNING: untranslated string: enable smt = Enable Simultaneous Multi-Threading (SMT) WARNING: untranslated string: eol architecture warning = You are running an architecture of IPFire which reached its end of life. You will not receive updates anymore. This is a security risk. @@ -963,6 +971,7 @@ WARNING: untranslated string: error the to date has to be later than the from da WARNING: untranslated string: fallout zombieload ridl = Fallout/ZombieLoad/RIDL WARNING: untranslated string: force enable = Forced WARNING: untranslated string: foreshadow = Foreshadow +WARNING: untranslated string: fw red = Firewall options for RED interface WARNING: untranslated string: fwdfw all subnets = All subnets WARNING: untranslated string: fwhost cust locationgrp = unknown string WARNING: untranslated string: fwhost err hostip = unknown string @@ -997,22 +1006,35 @@ WARNING: untranslated string: guardian logtarget_syslog = unknown string WARNING: untranslated string: guardian no entries = unknown string WARNING: untranslated string: guardian service = unknown string WARNING: untranslated string: hardware vulnerabilities = Hardware Vulnerabilities +WARNING: untranslated string: hostile networks = Hostile networks +WARNING: untranslated string: ids add provider = Add provider WARNING: untranslated string: ids apply = Apply WARNING: untranslated string: ids apply ruleset changes = The ruleset changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: ids automatic rules update = Automatic Rule Update +WARNING: untranslated string: ids autoupdates = Automatic updates +WARNING: untranslated string: ids could not add provider = Could not add provider +WARNING: untranslated string: ids customize ruleset = Customize ruleset WARNING: untranslated string: ids download new ruleset = Downloading and unpacking new ruleset. Please wait until all operations have completed successfully... WARNING: untranslated string: ids enable = Enable Intrusion Prevention System +WARNING: untranslated string: ids enable automatic updates = Enable automatic updates +WARNING: untranslated string: ids force ruleset update = Force ruleset update WARNING: untranslated string: ids hide = Hide WARNING: untranslated string: ids ignored hosts = Whitelisted Hosts WARNING: untranslated string: ids log hits = Total of number of activated rules for WARNING: untranslated string: ids monitor traffic only = Monitor traffic only WARNING: untranslated string: ids monitored interfaces = Monitored Interfaces +WARNING: untranslated string: ids no enabled ruleset provider = No enabled ruleset is available. Please activate or add one first. WARNING: untranslated string: ids no network zone = Please select at least one network zone to be monitored -WARNING: untranslated string: ids no ruleset available = No ruleset is available. Please download one first -WARNING: untranslated string: ids oinkcode required = The selected ruleset requires a subscription or an Oinkcode +WARNING: untranslated string: ids provider = Provider +WARNING: untranslated string: ids provider settings = Provider settings +WARNING: untranslated string: ids reset provider = Reset provider WARNING: untranslated string: ids ruleset autoupdate in progress = Ruleset update in progress. Please wait until all operations have completed successfully... WARNING: untranslated string: ids ruleset settings = Ruleset Settings WARNING: untranslated string: ids show = Show +WARNING: untranslated string: ids subscription code required = The selected ruleset requires a subscription code +WARNING: untranslated string: ids the choosen provider is already in use = The choosen provider is already in use. +WARNING: untranslated string: ids unable to download the ruleset = Unable to download the ruleset +WARNING: untranslated string: ids visit provider website = Visit provider website WARNING: untranslated string: ids working = Changes are being applied. Please wait until all operations have completed successfully... WARNING: untranslated string: info messages = unknown string WARNING: untranslated string: interface mode = Interface @@ -1021,6 +1043,7 @@ WARNING: untranslated string: invalid input for interface mode = Invalid input f WARNING: untranslated string: invalid input for interface mtu = Invalid input to interface MTU WARNING: untranslated string: invalid input for local ip address = Invalid input for local IP address WARNING: untranslated string: invalid input for mode = Invalid input for mode +WARNING: untranslated string: invalid input for subscription code = Invalid input for subscription code WARNING: untranslated string: invalid ip or hostname = Invalid IP Address or Hostname WARNING: untranslated string: ip basic info = Basic IP information WARNING: untranslated string: ip info for = IP information for @@ -1054,7 +1077,10 @@ WARNING: untranslated string: ovpn error md5 = You host certificate uses MD5 for WARNING: untranslated string: ovpn rw connection log = OpenVPN Roadwarrior Connections Log WARNING: untranslated string: ovpn tls auth = TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 = Your host certificate is not RFC3280 compliant.
Please update to the latest IPFire version and generate as soon as possible a new root and host certificate.

All OpenVPN clients needs then to be renewed!
+WARNING: untranslated string: pakfire finished = Pakfire has finished! Returning... +WARNING: untranslated string: pakfire finished error = Pakfire has finished! Errors occurred, please check the log output before proceeding. WARNING: untranslated string: pakfire invalid tree = Invalid repository selected +WARNING: untranslated string: pakfire return = Return to Pakfire WARNING: untranslated string: pakfire tree = Repository WARNING: untranslated string: pakfire tree stable = Stable WARNING: untranslated string: pakfire tree testing = Testing @@ -1080,6 +1106,7 @@ WARNING: untranslated string: smt not supported = Simultaneous Multi-Threading ( WARNING: untranslated string: spectre variant 1 = Spectre Variant 1 WARNING: untranslated string: spectre variant 2 = Spectre Variant 2 WARNING: untranslated string: spectre variant 4 = Spectre Variant 4 +WARNING: untranslated string: spoofed or martians = Spoofed/Martians WARNING: untranslated string: srbds = Special register buffer data sampling WARNING: untranslated string: ssh active sessions = Active logins WARNING: untranslated string: ssh agent forwarding = Allow SSH Agent Forwarding @@ -1089,6 +1116,7 @@ WARNING: untranslated string: ssh username = Username WARNING: untranslated string: standard = Standard WARNING: untranslated string: strict = Strict WARNING: untranslated string: subnet mask = Subnet Mask +WARNING: untranslated string: subscription code = Subscription code WARNING: untranslated string: system is offline = The system is offline. WARNING: untranslated string: taa zombieload2 = TSX Async Abort / ZombieLoad v2 WARNING: untranslated string: token = Token: @@ -1097,7 +1125,6 @@ WARNING: untranslated string: tor guard country any = Any country WARNING: untranslated string: tor guard nodes = Guard Nodes WARNING: untranslated string: tor use guard nodes = Use only these guard nodes (one fingerprint per line) WARNING: untranslated string: transport mode does not support vti = VTI is not support in transport mode -WARNING: untranslated string: update ruleset = Update ruleset WARNING: untranslated string: updxlrtr passive mode = Delivery only/no download mode WARNING: untranslated string: user management = User Management WARNING: untranslated string: vpn start action add = Wait for connection initiation diff --git a/doc/language_missings b/doc/language_missings index 6b5b85053a..44946ebf08 100644 --- a/doc/language_missings +++ b/doc/language_missings @@ -54,7 +54,9 @@ < error the to date has to be later than the from date < g.dtm < g.lite +< ids subscription code required < insert removable device +< invalid input for subscription code < ipsec dns server address is invalid < ipsec invalid ip address or fqdn for rw endpoint < ipsec roadwarrior endpoint @@ -73,6 +75,7 @@ < show lines < show tls-auth key < smb daemon +< subscription code < teovpn_fragment < tor bridge enabled < tor errmsg invalid node id @@ -269,7 +272,9 @@ < drop action1 < drop action2 < drop forward +< drop hostile < drop outgoing +< drop spoofed martians < duration < eight hours < email config @@ -528,6 +533,7 @@ < fwhost used < fwhost welcome < fwhost wo subnet +< fw red < fw settings < fw settings color < fw settings dropdown @@ -540,22 +546,35 @@ < guardian < hardware support < hardware vulnerabilities +< hostile networks +< ids add provider < ids apply < ids apply ruleset changes < ids automatic rules update +< ids autoupdates +< ids could not add provider +< ids customize ruleset < ids download new ruleset < ids enable +< ids enable automatic updates +< ids force ruleset update < ids hide < ids ignored hosts < ids log hits < ids monitored interfaces < ids monitor traffic only +< ids no enabled ruleset provider < ids no network zone -< ids no ruleset available -< ids oinkcode required +< ids provider +< ids provider settings +< ids reset provider < ids ruleset autoupdate in progress < ids ruleset settings < ids show +< ids subscription code required +< ids the choosen provider is already in use +< ids unable to download the ruleset +< ids visit provider website < ids working < imei < imsi @@ -573,6 +592,7 @@ < invalid input for interface mtu < invalid input for local ip address < invalid input for mode +< invalid input for subscription code < invalid input for valid till days < invalid ip or hostname < invalid logserver protocol @@ -712,7 +732,10 @@ < ovpn warning rfc3280 < p2p block < p2p block save notice +< pakfire finished +< pakfire finished error < pakfire invalid tree +< pakfire return < pakfire tree < pakfire tree stable < pakfire tree testing @@ -758,6 +781,7 @@ < spectre variant 1 < spectre variant 2 < spectre variant 4 +< spoofed or martians < srbds < ssh < ssh active sessions @@ -769,6 +793,7 @@ < static routes < strict < subnet mask +< subscription code < support donation < system has hwrng < system has rdrand @@ -917,7 +942,6 @@ < wlan client encryption < wlan client encryption eap < wlan client encryption none -< wlan client encryption wep < wlan client encryption wpa < wlan client encryption wpa2 < wlan client encryption wpa3 @@ -985,14 +1009,38 @@ < cake profile pppoe-ptm 27 < cake profile pppoe-vcmux 32 < cake profile raw 0 +< drop hostile +< drop spoofed martians < eol architecture warning < false max bandwidth < false min bandwidth +< fw red < g.dtm < g.lite < guaranteed bandwidth +< hostile networks +< ids add provider +< ids autoupdates +< ids could not add provider +< ids customize ruleset +< ids enable automatic updates +< ids force ruleset update +< ids no enabled ruleset provider +< ids provider +< ids provider settings +< ids reset provider +< ids subscription code required +< ids the choosen provider is already in use +< ids unable to download the ruleset +< ids visit provider website +< invalid input for subscription code < link-layer encapsulation < max bandwidth +< pakfire finished +< pakfire finished error +< pakfire return +< spoofed or martians +< subscription code < upload fcdsl.o ############################################################################ # Checking cgi-bin translations for language: it # @@ -1135,6 +1183,8 @@ < dns use isp assigned nameservers < dns use protocol for dns queries < download apple profile +< drop hostile +< drop spoofed martians < duration < eight hours < email config @@ -1189,26 +1239,40 @@ < fwhost cust locationgroup < fwhost cust locationlocation < fwhost newlocationgrp +< fw red < generate ptr < guaranteed bandwidth < guardian < hardware vulnerabilities +< hostile networks +< ids add provider < ids apply < ids apply ruleset changes < ids automatic rules update +< ids autoupdates +< ids could not add provider +< ids customize ruleset < ids download new ruleset < ids enable +< ids enable automatic updates +< ids force ruleset update < ids hide < ids ignored hosts < ids log hits < ids monitored interfaces < ids monitor traffic only +< ids no enabled ruleset provider < ids no network zone -< ids no ruleset available -< ids oinkcode required +< ids provider +< ids provider settings +< ids reset provider < ids ruleset autoupdate in progress < ids ruleset settings < ids show +< ids subscription code required +< ids the choosen provider is already in use +< ids unable to download the ruleset +< ids visit provider website < ids working < incoming compression in bytes per second < incoming overhead in bytes per second @@ -1220,6 +1284,7 @@ < invalid input for interface mtu < invalid input for local ip address < invalid input for mode +< invalid input for subscription code < invalid input for valid till days < invalid ip or hostname < invalid logserver protocol @@ -1284,7 +1349,10 @@ < ovpn rw connection log < ovpn tls auth < ovpn warning rfc3280 +< pakfire finished +< pakfire finished error < pakfire invalid tree +< pakfire return < pakfire tree < pakfire tree stable < pakfire tree testing @@ -1315,6 +1383,7 @@ < spectre variant 1 < spectre variant 2 < spectre variant 4 +< spoofed or martians < srbds < ssh active sessions < ssh agent forwarding @@ -1324,6 +1393,7 @@ < standard < strict < subnet mask +< subscription code < system is offline < taa zombieload2 < tcp more reliable @@ -1571,7 +1641,9 @@ < download apple profile < download dh parameter < download tls-auth key +< drop hostile < drop outgoing +< drop spoofed martians < duration < eight hours < email config @@ -1627,27 +1699,41 @@ < fwhost cust locationgroup < fwhost cust locationlocation < fwhost newlocationgrp +< fw red < gen dh < generate dh key < generate ptr < guardian < hardware vulnerabilities +< hostile networks +< ids add provider < ids apply < ids apply ruleset changes < ids automatic rules update +< ids autoupdates +< ids could not add provider +< ids customize ruleset < ids download new ruleset < ids enable +< ids enable automatic updates +< ids force ruleset update < ids hide < ids ignored hosts < ids log hits < ids monitored interfaces < ids monitor traffic only +< ids no enabled ruleset provider < ids no network zone -< ids no ruleset available -< ids oinkcode required +< ids provider +< ids provider settings +< ids reset provider < ids ruleset autoupdate in progress < ids ruleset settings < ids show +< ids subscription code required +< ids the choosen provider is already in use +< ids unable to download the ruleset +< ids visit provider website < ids working < imei < imsi @@ -1661,6 +1747,7 @@ < invalid input for interface mtu < invalid input for local ip address < invalid input for mode +< invalid input for subscription code < invalid input for valid till days < invalid ip or hostname < invalid logserver protocol @@ -1751,7 +1838,10 @@ < ovpn rw connection log < ovpn tls auth < ovpn warning rfc3280 +< pakfire finished +< pakfire finished error < pakfire invalid tree +< pakfire return < pakfire tree < pakfire tree stable < pakfire tree testing @@ -1787,6 +1877,7 @@ < spectre variant 1 < spectre variant 2 < spectre variant 4 +< spoofed or martians < srbds < ssh active sessions < ssh agent forwarding @@ -1796,6 +1887,7 @@ < standard < strict < subnet mask +< subscription code < system is offline < taa zombieload2 < ta key @@ -2127,7 +2219,9 @@ < drop action1 < drop action2 < drop forward +< drop hostile < drop outgoing +< drop spoofed martians < duration < eight hours < email config @@ -2378,6 +2472,7 @@ < fwhost used < fwhost welcome < fwhost wo subnet +< fw red < fw settings < fw settings color < fw settings dropdown @@ -2390,22 +2485,35 @@ < guardian < hardware support < hardware vulnerabilities +< hostile networks +< ids add provider < ids apply < ids apply ruleset changes < ids automatic rules update +< ids autoupdates +< ids could not add provider +< ids customize ruleset < ids download new ruleset < ids enable +< ids enable automatic updates +< ids force ruleset update < ids hide < ids ignored hosts < ids log hits < ids monitored interfaces < ids monitor traffic only +< ids no enabled ruleset provider < ids no network zone -< ids no ruleset available -< ids oinkcode required +< ids provider +< ids provider settings +< ids reset provider < ids ruleset autoupdate in progress < ids ruleset settings < ids show +< ids subscription code required +< ids the choosen provider is already in use +< ids unable to download the ruleset +< ids visit provider website < ids working < imei < imsi @@ -2423,6 +2531,7 @@ < invalid input for interface mtu < invalid input for local ip address < invalid input for mode +< invalid input for subscription code < invalid input for valid till days < invalid ip or hostname < invalid logserver protocol @@ -2558,7 +2667,10 @@ < ovpn warning rfc3280 < p2p block < p2p block save notice +< pakfire finished +< pakfire finished error < pakfire invalid tree +< pakfire return < pakfire tree < pakfire tree stable < pakfire tree testing @@ -2603,6 +2715,7 @@ < spectre variant 1 < spectre variant 2 < spectre variant 4 +< spoofed or martians < srbds < ssh < ssh active sessions @@ -2614,6 +2727,7 @@ < static routes < strict < subnet mask +< subscription code < support donation < system has hwrng < system has rdrand @@ -2761,7 +2875,6 @@ < wlan client encryption < wlan client encryption eap < wlan client encryption none -< wlan client encryption wep < wlan client encryption wpa < wlan client encryption wpa2 < wlan client encryption wpa3 @@ -3047,7 +3160,9 @@ < drop action1 < drop action2 < drop forward +< drop hostile < drop outgoing +< drop spoofed martians < duration < Edit an existing route < eight hours @@ -3300,6 +3415,7 @@ < fwhost used < fwhost welcome < fwhost wo subnet +< fw red < fw settings < fw settings color < fw settings dropdown @@ -3312,23 +3428,36 @@ < guardian < hardware support < hardware vulnerabilities +< hostile networks < hour-graph +< ids add provider < ids apply < ids apply ruleset changes < ids automatic rules update +< ids autoupdates +< ids could not add provider +< ids customize ruleset < ids download new ruleset < ids enable +< ids enable automatic updates +< ids force ruleset update < ids hide < ids ignored hosts < ids log hits < ids monitored interfaces < ids monitor traffic only +< ids no enabled ruleset provider < ids no network zone -< ids no ruleset available -< ids oinkcode required +< ids provider +< ids provider settings +< ids reset provider < ids ruleset autoupdate in progress < ids ruleset settings < ids show +< ids subscription code required +< ids the choosen provider is already in use +< ids unable to download the ruleset +< ids visit provider website < ids working < imei < imsi @@ -3347,6 +3476,7 @@ < invalid input for interface mtu < invalid input for local ip address < invalid input for mode +< invalid input for subscription code < invalid input for valid till days < invalid ip or hostname < invalid logserver protocol @@ -3480,7 +3610,10 @@ < ovpn warning rfc3280 < p2p block < p2p block save notice +< pakfire finished +< pakfire finished error < pakfire invalid tree +< pakfire return < pakfire tree < pakfire tree stable < pakfire tree testing @@ -3525,6 +3658,7 @@ < spectre variant 1 < spectre variant 2 < spectre variant 4 +< spoofed or martians < srbds < ssh < ssh active sessions @@ -3536,6 +3670,7 @@ < static routes < strict < subnet mask +< subscription code < support donation < system has hwrng < system has rdrand @@ -3684,7 +3819,6 @@ < wlan client encryption < wlan client encryption eap < wlan client encryption none -< wlan client encryption wep < wlan client encryption wpa < wlan client encryption wpa2 < wlan client encryption wpa3 @@ -3803,6 +3937,8 @@ < dns use isp assigned nameservers < dns use protocol for dns queries < download apple profile +< drop hostile +< drop spoofed martians < duration < email tls explicit < email tls implicit @@ -3816,24 +3952,38 @@ < force enable < foreshadow < fwdfw all subnets +< fw red < generate ptr < hardware vulnerabilities +< hostile networks +< ids add provider < ids apply < ids apply ruleset changes < ids automatic rules update +< ids autoupdates +< ids could not add provider +< ids customize ruleset < ids download new ruleset < ids enable +< ids enable automatic updates +< ids force ruleset update < ids hide < ids ignored hosts < ids log hits < ids monitored interfaces < ids monitor traffic only +< ids no enabled ruleset provider < ids no network zone -< ids no ruleset available -< ids oinkcode required +< ids provider +< ids provider settings +< ids reset provider < ids ruleset autoupdate in progress < ids ruleset settings < ids show +< ids subscription code required +< ids the choosen provider is already in use +< ids unable to download the ruleset +< ids visit provider website < ids working < interface mode < intrusion prevention system @@ -3842,6 +3992,7 @@ < invalid input for interface mtu < invalid input for local ip address < invalid input for mode +< invalid input for subscription code < invalid ip or hostname < ip basic info < ip info for @@ -3876,7 +4027,10 @@ < ovpn rw connection log < ovpn tls auth < ovpn warning rfc3280 +< pakfire finished +< pakfire finished error < pakfire invalid tree +< pakfire return < pakfire tree < pakfire tree stable < pakfire tree testing @@ -3899,6 +4053,7 @@ < spectre variant 1 < spectre variant 2 < spectre variant 4 +< spoofed or martians < srbds < ssh active sessions < ssh agent forwarding @@ -3908,6 +4063,7 @@ < standard < strict < subnet mask +< subscription code < system is offline < taa zombieload2 < token diff --git a/html/cgi-bin/aliases.cgi b/html/cgi-bin/aliases.cgi index 85ed272048..7b80b3c844 100644 --- a/html/cgi-bin/aliases.cgi +++ b/html/cgi-bin/aliases.cgi @@ -62,7 +62,7 @@ $settings{'IP'} = ''; $settings{'ENABLED'} = 'off'; # Every check box must be set to off $settings{'NAME'} = ''; my @nosaved=('IP','ENABLED','NAME'); # List here ALL setting2 fields. Mandatory - + $settings{'ACTION'} = ''; # add/edit/remove $settings{'KEY1'} = ''; # point record for ACTION @@ -94,16 +94,16 @@ if (open(FILE, "$datafile")) { # Remove if no Setting1 needed # if ($settings{'ACTION'} eq $Lang::tr{'save'}) { - + # #Validate static Settings1 here # unless ($errormessage) { # Everything is ok, save settings - #map (delete ($settings{$_}) ,(@nosaved,'ACTION','KEY1'));# Must never be saved + #map (delete ($settings{$_}) ,(@nosaved,'ACTION','KEY1'));# Must never be saved #&General::writehash($setting, \%settings); # Save good settings #$settings{'ACTION'} = $Lang::tr{'save'}; # Recreate 'ACTION' #map ($settings{$_}= '',(@nosaved,'KEY1')); # and reinit var to empty - + # Rebuild configuration file if needed &BuildConfiguration; @@ -133,14 +133,14 @@ if ($settings{'ACTION'} eq $Lang::tr{'toggle enable disable'}) { $temp[2] = '' if ( $temp[2] eq '' ); @current[$settings{'KEY1'}] = join (',',@temp)."\n"; $settings{'KEY1'} = ''; # End edit mode - + &General::log($Lang::tr{'ip alias changed'}); - + #Save current open(FILE, ">$datafile") or die 'Unable to open aliases file.'; print FILE @current; close(FILE); - + # Rebuild configuration file &BuildConfiguration; @@ -230,7 +230,7 @@ if ($settings{'ACTION'} eq $Lang::tr{'add'}) { # Handle Suricata related actions. &HandleSuricata(); - + ## ## if entering data line is repetitive, choose here to not erase fields between each addition ## @@ -253,7 +253,7 @@ if ($settings{'ACTION'} eq $Lang::tr{'edit'}) { } if ($settings{'ACTION'} eq $Lang::tr{'remove'}) { - splice (@current,$settings{'KEY1'},1); # Delete line + splice (@current,$settings{'KEY1'},1); # Delete line open(FILE, ">$datafile") or die 'Unable to open aliases file.'; print FILE @current; close(FILE); @@ -291,7 +291,7 @@ if ($ENV{'QUERY_STRING'} =~ /$sortstring/ ) { if ($settings{'ACTION'} eq '' ) { # First launch from GUI $settings{'ENABLED'} ='on'; } - + &Header::openpage($Lang::tr{'external aliases configuration'}, 1, ''); &Header::openbigbox('100%', 'left', '', $errormessage); my %checked =(); # Checkbox manipulations @@ -314,7 +314,7 @@ END ; &Header::closebox(); } - + # # Second check box is for editing the list # @@ -406,7 +406,7 @@ foreach my $line (@current) { $gdesc = $Lang::tr{'click to disable'}; } else { $gif = 'off.gif'; - $gdesc = $Lang::tr{'click to enable'}; + $gdesc = $Lang::tr{'click to enable'}; } #Colorize each line @@ -488,7 +488,7 @@ END sub SortDataFile { our %entries = (); - + # Sort pair of record received in $a $b special vars. # When IP is specified use numeric sort else alpha. # If sortname ends with 'Rev', do reverse sort. @@ -527,27 +527,27 @@ sub SortDataFile foreach my $line (@current) { chomp( $line); #remove newline because can be on field 5 or 6 (addition of REMARK) my @temp = split (',',$line); - + # Build a pair 'Field Name',value for each of the data dataline. # Each SORTABLE field must have is pair. # Other data fields (non sortable) can be grouped in one - + # Exemple # F1,F2,F3,F4,F5 only F1 F2 for sorting # my @record = ('KEY',$key++, # 'F1',$temp[0], # 'F2',$temp[1], # 'DATA',join(',',@temp[2..4]) ); #group remainning values, with separator (,) - + # The KEY,key record permits doublons. If removed, then F1 becomes the key without doublon permitted. - - + + my @record = ('KEY',$key++,'IP',$temp[0],'ENABLED',$temp[1],'NAME',$temp[2]); my $record = {}; # create a reference to empty hash %{$record} = @record; # populate that hash with @record $entries{$record->{KEY}} = $record; # add this to a hash of hashes } - + open(FILE, ">$datafile") or die 'Unable to open aliases file.'; # Each field value is printed , with the newline ! Don't forget separator and order of them. @@ -562,7 +562,7 @@ sub SortDataFile close (FILE); } -# +# # Build the configuration file for application aliases # sub BuildConfiguration { diff --git a/html/cgi-bin/atm-status.cgi b/html/cgi-bin/atm-status.cgi index 49f19209d1..fb38dc0304 100644 --- a/html/cgi-bin/atm-status.cgi +++ b/html/cgi-bin/atm-status.cgi @@ -53,18 +53,18 @@ foreach (@modems){ my $value= `cat /sys/class/atm/$modem/parameters/$param`; chomp($param); chomp($value); - if (!($param =~"uevent") + if (!($param =~"uevent") && !($param =~"resource") && !($param eq "") ) { - + $lines++; if ($lines % 2){ print ""; }else{ print ""; } - print "$param$value "; + print "$param$value "; } } my @pfile = `grep . /sys/class/atm/$modem/device/* 2>/dev/null`; @@ -74,8 +74,8 @@ foreach (@modems){ my $value= `cat /sys/class/atm/$modem/device/$param`; chomp($param); chomp($value); - if (!($param =~"uevent") - && !($param =~"modalias") + if (!($param =~"uevent") + && !($param =~"modalias") && !($param =~"bInterface") && !($param =~"bAlternateSetting") && !($param =~"bNumEndpoints") @@ -83,14 +83,14 @@ foreach (@modems){ && !($param =~"resource") && !($param eq "") ) { - + $lines++; if ($lines % 2){ print ""; }else{ print ""; } - print "$param$value "; + print "$param$value "; } } print "
\n"; diff --git a/html/cgi-bin/backup.cgi b/html/cgi-bin/backup.cgi index 1b1ccb4a86..1c01cb286f 100644 --- a/html/cgi-bin/backup.cgi +++ b/html/cgi-bin/backup.cgi @@ -202,7 +202,7 @@ my $Datei = "/var/ipfire/backup/".$_; my @Info = stat($Datei); my $Size = $Info[7] / 1024 / 1024; $Size = sprintf("%0.2f", $Size); -print "$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size MB
"; +print "$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size MB
"; print "
"; } foreach (@backupisos){ @@ -212,7 +212,7 @@ my $Datei = "/var/tmp/backupiso/".$_; my @Info = stat($Datei); my $Size = $Info[7] / 1024 / 1024; $Size = sprintf("%0.2f", $Size); -print "$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size MB
"; +print "$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size MB
"; print "
"; } print <$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9]).""; + print "$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9]).""; } else { $Size = sprintf("%2d", $Size); - print "$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9]).""; + print "$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9]).""; } @@ -272,7 +272,7 @@ END ; } else{ - print "$Lang::tr{'backup from'} $_ "; + print "$Lang::tr{'backup from'} $_ "; } print < @@ -291,7 +291,7 @@ my $Datei = "/var/ipfire/backup/addons/backup/".$_.".ipf"; my @Info = stat($Datei); my $Size = $Info[7] / 1024; $Size = sprintf("%2d", $Size); -print "$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9]).""; +print "$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9]).""; print <
diff --git a/html/cgi-bin/chpasswd.cgi b/html/cgi-bin/chpasswd.cgi index 0a66062edb..4930c4ca3d 100644 --- a/html/cgi-bin/chpasswd.cgi +++ b/html/cgi-bin/chpasswd.cgi @@ -240,7 +240,7 @@ sub readhash { $val =~ s/^\'//g; $val =~ s/\'$//g; - + # Untaint variables read from hash $var =~ /([A-Za-z0-9_-]*)/; $var = $1; $val =~ /([\w\W]*)/; $val = $1; diff --git a/html/cgi-bin/connections.cgi b/html/cgi-bin/connections.cgi index 10ac8748c0..7f06a55945 100644 --- a/html/cgi-bin/connections.cgi +++ b/html/cgi-bin/connections.cgi @@ -57,7 +57,7 @@ if (length ($ENV{'QUERY_STRING'}) > 0){ ($name, $value) = split(/=/, $pair); $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; # e.g. "%20" => " " $value =~ s/[^a-zA-Z0-9]*//g; # a-Z 0-9 will pass - $cgiin{$name} = $value; + $cgiin{$name} = $value; } } @@ -96,8 +96,8 @@ if ( $cgiin{'sort_field'} ~~ [ '1','2','3','4','5','6','7','8','9' ] ) { } # Read and sort the connection tracking table -# do sorting -if ($SORT_FIELD and $SORT_ORDER) { +# do sorting +if ($SORT_FIELD and $SORT_ORDER) { # field sorting when sorting arguments are sane open(CONNTRACK, "/usr/local/bin/getconntracktable | /usr/local/bin/consort.sh $SORT_FIELD $SORT_ORDER |") or die "Unable to read conntrack table"; } else { @@ -247,13 +247,13 @@ if (-e "${General::swroot}/ovpn/settings") { # Add OpenVPN net for custom OVPNs if (-e "${General::swroot}/ovpn/ccd.conf") { - open(OVPNSUB, "${General::swroot}/ovpn/ccd.conf"); + open(OVPNSUB, "${General::swroot}/ovpn/ccd.conf"); my @ovpnsub = ; close(OVPNSUB); foreach (@ovpnsub) { my ($network, $mask) = split '/', (split ',', $_)[2]; - + $mask = ipv4_cidr2msk($mask) unless &General::validip($mask); push(@network, $network); diff --git a/html/cgi-bin/connscheduler.cgi b/html/cgi-bin/connscheduler.cgi index 1393df65fd..cc78cbc1bd 100644 --- a/html/cgi-bin/connscheduler.cgi +++ b/html/cgi-bin/connscheduler.cgi @@ -138,7 +138,7 @@ if ( $cgiparams{'ACTION'} eq 'toggle' ) { $CONNSCHED::config[$cgiparams{'ID'}]{'ACTIVE'} = 'on'; } - + &CONNSCHED::WriteConfig; } @@ -194,7 +194,7 @@ if ( ($cgiparams{'ACTION'} eq 'add') || ($cgiparams{'ACTION'} eq 'update') ) if ( $cgiparams{'ACTION'} eq 'edit' ) { $i = $cgiparams{'ID'}; - + $selected_hour = substr($CONNSCHED::config[$i]{'TIME'},0,2); $selected_minute = substr($CONNSCHED::config[$i]{'TIME'},3,2); @@ -412,7 +412,7 @@ END my $col=""; for my $id ( 0 .. $#CONNSCHED::config ) { - if ( ($cgiparams{'ACTION'} eq 'edit') && ($id == $cgiparams{'ID'}) ) + if ( ($cgiparams{'ACTION'} eq 'edit') && ($id == $cgiparams{'ID'}) ) { print ""; $col="bgcolor='${Header::colouryellow}'"; @@ -422,7 +422,7 @@ for my $id ( 0 .. $#CONNSCHED::config ) print ""; $col="bgcolor='$color{'color20'}'"; } - else + else { print ""; $col="bgcolor='$color{'color22'}'"; diff --git a/html/cgi-bin/dhcp.cgi b/html/cgi-bin/dhcp.cgi index f1fbfd2358..0a0a21d68c 100644 --- a/html/cgi-bin/dhcp.cgi +++ b/html/cgi-bin/dhcp.cgi @@ -47,7 +47,7 @@ my $warnNTPmessage = ''; my @nosaved=(); my %color = (); -#Basic syntax allowed for new Option definition. Not implemented: RECORDS & array of RECORDS +#Basic syntax allowed for new Option definition. Not implemented: RECORDS & array of RECORDS our $OptionTypes = 'boolean|((un)?signed )?integer (8|16|32)|ip-address|text|string|encapsulate \w+|array of ip-address'; &Header::showhttpheaders(); @@ -153,14 +153,14 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'save'}) { $errormessage = "DHCP on ${itf}: " . $Lang::tr{'invalid end address'}; goto ERROR; } - if (! &General::IpInSubnet ( $dhcpsettings{"START_ADDR_${itf}"}, + if (! &General::IpInSubnet ( $dhcpsettings{"START_ADDR_${itf}"}, $netsettings{"${itf}_NETADDRESS"}, $netsettings{"${itf}_NETMASK"})) { $errormessage = "DHCP on ${itf}: " . $Lang::tr{'invalid start address'}; goto ERROR; } } - + if ($dhcpsettings{"END_ADDR_${itf}"}) { if (!(&General::validip($dhcpsettings{"END_ADDR_${itf}"}))) { $errormessage = "DHCP on ${itf}: " . $Lang::tr{'invalid end address'}; @@ -170,9 +170,9 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'save'}) { $errormessage = "DHCP on ${itf}: " . $Lang::tr{'invalid start address'}; goto ERROR; } - if (! &General::IpInSubnet ( $dhcpsettings{"END_ADDR_${itf}"}, + if (! &General::IpInSubnet ( $dhcpsettings{"END_ADDR_${itf}"}, $netsettings{"${itf}_NETADDRESS"}, - $netsettings{"${itf}_NETMASK"})) { + $netsettings{"${itf}_NETMASK"})) { $errormessage = "DHCP on ${itf}: " . $Lang::tr{'invalid end address'}; goto ERROR; } @@ -214,7 +214,7 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'save'}) { goto ERROR; } if (! $dhcpsettings{"DNS1_${itf}"}) { - $errormessage = "DHCP on ${itf}: " . $Lang::tr{'cannot specify secondary dns without specifying primary'}; + $errormessage = "DHCP on ${itf}: " . $Lang::tr{'cannot specify secondary dns without specifying primary'}; goto ERROR; } } @@ -233,7 +233,7 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'save'}) { if (! $dhcpsettings{"WINS1_${itf}"} ) { $errormessage = "DHCP on ${itf}: " . $Lang::tr{'cannot specify secondary wins without specifying primary'}; goto ERROR; - } + } } if ($dhcpsettings{"NEXT_${itf}"}) { if (!(&General::validip($dhcpsettings{"NEXT_${itf}"}))) { @@ -295,14 +295,14 @@ if ($ENV{'QUERY_STRING'} =~ /^FETHER|^FIPADDR/ ) { &General::writehash($setting, \%dhcpsettings); &sortcurrent2; $dhcpsettings{'ACTION'} = 'SORT'; # create an 'ACTION' - map ($dhcpsettings{$_} = '',@nosaved,'KEY1','KEY2');# and reinit vars to empty + map ($dhcpsettings{$_} = '',@nosaved,'KEY1','KEY2');# and reinit vars to empty } #Sorting of allocated leases &Header::CheckSortOrder; -## Now manipulate the two multi-line list with Settings2. +## Now manipulate the two multi-line list with Settings2. # '1' suffix is for ADVANCED OPTIONS # '2' suffix is for FIXED LEASES @@ -319,12 +319,12 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'toggle enable disable'}.'1') { open(FILE, ">$filename1") or die 'Unable to open dhcp advanced options file.'; print FILE @current1; close(FILE); - + #Write changes to dhcpd.conf. &buildconf; } - + if ($dhcpsettings{'ACTION'} eq $Lang::tr{'add'}.'1' && $dhcpsettings{'SUBMIT'} ne $Lang::tr{'dhcp advopt help'}) { @@ -334,7 +334,7 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'add'}.'1' && if ($dhcpsettings{'ADVOPT_DATA'} eq '') { $errormessage=$Lang::tr{'dhcp advopt blank value'}; } - + # Test for a new option definition string (join field name & data) if (ExistNewOptionDefinition ($dhcpsettings{'ADVOPT_NAME'} . ' ' . $dhcpsettings{'ADVOPT_DATA'})) { #only edit permitted if option definition exists @@ -352,7 +352,7 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'add'}.'1' && } unless ($errormessage) { - + my $scope = ''; foreach my $itf (@ITFs) { # buils "RED,GREEN,ORANGE,... based on selection $scope .= $dhcpsettings{"ADVOPT_SCOPE_${itf}"} eq 'on' ? "\t$itf" : "\toff" ; @@ -387,7 +387,7 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'edit'}.'1') { if ($itf ne 'off') # Only is an interface name is read { $dhcpsettings{"ADVOPT_SCOPE_${itf}"} = 'on'; - } + } } } @@ -416,7 +416,7 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'toggle enable disable'}.'2') { open(FILE, ">$filename2") or die 'Unable to open fixed leases file.'; print FILE @current2; close(FILE); - + #Write changes to dhcpd.conf. &buildconf; } @@ -428,7 +428,7 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'add'}.'2') { if ($dhcpsettings{'FIX_NEXTADDR'}) { unless(&General::validip($dhcpsettings{'FIX_NEXTADDR'})) { $errormessage = $Lang::tr{'invalid fixed ip address'}; } } - + my $key = 0; CHECK:foreach my $line (@current2) { my @temp = split(/\,/,$line); @@ -438,13 +438,13 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'add'}.'2') { # Also it may be needed to put duplicate fixed lease in their right subnet definition.. foreach my $itf (@ITFs) { my $scoped = &General::IpInSubnet($dhcpsettings{'FIX_ADDR'}, - $netsettings{"${itf}_NETADDRESS"}, + $netsettings{"${itf}_NETADDRESS"}, $netsettings{"${itf}_NETMASK"}) && $dhcpsettings{"ENABLE_${itf}"} eq 'on'; if ( $scoped && (lc($dhcpsettings{'FIX_MAC'}) eq lc($temp[0])) && &General::IpInSubnet($temp[1], - $netsettings{"${itf}_NETADDRESS"}, + $netsettings{"${itf}_NETADDRESS"}, $netsettings{"${itf}_NETMASK"})) { $errormessage = "$Lang::tr{'mac address in use'} $dhcpsettings{'FIX_MAC'}"; last CHECK; @@ -755,10 +755,10 @@ print <" : "disabled='disabled' />"; print "   "; @@ -812,7 +812,7 @@ if ($dhcpsettings{'SUBMIT'} eq $Lang::tr{'dhcp advopt help'}) { print 'wpadcode 252=text'; print 'wpad"http://www.server.fr/path-to/proxy.pac"'; print ''; - + } print <"; } else { - print ""; + print ""; } print < 1) { + if ($macdupl{$temp[0]} > 1) { $ipdup = 1; # Flag up duplicates for use later } $ipinuse{$temp[1]} += 1; - if ($ipinuse{$temp[1]} > 1) { + if ($ipinuse{$temp[1]} > 1) { $ipdup = 1; # Flag up duplicates for use later } # Mark IP addresses outwith known subnets $ipoutside{$temp[1]} = 1; foreach my $itf (@ITFs) { if ( &General::IpInSubnet($temp[1], - $netsettings{"${itf}_NETADDRESS"}, + $netsettings{"${itf}_NETADDRESS"}, $netsettings{"${itf}_NETMASK"})) { $ipoutside{$temp[1]} = 0; } @@ -1055,7 +1055,7 @@ foreach my $line (@current2) { $gdesc = $Lang::tr{'click to disable'}; } else { $gif = 'off.gif'; - $gdesc = $Lang::tr{'click to enable'}; + $gdesc = $Lang::tr{'click to enable'}; } # Skip all entries that do not match the search query @@ -1081,15 +1081,15 @@ foreach my $line (@current2) { my $TAG2 = ''; my $TAG3 = ''; my $TAG4 = ''; - if ($ipinuse{$temp[1]} > 1) { + if ($ipinuse{$temp[1]} > 1) { $TAG0 = ''; $TAG1 = ''; } - if ($macdupl{$temp[0]} > 1) { + if ($macdupl{$temp[0]} > 1) { $TAG2 = ''; $TAG3 = ''; } - if ($ipoutside{$temp[1]} > 0) { + if ($ipoutside{$temp[1]} > 0) { $TAG4 = "bgcolor='orange'" if ($dhcpsettings{'KEY2'} ne $key); } @@ -1230,7 +1230,7 @@ sub sortcurrent2 # use combination of ether & IP as key to allow duplicates in either but not both $entries{$record->{FETHER} . $record->{FIPADDR}} = $record; # add this to a hash of hashes } - + open(FILE, ">$filename2") or die 'Unable to open fixed lease file.'; foreach my $entry ( sort fixedleasesort keys %entries) { print FILE "$entries{$entry}->{FETHER},$entries{$entry}->{FIPADDR},$entries{$entry}->{DATA}\n"; @@ -1243,7 +1243,7 @@ sub sortcurrent2 close (FILE); undef (%entries); #This array is reused latter. Clear it. } - + # Build the configuration file mixing settings, fixed leases and advanced options sub buildconf { open(FILE, ">/${General::swroot}/dhcp/dhcpd.conf") or die "Unable to write dhcpd.conf file"; @@ -1263,7 +1263,7 @@ sub buildconf { } else { print FILE "ddns-update-style none;\n"; } - + # Write first new option definition foreach my $line (@current1) { chomp($line); # remove newline @@ -1276,7 +1276,7 @@ sub buildconf { foreach my $line (@current1) { chomp($line); # remove newline my @temp = split(/\t/,$line); - + if ($temp[0] eq 'on' && !ExistNewOptionDefinition ($temp[1] . ' ' . $temp[2])){ # active & !definition my $global=1; for (my $key=0; $key<@ITFs; $key++) { @@ -1289,7 +1289,7 @@ sub buildconf { if ($global) { print FILE "option $temp[1] $temp[2];\n"; } - }# on + }# on }# foreach line print FILE "\n"; @@ -1329,7 +1329,7 @@ sub buildconf { foreach my $line (@current1) { chomp($line); # remove newline my @temp = split(/\t/,$line); # Use TAB separator ! - + if ($temp[0] eq 'on'){ for (my $key=0; $key<@ITFs; $key++) { if ($itf eq $temp[3+$key]) # Only is an interface name is read @@ -1337,7 +1337,7 @@ sub buildconf { print FILE "\toption $temp[1] $temp[2];\n"; } } - }# on + }# on }# foreach line print FILE "} #$itf\n\n"; diff --git a/html/cgi-bin/dnsforward.cgi b/html/cgi-bin/dnsforward.cgi index e2843a81f9..4af5ed2005 100644 --- a/html/cgi-bin/dnsforward.cgi +++ b/html/cgi-bin/dnsforward.cgi @@ -18,7 +18,7 @@ # along with this program. If not, see . # # # ############################################################################### - + use strict; # enable only the following on debugging purpose diff --git a/html/cgi-bin/extrahd.cgi b/html/cgi-bin/extrahd.cgi index 154efd7b28..36c0efc2ef 100644 --- a/html/cgi-bin/extrahd.cgi +++ b/html/cgi-bin/extrahd.cgi @@ -100,8 +100,8 @@ END ; &General::system("/usr/local/bin/extrahdctrl", "mount", "$extrahdsettings{'PATH'}"); } -} -elsif ($extrahdsettings{'ACTION'} eq $Lang::tr{'delete'}) +} +elsif ($extrahdsettings{'ACTION'} eq $Lang::tr{'delete'}) { if ( &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsettings{'PATH'}")) { open( FILE, "< $devicefile" ) or die "Unable to read $devicefile"; diff --git a/html/cgi-bin/firewall.cgi b/html/cgi-bin/firewall.cgi index 8e17cef576..681d427700 100644 --- a/html/cgi-bin/firewall.cgi +++ b/html/cgi-bin/firewall.cgi @@ -100,7 +100,7 @@ my @protocols; &General::readhash("${General::swroot}/firewall/settings", \%fwdfwsettings); &General::readhash("${General::swroot}/main/settings", \%mainsettings); &General::readhash("/srv/web/ipfire/html/themes/ipfire/include/colors.txt", \%color); -&General::readhash($fwoptions, \%optionsfw); +&General::readhash($fwoptions, \%optionsfw); &General::readhash($ifacesettings, \%ifaces); &General::readhash("$configovpn", \%ovpnsettings); &General::readhash("$configipsecrw", \%ipsecsettings); @@ -554,7 +554,7 @@ sub checksource if (&General::validport($_)){ push (@values,$_); }else{ - + } } } @@ -643,7 +643,7 @@ sub checktarget &General::readhasharray("$confighost", \%customhost); foreach my $grpkey (sort keys %customgrp){ foreach my $hostkey (sort keys %customhost){ - if ($customgrp{$grpkey}[2] eq $customhost{$hostkey}[0] && $customgrp{$grpkey}[2] eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $customhost{$hostkey}[1] eq 'mac'){ + if ($customgrp{$grpkey}[2] eq $customhost{$hostkey}[0] && $customgrp{$grpkey}[0] eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $customhost{$hostkey}[1] eq 'mac'){ $hint=$Lang::tr{'fwdfw hint mac'}; return $hint; } @@ -836,7 +836,7 @@ sub checkrule if (&General::validport($_)){ push (@values,$_); }else{ - + } } } @@ -974,16 +974,16 @@ sub checkvpn # A Test if manual ip is part of dynamic openvpn subnet is made in getcolor # because if one creates a custom host with the ip, we need to check the color there! # It does not make sense to check this here - + # Test if manual IP is part of an OpenVPN N2N subnet does also not make sense here # Is also checked in getcolor - + # Test if manual ip is part of an IPsec Network is also checked in getcolor return 1; } sub checkvpncolor { - + } sub deleterule { @@ -1247,7 +1247,7 @@ END print"$Lang::tr{'fwhost ipsec net'}"; } if ($show eq '1'){$show='';print"";} - + print""; print"
"; } @@ -1585,10 +1585,10 @@ sub newrule $fwdfwsettings{'RULE_ACTION'} = $hash{$key}[0]; $fwdfwsettings{'chain'} = $hash{$key}[1]; $fwdfwsettings{'ACTIVE'} = $hash{$key}[2]; - $fwdfwsettings{'grp1'} = $hash{$key}[3]; - $fwdfwsettings{$fwdfwsettings{'grp1'}} = $hash{$key}[4]; - $fwdfwsettings{'grp2'} = $hash{$key}[5]; - $fwdfwsettings{$fwdfwsettings{'grp2'}} = $hash{$key}[6]; + $fwdfwsettings{'grp1'} = $hash{$key}[3]; + $fwdfwsettings{$fwdfwsettings{'grp1'}} = $hash{$key}[4]; + $fwdfwsettings{'grp2'} = $hash{$key}[5]; + $fwdfwsettings{$fwdfwsettings{'grp2'}} = $hash{$key}[6]; $fwdfwsettings{'USE_SRC_PORT'} = $hash{$key}[7]; $fwdfwsettings{'PROT'} = $hash{$key}[8]; $fwdfwsettings{'ICMP_TYPES'} = $hash{$key}[9]; @@ -1695,7 +1695,7 @@ sub newrule if ( &General::IpInSubnet($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){ $fwdfwsettings{'oldorange'} ='on'; } - } + } } # Split manual source and target address and delete the subnet my ($sip,$scidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp1'}}); @@ -1811,7 +1811,7 @@ END #---TARGET------------------------------------------------------ &Header::openbox('100%', 'left', $Lang::tr{'fwdfw target'}); print< + END print""; if($fwdfwsettings{'updatefwrule'} eq 'on' || $fwdfwsettings{'copyfwrule'} eq 'on'){ print "
$Lang::tr{'fwdfw targetip'}Firewall
$Lang::tr{'remark'}:
$Lang::tr{'fwdfw rulepos'}: END @@ -2590,7 +2590,7 @@ END $color="$color{'color14'}"; $coloryellow=''; }elsif($coloryellow eq ''){ - if ($count % 2){ + if ($count % 2){ $color="$color{'color22'}"; } else{ diff --git a/html/cgi-bin/fwhosts.cgi b/html/cgi-bin/fwhosts.cgi index c66e3002a3..baf745a0a2 100644 --- a/html/cgi-bin/fwhosts.cgi +++ b/html/cgi-bin/fwhosts.cgi @@ -145,7 +145,7 @@ if ($fwhostsettings{'ACTION'} eq 'updatenet' ) $fwhostsettings{'netremark'} = $customnetwork{$key}[3]; $fwhostsettings{'count'} = $customnetwork{$key}[4]; delete $customnetwork{$key}; - + } } &General::writehasharray("$confignet", \%customnetwork); @@ -284,7 +284,7 @@ if ($fwhostsettings{'ACTION'} eq 'savenet' ) #convert ip if leading '0' exists $fwhostsettings{'IP'} = &Network::ip_remove_zero($fwhostsettings{'IP'}); - #check valid ip + #check valid ip if (!&General::validipandmask($fwhostsettings{'IP'}."/".$fwhostsettings{'SUBNET'})) { $errormessage=$errormessage.$Lang::tr{'fwhost err addr'}; @@ -448,7 +448,7 @@ if ($fwhostsettings{'ACTION'} eq 'savehost') } } #only check plausi when no error till now - if (!$errormessage){ + if (!$errormessage){ &plausicheck("edithost"); } if($fwhostsettings{'actualize'} eq 'on' && $fwhostsettings{'newhost'} ne 'on' && $errormessage){ @@ -465,7 +465,7 @@ if ($fwhostsettings{'ACTION'} eq 'savehost') $customhost{$key}[3] = $fwhostsettings{'orgremark'}; &General::writehasharray("$confighost", \%customhost); undef %customhost; - } + } if (!$errormessage){ #get count if host was edited if($fwhostsettings{'actualize'} eq 'on'){ @@ -560,7 +560,7 @@ if ($fwhostsettings{'ACTION'} eq 'savegrp') #check standard networks if ($fwhostsettings{'grp2'} eq 'std_net'){ @target=$fwhostsettings{'DEFAULT_SRC_ADR'}; - $type='Standard Network'; + $type='Standard Network'; } #check custom networks if ($fwhostsettings{'grp2'} eq 'cust_net' && $fwhostsettings{'CUST_SRC_NET'} ne ''){ @@ -626,7 +626,7 @@ if ($fwhostsettings{'ACTION'} eq 'savegrp') $fwhostsettings{'remark'}=''; } #check if host/net exists in grp - + my $test="$grp,$fwhostsettings{'oldremark'},@target,$type"; foreach my $key (keys %customgrp) { my $test1="$customgrp{$key}[0],$customgrp{$key}[1],$customgrp{$key}[2],$customgrp{$key}[3]"; @@ -636,7 +636,7 @@ if ($fwhostsettings{'ACTION'} eq 'savegrp') } } } - + if (!$errormessage){ #on first save, we have an empty @target, so fill it with nothing my $targetvalues=@target; @@ -1168,7 +1168,7 @@ if ($fwhostsettings{'ACTION'} eq 'changegrpremark') { $customgrp{$key}[1]=''; $customgrp{$key}[1]=$fwhostsettings{'newrem'}; - } + } } &General::writehasharray("$configgrp", \%customgrp); $fwhostsettings{'update'}='on'; @@ -1218,7 +1218,7 @@ if ($fwhostsettings{'ACTION'} eq 'changesrvgrpremark') { $customservicegrp{$key}[1]=''; $customservicegrp{$key}[1]=$fwhostsettings{'newsrvrem'}; - } + } } &General::writehasharray("$configsrvgrp", \%customservicegrp); $fwhostsettings{'updatesrvgrp'}='on'; @@ -1323,7 +1323,7 @@ sub showmenu {
END &Header::closebox(); - + } # Add sub addnet @@ -1367,11 +1367,11 @@ END if ($fwhostsettings{'ACTION'} eq 'edithost' || $fwhostsettings{'error'} eq 'on') { - + print " "; }else{ print " "; - } + } print "
"; &Header::closebox(); } @@ -1397,7 +1397,7 @@ sub addgrp $fwhostsettings{'oldgrpname'}=$fwhostsettings{'grp_name'}; my $grp=$fwhostsettings{'grp_name'}; my $rem=$fwhostsettings{'remark'}; - if ($fwhostsettings{'update'} eq ''){ + if ($fwhostsettings{'update'} eq ''){ print< @@ -1869,9 +1869,9 @@ sub viewtablenet &General::readhasharray("$fwconfiginp", \%fwinp); &General::readhasharray("$fwconfigout", \%fwout); - if (!keys %customnetwork) - { - print "
$Lang::tr{'fwhost empty'}"; + if (!keys %customnetwork) + { + print "
$Lang::tr{'fwhost empty'}"; }else{ print< @@ -1885,7 +1885,7 @@ END print" "; $col="bgcolor='${Header::colouryellow}'"; }elsif ($count % 2) - { + { $col="bgcolor='$color{'color20'}'"; print" "; }else @@ -1915,7 +1915,7 @@ END } print""; &Header::closebox(); - } + } } sub getcolor @@ -2015,9 +2015,9 @@ sub viewtablehost &General::readhasharray("$fwconfiginp", \%fwinp); &General::readhasharray("$fwconfigout", \%fwout); &General::readhasharray("$configgrp", \%customgrp); - if (!keys %customhost) - { - print "
$Lang::tr{'fwhost empty'}"; + if (!keys %customhost) + { + print "
$Lang::tr{'fwhost empty'}"; }else{ print< @@ -2085,7 +2085,7 @@ sub viewtablegrp my $delflag; my @counter; my %hash; - if (!keys %customgrp) + if (!keys %customgrp) { print "
$Lang::tr{'fwhost err emptytable'}"; }else{ @@ -2136,7 +2136,7 @@ sub viewtablegrp print""; $col="bgcolor='$color{'color22'}'"; } - my $ip=&getipforgroup($customgrp{$key}[2],$customgrp{$key}[3]); + my $ip=&getipforgroup($customgrp{$key}[2],$customgrp{$key}[3]); if ($ip eq ''){ print""; $col="bgcolor='${Header::colouryellow}'"; @@ -2548,7 +2548,7 @@ sub checkname } } return 1; - + } sub checkgroup { @@ -2574,7 +2574,7 @@ sub checkservice } sub checkip { - + my %hash=%{(shift)}; my $a=shift; foreach my $key (keys %hash) { @@ -2603,7 +2603,7 @@ sub checkservicegroup foreach my $key (keys %customservicegrp) { if( $customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} ){ $errormessage.=$Lang::tr{'fwhost err grpexist'}."
"; - + } } } @@ -2667,7 +2667,7 @@ sub get_name foreach my $network (sort keys %defaultNetworks) { return "$network" if ($val eq $defaultNetworks{$network}{'NAME'}); - } + } } sub gethostcount { @@ -2827,7 +2827,7 @@ sub deletefromgrp } } &General::writehasharray("$config",\%hash); - + } sub plausicheck { @@ -2893,13 +2893,13 @@ sub plausicheck $errormessage=$errormessage."
".$Lang::tr{'fwhost err netexist'}; $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'}; if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;} - } - #check if network ip already exists + } + #check if network ip already exists if (!&checkip(\%customnetwork,1)) { $errormessage=$errormessage."
".$Lang::tr{'fwhost err net'}; if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;} - } + } #check if host with this name already exists &General::readhasharray("$confighost", \%customhost); if (!&checkname(\%customhost)) @@ -2920,7 +2920,7 @@ sub getipforgroup my $name=$_[0], my $type=$_[1]; my $value; - + #get address from IPSEC NETWORK if ($type eq 'IpSec Network'){ foreach my $key (keys %ipsecconf) { @@ -2946,7 +2946,7 @@ sub getipforgroup } &deletefromgrp($name,$configgrp); } - + #get address from IPSEC HOST if ($type eq 'IpSec Host'){ foreach my $key (keys %ipsecconf) { @@ -2956,7 +2956,7 @@ sub getipforgroup } &deletefromgrp($name,$configgrp); } - + #get address from ovpn ccd Net-2-Net if ($type eq 'OpenVPN N-2-N'){ foreach my $key (keys %ccdhost) { @@ -2968,7 +2968,7 @@ sub getipforgroup } &deletefromgrp($name,$configgrp); } - + #get address from ovpn ccd static host if ($type eq 'OpenVPN static host'){ foreach my $key (keys %ccdhost) { @@ -2980,7 +2980,7 @@ sub getipforgroup } &deletefromgrp($name,$configgrp); } - + #get address from ovpn ccd static net if ($type eq 'OpenVPN static network'){ foreach my $key (keys %ccdnet) { @@ -2991,7 +2991,7 @@ sub getipforgroup } } } - + #check custom addresses if ($type eq 'Custom Host'){ foreach my $key (keys %customhost) { @@ -3001,7 +3001,7 @@ sub getipforgroup } } } - + ##check custom networks if ($type eq 'Custom Network'){ foreach my $key (keys %customnetwork) { @@ -3010,7 +3010,7 @@ sub getipforgroup } } } - + #check standard networks if ($type eq 'Standard Network'){ if ($name =~ /OpenVPN/i){ @@ -3060,7 +3060,7 @@ sub decrease } } } - + if (($customgrp{$key}[0] eq $grp) && ($customgrp{$key}[3] eq 'Custom Host')){ foreach my $key2 (sort keys %customhost){ if ($customhost{$key2}[0] eq $customgrp{$key}[2]){ @@ -3068,7 +3068,7 @@ sub decrease last; } } - + } } &General::writehasharray("$confignet", \%customnetwork); @@ -3079,7 +3079,7 @@ sub decreaseservice my $grp=$_[0]; &General::readhasharray("$configsrv", \%customservice); &General::readhasharray("$configsrvgrp", \%customservicegrp); - + foreach my $key (sort keys %customservicegrp){ if ($customservicegrp{$key}[0] eq $grp ){ foreach my $key2 (sort keys %customservice){ @@ -3090,7 +3090,7 @@ sub decreaseservice } } &General::writehasharray("$configsrv", \%customservice); - + } sub changenameinfw { @@ -3130,7 +3130,7 @@ sub changenameinfw } sub checkports { - + my %hash=%{(shift)}; #check empty fields if ($fwhostsettings{'SRV_NAME'} eq '' ){ @@ -3145,7 +3145,7 @@ sub checkports } #change dashes with : $fwhostsettings{'SRV_PORT'}=~ tr/-/:/; - + if ($fwhostsettings{'SRV_PORT'} eq "*") { $fwhostsettings{'SRV_PORT'} = "1:65535"; } diff --git a/html/cgi-bin/getrrdimage.cgi b/html/cgi-bin/getrrdimage.cgi index 26bcf09051..26e026bba9 100644 --- a/html/cgi-bin/getrrdimage.cgi +++ b/html/cgi-bin/getrrdimage.cgi @@ -52,8 +52,8 @@ my $range = lc $query{'range'}; # lower case unless(($origin =~ /^\w+?\.cgi$/) && ($graph =~ /^[\w\-.,; ]+?$/) && ($range ~~ @Graphs::time_ranges)) { # Send HTTP headers _start_svg_output(); - - _print_error("URL parameters missing or malformed."); + + _print_error("URL parameters missing or malformed."); exit; } @@ -62,13 +62,13 @@ unless(($origin =~ /^\w+?\.cgi$/) && ($graph =~ /^[\w\-.,; ]+?$/) && ($range ~~ unless(($origin ~~ @supported_origins) || ($origin eq "getrrdimage.cgi")) { # Rewrite to old URL format: /[graph origin cgi]?[graph name]?[time range] my $location = "https://$ENV{'SERVER_NAME'}:$ENV{'SERVER_PORT'}/cgi-bin/${origin}?${graph}?${range}"; - + # Send HTTP redirect print "Status: 302 Found\n"; print "Location: $location\n"; print "Content-type: text/html; charset=UTF-8\n"; print "\n"; # End of HTTP headers - + print "Unsupported origin, request redirected to '$location'"; exit; } diff --git a/html/cgi-bin/gpl.cgi b/html/cgi-bin/gpl.cgi index 140fd2178b..029b048e8c 100644 --- a/html/cgi-bin/gpl.cgi +++ b/html/cgi-bin/gpl.cgi @@ -57,7 +57,7 @@ print <
END -; +; if ( -e "/usr/share/doc/licenses/GPLv3" ) { print '$Lang::tr{'ccd iroutehint'}
$Lang::tr{'ccd iroute2'} DNS2: WINS:

- + END ; &Header::closebox(); @@ -5147,7 +5147,7 @@ END } } } - + #default setzen if ($cgiparams{'DCIPHER'} eq '') { $cgiparams{'DCIPHER'} = 'AES-256-CBC'; @@ -5275,8 +5275,8 @@ END $activeonrun = ""; } else { $activeonrun = "disabled='disabled'"; - } - &Header::openbox('100%', 'LEFT', $Lang::tr{'global settings'}); + } + &Header::openbox('100%', 'LEFT', $Lang::tr{'global settings'}); print <
@@ -5293,7 +5293,7 @@ END print "$Lang::tr{'ovpn on blue'}"; print ""; } - if (&haveOrangeNet()) { + if (&haveOrangeNet()) { print "$Lang::tr{'ovpn on orange'}"; print ""; } @@ -5310,7 +5310,7 @@ END $Lang::tr{'ovpn subnet'}
$Lang::tr{'protocol'} + $Lang::tr{'destination port'}: $Lang::tr{'MTU'}  @@ -5363,12 +5363,12 @@ END

END -; - +; + if ( $srunning eq "yes" ) { print ""; print ""; - print ""; + print ""; print ""; } else{ print ""; @@ -5378,13 +5378,13 @@ END -e "${General::swroot}/ovpn/ca/dh1024.pem" && -e "${General::swroot}/ovpn/certs/servercert.pem" && -e "${General::swroot}/ovpn/certs/serverkey.pem") && - (( $cgiparams{'ENABLED'} eq 'on') || + (( $cgiparams{'ENABLED'} eq 'on') || ( $cgiparams{'ENABLED_BLUE'} eq 'on') || ( $cgiparams{'ENABLED_ORANGE'} eq 'on'))){ print ""; } else { - print ""; - } + print ""; + } } print "
"; &Header::closebox(); @@ -5476,7 +5476,7 @@ END my @output = ""; my @tustate = ""; my $tport = $confighash{$key}[22]; - my $tnet = new Net::Telnet ( Timeout=>5, Errmode=>'return', Port=>$tport); + my $tnet = new Net::Telnet ( Timeout=>5, Errmode=>'return', Port=>$tport); if ($tport ne '') { $tnet->open('127.0.0.1'); @output = $tnet->cmd(String => 'state', Prompt => '/(END.*\n|ERROR:.*\n)/'); @@ -5526,7 +5526,7 @@ END print <$active - +
@@ -5560,7 +5560,7 @@ END ; } else { print " "; } - if ($confighash{$key}[4] eq 'cert' && -f "${General::swroot}/ovpn/certs/$confighash{$key}[1].p12") { + if ($confighash{$key}[4] eq 'cert' && -f "${General::swroot}/ovpn/certs/$confighash{$key}[1].p12") { print < @@ -5929,7 +5929,7 @@ END - +

END ; diff --git a/html/cgi-bin/p2p-block.cgi b/html/cgi-bin/p2p-block.cgi deleted file mode 100644 index d14725504d..0000000000 --- a/html/cgi-bin/p2p-block.cgi +++ /dev/null @@ -1,154 +0,0 @@ -#!/usr/bin/perl -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2013 # -# # -# This program is free software: you can redistribute it and/or modify # -# it under the terms of the GNU General Public License as published by # -# the Free Software Foundation, either version 3 of the License, or # -# (at your option) any later version. # -# # -# This program is distributed in the hope that it will be useful, # -# but WITHOUT ANY WARRANTY; without even the implied warranty of # -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # -# GNU General Public License for more details. # -# # -# You should have received a copy of the GNU General Public License # -# along with this program. If not, see . # -# # -############################################################################### -# Author: Alexander Marx (Amarx@ipfire.org) # -############################################################################### - -use strict; -no warnings 'uninitialized'; -# enable only the following on debugging purpose -#use warnings; -#use CGI::Carp 'fatalsToBrowser'; - -require '/var/ipfire/general-functions.pl'; -require "${General::swroot}/lang.pl"; -require "${General::swroot}/header.pl"; - -my $errormessage = ''; -my $notice; -my $p2pfile = "${General::swroot}/firewall/p2protocols"; - -my @p2ps = (); -my %fwdfwsettings = (); -my %color = (); -my %mainsettings = (); - -&General::readhash("${General::swroot}/main/settings", \%mainsettings); -&General::readhash("/srv/web/ipfire/html/themes/ipfire/include/colors.txt", \%color); - -&Header::showhttpheaders(); -&Header::getcgihash(\%fwdfwsettings); - -if ($fwdfwsettings{'ACTION'} eq 'togglep2p') { - open( FILE, "<$p2pfile") or die "Unable to read $p2pfile"; - @p2ps = ; - close FILE; - open( FILE, ">$p2pfile") or die "Unable to write $p2pfile"; - foreach my $p2pentry (sort @p2ps) { - my @p2pline = split( /\;/, $p2pentry); - if ($p2pline[1] eq $fwdfwsettings{'P2PROT'}) { - if ($p2pline[2] eq 'on') { - $p2pline[2] = 'off'; - } else { - $p2pline[2] = 'on'; - } - } - print FILE "$p2pline[0];$p2pline[1];$p2pline[2];\n"; - } - close FILE; - - &General::firewall_config_changed(); - - $notice = $Lang::tr{'p2p block save notice'}; -} - -&Header::openpage($Lang::tr{'p2p block'}, 1, ''); -&Header::openbigbox('100%', 'center', $errormessage); - -if ($notice) { - &Header::openbox('100%', 'left', $Lang::tr{'notice'}); - print "$notice"; - &Header::closebox(); -} - -my $gif; - -open(FILE, "<$p2pfile") or die "Unable to read $p2pfile"; -@p2ps = ; -close FILE; - -&Header::openbox('100%', 'center',); -print < - - - $Lang::tr{'protocol'} - - - $Lang::tr{'status'} - - -END -my $lines=0; -my $col=""; -foreach my $p2pentry (sort @p2ps) { - my @p2pline = split( /\;/, $p2pentry); - if ($p2pline[2] eq 'on') { - $gif = "/images/on.gif" - } else { - $gif = "/images/off.gif" - } - if ($lines % 2) { - print ""; - $col="bgcolor='$color{'color20'}'"; } - else { - print ""; - $col="bgcolor='$color{'color22'}'"; } - print < - $p2pline[0]: - - -
- - - -
- - -END -$lines++; -} - -print < - - - - - - - - -
- - - $Lang::tr{'outgoing firewall p2p allow'} -
- - - $Lang::tr{'outgoing firewall p2p deny'} -
-END - -&Header::closebox(); - -&Header::closebigbox(); -&Header::closepage(); diff --git a/html/cgi-bin/pakfire.cgi b/html/cgi-bin/pakfire.cgi index 51f586aa25..65c67fb90c 100644 --- a/html/cgi-bin/pakfire.cgi +++ b/html/cgi-bin/pakfire.cgi @@ -2,7 +2,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2011 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2022 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -381,7 +381,7 @@ END $Lang::tr{'pakfire available addons'} $Lang::tr{'pakfire installed addons'} -

$Lang::tr{'pakfire install description'}

+

$Lang::tr{'pakfire install description'}

-

$Lang::tr{'pakfire uninstall description'}

+

$Lang::tr{'pakfire uninstall description'}

"; @@ -309,12 +309,12 @@ for $i ( 0 .. $#wol_devices ) my $wol_iface = $wol_devices[$i]{'IFace'}; my $wol_txt = &Header::cleanhtml($wol_devices[$i]{'Comment'}); - if ( (($cgiparams{'ACTION'} eq 'edit') || ($cgiparams{'ACTION'} eq 'update')) && ($i == $cgiparams{'ID'}) ) + if ( (($cgiparams{'ACTION'} eq 'edit') || ($cgiparams{'ACTION'} eq 'update')) && ($i == $cgiparams{'ID'}) ) { print ""; $col="bgcolor='${Header::colouryellow}'"; } - elsif ( $i % 2) + elsif ( $i % 2) { print ""; $col="bgcolor='$color{'color20'}'"; @@ -332,7 +332,7 @@ for $i ( 0 .. $#wol_devices ) END ; - if ( (($wol_iface eq 'blue') && ! &haveBlueNet()) + if ( (($wol_iface eq 'blue') && ! &haveBlueNet()) || (($wol_iface eq 'orange') && ! &haveOrangeNet()) ) { # configured IFace (momentarily) not available -> now wakeup button/image @@ -384,7 +384,7 @@ sub ReadConfig { # datafileformat: # ID,MAC,IFACE,,Comment - # + # my @tmpfile = (); if ( open(FILE, "$datafile") ) { @@ -421,14 +421,14 @@ sub WriteConfig unless(&General::validmac($wol_devices[$i]{'MAC'})) { next; } unshift (@tmp_clients, uc($wol_devices[$i]{'MAC'}).",$wol_devices[$i]{'IFace'},,$wol_devices[$i]{'Comment'}"); } - + # sort tmp_clients on MAC @tmp_clients = sort ( @tmp_clients ); open(FILE, ">$datafile") or die 'hosts datafile error'; my $count = 0; - foreach $line (@tmp_clients) + foreach $line (@tmp_clients) { print FILE "$count,$line\n"; $count++; diff --git a/html/cgi-bin/webaccess.cgi b/html/cgi-bin/webaccess.cgi index 934fe6bebc..b819dd3096 100644 --- a/html/cgi-bin/webaccess.cgi +++ b/html/cgi-bin/webaccess.cgi @@ -82,7 +82,7 @@ if ((-e $svhosts_file) && (!-z $svhosts_file)) if (($cgiparams{'ACTION'} eq 'submit') && ($is_supervisor)) { - if ( ($cgiparams{'PASSWORD'} eq $proxysettings{'SUPERVISOR_PASSWORD'}) && (!($proxysettings{'SUPERVISOR_PASSWORD'} eq '')) || + if ( ($cgiparams{'PASSWORD'} eq $proxysettings{'SUPERVISOR_PASSWORD'}) && (!($proxysettings{'SUPERVISOR_PASSWORD'} eq '')) || ((defined($proxysettings{'SUPERVISOR_PASSWORD'})) && ($proxysettings{'SUPERVISOR_PASSWORD'} eq ''))) { &write_acl; @@ -269,7 +269,7 @@ sub readhash { $val =~ s/^\'//g; $val =~ s/\'$//g; - + # Untaint variables read from hash $var =~ /([A-Za-z0-9_-]*)/; $var = $1; $val =~ /([\w\W]*)/; $val = $1; diff --git a/html/cgi-bin/wireless.cgi b/html/cgi-bin/wireless.cgi index 35bdaaa605..27a2d9dd71 100644 --- a/html/cgi-bin/wireless.cgi +++ b/html/cgi-bin/wireless.cgi @@ -39,7 +39,7 @@ my %checked=(); my $errormessage = ''; my $filename = "${General::swroot}/wireless/config"; my $hostsfile = "${General::swroot}/main/hosts"; -our %dhcpsettings=(); +our %dhcpsettings=(); our %netsettings=(); $cgiparams{'ENABLED'} = 'off'; @@ -92,9 +92,9 @@ if ($cgiparams{'ACTION'} eq 'add') { $cgiparams{'SOURCE_IP'} = 'NONE'; } else { - unless(&General::validipormask($cgiparams{'SOURCE_IP'})) + unless(&General::validipormask($cgiparams{'SOURCE_IP'})) { - $errormessage = $Lang::tr{'invalid fixed ip address'}; + $errormessage = $Lang::tr{'invalid fixed ip address'}; goto ADDERROR; } } @@ -102,9 +102,9 @@ if ($cgiparams{'ACTION'} eq 'add') { $cgiparams{'SOURCE_MAC'} = 'NONE'; } else { - unless(&General::validmac($cgiparams{'SOURCE_MAC'})) - { - $errormessage = $Lang::tr{'invalid fixed mac address'}; + unless(&General::validmac($cgiparams{'SOURCE_MAC'})) + { + $errormessage = $Lang::tr{'invalid fixed mac address'}; } } @@ -323,7 +323,7 @@ foreach my $line (@current) } if ( $hname eq "" ) { my ($aliases, $addrtype, $length, @addrs); - ($hname, $aliases, $addrtype, $length, @addrs) = + ($hname, $aliases, $addrtype, $length, @addrs) = gethostbyaddr(pack("C4", split(/\./, $sourceip)), 2); } } diff --git a/html/cgi-bin/wirelessclient.cgi b/html/cgi-bin/wirelessclient.cgi index 7cd23aed46..19c5bea501 100644 --- a/html/cgi-bin/wirelessclient.cgi +++ b/html/cgi-bin/wirelessclient.cgi @@ -303,7 +303,7 @@ END $gdesc = $Lang::tr{'click to disable'}; } else { $gif = 'off.gif'; - $gdesc = $Lang::tr{'click to enable'}; + $gdesc = $Lang::tr{'click to enable'}; } # Colorize each line @@ -318,8 +318,6 @@ END my $encryption_mode = $Lang::tr{'unknown'}; if ($config[3] eq "NONE") { $encryption_mode = $Lang::tr{'wlan client encryption none'}; - } elsif ($config[3] eq "WEP") { - $encryption_mode = $Lang::tr{'wlan client encryption wep'}; } elsif ($config[3] eq "WPA") { $encryption_mode = $Lang::tr{'wlan client encryption wpa'}; } elsif ($config[3] eq "WPA2") { @@ -467,7 +465,6 @@ sub showEditBox() { $selected{'ENCRYPTION'}{'WPA3'} = ''; $selected{'ENCRYPTION'}{'WPA2'} = ''; $selected{'ENCRYPTION'}{'WPA'} = ''; - $selected{'ENCRYPTION'}{'WEP'} = ''; $selected{'ENCRYPTION'}{$settings{'ENCRYPTION'}} = "selected='selected'"; $selected{'WPA_MODE'} = (); @@ -511,7 +508,6 @@ sub showEditBox() { - @@ -576,7 +572,7 @@ sub showEditBox() {

- + $Lang::tr{'wlan client advanced settings'}: @@ -838,15 +834,7 @@ sub ValidKeyLength($$) { my $key_length = length($key); - if ($algo eq "WEP") { - # Key must be 13 or 26 characters. - if (($key_length == 13) || ($key_length == 26)) { - return 0; - } - - return 1; - - } elsif (($algo eq "WPA2") || ($algo eq "WPA")) { + if (($algo eq "WPA2") || ($algo eq "WPA")) { # Key must be between 8 and 63 chars. if (($key_length >= 8) && ($key_length <= 63)) { return 0; diff --git a/html/cgi-bin/zoneconf.cgi b/html/cgi-bin/zoneconf.cgi index 62f18e3086..07a1f51da3 100644 --- a/html/cgi-bin/zoneconf.cgi +++ b/html/cgi-bin/zoneconf.cgi @@ -67,7 +67,7 @@ my $extraHead = <= 1) && ($vlan_tag <= 4094)) { $VALIDATE_error = $Lang::tr{"zoneconf val vlan tag range error"}; @@ -507,7 +507,7 @@ END if ($access_selected{"NONE"} eq "") { $highlight = $_; } - + print <