├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .env ├── .fmf └── version ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── bug_report.md ├── dependabot.yml ├── renovate.json └── workflows │ ├── coverity_scan.yml │ ├── create-tag.yml │ ├── gobump.yml │ ├── pr_best_practices.yml │ ├── release.yml │ ├── stale-cleanup.yml │ ├── tests.yml │ └── trigger-gitlab.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitleaks.toml ├── .golangci.yml ├── .packit.yaml ├── .pylintrc ├── .tekton ├── osbuild-composer-pull-request.yaml └── osbuild-composer-push.yaml ├── CONTRIBUTING.md ├── Containerfile_golangci_lint ├── DEPLOYING.md ├── HACKING.md ├── LICENSE ├── Makefile ├── README.md ├── Schutzfile ├── cmd ├── README ├── osbuild-auth-tests │ ├── certificates.go │ └── main_test.go ├── osbuild-composer-cli-tests │ └── main_test.go ├── osbuild-composer-dbjobqueue-tests │ └── main_test.go ├── osbuild-composer │ ├── composer.go │ ├── config.go │ ├── config_test.go │ ├── main.go │ └── testdata │ │ ├── empty-config.toml │ │ └── test.toml ├── osbuild-koji-tests │ └── main_test.go ├── osbuild-mock-openid-provider │ └── main.go ├── osbuild-service-maintenance │ ├── aws.go │ ├── aws_test.go │ ├── config.go │ ├── db.go │ ├── db_test.go │ ├── export_test.go │ ├── gcp.go │ └── main.go ├── osbuild-store-dump │ └── main.go ├── osbuild-worker-executor │ ├── build_result.go │ ├── config.go │ ├── export_test.go │ ├── handler_build.go │ ├── handler_build_test.go │ ├── handler_log.go │ ├── handler_log_test.go │ ├── handler_result.go │ ├── handler_result_test.go │ ├── handler_root.go │ ├── handler_root_test.go │ ├── main.go │ ├── main_test.go │ └── routes.go └── osbuild-worker │ ├── config.go │ ├── config_test.go │ ├── export_test.go │ ├── jobimpl-awsec2.go │ ├── jobimpl-container-resolve.go │ ├── jobimpl-depsolve.go │ ├── jobimpl-depsolve_test.go │ ├── jobimpl-file-resolve.go │ ├── jobimpl-koji-finalize.go │ ├── jobimpl-koji-init.go │ ├── jobimpl-osbuild.go │ ├── jobimpl-osbuild_test.go │ ├── jobimpl-ostree-resolve.go │ ├── jobimpl-search.go │ ├── main.go │ ├── main_test.go │ └── rh-logrus-adapter.go ├── codecov.yml ├── containers ├── fauxauth │ └── fauxauth.py └── osbuild-composer │ └── entrypoint.py ├── distribution ├── Dockerfile-config ├── Dockerfile-fauxauth ├── Dockerfile-ubi ├── Dockerfile-ubi-maintenance ├── Dockerfile-ubi-packer ├── Dockerfile-worker ├── osbuild-composer-api.socket ├── osbuild-composer-prometheus.socket ├── osbuild-composer.conf ├── osbuild-composer.service ├── osbuild-composer.socket ├── osbuild-local-worker.socket ├── osbuild-remote-worker.socket ├── osbuild-remote-worker@.service └── osbuild-worker@.service ├── docker-compose.yml ├── docs ├── errors.md ├── osbuild-composer-cloud.svg ├── osbuild-composer-koji.svg ├── osbuild-composer.7.rst └── osbuild-composer.svg ├── go.mod ├── go.sum ├── image-types ├── README.md └── rhel8 │ ├── README.md │ ├── amazon-ec2.md │ ├── google-gce.md │ ├── kvm-guest-image.md │ ├── microsoft-azure.md │ ├── openstack.md │ ├── oracle-oci.md │ └── vmware.md ├── internal ├── auth │ ├── jwt.go │ ├── jwt_auth_handler.go │ ├── jwt_test.go │ └── middleware.go ├── client │ ├── blueprints.go │ ├── blueprints_non_el10_test.go │ ├── blueprints_test.go │ ├── client.go │ ├── client_test.go │ ├── compose.go │ ├── compose_test.go │ ├── integration_test.go │ ├── modules.go │ ├── modules_test.go │ ├── projects.go │ ├── projects_test.go │ ├── source.go │ ├── source_test.go │ ├── unit_test.go │ ├── utils.go │ └── weldr.go ├── cloud │ └── awscloud │ │ ├── autoscaling.go │ │ ├── awscloud.go │ │ ├── awscloud_test.go │ │ ├── client-interfaces.go │ │ ├── export_test.go │ │ ├── maintenance.go │ │ ├── mocks_test.go │ │ ├── secure-instance.go │ │ └── secure-instance_test.go ├── cloudapi │ ├── server.go │ └── v2 │ │ ├── compose.go │ │ ├── compose_test.go │ │ ├── depsolve.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── export_test.go │ │ ├── handler.go │ │ ├── imagerequest.go │ │ ├── imagerequest_test.go │ │ ├── middleware.go │ │ ├── openapi.v2.gen.go │ │ ├── openapi.v2.yml │ │ ├── search.go │ │ ├── server.go │ │ ├── v2_disk_test.go │ │ ├── v2_internal_test.go │ │ ├── v2_koji_test.go │ │ ├── v2_multi_tenancy_test.go │ │ └── v2_test.go ├── common │ ├── constants.go │ ├── context_hook.go │ ├── dependencies.go │ ├── echo_logrus.go │ ├── external_id.go │ ├── helpers.go │ ├── helpers_test.go │ ├── journal_hook.go │ ├── journal_hook_test.go │ ├── logger_middleware.go │ ├── operation_id.go │ ├── pointers.go │ ├── pointers_test.go │ ├── slogger │ │ ├── logrus.go │ │ ├── logrus_test.go │ │ └── noop.go │ ├── states.go │ └── states_test.go ├── jobqueue │ ├── fsjobqueue │ │ ├── fsjobqueue.go │ │ └── fsjobqueue_test.go │ └── jobqueuetest │ │ └── jobqueuetest.go ├── jsondb │ ├── db.go │ ├── db_private_test.go │ └── db_test.go ├── mocks │ ├── depsolvednf │ │ ├── depsolvednf.go │ │ └── mock_data.go │ ├── rpmmd │ │ ├── fixtures.go │ │ └── rpmmd_mock.go │ └── rpmrepo │ │ └── rpmrepo.go ├── osbuildexecutor │ ├── export_test.go │ ├── osbuild-executor.go │ ├── runner-common.go │ ├── runner-impl-aws-ec2.go │ ├── runner-impl-aws-ec2_test.go │ └── runner-impl-host.go ├── prometheus │ ├── constants.go │ ├── helpers.go │ ├── http_metrics.go │ ├── job_metrics.go │ ├── middleware.go │ └── status_metrics.go ├── remotefile │ ├── client.go │ ├── client_test.go │ ├── resolver.go │ ├── resolver_test.go │ └── spec.go ├── store │ ├── fixtures.go │ ├── json.go │ ├── json_test.go │ ├── store.go │ ├── store_test.go │ └── test │ │ ├── state-v12.json │ │ └── state-v13.json ├── target │ ├── aws_target.go │ ├── azure_image_target.go │ ├── azure_target.go │ ├── container_target.go │ ├── gcp_target.go │ ├── koji_target.go │ ├── koji_target_test.go │ ├── local_target.go │ ├── oci_target.go │ ├── target.go │ ├── target_test.go │ ├── targetresult.go │ ├── targetresult_test.go │ ├── vmware_target.go │ └── worker_server_target.go ├── test │ ├── apicall.go │ ├── helpers.go │ ├── request.go │ └── validator.go ├── tools.go ├── weldr │ ├── api.go │ ├── api_test.go │ ├── compose.go │ ├── compose_test.go │ ├── json.go │ ├── responses_test.go │ ├── upload.go │ └── util.go ├── weldrtypes │ ├── compose.go │ ├── imagebuild.go │ ├── package.go │ └── package_test.go └── worker │ ├── api │ ├── api.gen.go │ ├── api.go │ ├── errors.go │ └── openapi.yml │ ├── client.go │ ├── client_test.go │ ├── clienterrors │ └── errors.go │ ├── json.go │ ├── json_test.go │ ├── proxy_test.go │ ├── server.go │ └── server_test.go ├── krb5.conf ├── osbuild-composer.spec ├── pkg ├── jobqueue │ ├── dbjobqueue │ │ ├── dbjobqueue.go │ │ └── schemas │ │ │ ├── 001_jobs.sql │ │ │ ├── 002_channels.sql │ │ │ ├── 003_dependencies_cascade.sql │ │ │ ├── 004_heartbeats_cascade.sql │ │ │ ├── 005_jobs_expiry.sql │ │ │ ├── 006_retry_count.sql │ │ │ ├── 007_create_table_workers.sql │ │ │ ├── 008_workers_add_channel.sql │ │ │ └── 009_jobs_alter_result_type.sql │ └── jobqueue.go └── splunk_logger │ ├── environment_hook.go │ ├── environment_hook_test.go │ ├── go.mod │ ├── go.sum │ ├── splunk_hook.go │ ├── splunk_logger.go │ └── splunk_logger_test.go ├── repositories ├── README.md ├── centos-stream-10.json ├── centos-stream-9.json ├── rhel-8-no-aux-key.json ├── rhel-8.10-no-aux-key.json ├── rhel-8.4-no-aux-key.json ├── rhel-8.6-no-aux-key.json └── rhel-8.8-no-aux-key.json ├── rpmlint.config ├── schutzbot ├── ci_details.sh ├── containerbuild.sh ├── deploy.sh ├── mockbuild.sh ├── prepare-rhel-internal.sh ├── save_journal.sh ├── send_webhook.py ├── slack_notification.sh ├── start_iostats.sh ├── stop_iostats.sh ├── team_ssh_keys.txt ├── terraform ├── unregister.sh ├── update_github_status.sh └── upload_artifacts.sh ├── templates ├── .kube-linter-config.yml ├── README.md ├── composer.yml ├── dashboards │ ├── grafana-dashboard-image-builder-composer-general.configmap.yml │ ├── grafana-dashboard-image-builder-worker-api.configmap.yml │ └── grafana-dashboard-image-builder-worker-general.configmap.yml ├── openshift │ ├── composer.yml │ └── maintenance.yml └── packer │ ├── README.md │ ├── ansible │ ├── inventory │ │ ├── fedora-42-aarch64 │ │ │ └── group_vars │ │ │ │ └── all.yml │ │ ├── fedora-42-x86_64 │ │ │ └── group_vars │ │ │ │ └── all.yml │ │ ├── rhel-9-aarch64 │ │ │ └── group_vars │ │ │ │ └── all.yml │ │ └── rhel-9-x86_64 │ │ │ └── group_vars │ │ │ └── all.yml │ ├── playbook.yml │ └── roles │ │ └── common │ │ ├── files │ │ ├── osbuild-worker.toml │ │ ├── timber-vector.repo │ │ ├── worker-executor.service │ │ ├── worker-initialization-scripts │ │ │ ├── client_credentials.sh │ │ │ ├── get_aws_creds.sh │ │ │ ├── get_azure_creds.sh │ │ │ ├── get_gcp_creds.sh │ │ │ ├── get_koji_creds.sh │ │ │ ├── get_ldap_sa_mtls_creds.sh │ │ │ ├── get_oci_creds.sh │ │ │ ├── offline_token.sh │ │ │ ├── on_exit.sh │ │ │ ├── set_executor_hostname.sh │ │ │ ├── set_hostname.sh │ │ │ ├── subscription_manager.sh │ │ │ ├── vector.sh │ │ │ ├── worker_config.sh │ │ │ ├── worker_executor.sh │ │ │ └── worker_service.sh │ │ └── worker-initialization.service │ │ └── tasks │ │ ├── main.yml │ │ ├── packages.yml │ │ ├── subscribe.yml │ │ ├── unregister.yml │ │ ├── worker-config.yml │ │ └── worker-initialization-service.yml │ ├── config.pkr.hcl │ ├── variables.pkr.hcl │ └── worker.pkr.hcl ├── test ├── README.md ├── cases │ ├── api.sh │ ├── api │ │ ├── aws.s3.sh │ │ ├── aws.sh │ │ ├── azure.sh │ │ ├── common │ │ │ ├── aws.sh │ │ │ ├── common.sh │ │ │ ├── s3.sh │ │ │ └── vsphere.sh │ │ ├── container.registry.sh │ │ ├── gcp.sh │ │ ├── generic.s3.sh │ │ └── oci.sh │ ├── aws.sh │ ├── aws_s3.sh │ ├── azure.sh │ ├── azure_hyperv_gen2.sh │ ├── base_tests.sh │ ├── container-embedding.sh │ ├── container-upload.sh │ ├── cross-distro.sh │ ├── filesystem.sh │ ├── gcp.sh │ ├── generic_s3.sh │ ├── generic_s3_http.sh │ ├── generic_s3_https_insecure.sh │ ├── generic_s3_https_secure.sh │ ├── installers.sh │ ├── koji.sh │ ├── libvirt.sh │ ├── minimal-raw.sh │ ├── multi-tenancy.sh │ ├── oci.sh │ ├── openshift_virtualization.sh │ ├── ostree-ami-image.sh │ ├── ostree-ignition.sh │ ├── ostree-iot-qcow2.sh │ ├── ostree-ng.sh │ ├── ostree-raw-image.sh │ ├── ostree-simplified-installer.sh │ ├── ostree-vsphere.sh │ ├── ostree.sh │ ├── regression-composer-works-behind-satellite-fallback.sh │ ├── regression-composer-works-behind-satellite.sh │ ├── regression-excluded-dependency.sh │ ├── regression-include-excluded-packages.sh │ ├── regression-insecure-repo.sh │ ├── regression-no-explicit-rootfs-definition.sh │ ├── regression-old-worker-new-composer.sh │ ├── rhel-upgrade.sh │ ├── shared_lib.sh │ ├── ubi-wsl.sh │ ├── vmware.sh │ ├── weldr-distro-dot-notation-and-aliases.sh │ ├── worker-executor-crash.sh │ └── worker-executor.sh ├── data │ ├── ansible │ │ ├── check-minimal.yaml │ │ ├── check_install.yaml │ │ ├── check_ostree.yaml │ │ └── check_ostree_nort.yaml │ ├── azure │ │ └── deployment-template.json │ ├── cloud-init │ │ ├── meta-data │ │ └── user-data │ ├── composer │ │ ├── osbuild-composer-jwt.toml │ │ └── osbuild-composer-tls.toml │ ├── kerberos │ │ └── krb5-local.conf │ ├── keyring │ │ ├── id_rsa │ │ └── id_rsa.pub │ ├── koji │ │ └── koji.conf │ ├── repositories │ │ ├── centos-10.json │ │ ├── centos-9.json │ │ ├── centos-stream-10.json │ │ ├── centos-stream-9.json │ │ ├── fedora-41.json │ │ ├── fedora-42.json │ │ ├── rhel-10.0.json │ │ ├── rhel-10.1.json │ │ ├── rhel-10.2.json │ │ ├── rhel-10.json │ │ ├── rhel-8.10.json │ │ ├── rhel-8.4.json │ │ ├── rhel-8.5.json │ │ ├── rhel-8.6.json │ │ ├── rhel-8.7.json │ │ ├── rhel-8.8.json │ │ ├── rhel-8.9.json │ │ ├── rhel-8.json │ │ ├── rhel-9.0.json │ │ ├── rhel-9.1.json │ │ ├── rhel-9.2.json │ │ ├── rhel-9.3.json │ │ ├── rhel-9.4.json │ │ ├── rhel-9.5.json │ │ ├── rhel-9.6.json │ │ ├── rhel-9.7.json │ │ ├── rhel-9.8.json │ │ ├── rhel-9.json │ │ └── test-distro-1.json │ ├── rhel-upgrade │ │ ├── integration.xml │ │ ├── upgrade_prepare.sh │ │ └── upgrade_verify.sh │ ├── testrepo │ │ ├── README.md │ │ └── repodata │ │ │ ├── 130494033cb9bffa40828ebc814d016920d9ce5d60041467af283ffcf38adef0-primary.xml.gz │ │ │ ├── 2ac4e27794f840034a13bb60800aba194e89fcd2175c87f57cfbd649139feff3-comps-BaseOS.x86_64.xml.gz │ │ │ ├── 7b99933643e8bff43d3d82180e7d678fac89b6a1b9b8f5f88ea93a5c3b9b5dbd-filelists.xml.gz │ │ │ └── repomd.xml │ ├── worker │ │ ├── osbuild-worker-jwt.toml │ │ └── osbuild-worker-tls.toml │ └── x509 │ │ └── openssl.cnf ├── gitlab_ci_schedule_trigger.png └── gitlab_ci_scheduled_pipeline.png ├── tmt ├── plans │ └── edge-test.fmf └── tests │ ├── edge-test.fmf │ └── test.sh ├── tools ├── appsre-ansible │ └── rpmbuild.yml ├── appsre-build-deploy.sh ├── appsre-build-fedora-worker-packer.sh ├── appsre-build-worker-packer.sh ├── appsre-worker-packer-container.sh ├── apt-install-deps.sh ├── build-rpms.py ├── check-runners ├── check-snapshots ├── ci-build-worker-packer.sh ├── dbtest-entrypoint.sh ├── dbtest-prepare-env.sh ├── dbtest-run-migrations.sh ├── define-compose-url.sh ├── deploy-openstack ├── deploy-qemu ├── deploy │ └── test │ │ ├── files │ │ └── run │ │ │ └── provision-scripts │ │ │ └── deploy.sh │ │ └── user-data.yml ├── gen-certs.sh ├── gen-ssh.sh ├── gen-user-data ├── generic_s3_https_test.sh ├── generic_s3_test.sh ├── koji-compose.py ├── libvirt_test.sh ├── prepare-source.sh ├── provision.sh ├── rpm_spec_add_provides_bundle.sh ├── rpm_spec_vendor2provides ├── run-koji-container.sh ├── run-mock-auth-servers.sh ├── s3_test.sh ├── set-env-variables.sh └── update-distgit.py └── vendor ├── cel.dev └── expr │ ├── .bazelversion │ ├── .gitattributes │ ├── .gitignore │ ├── BUILD.bazel │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── MODULE.bazel │ ├── README.md │ ├── WORKSPACE │ ├── WORKSPACE.bzlmod │ ├── checked.pb.go │ ├── cloudbuild.yaml │ ├── eval.pb.go │ ├── explain.pb.go │ ├── regen_go_proto.sh │ ├── regen_go_proto_canonical_protos.sh │ ├── syntax.pb.go │ └── value.pb.go ├── cloud.google.com └── go │ ├── LICENSE │ ├── auth │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── auth.go │ ├── credentials │ │ ├── compute.go │ │ ├── detect.go │ │ ├── doc.go │ │ ├── filetypes.go │ │ ├── internal │ │ │ ├── externalaccount │ │ │ │ ├── aws_provider.go │ │ │ │ ├── executable_provider.go │ │ │ │ ├── externalaccount.go │ │ │ │ ├── file_provider.go │ │ │ │ ├── info.go │ │ │ │ ├── programmatic_provider.go │ │ │ │ ├── url_provider.go │ │ │ │ └── x509_provider.go │ │ │ ├── externalaccountuser │ │ │ │ └── externalaccountuser.go │ │ │ ├── gdch │ │ │ │ └── gdch.go │ │ │ ├── impersonate │ │ │ │ ├── idtoken.go │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ └── sts_exchange.go │ │ └── selfsignedjwt.go │ ├── grpctransport │ │ ├── dial_socketopt.go │ │ ├── directpath.go │ │ ├── grpctransport.go │ │ └── pool.go │ ├── httptransport │ │ ├── httptransport.go │ │ └── transport.go │ ├── internal │ │ ├── compute │ │ │ ├── compute.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── credsfile │ │ │ ├── credsfile.go │ │ │ ├── filetype.go │ │ │ └── parse.go │ │ ├── internal.go │ │ ├── jwt │ │ │ └── jwt.go │ │ └── transport │ │ │ ├── cba.go │ │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ ├── secureconnect_cert.go │ │ │ └── workload_cert.go │ │ │ ├── s2a.go │ │ │ └── transport.go │ ├── oauth2adapt │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ └── oauth2adapt.go │ └── threelegged.go │ ├── compute │ ├── LICENSE │ ├── apiv1 │ │ ├── accelerator_types_client.go │ │ ├── addresses_client.go │ │ ├── autoscalers_client.go │ │ ├── auxiliary.go │ │ ├── auxiliary_go123.go │ │ ├── backend_buckets_client.go │ │ ├── backend_services_client.go │ │ ├── computepb │ │ │ └── compute.pb.go │ │ ├── disk_types_client.go │ │ ├── disks_client.go │ │ ├── doc.go │ │ ├── external_vpn_gateways_client.go │ │ ├── firewall_policies_client.go │ │ ├── firewalls_client.go │ │ ├── forwarding_rules_client.go │ │ ├── gapic_metadata.json │ │ ├── global_addresses_client.go │ │ ├── global_forwarding_rules_client.go │ │ ├── global_network_endpoint_groups_client.go │ │ ├── global_operations_client.go │ │ ├── global_organization_operations_client.go │ │ ├── global_public_delegated_prefixes_client.go │ │ ├── health_checks_client.go │ │ ├── helpers.go │ │ ├── image_family_views_client.go │ │ ├── images_client.go │ │ ├── instance_group_manager_resize_requests_client.go │ │ ├── instance_group_managers_client.go │ │ ├── instance_groups_client.go │ │ ├── instance_settings_client.go │ │ ├── instance_templates_client.go │ │ ├── instances_client.go │ │ ├── instant_snapshots_client.go │ │ ├── interconnect_attachment_groups_client.go │ │ ├── interconnect_attachments_client.go │ │ ├── interconnect_groups_client.go │ │ ├── interconnect_locations_client.go │ │ ├── interconnect_remote_locations_client.go │ │ ├── interconnects_client.go │ │ ├── license_codes_client.go │ │ ├── licenses_client.go │ │ ├── machine_images_client.go │ │ ├── machine_types_client.go │ │ ├── network_attachments_client.go │ │ ├── network_edge_security_services_client.go │ │ ├── network_endpoint_groups_client.go │ │ ├── network_firewall_policies_client.go │ │ ├── network_profiles_client.go │ │ ├── networks_client.go │ │ ├── node_groups_client.go │ │ ├── node_templates_client.go │ │ ├── node_types_client.go │ │ ├── operations.go │ │ ├── packet_mirrorings_client.go │ │ ├── projects_client.go │ │ ├── public_advertised_prefixes_client.go │ │ ├── public_delegated_prefixes_client.go │ │ ├── region_autoscalers_client.go │ │ ├── region_backend_services_client.go │ │ ├── region_commitments_client.go │ │ ├── region_disk_types_client.go │ │ ├── region_disks_client.go │ │ ├── region_health_check_services_client.go │ │ ├── region_health_checks_client.go │ │ ├── region_instance_group_managers_client.go │ │ ├── region_instance_groups_client.go │ │ ├── region_instance_templates_client.go │ │ ├── region_instances_client.go │ │ ├── region_instant_snapshots_client.go │ │ ├── region_network_endpoint_groups_client.go │ │ ├── region_network_firewall_policies_client.go │ │ ├── region_notification_endpoints_client.go │ │ ├── region_operations_client.go │ │ ├── region_security_policies_client.go │ │ ├── region_ssl_certificates_client.go │ │ ├── region_ssl_policies_client.go │ │ ├── region_target_http_proxies_client.go │ │ ├── region_target_https_proxies_client.go │ │ ├── region_target_tcp_proxies_client.go │ │ ├── region_url_maps_client.go │ │ ├── region_zones_client.go │ │ ├── regions_client.go │ │ ├── reservation_blocks_client.go │ │ ├── reservation_sub_blocks_client.go │ │ ├── reservations_client.go │ │ ├── resource_policies_client.go │ │ ├── routers_client.go │ │ ├── routes_client.go │ │ ├── security_policies_client.go │ │ ├── service_attachments_client.go │ │ ├── snapshot_settings_client.go │ │ ├── snapshots_client.go │ │ ├── ssl_certificates_client.go │ │ ├── ssl_policies_client.go │ │ ├── storage_pool_types_client.go │ │ ├── storage_pools_client.go │ │ ├── subnetworks_client.go │ │ ├── target_grpc_proxies_client.go │ │ ├── target_http_proxies_client.go │ │ ├── target_https_proxies_client.go │ │ ├── target_instances_client.go │ │ ├── target_pools_client.go │ │ ├── target_ssl_proxies_client.go │ │ ├── target_tcp_proxies_client.go │ │ ├── target_vpn_gateways_client.go │ │ ├── url_maps_client.go │ │ ├── version.go │ │ ├── vpn_gateways_client.go │ │ ├── vpn_tunnels_client.go │ │ ├── zone_operations_client.go │ │ └── zones_client.go │ ├── internal │ │ └── version.go │ └── metadata │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── log.go │ │ ├── metadata.go │ │ ├── retry.go │ │ ├── retry_linux.go │ │ ├── syscheck.go │ │ ├── syscheck_linux.go │ │ └── syscheck_windows.go │ ├── iam │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── apiv1 │ │ └── iampb │ │ │ ├── iam_policy.pb.go │ │ │ ├── options.pb.go │ │ │ ├── policy.pb.go │ │ │ └── resource_policy_member.pb.go │ └── iam.go │ ├── internal │ ├── .repo-metadata-full.json │ ├── README.md │ ├── annotate.go │ ├── gen_info.sh │ ├── optional │ │ └── optional.go │ ├── retry.go │ ├── trace │ │ └── trace.go │ └── version │ │ ├── update_version.sh │ │ └── version.go │ ├── monitoring │ ├── LICENSE │ ├── apiv3 │ │ └── v2 │ │ │ ├── alert_policy_client.go │ │ │ ├── auxiliary.go │ │ │ ├── auxiliary_go123.go │ │ │ ├── doc.go │ │ │ ├── gapic_metadata.json │ │ │ ├── group_client.go │ │ │ ├── helpers.go │ │ │ ├── metric_client.go │ │ │ ├── monitoringpb │ │ │ ├── alert.pb.go │ │ │ ├── alert_service.pb.go │ │ │ ├── common.pb.go │ │ │ ├── dropped_labels.pb.go │ │ │ ├── group.pb.go │ │ │ ├── group_service.pb.go │ │ │ ├── metric.pb.go │ │ │ ├── metric_service.pb.go │ │ │ ├── mutation_record.pb.go │ │ │ ├── notification.pb.go │ │ │ ├── notification_service.pb.go │ │ │ ├── query_service.pb.go │ │ │ ├── service.pb.go │ │ │ ├── service_service.pb.go │ │ │ ├── snooze.pb.go │ │ │ ├── snooze_service.pb.go │ │ │ ├── span_context.pb.go │ │ │ ├── uptime.pb.go │ │ │ └── uptime_service.pb.go │ │ │ ├── notification_channel_client.go │ │ │ ├── query_client.go │ │ │ ├── service_monitoring_client.go │ │ │ ├── snooze_client.go │ │ │ ├── uptime_check_client.go │ │ │ └── version.go │ └── internal │ │ └── version.go │ └── storage │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── TESTING.md │ ├── acl.go │ ├── bucket.go │ ├── client.go │ ├── copy.go │ ├── doc.go │ ├── dynamic_delay.go │ ├── emulator_test.sh │ ├── experimental │ └── experimental.go │ ├── grpc_client.go │ ├── grpc_dp.go │ ├── grpc_metrics.go │ ├── grpc_reader.go │ ├── grpc_reader_multi_range.go │ ├── grpc_writer.go │ ├── hmac.go │ ├── http_client.go │ ├── iam.go │ ├── internal │ ├── apiv2 │ │ ├── auxiliary.go │ │ ├── auxiliary_go123.go │ │ ├── doc.go │ │ ├── gapic_metadata.json │ │ ├── helpers.go │ │ ├── storage_client.go │ │ ├── storagepb │ │ │ └── storage.pb.go │ │ └── version.go │ ├── experimental.go │ └── version.go │ ├── invoke.go │ ├── notifications.go │ ├── option.go │ ├── post_policy_v4.go │ ├── reader.go │ ├── storage.go │ ├── storage.replay │ ├── trace.go │ └── writer.go ├── dario.cat └── mergo │ ├── .deepsource.toml │ ├── .gitignore │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.json │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── doc.go │ ├── map.go │ ├── merge.go │ └── mergo.go ├── github.com ├── Azure │ └── azure-sdk-for-go │ │ └── sdk │ │ ├── azcore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── arm │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ │ └── resource │ │ │ │ │ ├── resource_identifier.go │ │ │ │ │ └── resource_type.go │ │ │ ├── policy │ │ │ │ └── policy.go │ │ │ ├── resource_identifier.go │ │ │ ├── resource_type.go │ │ │ └── runtime │ │ │ │ ├── pipeline.go │ │ │ │ ├── policy_bearer_token.go │ │ │ │ ├── policy_register_rp.go │ │ │ │ ├── policy_trace_namespace.go │ │ │ │ └── runtime.go │ │ ├── ci.yml │ │ ├── cloud │ │ │ ├── cloud.go │ │ │ └── doc.go │ │ ├── core.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── etag.go │ │ ├── internal │ │ │ ├── exported │ │ │ │ ├── exported.go │ │ │ │ ├── pipeline.go │ │ │ │ ├── request.go │ │ │ │ └── response_error.go │ │ │ ├── log │ │ │ │ └── log.go │ │ │ ├── pollers │ │ │ │ ├── async │ │ │ │ │ └── async.go │ │ │ │ ├── body │ │ │ │ │ └── body.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── loc │ │ │ │ │ └── loc.go │ │ │ │ ├── op │ │ │ │ │ └── op.go │ │ │ │ ├── poller.go │ │ │ │ └── util.go │ │ │ └── shared │ │ │ │ ├── constants.go │ │ │ │ └── shared.go │ │ ├── log │ │ │ ├── doc.go │ │ │ └── log.go │ │ ├── policy │ │ │ ├── doc.go │ │ │ └── policy.go │ │ ├── runtime │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── pager.go │ │ │ ├── pipeline.go │ │ │ ├── policy_api_version.go │ │ │ ├── policy_bearer_token.go │ │ │ ├── policy_body_download.go │ │ │ ├── policy_http_header.go │ │ │ ├── policy_http_trace.go │ │ │ ├── policy_include_response.go │ │ │ ├── policy_key_credential.go │ │ │ ├── policy_logging.go │ │ │ ├── policy_request_id.go │ │ │ ├── policy_retry.go │ │ │ ├── policy_sas_credential.go │ │ │ ├── policy_telemetry.go │ │ │ ├── poller.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── transport_default_dialer_other.go │ │ │ ├── transport_default_dialer_wasm.go │ │ │ └── transport_default_http_client.go │ │ ├── streaming │ │ │ ├── doc.go │ │ │ └── progress.go │ │ ├── to │ │ │ ├── doc.go │ │ │ └── to.go │ │ └── tracing │ │ │ ├── constants.go │ │ │ └── tracing.go │ │ ├── azidentity │ │ ├── .gitignore │ │ ├── BREAKING_CHANGES.md │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── TOKEN_CACHING.MD │ │ ├── TROUBLESHOOTING.md │ │ ├── assets.json │ │ ├── authentication_record.go │ │ ├── azidentity.go │ │ ├── azure_cli_credential.go │ │ ├── azure_developer_cli_credential.go │ │ ├── azure_pipelines_credential.go │ │ ├── chained_token_credential.go │ │ ├── ci.yml │ │ ├── client_assertion_credential.go │ │ ├── client_certificate_credential.go │ │ ├── client_secret_credential.go │ │ ├── confidential_client.go │ │ ├── default_azure_credential.go │ │ ├── developer_credential_util.go │ │ ├── device_code_credential.go │ │ ├── environment_credential.go │ │ ├── errors.go │ │ ├── go.work │ │ ├── interactive_browser_credential.go │ │ ├── internal │ │ │ └── cache.go │ │ ├── logging.go │ │ ├── managed-identity-matrix.json │ │ ├── managed_identity_client.go │ │ ├── managed_identity_credential.go │ │ ├── on_behalf_of_credential.go │ │ ├── public_client.go │ │ ├── test-resources-post.ps1 │ │ ├── test-resources-pre.ps1 │ │ ├── test-resources.bicep │ │ ├── username_password_credential.go │ │ ├── version.go │ │ └── workload_identity.go │ │ ├── internal │ │ ├── LICENSE.txt │ │ ├── diag │ │ │ ├── diag.go │ │ │ └── doc.go │ │ ├── errorinfo │ │ │ ├── doc.go │ │ │ └── errorinfo.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── log │ │ │ ├── doc.go │ │ │ └── log.go │ │ ├── poller │ │ │ └── util.go │ │ ├── temporal │ │ │ └── resource.go │ │ └── uuid │ │ │ ├── doc.go │ │ │ └── uuid.go │ │ ├── resourcemanager │ │ ├── compute │ │ │ └── armcompute │ │ │ │ └── v5 │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── assets.json │ │ │ │ ├── autorest.md │ │ │ │ ├── availabilitysets_client.go │ │ │ │ ├── build.go │ │ │ │ ├── capacityreservationgroups_client.go │ │ │ │ ├── capacityreservations_client.go │ │ │ │ ├── ci.yml │ │ │ │ ├── client_factory.go │ │ │ │ ├── cloudserviceoperatingsystems_client.go │ │ │ │ ├── cloudserviceroleinstances_client.go │ │ │ │ ├── cloudserviceroles_client.go │ │ │ │ ├── cloudservices_client.go │ │ │ │ ├── cloudservicesupdatedomain_client.go │ │ │ │ ├── communitygalleries_client.go │ │ │ │ ├── communitygalleryimages_client.go │ │ │ │ ├── communitygalleryimageversions_client.go │ │ │ │ ├── constants.go │ │ │ │ ├── dedicatedhostgroups_client.go │ │ │ │ ├── dedicatedhosts_client.go │ │ │ │ ├── diskaccesses_client.go │ │ │ │ ├── diskencryptionsets_client.go │ │ │ │ ├── diskrestorepoint_client.go │ │ │ │ ├── disks_client.go │ │ │ │ ├── galleries_client.go │ │ │ │ ├── galleryapplications_client.go │ │ │ │ ├── galleryapplicationversions_client.go │ │ │ │ ├── galleryimages_client.go │ │ │ │ ├── galleryimageversions_client.go │ │ │ │ ├── gallerysharingprofile_client.go │ │ │ │ ├── images_client.go │ │ │ │ ├── loganalytics_client.go │ │ │ │ ├── models.go │ │ │ │ ├── models_serde.go │ │ │ │ ├── operations_client.go │ │ │ │ ├── options.go │ │ │ │ ├── proximityplacementgroups_client.go │ │ │ │ ├── resourceskus_client.go │ │ │ │ ├── responses.go │ │ │ │ ├── restorepointcollections_client.go │ │ │ │ ├── restorepoints_client.go │ │ │ │ ├── sharedgalleries_client.go │ │ │ │ ├── sharedgalleryimages_client.go │ │ │ │ ├── sharedgalleryimageversions_client.go │ │ │ │ ├── snapshots_client.go │ │ │ │ ├── sshpublickeys_client.go │ │ │ │ ├── time_rfc3339.go │ │ │ │ ├── usage_client.go │ │ │ │ ├── virtualmachineextensionimages_client.go │ │ │ │ ├── virtualmachineextensions_client.go │ │ │ │ ├── virtualmachineimages_client.go │ │ │ │ ├── virtualmachineimagesedgezone_client.go │ │ │ │ ├── virtualmachineruncommands_client.go │ │ │ │ ├── virtualmachines_client.go │ │ │ │ ├── virtualmachinescalesetextensions_client.go │ │ │ │ ├── virtualmachinescalesetrollingupgrades_client.go │ │ │ │ ├── virtualmachinescalesets_client.go │ │ │ │ ├── virtualmachinescalesetvmextensions_client.go │ │ │ │ ├── virtualmachinescalesetvmruncommands_client.go │ │ │ │ ├── virtualmachinescalesetvms_client.go │ │ │ │ └── virtualmachinesizes_client.go │ │ ├── network │ │ │ └── armnetwork │ │ │ │ └── v7 │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── adminrulecollections_client.go │ │ │ │ ├── adminrules_client.go │ │ │ │ ├── applicationgatewayprivateendpointconnections_client.go │ │ │ │ ├── applicationgatewayprivatelinkresources_client.go │ │ │ │ ├── applicationgateways_client.go │ │ │ │ ├── applicationgatewaywafdynamicmanifests_client.go │ │ │ │ ├── applicationgatewaywafdynamicmanifestsdefault_client.go │ │ │ │ ├── applicationsecuritygroups_client.go │ │ │ │ ├── assets.json │ │ │ │ ├── autorest.md │ │ │ │ ├── availabledelegations_client.go │ │ │ │ ├── availableendpointservices_client.go │ │ │ │ ├── availableprivateendpointtypes_client.go │ │ │ │ ├── availableresourcegroupdelegations_client.go │ │ │ │ ├── availableservicealiases_client.go │ │ │ │ ├── azurefirewallfqdntags_client.go │ │ │ │ ├── azurefirewalls_client.go │ │ │ │ ├── bastionhosts_client.go │ │ │ │ ├── bgpservicecommunities_client.go │ │ │ │ ├── build.go │ │ │ │ ├── ci.yml │ │ │ │ ├── client_factory.go │ │ │ │ ├── configurationpolicygroups_client.go │ │ │ │ ├── connectionmonitors_client.go │ │ │ │ ├── connectivityconfigurations_client.go │ │ │ │ ├── constants.go │ │ │ │ ├── customipprefixes_client.go │ │ │ │ ├── ddoscustompolicies_client.go │ │ │ │ ├── ddosprotectionplans_client.go │ │ │ │ ├── defaultsecurityrules_client.go │ │ │ │ ├── dscpconfiguration_client.go │ │ │ │ ├── expressroutecircuitauthorizations_client.go │ │ │ │ ├── expressroutecircuitconnections_client.go │ │ │ │ ├── expressroutecircuitpeerings_client.go │ │ │ │ ├── expressroutecircuits_client.go │ │ │ │ ├── expressrouteconnections_client.go │ │ │ │ ├── expressroutecrossconnectionpeerings_client.go │ │ │ │ ├── expressroutecrossconnections_client.go │ │ │ │ ├── expressroutegateways_client.go │ │ │ │ ├── expressroutelinks_client.go │ │ │ │ ├── expressrouteportauthorizations_client.go │ │ │ │ ├── expressrouteports_client.go │ │ │ │ ├── expressrouteportslocations_client.go │ │ │ │ ├── expressrouteproviderportslocation_client.go │ │ │ │ ├── expressrouteserviceproviders_client.go │ │ │ │ ├── firewallpolicies_client.go │ │ │ │ ├── firewallpolicydeployments_client.go │ │ │ │ ├── firewallpolicydrafts_client.go │ │ │ │ ├── firewallpolicyidpssignatures_client.go │ │ │ │ ├── firewallpolicyidpssignaturesfiltervalues_client.go │ │ │ │ ├── firewallpolicyidpssignaturesoverrides_client.go │ │ │ │ ├── firewallpolicyrulecollectiongroupdrafts_client.go │ │ │ │ ├── firewallpolicyrulecollectiongroups_client.go │ │ │ │ ├── flowlogs_client.go │ │ │ │ ├── groups_client.go │ │ │ │ ├── hubroutetables_client.go │ │ │ │ ├── hubvirtualnetworkconnections_client.go │ │ │ │ ├── inboundnatrules_client.go │ │ │ │ ├── inboundsecurityrule_client.go │ │ │ │ ├── interfaceipconfigurations_client.go │ │ │ │ ├── interfaceloadbalancers_client.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── interfaces_client.go │ │ │ │ ├── interfacetapconfigurations_client.go │ │ │ │ ├── ipallocations_client.go │ │ │ │ ├── ipampools_client.go │ │ │ │ ├── ipgroups_client.go │ │ │ │ ├── loadbalancerbackendaddresspools_client.go │ │ │ │ ├── loadbalancerfrontendipconfigurations_client.go │ │ │ │ ├── loadbalancerloadbalancingrules_client.go │ │ │ │ ├── loadbalancernetworkinterfaces_client.go │ │ │ │ ├── loadbalanceroutboundrules_client.go │ │ │ │ ├── loadbalancerprobes_client.go │ │ │ │ ├── loadbalancers_client.go │ │ │ │ ├── localnetworkgateways_client.go │ │ │ │ ├── management_client.go │ │ │ │ ├── managementgroupnetworkmanagerconnections_client.go │ │ │ │ ├── managercommits_client.go │ │ │ │ ├── managerdeploymentstatus_client.go │ │ │ │ ├── managerroutingconfigurations_client.go │ │ │ │ ├── managers_client.go │ │ │ │ ├── models.go │ │ │ │ ├── models_serde.go │ │ │ │ ├── natgateways_client.go │ │ │ │ ├── natrules_client.go │ │ │ │ ├── operations_client.go │ │ │ │ ├── options.go │ │ │ │ ├── p2svpngateways_client.go │ │ │ │ ├── packetcaptures_client.go │ │ │ │ ├── peerexpressroutecircuitconnections_client.go │ │ │ │ ├── polymorphic_helpers.go │ │ │ │ ├── privatednszonegroups_client.go │ │ │ │ ├── privateendpoints_client.go │ │ │ │ ├── privatelinkservices_client.go │ │ │ │ ├── profiles_client.go │ │ │ │ ├── publicipaddresses_client.go │ │ │ │ ├── publicipprefixes_client.go │ │ │ │ ├── reachabilityanalysisintents_client.go │ │ │ │ ├── reachabilityanalysisruns_client.go │ │ │ │ ├── resourcenavigationlinks_client.go │ │ │ │ ├── responses.go │ │ │ │ ├── responses_serde.go │ │ │ │ ├── routefilterrules_client.go │ │ │ │ ├── routefilters_client.go │ │ │ │ ├── routemaps_client.go │ │ │ │ ├── routes_client.go │ │ │ │ ├── routetables_client.go │ │ │ │ ├── routingintent_client.go │ │ │ │ ├── routingrulecollections_client.go │ │ │ │ ├── routingrules_client.go │ │ │ │ ├── scopeconnections_client.go │ │ │ │ ├── securityadminconfigurations_client.go │ │ │ │ ├── securitygroups_client.go │ │ │ │ ├── securitypartnerproviders_client.go │ │ │ │ ├── securityperimeteraccessrules_client.go │ │ │ │ ├── securityperimeterassociableresourcetypes_client.go │ │ │ │ ├── securityperimeterassociations_client.go │ │ │ │ ├── securityperimeterlinkreferences_client.go │ │ │ │ ├── securityperimeterlinks_client.go │ │ │ │ ├── securityperimeterloggingconfigurations_client.go │ │ │ │ ├── securityperimeteroperationstatuses_client.go │ │ │ │ ├── securityperimeterprofiles_client.go │ │ │ │ ├── securityperimeters_client.go │ │ │ │ ├── securityrules_client.go │ │ │ │ ├── securityuserconfigurations_client.go │ │ │ │ ├── securityuserrulecollections_client.go │ │ │ │ ├── securityuserrules_client.go │ │ │ │ ├── serviceassociationlinks_client.go │ │ │ │ ├── serviceendpointpolicies_client.go │ │ │ │ ├── serviceendpointpolicydefinitions_client.go │ │ │ │ ├── servicetaginformation_client.go │ │ │ │ ├── servicetags_client.go │ │ │ │ ├── staticcidrs_client.go │ │ │ │ ├── staticmembers_client.go │ │ │ │ ├── subnets_client.go │ │ │ │ ├── subscriptionnetworkmanagerconnections_client.go │ │ │ │ ├── time_rfc3339.go │ │ │ │ ├── usages_client.go │ │ │ │ ├── verifierworkspaces_client.go │ │ │ │ ├── vipswap_client.go │ │ │ │ ├── virtualapplianceconnections_client.go │ │ │ │ ├── virtualappliances_client.go │ │ │ │ ├── virtualappliancesites_client.go │ │ │ │ ├── virtualapplianceskus_client.go │ │ │ │ ├── virtualhubbgpconnection_client.go │ │ │ │ ├── virtualhubbgpconnections_client.go │ │ │ │ ├── virtualhubipconfiguration_client.go │ │ │ │ ├── virtualhubroutetablev2s_client.go │ │ │ │ ├── virtualhubs_client.go │ │ │ │ ├── virtualnetworkgatewayconnections_client.go │ │ │ │ ├── virtualnetworkgatewaynatrules_client.go │ │ │ │ ├── virtualnetworkgateways_client.go │ │ │ │ ├── virtualnetworkpeerings_client.go │ │ │ │ ├── virtualnetworks_client.go │ │ │ │ ├── virtualnetworktaps_client.go │ │ │ │ ├── virtualrouterpeerings_client.go │ │ │ │ ├── virtualrouters_client.go │ │ │ │ ├── virtualwans_client.go │ │ │ │ ├── vpnconnections_client.go │ │ │ │ ├── vpngateways_client.go │ │ │ │ ├── vpnlinkconnections_client.go │ │ │ │ ├── vpnserverconfigurations_client.go │ │ │ │ ├── vpnserverconfigurationsassociatedwithvirtualwan_client.go │ │ │ │ ├── vpnsitelinkconnections_client.go │ │ │ │ ├── vpnsitelinks_client.go │ │ │ │ ├── vpnsites_client.go │ │ │ │ ├── vpnsitesconfiguration_client.go │ │ │ │ ├── watchers_client.go │ │ │ │ ├── webapplicationfirewallpolicies_client.go │ │ │ │ └── webcategories_client.go │ │ ├── resources │ │ │ └── armresources │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── assets.json │ │ │ │ ├── autorest.md │ │ │ │ ├── build.go │ │ │ │ ├── ci.yml │ │ │ │ ├── client.go │ │ │ │ ├── client_factory.go │ │ │ │ ├── constants.go │ │ │ │ ├── deploymentoperations_client.go │ │ │ │ ├── deployments_client.go │ │ │ │ ├── models.go │ │ │ │ ├── models_serde.go │ │ │ │ ├── operations_client.go │ │ │ │ ├── options.go │ │ │ │ ├── providerresourcetypes_client.go │ │ │ │ ├── providers_client.go │ │ │ │ ├── resourcegroups_client.go │ │ │ │ ├── response_types.go │ │ │ │ ├── tags_client.go │ │ │ │ └── time_rfc3339.go │ │ └── storage │ │ │ └── armstorage │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── accounts_client.go │ │ │ ├── assets.json │ │ │ ├── autorest.md │ │ │ ├── blobcontainers_client.go │ │ │ ├── blobinventorypolicies_client.go │ │ │ ├── blobservices_client.go │ │ │ ├── build.go │ │ │ ├── ci.yml │ │ │ ├── client_factory.go │ │ │ ├── constants.go │ │ │ ├── deletedaccounts_client.go │ │ │ ├── encryptionscopes_client.go │ │ │ ├── fileservices_client.go │ │ │ ├── fileshares_client.go │ │ │ ├── localusers_client.go │ │ │ ├── managementpolicies_client.go │ │ │ ├── models.go │ │ │ ├── models_serde.go │ │ │ ├── networksecurityperimeterconfigurations_client.go │ │ │ ├── objectreplicationpolicies_client.go │ │ │ ├── operations_client.go │ │ │ ├── options.go │ │ │ ├── privateendpointconnections_client.go │ │ │ ├── privatelinkresources_client.go │ │ │ ├── queue_client.go │ │ │ ├── queueservices_client.go │ │ │ ├── responses.go │ │ │ ├── skus_client.go │ │ │ ├── table_client.go │ │ │ ├── tableservices_client.go │ │ │ ├── taskassignmentinstancesreport_client.go │ │ │ ├── taskassignments_client.go │ │ │ ├── taskassignmentsinstancesreport_client.go │ │ │ ├── time_rfc1123.go │ │ │ ├── time_rfc3339.go │ │ │ └── usages_client.go │ │ └── storage │ │ └── azblob │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── appendblob │ │ ├── client.go │ │ ├── models.go │ │ └── responses.go │ │ ├── assets.json │ │ ├── blob │ │ ├── client.go │ │ ├── constants.go │ │ ├── models.go │ │ ├── responses.go │ │ ├── retry_reader.go │ │ └── utils.go │ │ ├── bloberror │ │ └── error_codes.go │ │ ├── blockblob │ │ ├── chunkwriting.go │ │ ├── client.go │ │ ├── constants.go │ │ ├── models.go │ │ └── responses.go │ │ ├── ci.yml │ │ ├── client.go │ │ ├── common.go │ │ ├── constants.go │ │ ├── container │ │ ├── batch_builder.go │ │ ├── client.go │ │ ├── constants.go │ │ ├── models.go │ │ └── responses.go │ │ ├── doc.go │ │ ├── internal │ │ ├── base │ │ │ └── clients.go │ │ ├── exported │ │ │ ├── access_conditions.go │ │ │ ├── access_policy.go │ │ │ ├── blob_batch.go │ │ │ ├── exported.go │ │ │ ├── log_events.go │ │ │ ├── set_expiry.go │ │ │ ├── shared_key_credential.go │ │ │ ├── transfer_validation_option.go │ │ │ ├── user_delegation_credential.go │ │ │ └── version.go │ │ ├── generated │ │ │ ├── appendblob_client.go │ │ │ ├── autorest.md │ │ │ ├── blob_client.go │ │ │ ├── block_blob_client.go │ │ │ ├── build.go │ │ │ ├── constants.go │ │ │ ├── container_client.go │ │ │ ├── models.go │ │ │ ├── pageblob_client.go │ │ │ ├── service_client.go │ │ │ ├── zz_appendblob_client.go │ │ │ ├── zz_blob_client.go │ │ │ ├── zz_blockblob_client.go │ │ │ ├── zz_constants.go │ │ │ ├── zz_container_client.go │ │ │ ├── zz_models.go │ │ │ ├── zz_models_serde.go │ │ │ ├── zz_options.go │ │ │ ├── zz_pageblob_client.go │ │ │ ├── zz_responses.go │ │ │ ├── zz_service_client.go │ │ │ ├── zz_time_rfc1123.go │ │ │ ├── zz_time_rfc3339.go │ │ │ └── zz_xml_helper.go │ │ └── shared │ │ │ ├── batch_transfer.go │ │ │ ├── buffer_manager.go │ │ │ ├── bytes_writer.go │ │ │ ├── challenge_policy.go │ │ │ ├── mmf_unix.go │ │ │ ├── mmf_windows.go │ │ │ ├── section_writer.go │ │ │ └── shared.go │ │ ├── log.go │ │ ├── migrationguide.md │ │ ├── models.go │ │ ├── pageblob │ │ ├── client.go │ │ ├── constants.go │ │ ├── models.go │ │ └── responses.go │ │ ├── responses.go │ │ ├── sas │ │ ├── account.go │ │ ├── query_params.go │ │ ├── service.go │ │ └── url_parts.go │ │ ├── service │ │ ├── batch_builder.go │ │ ├── client.go │ │ ├── constants.go │ │ ├── models.go │ │ └── responses.go │ │ └── test-resources.json ├── AzureAD │ └── microsoft-authentication-library-for-go │ │ ├── LICENSE │ │ └── apps │ │ ├── cache │ │ └── cache.go │ │ ├── confidential │ │ └── confidential.go │ │ ├── errors │ │ ├── error_design.md │ │ └── errors.go │ │ ├── internal │ │ ├── base │ │ │ ├── base.go │ │ │ └── storage │ │ │ │ ├── items.go │ │ │ │ ├── partitioned_storage.go │ │ │ │ └── storage.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── json │ │ │ ├── design.md │ │ │ ├── json.go │ │ │ ├── mapslice.go │ │ │ ├── marshal.go │ │ │ ├── struct.go │ │ │ └── types │ │ │ │ └── time │ │ │ │ └── time.go │ │ ├── local │ │ │ └── server.go │ │ ├── oauth │ │ │ ├── oauth.go │ │ │ ├── ops │ │ │ │ ├── accesstokens │ │ │ │ │ ├── accesstokens.go │ │ │ │ │ ├── apptype_string.go │ │ │ │ │ └── tokens.go │ │ │ │ ├── authority │ │ │ │ │ ├── authority.go │ │ │ │ │ └── authorizetype_string.go │ │ │ │ ├── internal │ │ │ │ │ ├── comm │ │ │ │ │ │ ├── comm.go │ │ │ │ │ │ └── compress.go │ │ │ │ │ └── grant │ │ │ │ │ │ └── grant.go │ │ │ │ ├── ops.go │ │ │ │ └── wstrust │ │ │ │ │ ├── defs │ │ │ │ │ ├── endpointtype_string.go │ │ │ │ │ ├── mex_document_definitions.go │ │ │ │ │ ├── saml_assertion_definitions.go │ │ │ │ │ ├── version_string.go │ │ │ │ │ ├── wstrust_endpoint.go │ │ │ │ │ └── wstrust_mex_document.go │ │ │ │ │ └── wstrust.go │ │ │ └── resolvers.go │ │ ├── options │ │ │ └── options.go │ │ ├── shared │ │ │ └── shared.go │ │ └── version │ │ │ └── version.go │ │ ├── managedidentity │ │ ├── azure_ml.go │ │ ├── cloud_shell.go │ │ ├── managedidentity.go │ │ └── servicefabric.go │ │ └── public │ │ └── public.go ├── BurntSushi │ └── toml │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── README.md │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal │ │ └── tz.go │ │ ├── lex.go │ │ ├── meta.go │ │ ├── parse.go │ │ ├── type_fields.go │ │ └── type_toml.go ├── GoogleCloudPlatform │ └── opentelemetry-operations-go │ │ ├── detectors │ │ └── gcp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app_engine.go │ │ │ ├── bms.go │ │ │ ├── detector.go │ │ │ ├── faas.go │ │ │ ├── gce.go │ │ │ └── gke.go │ │ ├── exporter │ │ └── metric │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cloudmonitoring.go │ │ │ ├── constants.go │ │ │ ├── error.go │ │ │ ├── metric.go │ │ │ ├── option.go │ │ │ └── version.go │ │ └── internal │ │ └── resourcemapping │ │ ├── LICENSE │ │ └── resourcemapping.go ├── Microsoft │ ├── go-winio │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── backup.go │ │ ├── backuptar │ │ │ ├── doc.go │ │ │ ├── strconv.go │ │ │ └── tar.go │ │ ├── doc.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── hvsock.go │ │ ├── internal │ │ │ ├── fs │ │ │ │ ├── doc.go │ │ │ │ ├── fs.go │ │ │ │ ├── security.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── socket │ │ │ │ ├── rawaddr.go │ │ │ │ ├── socket.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── stringbuffer │ │ │ │ └── wstring.go │ │ ├── pipe.go │ │ ├── pkg │ │ │ └── guid │ │ │ │ ├── guid.go │ │ │ │ ├── guid_nonwindows.go │ │ │ │ ├── guid_windows.go │ │ │ │ └── variant_string.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ ├── vhd │ │ │ ├── vhd.go │ │ │ └── zvhd_windows.go │ │ └── zsyscall_windows.go │ └── hcsshim │ │ ├── .clang-format │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.bootfiles │ │ ├── Protobuild.toml │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── computestorage │ │ ├── attach.go │ │ ├── destroy.go │ │ ├── detach.go │ │ ├── export.go │ │ ├── format.go │ │ ├── helpers.go │ │ ├── import.go │ │ ├── initialize.go │ │ ├── mount.go │ │ ├── setup.go │ │ ├── storage.go │ │ └── zsyscall_windows.go │ │ ├── container.go │ │ ├── errors.go │ │ ├── hcsshim.go │ │ ├── hnsaccelnet.go │ │ ├── hnsendpoint.go │ │ ├── hnsglobals.go │ │ ├── hnsnetwork.go │ │ ├── hnspolicy.go │ │ ├── hnspolicylist.go │ │ ├── hnssupport.go │ │ ├── interface.go │ │ ├── internal │ │ ├── cow │ │ │ └── cow.go │ │ ├── hcs │ │ │ ├── callback.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── process.go │ │ │ ├── schema1 │ │ │ │ └── schema1.go │ │ │ ├── schema2 │ │ │ │ ├── attachment.go │ │ │ │ ├── battery.go │ │ │ │ ├── cache_query_stats_response.go │ │ │ │ ├── chipset.go │ │ │ │ ├── cimfs.go │ │ │ │ ├── close_handle.go │ │ │ │ ├── com_port.go │ │ │ │ ├── compute_system.go │ │ │ │ ├── configuration.go │ │ │ │ ├── console_size.go │ │ │ │ ├── container.go │ │ │ │ ├── container_credential_guard_add_instance_request.go │ │ │ │ ├── container_credential_guard_hv_socket_service_config.go │ │ │ │ ├── container_credential_guard_instance.go │ │ │ │ ├── container_credential_guard_modify_operation.go │ │ │ │ ├── container_credential_guard_operation_request.go │ │ │ │ ├── container_credential_guard_remove_instance_request.go │ │ │ │ ├── container_credential_guard_state.go │ │ │ │ ├── container_credential_guard_system_info.go │ │ │ │ ├── container_memory_information.go │ │ │ │ ├── cpu_group.go │ │ │ │ ├── cpu_group_affinity.go │ │ │ │ ├── cpu_group_config.go │ │ │ │ ├── cpu_group_configurations.go │ │ │ │ ├── cpu_group_operations.go │ │ │ │ ├── cpu_group_property.go │ │ │ │ ├── create_group_operation.go │ │ │ │ ├── debug_options.go │ │ │ │ ├── delete_group_operation.go │ │ │ │ ├── device.go │ │ │ │ ├── devices.go │ │ │ │ ├── enhanced_mode_video.go │ │ │ │ ├── firmware.go │ │ │ │ ├── flexible_io_device.go │ │ │ │ ├── guest_connection.go │ │ │ │ ├── guest_connection_info.go │ │ │ │ ├── guest_crash_reporting.go │ │ │ │ ├── guest_os.go │ │ │ │ ├── guest_state.go │ │ │ │ ├── host_processor_modify_request.go │ │ │ │ ├── hosted_system.go │ │ │ │ ├── hv_socket.go │ │ │ │ ├── hv_socket_2.go │ │ │ │ ├── hv_socket_address.go │ │ │ │ ├── hv_socket_service_config.go │ │ │ │ ├── hv_socket_system_config.go │ │ │ │ ├── interrupt_moderation_mode.go │ │ │ │ ├── iov_settings.go │ │ │ │ ├── isolation_settings.go │ │ │ │ ├── keyboard.go │ │ │ │ ├── layer.go │ │ │ │ ├── linux_kernel_direct.go │ │ │ │ ├── logical_processor.go │ │ │ │ ├── mapped_directory.go │ │ │ │ ├── mapped_pipe.go │ │ │ │ ├── memory.go │ │ │ │ ├── memory_backing_type.go │ │ │ │ ├── memory_information_for_vm.go │ │ │ │ ├── memory_stats.go │ │ │ │ ├── model_container_definition_device.go │ │ │ │ ├── model_device_category.go │ │ │ │ ├── model_device_extension.go │ │ │ │ ├── model_device_instance.go │ │ │ │ ├── model_device_namespace.go │ │ │ │ ├── model_interface_class.go │ │ │ │ ├── model_namespace.go │ │ │ │ ├── model_object_directory.go │ │ │ │ ├── model_object_namespace.go │ │ │ │ ├── model_object_symlink.go │ │ │ │ ├── modification_request.go │ │ │ │ ├── modify_setting_request.go │ │ │ │ ├── mouse.go │ │ │ │ ├── network_adapter.go │ │ │ │ ├── networking.go │ │ │ │ ├── numa.go │ │ │ │ ├── numa_node.go │ │ │ │ ├── numa_node_memory.go │ │ │ │ ├── numa_node_processor.go │ │ │ │ ├── numa_processors.go │ │ │ │ ├── numa_setting.go │ │ │ │ ├── pause_notification.go │ │ │ │ ├── pause_options.go │ │ │ │ ├── plan9.go │ │ │ │ ├── plan9_share.go │ │ │ │ ├── process_details.go │ │ │ │ ├── process_modify_request.go │ │ │ │ ├── process_parameters.go │ │ │ │ ├── process_status.go │ │ │ │ ├── processor.go │ │ │ │ ├── processor_stats.go │ │ │ │ ├── processor_topology.go │ │ │ │ ├── properties.go │ │ │ │ ├── property_query.go │ │ │ │ ├── property_type.go │ │ │ │ ├── rdp_connection_options.go │ │ │ │ ├── registry_changes.go │ │ │ │ ├── registry_hive.go │ │ │ │ ├── registry_key.go │ │ │ │ ├── registry_value.go │ │ │ │ ├── registry_value_type.go │ │ │ │ ├── restore_state.go │ │ │ │ ├── save_options.go │ │ │ │ ├── scsi.go │ │ │ │ ├── security_settings.go │ │ │ │ ├── service_properties.go │ │ │ │ ├── shared_memory_configuration.go │ │ │ │ ├── shared_memory_region.go │ │ │ │ ├── shared_memory_region_info.go │ │ │ │ ├── silo_properties.go │ │ │ │ ├── statistics.go │ │ │ │ ├── storage.go │ │ │ │ ├── storage_qo_s.go │ │ │ │ ├── storage_stats.go │ │ │ │ ├── system_time.go │ │ │ │ ├── time_zone_information.go │ │ │ │ ├── topology.go │ │ │ │ ├── uefi.go │ │ │ │ ├── uefi_boot_entry.go │ │ │ │ ├── version.go │ │ │ │ ├── video_monitor.go │ │ │ │ ├── virtual_machine.go │ │ │ │ ├── virtual_machine_memory.go │ │ │ │ ├── virtual_machine_processor.go │ │ │ │ ├── virtual_node_info.go │ │ │ │ ├── virtual_p_mem_controller.go │ │ │ │ ├── virtual_p_mem_device.go │ │ │ │ ├── virtual_p_mem_mapping.go │ │ │ │ ├── virtual_pci_device.go │ │ │ │ ├── virtual_pci_function.go │ │ │ │ ├── virtual_slit_type.go │ │ │ │ ├── virtual_smb.go │ │ │ │ ├── virtual_smb_share.go │ │ │ │ ├── virtual_smb_share_options.go │ │ │ │ ├── vm_memory.go │ │ │ │ ├── vm_processor_limits.go │ │ │ │ └── windows_crash_reporting.go │ │ │ ├── service.go │ │ │ ├── system.go │ │ │ ├── utils.go │ │ │ └── waithelper.go │ │ ├── hcserror │ │ │ ├── doc.go │ │ │ └── hcserror.go │ │ ├── hns │ │ │ ├── doc.go │ │ │ ├── hns.go │ │ │ ├── hnsaccelnet.go │ │ │ ├── hnsendpoint.go │ │ │ ├── hnsfuncs.go │ │ │ ├── hnsglobals.go │ │ │ ├── hnsnetwork.go │ │ │ ├── hnspolicy.go │ │ │ ├── hnspolicylist.go │ │ │ ├── hnssupport.go │ │ │ ├── namespace.go │ │ │ └── zsyscall_windows.go │ │ ├── interop │ │ │ ├── doc.go │ │ │ ├── interop.go │ │ │ └── zsyscall_windows.go │ │ ├── jobobject │ │ │ ├── doc.go │ │ │ ├── iocp.go │ │ │ ├── jobobject.go │ │ │ └── limits.go │ │ ├── log │ │ │ ├── context.go │ │ │ ├── format.go │ │ │ ├── hook.go │ │ │ ├── nopformatter.go │ │ │ └── scrub.go │ │ ├── logfields │ │ │ └── fields.go │ │ ├── longpath │ │ │ └── longpath.go │ │ ├── memory │ │ │ ├── pool.go │ │ │ └── types.go │ │ ├── mergemaps │ │ │ └── merge.go │ │ ├── oc │ │ │ ├── errors.go │ │ │ ├── exporter.go │ │ │ └── span.go │ │ ├── protocol │ │ │ └── guestrequest │ │ │ │ └── types.go │ │ ├── queue │ │ │ └── mq.go │ │ ├── safefile │ │ │ ├── do.go │ │ │ └── safeopen.go │ │ ├── security │ │ │ ├── grantvmgroupaccess.go │ │ │ ├── syscall_windows.go │ │ │ └── zsyscall_windows.go │ │ ├── timeout │ │ │ └── timeout.go │ │ ├── vmcompute │ │ │ ├── doc.go │ │ │ ├── vmcompute.go │ │ │ └── zsyscall_windows.go │ │ ├── wclayer │ │ │ ├── activatelayer.go │ │ │ ├── baselayerreader.go │ │ │ ├── baselayerwriter.go │ │ │ ├── converttobaselayer.go │ │ │ ├── createlayer.go │ │ │ ├── createscratchlayer.go │ │ │ ├── deactivatelayer.go │ │ │ ├── destroylayer.go │ │ │ ├── doc.go │ │ │ ├── expandscratchsize.go │ │ │ ├── exportlayer.go │ │ │ ├── getlayermountpath.go │ │ │ ├── getsharedbaseimages.go │ │ │ ├── grantvmaccess.go │ │ │ ├── importlayer.go │ │ │ ├── layerexists.go │ │ │ ├── layerid.go │ │ │ ├── layerutils.go │ │ │ ├── legacy.go │ │ │ ├── nametoguid.go │ │ │ ├── preparelayer.go │ │ │ ├── processimage.go │ │ │ ├── unpreparelayer.go │ │ │ ├── wclayer.go │ │ │ └── zsyscall_windows.go │ │ └── winapi │ │ │ ├── bindflt.go │ │ │ ├── cimfs.go │ │ │ ├── console.go │ │ │ ├── devices.go │ │ │ ├── doc.go │ │ │ ├── elevation.go │ │ │ ├── errors.go │ │ │ ├── filesystem.go │ │ │ ├── jobobject.go │ │ │ ├── logon.go │ │ │ ├── memory.go │ │ │ ├── net.go │ │ │ ├── offlinereg.go │ │ │ ├── path.go │ │ │ ├── process.go │ │ │ ├── processor.go │ │ │ ├── system.go │ │ │ ├── thread.go │ │ │ ├── user.go │ │ │ ├── utils.go │ │ │ ├── winapi.go │ │ │ └── zsyscall_windows.go │ │ ├── layer.go │ │ ├── osversion │ │ ├── osversion_windows.go │ │ ├── platform_compat_windows.go │ │ └── windowsbuilds.go │ │ ├── process.go │ │ └── zsyscall_windows.go ├── VividCortex │ └── ewma │ │ ├── .gitignore │ │ ├── .whitesource │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codecov.yml │ │ └── ewma.go ├── acarl005 │ └── stripansi │ │ ├── LICENSE │ │ ├── README.md │ │ └── stripansi.go ├── apapsch │ └── go-jsonmerge │ │ └── v2 │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── doc.go │ │ └── merge.go ├── aws │ ├── aws-sdk-go-v2 │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ │ ├── accountid_endpoint_mode.go │ │ │ ├── arn │ │ │ │ └── arn.go │ │ │ ├── checksum.go │ │ │ ├── config.go │ │ │ ├── context.go │ │ │ ├── credential_cache.go │ │ │ ├── credentials.go │ │ │ ├── defaults │ │ │ │ ├── auto.go │ │ │ │ ├── configuration.go │ │ │ │ ├── defaults.go │ │ │ │ └── doc.go │ │ │ ├── defaultsmode.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── errors.go │ │ │ ├── from_ptr.go │ │ │ ├── go_module_metadata.go │ │ │ ├── logging.go │ │ │ ├── logging_generate.go │ │ │ ├── middleware │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── osname.go │ │ │ │ ├── osname_go115.go │ │ │ │ ├── recursion_detection.go │ │ │ │ ├── request_id.go │ │ │ │ ├── request_id_retriever.go │ │ │ │ └── user_agent.go │ │ │ ├── protocol │ │ │ │ ├── ec2query │ │ │ │ │ └── error_utils.go │ │ │ │ ├── eventstream │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── debug.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── eventstreamapi │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ └── transport_go117.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── header.go │ │ │ │ │ ├── header_value.go │ │ │ │ │ └── message.go │ │ │ │ ├── query │ │ │ │ │ ├── array.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── object.go │ │ │ │ │ └── value.go │ │ │ │ ├── restjson │ │ │ │ │ └── decoder_util.go │ │ │ │ └── xml │ │ │ │ │ └── error_utils.go │ │ │ ├── ratelimit │ │ │ │ ├── none.go │ │ │ │ ├── token_bucket.go │ │ │ │ └── token_rate_limit.go │ │ │ ├── request.go │ │ │ ├── retry │ │ │ │ ├── adaptive.go │ │ │ │ ├── adaptive_ratelimit.go │ │ │ │ ├── adaptive_token_bucket.go │ │ │ │ ├── attempt_metrics.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── jitter_backoff.go │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── retry.go │ │ │ │ ├── retryable_error.go │ │ │ │ ├── standard.go │ │ │ │ ├── throttle_error.go │ │ │ │ └── timeout_error.go │ │ │ ├── retryer.go │ │ │ ├── runtime.go │ │ │ ├── signer │ │ │ │ ├── internal │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ └── util.go │ │ │ │ └── v4 │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ ├── stream.go │ │ │ │ │ └── v4.go │ │ │ ├── to_ptr.go │ │ │ ├── transport │ │ │ │ └── http │ │ │ │ │ ├── client.go │ │ │ │ │ ├── content_type.go │ │ │ │ │ ├── response_error.go │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ └── timeout_read_closer.go │ │ │ ├── types.go │ │ │ └── version.go │ │ ├── config │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── auth_scheme_preference.go │ │ │ ├── config.go │ │ │ ├── defaultsmode.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── generate.go │ │ │ ├── go_module_metadata.go │ │ │ ├── load_options.go │ │ │ ├── local.go │ │ │ ├── provider.go │ │ │ ├── resolve.go │ │ │ ├── resolve_bearer_token.go │ │ │ ├── resolve_credentials.go │ │ │ └── shared_config.go │ │ ├── credentials │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── doc.go │ │ │ ├── ec2rolecreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── endpointcreds │ │ │ │ ├── internal │ │ │ │ │ └── client │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ └── middleware.go │ │ │ │ └── provider.go │ │ │ ├── go_module_metadata.go │ │ │ ├── processcreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── ssocreds │ │ │ │ ├── doc.go │ │ │ │ ├── sso_cached_token.go │ │ │ │ ├── sso_credentials_provider.go │ │ │ │ └── sso_token_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── feature │ │ │ ├── ec2 │ │ │ │ └── imds │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── api_client.go │ │ │ │ │ ├── api_op_GetDynamicData.go │ │ │ │ │ ├── api_op_GetIAMInfo.go │ │ │ │ │ ├── api_op_GetInstanceIdentityDocument.go │ │ │ │ │ ├── api_op_GetMetadata.go │ │ │ │ │ ├── api_op_GetRegion.go │ │ │ │ │ ├── api_op_GetToken.go │ │ │ │ │ ├── api_op_GetUserData.go │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── internal │ │ │ │ │ └── config │ │ │ │ │ │ └── resolvers.go │ │ │ │ │ ├── request_middleware.go │ │ │ │ │ └── token_provider.go │ │ │ └── s3 │ │ │ │ └── manager │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api.go │ │ │ │ ├── arn.go │ │ │ │ ├── bucket_region.go │ │ │ │ ├── buffered_read_seeker.go │ │ │ │ ├── default_read_seeker_write_to.go │ │ │ │ ├── default_read_seeker_write_to_windows.go │ │ │ │ ├── default_writer_read_from.go │ │ │ │ ├── default_writer_read_from_windows.go │ │ │ │ ├── doc.go │ │ │ │ ├── download.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── pool.go │ │ │ │ ├── read_seeker_write_to.go │ │ │ │ ├── types.go │ │ │ │ ├── upload.go │ │ │ │ └── writer_read_from.go │ │ ├── internal │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── scheme.go │ │ │ │ └── smithy │ │ │ │ │ ├── bearer_token_adapter.go │ │ │ │ │ ├── bearer_token_signer_adapter.go │ │ │ │ │ ├── credentials_adapter.go │ │ │ │ │ ├── smithy.go │ │ │ │ │ └── v4signer_adapter.go │ │ │ ├── awsutil │ │ │ │ ├── copy.go │ │ │ │ ├── equal.go │ │ │ │ ├── prettify.go │ │ │ │ └── string_value.go │ │ │ ├── configsources │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.go │ │ │ │ ├── endpoints.go │ │ │ │ └── go_module_metadata.go │ │ │ ├── context │ │ │ │ └── context.go │ │ │ ├── endpoints │ │ │ │ ├── awsrulesfn │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generate.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── partitions.go │ │ │ │ │ └── partitions.json │ │ │ │ ├── endpoints.go │ │ │ │ └── v2 │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── go_module_metadata.go │ │ │ ├── ini │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── errors.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── ini.go │ │ │ │ ├── parse.go │ │ │ │ ├── sections.go │ │ │ │ ├── strings.go │ │ │ │ ├── token.go │ │ │ │ ├── tokenize.go │ │ │ │ └── value.go │ │ │ ├── middleware │ │ │ │ └── middleware.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── sdk │ │ │ │ ├── interfaces.go │ │ │ │ └── time.go │ │ │ ├── sdkio │ │ │ │ └── byte.go │ │ │ ├── shareddefaults │ │ │ │ └── shared_config.go │ │ │ ├── strings │ │ │ │ └── strings.go │ │ │ ├── sync │ │ │ │ └── singleflight │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── docs.go │ │ │ │ │ └── singleflight.go │ │ │ ├── timeconv │ │ │ │ └── duration.go │ │ │ └── v4a │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── credentials.go │ │ │ │ ├── error.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ ├── crypto │ │ │ │ │ ├── compare.go │ │ │ │ │ └── ecc.go │ │ │ │ └── v4 │ │ │ │ │ ├── const.go │ │ │ │ │ ├── header_rules.go │ │ │ │ │ ├── headers.go │ │ │ │ │ ├── hmac.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── time.go │ │ │ │ │ └── util.go │ │ │ │ ├── middleware.go │ │ │ │ ├── presign_middleware.go │ │ │ │ ├── smithy.go │ │ │ │ └── v4a.go │ │ └── service │ │ │ ├── autoscaling │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AttachInstances.go │ │ │ ├── api_op_AttachLoadBalancerTargetGroups.go │ │ │ ├── api_op_AttachLoadBalancers.go │ │ │ ├── api_op_AttachTrafficSources.go │ │ │ ├── api_op_BatchDeleteScheduledAction.go │ │ │ ├── api_op_BatchPutScheduledUpdateGroupAction.go │ │ │ ├── api_op_CancelInstanceRefresh.go │ │ │ ├── api_op_CompleteLifecycleAction.go │ │ │ ├── api_op_CreateAutoScalingGroup.go │ │ │ ├── api_op_CreateLaunchConfiguration.go │ │ │ ├── api_op_CreateOrUpdateTags.go │ │ │ ├── api_op_DeleteAutoScalingGroup.go │ │ │ ├── api_op_DeleteLaunchConfiguration.go │ │ │ ├── api_op_DeleteLifecycleHook.go │ │ │ ├── api_op_DeleteNotificationConfiguration.go │ │ │ ├── api_op_DeletePolicy.go │ │ │ ├── api_op_DeleteScheduledAction.go │ │ │ ├── api_op_DeleteTags.go │ │ │ ├── api_op_DeleteWarmPool.go │ │ │ ├── api_op_DescribeAccountLimits.go │ │ │ ├── api_op_DescribeAdjustmentTypes.go │ │ │ ├── api_op_DescribeAutoScalingGroups.go │ │ │ ├── api_op_DescribeAutoScalingInstances.go │ │ │ ├── api_op_DescribeAutoScalingNotificationTypes.go │ │ │ ├── api_op_DescribeInstanceRefreshes.go │ │ │ ├── api_op_DescribeLaunchConfigurations.go │ │ │ ├── api_op_DescribeLifecycleHookTypes.go │ │ │ ├── api_op_DescribeLifecycleHooks.go │ │ │ ├── api_op_DescribeLoadBalancerTargetGroups.go │ │ │ ├── api_op_DescribeLoadBalancers.go │ │ │ ├── api_op_DescribeMetricCollectionTypes.go │ │ │ ├── api_op_DescribeNotificationConfigurations.go │ │ │ ├── api_op_DescribePolicies.go │ │ │ ├── api_op_DescribeScalingActivities.go │ │ │ ├── api_op_DescribeScalingProcessTypes.go │ │ │ ├── api_op_DescribeScheduledActions.go │ │ │ ├── api_op_DescribeTags.go │ │ │ ├── api_op_DescribeTerminationPolicyTypes.go │ │ │ ├── api_op_DescribeTrafficSources.go │ │ │ ├── api_op_DescribeWarmPool.go │ │ │ ├── api_op_DetachInstances.go │ │ │ ├── api_op_DetachLoadBalancerTargetGroups.go │ │ │ ├── api_op_DetachLoadBalancers.go │ │ │ ├── api_op_DetachTrafficSources.go │ │ │ ├── api_op_DisableMetricsCollection.go │ │ │ ├── api_op_EnableMetricsCollection.go │ │ │ ├── api_op_EnterStandby.go │ │ │ ├── api_op_ExecutePolicy.go │ │ │ ├── api_op_ExitStandby.go │ │ │ ├── api_op_GetPredictiveScalingForecast.go │ │ │ ├── api_op_PutLifecycleHook.go │ │ │ ├── api_op_PutNotificationConfiguration.go │ │ │ ├── api_op_PutScalingPolicy.go │ │ │ ├── api_op_PutScheduledUpdateGroupAction.go │ │ │ ├── api_op_PutWarmPool.go │ │ │ ├── api_op_RecordLifecycleActionHeartbeat.go │ │ │ ├── api_op_ResumeProcesses.go │ │ │ ├── api_op_RollbackInstanceRefresh.go │ │ │ ├── api_op_SetDesiredCapacity.go │ │ │ ├── api_op_SetInstanceHealth.go │ │ │ ├── api_op_SetInstanceProtection.go │ │ │ ├── api_op_StartInstanceRefresh.go │ │ │ ├── api_op_SuspendProcesses.go │ │ │ ├── api_op_TerminateInstanceInAutoScalingGroup.go │ │ │ ├── api_op_UpdateAutoScalingGroup.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── ec2 │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AcceptAddressTransfer.go │ │ │ ├── api_op_AcceptCapacityReservationBillingOwnership.go │ │ │ ├── api_op_AcceptReservedInstancesExchangeQuote.go │ │ │ ├── api_op_AcceptTransitGatewayMulticastDomainAssociations.go │ │ │ ├── api_op_AcceptTransitGatewayPeeringAttachment.go │ │ │ ├── api_op_AcceptTransitGatewayVpcAttachment.go │ │ │ ├── api_op_AcceptVpcEndpointConnections.go │ │ │ ├── api_op_AcceptVpcPeeringConnection.go │ │ │ ├── api_op_AdvertiseByoipCidr.go │ │ │ ├── api_op_AllocateAddress.go │ │ │ ├── api_op_AllocateHosts.go │ │ │ ├── api_op_AllocateIpamPoolCidr.go │ │ │ ├── api_op_ApplySecurityGroupsToClientVpnTargetNetwork.go │ │ │ ├── api_op_AssignIpv6Addresses.go │ │ │ ├── api_op_AssignPrivateIpAddresses.go │ │ │ ├── api_op_AssignPrivateNatGatewayAddress.go │ │ │ ├── api_op_AssociateAddress.go │ │ │ ├── api_op_AssociateCapacityReservationBillingOwner.go │ │ │ ├── api_op_AssociateClientVpnTargetNetwork.go │ │ │ ├── api_op_AssociateDhcpOptions.go │ │ │ ├── api_op_AssociateEnclaveCertificateIamRole.go │ │ │ ├── api_op_AssociateIamInstanceProfile.go │ │ │ ├── api_op_AssociateInstanceEventWindow.go │ │ │ ├── api_op_AssociateIpamByoasn.go │ │ │ ├── api_op_AssociateIpamResourceDiscovery.go │ │ │ ├── api_op_AssociateNatGatewayAddress.go │ │ │ ├── api_op_AssociateRouteServer.go │ │ │ ├── api_op_AssociateRouteTable.go │ │ │ ├── api_op_AssociateSecurityGroupVpc.go │ │ │ ├── api_op_AssociateSubnetCidrBlock.go │ │ │ ├── api_op_AssociateTransitGatewayMulticastDomain.go │ │ │ ├── api_op_AssociateTransitGatewayPolicyTable.go │ │ │ ├── api_op_AssociateTransitGatewayRouteTable.go │ │ │ ├── api_op_AssociateTrunkInterface.go │ │ │ ├── api_op_AssociateVpcCidrBlock.go │ │ │ ├── api_op_AttachClassicLinkVpc.go │ │ │ ├── api_op_AttachInternetGateway.go │ │ │ ├── api_op_AttachNetworkInterface.go │ │ │ ├── api_op_AttachVerifiedAccessTrustProvider.go │ │ │ ├── api_op_AttachVolume.go │ │ │ ├── api_op_AttachVpnGateway.go │ │ │ ├── api_op_AuthorizeClientVpnIngress.go │ │ │ ├── api_op_AuthorizeSecurityGroupEgress.go │ │ │ ├── api_op_AuthorizeSecurityGroupIngress.go │ │ │ ├── api_op_BundleInstance.go │ │ │ ├── api_op_CancelBundleTask.go │ │ │ ├── api_op_CancelCapacityReservation.go │ │ │ ├── api_op_CancelCapacityReservationFleets.go │ │ │ ├── api_op_CancelConversionTask.go │ │ │ ├── api_op_CancelDeclarativePoliciesReport.go │ │ │ ├── api_op_CancelExportTask.go │ │ │ ├── api_op_CancelImageLaunchPermission.go │ │ │ ├── api_op_CancelImportTask.go │ │ │ ├── api_op_CancelReservedInstancesListing.go │ │ │ ├── api_op_CancelSpotFleetRequests.go │ │ │ ├── api_op_CancelSpotInstanceRequests.go │ │ │ ├── api_op_ConfirmProductInstance.go │ │ │ ├── api_op_CopyFpgaImage.go │ │ │ ├── api_op_CopyImage.go │ │ │ ├── api_op_CopySnapshot.go │ │ │ ├── api_op_CopyVolumes.go │ │ │ ├── api_op_CreateCapacityManagerDataExport.go │ │ │ ├── api_op_CreateCapacityReservation.go │ │ │ ├── api_op_CreateCapacityReservationBySplitting.go │ │ │ ├── api_op_CreateCapacityReservationFleet.go │ │ │ ├── api_op_CreateCarrierGateway.go │ │ │ ├── api_op_CreateClientVpnEndpoint.go │ │ │ ├── api_op_CreateClientVpnRoute.go │ │ │ ├── api_op_CreateCoipCidr.go │ │ │ ├── api_op_CreateCoipPool.go │ │ │ ├── api_op_CreateCustomerGateway.go │ │ │ ├── api_op_CreateDefaultSubnet.go │ │ │ ├── api_op_CreateDefaultVpc.go │ │ │ ├── api_op_CreateDelegateMacVolumeOwnershipTask.go │ │ │ ├── api_op_CreateDhcpOptions.go │ │ │ ├── api_op_CreateEgressOnlyInternetGateway.go │ │ │ ├── api_op_CreateFleet.go │ │ │ ├── api_op_CreateFlowLogs.go │ │ │ ├── api_op_CreateFpgaImage.go │ │ │ ├── api_op_CreateImage.go │ │ │ ├── api_op_CreateImageUsageReport.go │ │ │ ├── api_op_CreateInstanceConnectEndpoint.go │ │ │ ├── api_op_CreateInstanceEventWindow.go │ │ │ ├── api_op_CreateInstanceExportTask.go │ │ │ ├── api_op_CreateInternetGateway.go │ │ │ ├── api_op_CreateIpam.go │ │ │ ├── api_op_CreateIpamExternalResourceVerificationToken.go │ │ │ ├── api_op_CreateIpamPool.go │ │ │ ├── api_op_CreateIpamPrefixListResolver.go │ │ │ ├── api_op_CreateIpamPrefixListResolverTarget.go │ │ │ ├── api_op_CreateIpamResourceDiscovery.go │ │ │ ├── api_op_CreateIpamScope.go │ │ │ ├── api_op_CreateKeyPair.go │ │ │ ├── api_op_CreateLaunchTemplate.go │ │ │ ├── api_op_CreateLaunchTemplateVersion.go │ │ │ ├── api_op_CreateLocalGatewayRoute.go │ │ │ ├── api_op_CreateLocalGatewayRouteTable.go │ │ │ ├── api_op_CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation.go │ │ │ ├── api_op_CreateLocalGatewayRouteTableVpcAssociation.go │ │ │ ├── api_op_CreateLocalGatewayVirtualInterface.go │ │ │ ├── api_op_CreateLocalGatewayVirtualInterfaceGroup.go │ │ │ ├── api_op_CreateMacSystemIntegrityProtectionModificationTask.go │ │ │ ├── api_op_CreateManagedPrefixList.go │ │ │ ├── api_op_CreateNatGateway.go │ │ │ ├── api_op_CreateNetworkAcl.go │ │ │ ├── api_op_CreateNetworkAclEntry.go │ │ │ ├── api_op_CreateNetworkInsightsAccessScope.go │ │ │ ├── api_op_CreateNetworkInsightsPath.go │ │ │ ├── api_op_CreateNetworkInterface.go │ │ │ ├── api_op_CreateNetworkInterfacePermission.go │ │ │ ├── api_op_CreatePlacementGroup.go │ │ │ ├── api_op_CreatePublicIpv4Pool.go │ │ │ ├── api_op_CreateReplaceRootVolumeTask.go │ │ │ ├── api_op_CreateReservedInstancesListing.go │ │ │ ├── api_op_CreateRestoreImageTask.go │ │ │ ├── api_op_CreateRoute.go │ │ │ ├── api_op_CreateRouteServer.go │ │ │ ├── api_op_CreateRouteServerEndpoint.go │ │ │ ├── api_op_CreateRouteServerPeer.go │ │ │ ├── api_op_CreateRouteTable.go │ │ │ ├── api_op_CreateSecurityGroup.go │ │ │ ├── api_op_CreateSnapshot.go │ │ │ ├── api_op_CreateSnapshots.go │ │ │ ├── api_op_CreateSpotDatafeedSubscription.go │ │ │ ├── api_op_CreateStoreImageTask.go │ │ │ ├── api_op_CreateSubnet.go │ │ │ ├── api_op_CreateSubnetCidrReservation.go │ │ │ ├── api_op_CreateTags.go │ │ │ ├── api_op_CreateTrafficMirrorFilter.go │ │ │ ├── api_op_CreateTrafficMirrorFilterRule.go │ │ │ ├── api_op_CreateTrafficMirrorSession.go │ │ │ ├── api_op_CreateTrafficMirrorTarget.go │ │ │ ├── api_op_CreateTransitGateway.go │ │ │ ├── api_op_CreateTransitGatewayConnect.go │ │ │ ├── api_op_CreateTransitGatewayConnectPeer.go │ │ │ ├── api_op_CreateTransitGatewayMulticastDomain.go │ │ │ ├── api_op_CreateTransitGatewayPeeringAttachment.go │ │ │ ├── api_op_CreateTransitGatewayPolicyTable.go │ │ │ ├── api_op_CreateTransitGatewayPrefixListReference.go │ │ │ ├── api_op_CreateTransitGatewayRoute.go │ │ │ ├── api_op_CreateTransitGatewayRouteTable.go │ │ │ ├── api_op_CreateTransitGatewayRouteTableAnnouncement.go │ │ │ ├── api_op_CreateTransitGatewayVpcAttachment.go │ │ │ ├── api_op_CreateVerifiedAccessEndpoint.go │ │ │ ├── api_op_CreateVerifiedAccessGroup.go │ │ │ ├── api_op_CreateVerifiedAccessInstance.go │ │ │ ├── api_op_CreateVerifiedAccessTrustProvider.go │ │ │ ├── api_op_CreateVolume.go │ │ │ ├── api_op_CreateVpc.go │ │ │ ├── api_op_CreateVpcBlockPublicAccessExclusion.go │ │ │ ├── api_op_CreateVpcEndpoint.go │ │ │ ├── api_op_CreateVpcEndpointConnectionNotification.go │ │ │ ├── api_op_CreateVpcEndpointServiceConfiguration.go │ │ │ ├── api_op_CreateVpcPeeringConnection.go │ │ │ ├── api_op_CreateVpnConnection.go │ │ │ ├── api_op_CreateVpnConnectionRoute.go │ │ │ ├── api_op_CreateVpnGateway.go │ │ │ ├── api_op_DeleteCapacityManagerDataExport.go │ │ │ ├── api_op_DeleteCarrierGateway.go │ │ │ ├── api_op_DeleteClientVpnEndpoint.go │ │ │ ├── api_op_DeleteClientVpnRoute.go │ │ │ ├── api_op_DeleteCoipCidr.go │ │ │ ├── api_op_DeleteCoipPool.go │ │ │ ├── api_op_DeleteCustomerGateway.go │ │ │ ├── api_op_DeleteDhcpOptions.go │ │ │ ├── api_op_DeleteEgressOnlyInternetGateway.go │ │ │ ├── api_op_DeleteFleets.go │ │ │ ├── api_op_DeleteFlowLogs.go │ │ │ ├── api_op_DeleteFpgaImage.go │ │ │ ├── api_op_DeleteImageUsageReport.go │ │ │ ├── api_op_DeleteInstanceConnectEndpoint.go │ │ │ ├── api_op_DeleteInstanceEventWindow.go │ │ │ ├── api_op_DeleteInternetGateway.go │ │ │ ├── api_op_DeleteIpam.go │ │ │ ├── api_op_DeleteIpamExternalResourceVerificationToken.go │ │ │ ├── api_op_DeleteIpamPool.go │ │ │ ├── api_op_DeleteIpamPrefixListResolver.go │ │ │ ├── api_op_DeleteIpamPrefixListResolverTarget.go │ │ │ ├── api_op_DeleteIpamResourceDiscovery.go │ │ │ ├── api_op_DeleteIpamScope.go │ │ │ ├── api_op_DeleteKeyPair.go │ │ │ ├── api_op_DeleteLaunchTemplate.go │ │ │ ├── api_op_DeleteLaunchTemplateVersions.go │ │ │ ├── api_op_DeleteLocalGatewayRoute.go │ │ │ ├── api_op_DeleteLocalGatewayRouteTable.go │ │ │ ├── api_op_DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation.go │ │ │ ├── api_op_DeleteLocalGatewayRouteTableVpcAssociation.go │ │ │ ├── api_op_DeleteLocalGatewayVirtualInterface.go │ │ │ ├── api_op_DeleteLocalGatewayVirtualInterfaceGroup.go │ │ │ ├── api_op_DeleteManagedPrefixList.go │ │ │ ├── api_op_DeleteNatGateway.go │ │ │ ├── api_op_DeleteNetworkAcl.go │ │ │ ├── api_op_DeleteNetworkAclEntry.go │ │ │ ├── api_op_DeleteNetworkInsightsAccessScope.go │ │ │ ├── api_op_DeleteNetworkInsightsAccessScopeAnalysis.go │ │ │ ├── api_op_DeleteNetworkInsightsAnalysis.go │ │ │ ├── api_op_DeleteNetworkInsightsPath.go │ │ │ ├── api_op_DeleteNetworkInterface.go │ │ │ ├── api_op_DeleteNetworkInterfacePermission.go │ │ │ ├── api_op_DeletePlacementGroup.go │ │ │ ├── api_op_DeletePublicIpv4Pool.go │ │ │ ├── api_op_DeleteQueuedReservedInstances.go │ │ │ ├── api_op_DeleteRoute.go │ │ │ ├── api_op_DeleteRouteServer.go │ │ │ ├── api_op_DeleteRouteServerEndpoint.go │ │ │ ├── api_op_DeleteRouteServerPeer.go │ │ │ ├── api_op_DeleteRouteTable.go │ │ │ ├── api_op_DeleteSecurityGroup.go │ │ │ ├── api_op_DeleteSnapshot.go │ │ │ ├── api_op_DeleteSpotDatafeedSubscription.go │ │ │ ├── api_op_DeleteSubnet.go │ │ │ ├── api_op_DeleteSubnetCidrReservation.go │ │ │ ├── api_op_DeleteTags.go │ │ │ ├── api_op_DeleteTrafficMirrorFilter.go │ │ │ ├── api_op_DeleteTrafficMirrorFilterRule.go │ │ │ ├── api_op_DeleteTrafficMirrorSession.go │ │ │ ├── api_op_DeleteTrafficMirrorTarget.go │ │ │ ├── api_op_DeleteTransitGateway.go │ │ │ ├── api_op_DeleteTransitGatewayConnect.go │ │ │ ├── api_op_DeleteTransitGatewayConnectPeer.go │ │ │ ├── api_op_DeleteTransitGatewayMulticastDomain.go │ │ │ ├── api_op_DeleteTransitGatewayPeeringAttachment.go │ │ │ ├── api_op_DeleteTransitGatewayPolicyTable.go │ │ │ ├── api_op_DeleteTransitGatewayPrefixListReference.go │ │ │ ├── api_op_DeleteTransitGatewayRoute.go │ │ │ ├── api_op_DeleteTransitGatewayRouteTable.go │ │ │ ├── api_op_DeleteTransitGatewayRouteTableAnnouncement.go │ │ │ ├── api_op_DeleteTransitGatewayVpcAttachment.go │ │ │ ├── api_op_DeleteVerifiedAccessEndpoint.go │ │ │ ├── api_op_DeleteVerifiedAccessGroup.go │ │ │ ├── api_op_DeleteVerifiedAccessInstance.go │ │ │ ├── api_op_DeleteVerifiedAccessTrustProvider.go │ │ │ ├── api_op_DeleteVolume.go │ │ │ ├── api_op_DeleteVpc.go │ │ │ ├── api_op_DeleteVpcBlockPublicAccessExclusion.go │ │ │ ├── api_op_DeleteVpcEndpointConnectionNotifications.go │ │ │ ├── api_op_DeleteVpcEndpointServiceConfigurations.go │ │ │ ├── api_op_DeleteVpcEndpoints.go │ │ │ ├── api_op_DeleteVpcPeeringConnection.go │ │ │ ├── api_op_DeleteVpnConnection.go │ │ │ ├── api_op_DeleteVpnConnectionRoute.go │ │ │ ├── api_op_DeleteVpnGateway.go │ │ │ ├── api_op_DeprovisionByoipCidr.go │ │ │ ├── api_op_DeprovisionIpamByoasn.go │ │ │ ├── api_op_DeprovisionIpamPoolCidr.go │ │ │ ├── api_op_DeprovisionPublicIpv4PoolCidr.go │ │ │ ├── api_op_DeregisterImage.go │ │ │ ├── api_op_DeregisterInstanceEventNotificationAttributes.go │ │ │ ├── api_op_DeregisterTransitGatewayMulticastGroupMembers.go │ │ │ ├── api_op_DeregisterTransitGatewayMulticastGroupSources.go │ │ │ ├── api_op_DescribeAccountAttributes.go │ │ │ ├── api_op_DescribeAddressTransfers.go │ │ │ ├── api_op_DescribeAddresses.go │ │ │ ├── api_op_DescribeAddressesAttribute.go │ │ │ ├── api_op_DescribeAggregateIdFormat.go │ │ │ ├── api_op_DescribeAvailabilityZones.go │ │ │ ├── api_op_DescribeAwsNetworkPerformanceMetricSubscriptions.go │ │ │ ├── api_op_DescribeBundleTasks.go │ │ │ ├── api_op_DescribeByoipCidrs.go │ │ │ ├── api_op_DescribeCapacityBlockExtensionHistory.go │ │ │ ├── api_op_DescribeCapacityBlockExtensionOfferings.go │ │ │ ├── api_op_DescribeCapacityBlockOfferings.go │ │ │ ├── api_op_DescribeCapacityBlockStatus.go │ │ │ ├── api_op_DescribeCapacityBlocks.go │ │ │ ├── api_op_DescribeCapacityManagerDataExports.go │ │ │ ├── api_op_DescribeCapacityReservationBillingRequests.go │ │ │ ├── api_op_DescribeCapacityReservationFleets.go │ │ │ ├── api_op_DescribeCapacityReservationTopology.go │ │ │ ├── api_op_DescribeCapacityReservations.go │ │ │ ├── api_op_DescribeCarrierGateways.go │ │ │ ├── api_op_DescribeClassicLinkInstances.go │ │ │ ├── api_op_DescribeClientVpnAuthorizationRules.go │ │ │ ├── api_op_DescribeClientVpnConnections.go │ │ │ ├── api_op_DescribeClientVpnEndpoints.go │ │ │ ├── api_op_DescribeClientVpnRoutes.go │ │ │ ├── api_op_DescribeClientVpnTargetNetworks.go │ │ │ ├── api_op_DescribeCoipPools.go │ │ │ ├── api_op_DescribeConversionTasks.go │ │ │ ├── api_op_DescribeCustomerGateways.go │ │ │ ├── api_op_DescribeDeclarativePoliciesReports.go │ │ │ ├── api_op_DescribeDhcpOptions.go │ │ │ ├── api_op_DescribeEgressOnlyInternetGateways.go │ │ │ ├── api_op_DescribeElasticGpus.go │ │ │ ├── api_op_DescribeExportImageTasks.go │ │ │ ├── api_op_DescribeExportTasks.go │ │ │ ├── api_op_DescribeFastLaunchImages.go │ │ │ ├── api_op_DescribeFastSnapshotRestores.go │ │ │ ├── api_op_DescribeFleetHistory.go │ │ │ ├── api_op_DescribeFleetInstances.go │ │ │ ├── api_op_DescribeFleets.go │ │ │ ├── api_op_DescribeFlowLogs.go │ │ │ ├── api_op_DescribeFpgaImageAttribute.go │ │ │ ├── api_op_DescribeFpgaImages.go │ │ │ ├── api_op_DescribeHostReservationOfferings.go │ │ │ ├── api_op_DescribeHostReservations.go │ │ │ ├── api_op_DescribeHosts.go │ │ │ ├── api_op_DescribeIamInstanceProfileAssociations.go │ │ │ ├── api_op_DescribeIdFormat.go │ │ │ ├── api_op_DescribeIdentityIdFormat.go │ │ │ ├── api_op_DescribeImageAttribute.go │ │ │ ├── api_op_DescribeImageReferences.go │ │ │ ├── api_op_DescribeImageUsageReportEntries.go │ │ │ ├── api_op_DescribeImageUsageReports.go │ │ │ ├── api_op_DescribeImages.go │ │ │ ├── api_op_DescribeImportImageTasks.go │ │ │ ├── api_op_DescribeImportSnapshotTasks.go │ │ │ ├── api_op_DescribeInstanceAttribute.go │ │ │ ├── api_op_DescribeInstanceConnectEndpoints.go │ │ │ ├── api_op_DescribeInstanceCreditSpecifications.go │ │ │ ├── api_op_DescribeInstanceEventNotificationAttributes.go │ │ │ ├── api_op_DescribeInstanceEventWindows.go │ │ │ ├── api_op_DescribeInstanceImageMetadata.go │ │ │ ├── api_op_DescribeInstanceStatus.go │ │ │ ├── api_op_DescribeInstanceTopology.go │ │ │ ├── api_op_DescribeInstanceTypeOfferings.go │ │ │ ├── api_op_DescribeInstanceTypes.go │ │ │ ├── api_op_DescribeInstances.go │ │ │ ├── api_op_DescribeInternetGateways.go │ │ │ ├── api_op_DescribeIpamByoasn.go │ │ │ ├── api_op_DescribeIpamExternalResourceVerificationTokens.go │ │ │ ├── api_op_DescribeIpamPools.go │ │ │ ├── api_op_DescribeIpamPrefixListResolverTargets.go │ │ │ ├── api_op_DescribeIpamPrefixListResolvers.go │ │ │ ├── api_op_DescribeIpamResourceDiscoveries.go │ │ │ ├── api_op_DescribeIpamResourceDiscoveryAssociations.go │ │ │ ├── api_op_DescribeIpamScopes.go │ │ │ ├── api_op_DescribeIpams.go │ │ │ ├── api_op_DescribeIpv6Pools.go │ │ │ ├── api_op_DescribeKeyPairs.go │ │ │ ├── api_op_DescribeLaunchTemplateVersions.go │ │ │ ├── api_op_DescribeLaunchTemplates.go │ │ │ ├── api_op_DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations.go │ │ │ ├── api_op_DescribeLocalGatewayRouteTableVpcAssociations.go │ │ │ ├── api_op_DescribeLocalGatewayRouteTables.go │ │ │ ├── api_op_DescribeLocalGatewayVirtualInterfaceGroups.go │ │ │ ├── api_op_DescribeLocalGatewayVirtualInterfaces.go │ │ │ ├── api_op_DescribeLocalGateways.go │ │ │ ├── api_op_DescribeLockedSnapshots.go │ │ │ ├── api_op_DescribeMacHosts.go │ │ │ ├── api_op_DescribeMacModificationTasks.go │ │ │ ├── api_op_DescribeManagedPrefixLists.go │ │ │ ├── api_op_DescribeMovingAddresses.go │ │ │ ├── api_op_DescribeNatGateways.go │ │ │ ├── api_op_DescribeNetworkAcls.go │ │ │ ├── api_op_DescribeNetworkInsightsAccessScopeAnalyses.go │ │ │ ├── api_op_DescribeNetworkInsightsAccessScopes.go │ │ │ ├── api_op_DescribeNetworkInsightsAnalyses.go │ │ │ ├── api_op_DescribeNetworkInsightsPaths.go │ │ │ ├── api_op_DescribeNetworkInterfaceAttribute.go │ │ │ ├── api_op_DescribeNetworkInterfacePermissions.go │ │ │ ├── api_op_DescribeNetworkInterfaces.go │ │ │ ├── api_op_DescribeOutpostLags.go │ │ │ ├── api_op_DescribePlacementGroups.go │ │ │ ├── api_op_DescribePrefixLists.go │ │ │ ├── api_op_DescribePrincipalIdFormat.go │ │ │ ├── api_op_DescribePublicIpv4Pools.go │ │ │ ├── api_op_DescribeRegions.go │ │ │ ├── api_op_DescribeReplaceRootVolumeTasks.go │ │ │ ├── api_op_DescribeReservedInstances.go │ │ │ ├── api_op_DescribeReservedInstancesListings.go │ │ │ ├── api_op_DescribeReservedInstancesModifications.go │ │ │ ├── api_op_DescribeReservedInstancesOfferings.go │ │ │ ├── api_op_DescribeRouteServerEndpoints.go │ │ │ ├── api_op_DescribeRouteServerPeers.go │ │ │ ├── api_op_DescribeRouteServers.go │ │ │ ├── api_op_DescribeRouteTables.go │ │ │ ├── api_op_DescribeScheduledInstanceAvailability.go │ │ │ ├── api_op_DescribeScheduledInstances.go │ │ │ ├── api_op_DescribeSecurityGroupReferences.go │ │ │ ├── api_op_DescribeSecurityGroupRules.go │ │ │ ├── api_op_DescribeSecurityGroupVpcAssociations.go │ │ │ ├── api_op_DescribeSecurityGroups.go │ │ │ ├── api_op_DescribeServiceLinkVirtualInterfaces.go │ │ │ ├── api_op_DescribeSnapshotAttribute.go │ │ │ ├── api_op_DescribeSnapshotTierStatus.go │ │ │ ├── api_op_DescribeSnapshots.go │ │ │ ├── api_op_DescribeSpotDatafeedSubscription.go │ │ │ ├── api_op_DescribeSpotFleetInstances.go │ │ │ ├── api_op_DescribeSpotFleetRequestHistory.go │ │ │ ├── api_op_DescribeSpotFleetRequests.go │ │ │ ├── api_op_DescribeSpotInstanceRequests.go │ │ │ ├── api_op_DescribeSpotPriceHistory.go │ │ │ ├── api_op_DescribeStaleSecurityGroups.go │ │ │ ├── api_op_DescribeStoreImageTasks.go │ │ │ ├── api_op_DescribeSubnets.go │ │ │ ├── api_op_DescribeTags.go │ │ │ ├── api_op_DescribeTrafficMirrorFilterRules.go │ │ │ ├── api_op_DescribeTrafficMirrorFilters.go │ │ │ ├── api_op_DescribeTrafficMirrorSessions.go │ │ │ ├── api_op_DescribeTrafficMirrorTargets.go │ │ │ ├── api_op_DescribeTransitGatewayAttachments.go │ │ │ ├── api_op_DescribeTransitGatewayConnectPeers.go │ │ │ ├── api_op_DescribeTransitGatewayConnects.go │ │ │ ├── api_op_DescribeTransitGatewayMulticastDomains.go │ │ │ ├── api_op_DescribeTransitGatewayPeeringAttachments.go │ │ │ ├── api_op_DescribeTransitGatewayPolicyTables.go │ │ │ ├── api_op_DescribeTransitGatewayRouteTableAnnouncements.go │ │ │ ├── api_op_DescribeTransitGatewayRouteTables.go │ │ │ ├── api_op_DescribeTransitGatewayVpcAttachments.go │ │ │ ├── api_op_DescribeTransitGateways.go │ │ │ ├── api_op_DescribeTrunkInterfaceAssociations.go │ │ │ ├── api_op_DescribeVerifiedAccessEndpoints.go │ │ │ ├── api_op_DescribeVerifiedAccessGroups.go │ │ │ ├── api_op_DescribeVerifiedAccessInstanceLoggingConfigurations.go │ │ │ ├── api_op_DescribeVerifiedAccessInstances.go │ │ │ ├── api_op_DescribeVerifiedAccessTrustProviders.go │ │ │ ├── api_op_DescribeVolumeAttribute.go │ │ │ ├── api_op_DescribeVolumeStatus.go │ │ │ ├── api_op_DescribeVolumes.go │ │ │ ├── api_op_DescribeVolumesModifications.go │ │ │ ├── api_op_DescribeVpcAttribute.go │ │ │ ├── api_op_DescribeVpcBlockPublicAccessExclusions.go │ │ │ ├── api_op_DescribeVpcBlockPublicAccessOptions.go │ │ │ ├── api_op_DescribeVpcClassicLink.go │ │ │ ├── api_op_DescribeVpcClassicLinkDnsSupport.go │ │ │ ├── api_op_DescribeVpcEndpointAssociations.go │ │ │ ├── api_op_DescribeVpcEndpointConnectionNotifications.go │ │ │ ├── api_op_DescribeVpcEndpointConnections.go │ │ │ ├── api_op_DescribeVpcEndpointServiceConfigurations.go │ │ │ ├── api_op_DescribeVpcEndpointServicePermissions.go │ │ │ ├── api_op_DescribeVpcEndpointServices.go │ │ │ ├── api_op_DescribeVpcEndpoints.go │ │ │ ├── api_op_DescribeVpcPeeringConnections.go │ │ │ ├── api_op_DescribeVpcs.go │ │ │ ├── api_op_DescribeVpnConnections.go │ │ │ ├── api_op_DescribeVpnGateways.go │ │ │ ├── api_op_DetachClassicLinkVpc.go │ │ │ ├── api_op_DetachInternetGateway.go │ │ │ ├── api_op_DetachNetworkInterface.go │ │ │ ├── api_op_DetachVerifiedAccessTrustProvider.go │ │ │ ├── api_op_DetachVolume.go │ │ │ ├── api_op_DetachVpnGateway.go │ │ │ ├── api_op_DisableAddressTransfer.go │ │ │ ├── api_op_DisableAllowedImagesSettings.go │ │ │ ├── api_op_DisableAwsNetworkPerformanceMetricSubscription.go │ │ │ ├── api_op_DisableCapacityManager.go │ │ │ ├── api_op_DisableEbsEncryptionByDefault.go │ │ │ ├── api_op_DisableFastLaunch.go │ │ │ ├── api_op_DisableFastSnapshotRestores.go │ │ │ ├── api_op_DisableImage.go │ │ │ ├── api_op_DisableImageBlockPublicAccess.go │ │ │ ├── api_op_DisableImageDeprecation.go │ │ │ ├── api_op_DisableImageDeregistrationProtection.go │ │ │ ├── api_op_DisableIpamOrganizationAdminAccount.go │ │ │ ├── api_op_DisableRouteServerPropagation.go │ │ │ ├── api_op_DisableSerialConsoleAccess.go │ │ │ ├── api_op_DisableSnapshotBlockPublicAccess.go │ │ │ ├── api_op_DisableTransitGatewayRouteTablePropagation.go │ │ │ ├── api_op_DisableVgwRoutePropagation.go │ │ │ ├── api_op_DisableVpcClassicLink.go │ │ │ ├── api_op_DisableVpcClassicLinkDnsSupport.go │ │ │ ├── api_op_DisassociateAddress.go │ │ │ ├── api_op_DisassociateCapacityReservationBillingOwner.go │ │ │ ├── api_op_DisassociateClientVpnTargetNetwork.go │ │ │ ├── api_op_DisassociateEnclaveCertificateIamRole.go │ │ │ ├── api_op_DisassociateIamInstanceProfile.go │ │ │ ├── api_op_DisassociateInstanceEventWindow.go │ │ │ ├── api_op_DisassociateIpamByoasn.go │ │ │ ├── api_op_DisassociateIpamResourceDiscovery.go │ │ │ ├── api_op_DisassociateNatGatewayAddress.go │ │ │ ├── api_op_DisassociateRouteServer.go │ │ │ ├── api_op_DisassociateRouteTable.go │ │ │ ├── api_op_DisassociateSecurityGroupVpc.go │ │ │ ├── api_op_DisassociateSubnetCidrBlock.go │ │ │ ├── api_op_DisassociateTransitGatewayMulticastDomain.go │ │ │ ├── api_op_DisassociateTransitGatewayPolicyTable.go │ │ │ ├── api_op_DisassociateTransitGatewayRouteTable.go │ │ │ ├── api_op_DisassociateTrunkInterface.go │ │ │ ├── api_op_DisassociateVpcCidrBlock.go │ │ │ ├── api_op_EnableAddressTransfer.go │ │ │ ├── api_op_EnableAllowedImagesSettings.go │ │ │ ├── api_op_EnableAwsNetworkPerformanceMetricSubscription.go │ │ │ ├── api_op_EnableCapacityManager.go │ │ │ ├── api_op_EnableEbsEncryptionByDefault.go │ │ │ ├── api_op_EnableFastLaunch.go │ │ │ ├── api_op_EnableFastSnapshotRestores.go │ │ │ ├── api_op_EnableImage.go │ │ │ ├── api_op_EnableImageBlockPublicAccess.go │ │ │ ├── api_op_EnableImageDeprecation.go │ │ │ ├── api_op_EnableImageDeregistrationProtection.go │ │ │ ├── api_op_EnableIpamOrganizationAdminAccount.go │ │ │ ├── api_op_EnableReachabilityAnalyzerOrganizationSharing.go │ │ │ ├── api_op_EnableRouteServerPropagation.go │ │ │ ├── api_op_EnableSerialConsoleAccess.go │ │ │ ├── api_op_EnableSnapshotBlockPublicAccess.go │ │ │ ├── api_op_EnableTransitGatewayRouteTablePropagation.go │ │ │ ├── api_op_EnableVgwRoutePropagation.go │ │ │ ├── api_op_EnableVolumeIO.go │ │ │ ├── api_op_EnableVpcClassicLink.go │ │ │ ├── api_op_EnableVpcClassicLinkDnsSupport.go │ │ │ ├── api_op_ExportClientVpnClientCertificateRevocationList.go │ │ │ ├── api_op_ExportClientVpnClientConfiguration.go │ │ │ ├── api_op_ExportImage.go │ │ │ ├── api_op_ExportTransitGatewayRoutes.go │ │ │ ├── api_op_ExportVerifiedAccessInstanceClientConfiguration.go │ │ │ ├── api_op_GetActiveVpnTunnelStatus.go │ │ │ ├── api_op_GetAllowedImagesSettings.go │ │ │ ├── api_op_GetAssociatedEnclaveCertificateIamRoles.go │ │ │ ├── api_op_GetAssociatedIpv6PoolCidrs.go │ │ │ ├── api_op_GetAwsNetworkPerformanceData.go │ │ │ ├── api_op_GetCapacityManagerAttributes.go │ │ │ ├── api_op_GetCapacityManagerMetricData.go │ │ │ ├── api_op_GetCapacityManagerMetricDimensions.go │ │ │ ├── api_op_GetCapacityReservationUsage.go │ │ │ ├── api_op_GetCoipPoolUsage.go │ │ │ ├── api_op_GetConsoleOutput.go │ │ │ ├── api_op_GetConsoleScreenshot.go │ │ │ ├── api_op_GetDeclarativePoliciesReportSummary.go │ │ │ ├── api_op_GetDefaultCreditSpecification.go │ │ │ ├── api_op_GetEbsDefaultKmsKeyId.go │ │ │ ├── api_op_GetEbsEncryptionByDefault.go │ │ │ ├── api_op_GetFlowLogsIntegrationTemplate.go │ │ │ ├── api_op_GetGroupsForCapacityReservation.go │ │ │ ├── api_op_GetHostReservationPurchasePreview.go │ │ │ ├── api_op_GetImageBlockPublicAccessState.go │ │ │ ├── api_op_GetInstanceMetadataDefaults.go │ │ │ ├── api_op_GetInstanceTpmEkPub.go │ │ │ ├── api_op_GetInstanceTypesFromInstanceRequirements.go │ │ │ ├── api_op_GetInstanceUefiData.go │ │ │ ├── api_op_GetIpamAddressHistory.go │ │ │ ├── api_op_GetIpamDiscoveredAccounts.go │ │ │ ├── api_op_GetIpamDiscoveredPublicAddresses.go │ │ │ ├── api_op_GetIpamDiscoveredResourceCidrs.go │ │ │ ├── api_op_GetIpamPoolAllocations.go │ │ │ ├── api_op_GetIpamPoolCidrs.go │ │ │ ├── api_op_GetIpamPrefixListResolverRules.go │ │ │ ├── api_op_GetIpamPrefixListResolverVersionEntries.go │ │ │ ├── api_op_GetIpamPrefixListResolverVersions.go │ │ │ ├── api_op_GetIpamResourceCidrs.go │ │ │ ├── api_op_GetLaunchTemplateData.go │ │ │ ├── api_op_GetManagedPrefixListAssociations.go │ │ │ ├── api_op_GetManagedPrefixListEntries.go │ │ │ ├── api_op_GetNetworkInsightsAccessScopeAnalysisFindings.go │ │ │ ├── api_op_GetNetworkInsightsAccessScopeContent.go │ │ │ ├── api_op_GetPasswordData.go │ │ │ ├── api_op_GetReservedInstancesExchangeQuote.go │ │ │ ├── api_op_GetRouteServerAssociations.go │ │ │ ├── api_op_GetRouteServerPropagations.go │ │ │ ├── api_op_GetRouteServerRoutingDatabase.go │ │ │ ├── api_op_GetSecurityGroupsForVpc.go │ │ │ ├── api_op_GetSerialConsoleAccessStatus.go │ │ │ ├── api_op_GetSnapshotBlockPublicAccessState.go │ │ │ ├── api_op_GetSpotPlacementScores.go │ │ │ ├── api_op_GetSubnetCidrReservations.go │ │ │ ├── api_op_GetTransitGatewayAttachmentPropagations.go │ │ │ ├── api_op_GetTransitGatewayMulticastDomainAssociations.go │ │ │ ├── api_op_GetTransitGatewayPolicyTableAssociations.go │ │ │ ├── api_op_GetTransitGatewayPolicyTableEntries.go │ │ │ ├── api_op_GetTransitGatewayPrefixListReferences.go │ │ │ ├── api_op_GetTransitGatewayRouteTableAssociations.go │ │ │ ├── api_op_GetTransitGatewayRouteTablePropagations.go │ │ │ ├── api_op_GetVerifiedAccessEndpointPolicy.go │ │ │ ├── api_op_GetVerifiedAccessEndpointTargets.go │ │ │ ├── api_op_GetVerifiedAccessGroupPolicy.go │ │ │ ├── api_op_GetVpnConnectionDeviceSampleConfiguration.go │ │ │ ├── api_op_GetVpnConnectionDeviceTypes.go │ │ │ ├── api_op_GetVpnTunnelReplacementStatus.go │ │ │ ├── api_op_ImportClientVpnClientCertificateRevocationList.go │ │ │ ├── api_op_ImportImage.go │ │ │ ├── api_op_ImportInstance.go │ │ │ ├── api_op_ImportKeyPair.go │ │ │ ├── api_op_ImportSnapshot.go │ │ │ ├── api_op_ImportVolume.go │ │ │ ├── api_op_ListImagesInRecycleBin.go │ │ │ ├── api_op_ListSnapshotsInRecycleBin.go │ │ │ ├── api_op_LockSnapshot.go │ │ │ ├── api_op_ModifyAddressAttribute.go │ │ │ ├── api_op_ModifyAvailabilityZoneGroup.go │ │ │ ├── api_op_ModifyCapacityReservation.go │ │ │ ├── api_op_ModifyCapacityReservationFleet.go │ │ │ ├── api_op_ModifyClientVpnEndpoint.go │ │ │ ├── api_op_ModifyDefaultCreditSpecification.go │ │ │ ├── api_op_ModifyEbsDefaultKmsKeyId.go │ │ │ ├── api_op_ModifyFleet.go │ │ │ ├── api_op_ModifyFpgaImageAttribute.go │ │ │ ├── api_op_ModifyHosts.go │ │ │ ├── api_op_ModifyIdFormat.go │ │ │ ├── api_op_ModifyIdentityIdFormat.go │ │ │ ├── api_op_ModifyImageAttribute.go │ │ │ ├── api_op_ModifyInstanceAttribute.go │ │ │ ├── api_op_ModifyInstanceCapacityReservationAttributes.go │ │ │ ├── api_op_ModifyInstanceConnectEndpoint.go │ │ │ ├── api_op_ModifyInstanceCpuOptions.go │ │ │ ├── api_op_ModifyInstanceCreditSpecification.go │ │ │ ├── api_op_ModifyInstanceEventStartTime.go │ │ │ ├── api_op_ModifyInstanceEventWindow.go │ │ │ ├── api_op_ModifyInstanceMaintenanceOptions.go │ │ │ ├── api_op_ModifyInstanceMetadataDefaults.go │ │ │ ├── api_op_ModifyInstanceMetadataOptions.go │ │ │ ├── api_op_ModifyInstanceNetworkPerformanceOptions.go │ │ │ ├── api_op_ModifyInstancePlacement.go │ │ │ ├── api_op_ModifyIpam.go │ │ │ ├── api_op_ModifyIpamPool.go │ │ │ ├── api_op_ModifyIpamPrefixListResolver.go │ │ │ ├── api_op_ModifyIpamPrefixListResolverTarget.go │ │ │ ├── api_op_ModifyIpamResourceCidr.go │ │ │ ├── api_op_ModifyIpamResourceDiscovery.go │ │ │ ├── api_op_ModifyIpamScope.go │ │ │ ├── api_op_ModifyLaunchTemplate.go │ │ │ ├── api_op_ModifyLocalGatewayRoute.go │ │ │ ├── api_op_ModifyManagedPrefixList.go │ │ │ ├── api_op_ModifyNetworkInterfaceAttribute.go │ │ │ ├── api_op_ModifyPrivateDnsNameOptions.go │ │ │ ├── api_op_ModifyPublicIpDnsNameOptions.go │ │ │ ├── api_op_ModifyReservedInstances.go │ │ │ ├── api_op_ModifyRouteServer.go │ │ │ ├── api_op_ModifySecurityGroupRules.go │ │ │ ├── api_op_ModifySnapshotAttribute.go │ │ │ ├── api_op_ModifySnapshotTier.go │ │ │ ├── api_op_ModifySpotFleetRequest.go │ │ │ ├── api_op_ModifySubnetAttribute.go │ │ │ ├── api_op_ModifyTrafficMirrorFilterNetworkServices.go │ │ │ ├── api_op_ModifyTrafficMirrorFilterRule.go │ │ │ ├── api_op_ModifyTrafficMirrorSession.go │ │ │ ├── api_op_ModifyTransitGateway.go │ │ │ ├── api_op_ModifyTransitGatewayPrefixListReference.go │ │ │ ├── api_op_ModifyTransitGatewayVpcAttachment.go │ │ │ ├── api_op_ModifyVerifiedAccessEndpoint.go │ │ │ ├── api_op_ModifyVerifiedAccessEndpointPolicy.go │ │ │ ├── api_op_ModifyVerifiedAccessGroup.go │ │ │ ├── api_op_ModifyVerifiedAccessGroupPolicy.go │ │ │ ├── api_op_ModifyVerifiedAccessInstance.go │ │ │ ├── api_op_ModifyVerifiedAccessInstanceLoggingConfiguration.go │ │ │ ├── api_op_ModifyVerifiedAccessTrustProvider.go │ │ │ ├── api_op_ModifyVolume.go │ │ │ ├── api_op_ModifyVolumeAttribute.go │ │ │ ├── api_op_ModifyVpcAttribute.go │ │ │ ├── api_op_ModifyVpcBlockPublicAccessExclusion.go │ │ │ ├── api_op_ModifyVpcBlockPublicAccessOptions.go │ │ │ ├── api_op_ModifyVpcEndpoint.go │ │ │ ├── api_op_ModifyVpcEndpointConnectionNotification.go │ │ │ ├── api_op_ModifyVpcEndpointServiceConfiguration.go │ │ │ ├── api_op_ModifyVpcEndpointServicePayerResponsibility.go │ │ │ ├── api_op_ModifyVpcEndpointServicePermissions.go │ │ │ ├── api_op_ModifyVpcPeeringConnectionOptions.go │ │ │ ├── api_op_ModifyVpcTenancy.go │ │ │ ├── api_op_ModifyVpnConnection.go │ │ │ ├── api_op_ModifyVpnConnectionOptions.go │ │ │ ├── api_op_ModifyVpnTunnelCertificate.go │ │ │ ├── api_op_ModifyVpnTunnelOptions.go │ │ │ ├── api_op_MonitorInstances.go │ │ │ ├── api_op_MoveAddressToVpc.go │ │ │ ├── api_op_MoveByoipCidrToIpam.go │ │ │ ├── api_op_MoveCapacityReservationInstances.go │ │ │ ├── api_op_ProvisionByoipCidr.go │ │ │ ├── api_op_ProvisionIpamByoasn.go │ │ │ ├── api_op_ProvisionIpamPoolCidr.go │ │ │ ├── api_op_ProvisionPublicIpv4PoolCidr.go │ │ │ ├── api_op_PurchaseCapacityBlock.go │ │ │ ├── api_op_PurchaseCapacityBlockExtension.go │ │ │ ├── api_op_PurchaseHostReservation.go │ │ │ ├── api_op_PurchaseReservedInstancesOffering.go │ │ │ ├── api_op_PurchaseScheduledInstances.go │ │ │ ├── api_op_RebootInstances.go │ │ │ ├── api_op_RegisterImage.go │ │ │ ├── api_op_RegisterInstanceEventNotificationAttributes.go │ │ │ ├── api_op_RegisterTransitGatewayMulticastGroupMembers.go │ │ │ ├── api_op_RegisterTransitGatewayMulticastGroupSources.go │ │ │ ├── api_op_RejectCapacityReservationBillingOwnership.go │ │ │ ├── api_op_RejectTransitGatewayMulticastDomainAssociations.go │ │ │ ├── api_op_RejectTransitGatewayPeeringAttachment.go │ │ │ ├── api_op_RejectTransitGatewayVpcAttachment.go │ │ │ ├── api_op_RejectVpcEndpointConnections.go │ │ │ ├── api_op_RejectVpcPeeringConnection.go │ │ │ ├── api_op_ReleaseAddress.go │ │ │ ├── api_op_ReleaseHosts.go │ │ │ ├── api_op_ReleaseIpamPoolAllocation.go │ │ │ ├── api_op_ReplaceIamInstanceProfileAssociation.go │ │ │ ├── api_op_ReplaceImageCriteriaInAllowedImagesSettings.go │ │ │ ├── api_op_ReplaceNetworkAclAssociation.go │ │ │ ├── api_op_ReplaceNetworkAclEntry.go │ │ │ ├── api_op_ReplaceRoute.go │ │ │ ├── api_op_ReplaceRouteTableAssociation.go │ │ │ ├── api_op_ReplaceTransitGatewayRoute.go │ │ │ ├── api_op_ReplaceVpnTunnel.go │ │ │ ├── api_op_ReportInstanceStatus.go │ │ │ ├── api_op_RequestSpotFleet.go │ │ │ ├── api_op_RequestSpotInstances.go │ │ │ ├── api_op_ResetAddressAttribute.go │ │ │ ├── api_op_ResetEbsDefaultKmsKeyId.go │ │ │ ├── api_op_ResetFpgaImageAttribute.go │ │ │ ├── api_op_ResetImageAttribute.go │ │ │ ├── api_op_ResetInstanceAttribute.go │ │ │ ├── api_op_ResetNetworkInterfaceAttribute.go │ │ │ ├── api_op_ResetSnapshotAttribute.go │ │ │ ├── api_op_RestoreAddressToClassic.go │ │ │ ├── api_op_RestoreImageFromRecycleBin.go │ │ │ ├── api_op_RestoreManagedPrefixListVersion.go │ │ │ ├── api_op_RestoreSnapshotFromRecycleBin.go │ │ │ ├── api_op_RestoreSnapshotTier.go │ │ │ ├── api_op_RevokeClientVpnIngress.go │ │ │ ├── api_op_RevokeSecurityGroupEgress.go │ │ │ ├── api_op_RevokeSecurityGroupIngress.go │ │ │ ├── api_op_RunInstances.go │ │ │ ├── api_op_RunScheduledInstances.go │ │ │ ├── api_op_SearchLocalGatewayRoutes.go │ │ │ ├── api_op_SearchTransitGatewayMulticastGroups.go │ │ │ ├── api_op_SearchTransitGatewayRoutes.go │ │ │ ├── api_op_SendDiagnosticInterrupt.go │ │ │ ├── api_op_StartDeclarativePoliciesReport.go │ │ │ ├── api_op_StartInstances.go │ │ │ ├── api_op_StartNetworkInsightsAccessScopeAnalysis.go │ │ │ ├── api_op_StartNetworkInsightsAnalysis.go │ │ │ ├── api_op_StartVpcEndpointServicePrivateDnsVerification.go │ │ │ ├── api_op_StopInstances.go │ │ │ ├── api_op_TerminateClientVpnConnections.go │ │ │ ├── api_op_TerminateInstances.go │ │ │ ├── api_op_UnassignIpv6Addresses.go │ │ │ ├── api_op_UnassignPrivateIpAddresses.go │ │ │ ├── api_op_UnassignPrivateNatGatewayAddress.go │ │ │ ├── api_op_UnlockSnapshot.go │ │ │ ├── api_op_UnmonitorInstances.go │ │ │ ├── api_op_UpdateCapacityManagerOrganizationsAccess.go │ │ │ ├── api_op_UpdateSecurityGroupRuleDescriptionsEgress.go │ │ │ ├── api_op_UpdateSecurityGroupRuleDescriptionsIngress.go │ │ │ ├── api_op_WithdrawByoipCidr.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── internal │ │ │ ├── accept-encoding │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── accept_encoding_gzip.go │ │ │ │ ├── doc.go │ │ │ │ └── go_module_metadata.go │ │ │ ├── checksum │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── algorithms.go │ │ │ │ ├── aws_chunked_encoding.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── middleware_add.go │ │ │ │ ├── middleware_checksum_metrics_tracking.go │ │ │ │ ├── middleware_compute_input_checksum.go │ │ │ │ ├── middleware_setup_context.go │ │ │ │ └── middleware_validate_output.go │ │ │ ├── presigned-url │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ └── middleware.go │ │ │ └── s3shared │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── arn │ │ │ │ ├── accesspoint_arn.go │ │ │ │ ├── arn.go │ │ │ │ ├── arn_member.go │ │ │ │ ├── outpost_arn.go │ │ │ │ └── s3_object_lambda_arn.go │ │ │ │ ├── arn_lookup.go │ │ │ │ ├── config │ │ │ │ └── config.go │ │ │ │ ├── endpoint_error.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── host_id.go │ │ │ │ ├── metadata.go │ │ │ │ ├── metadata_retriever.go │ │ │ │ ├── resource_request.go │ │ │ │ ├── response_error.go │ │ │ │ ├── response_error_middleware.go │ │ │ │ ├── s3100continue.go │ │ │ │ ├── update_endpoint.go │ │ │ │ └── xml_utils.go │ │ │ ├── s3 │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AbortMultipartUpload.go │ │ │ ├── api_op_CompleteMultipartUpload.go │ │ │ ├── api_op_CopyObject.go │ │ │ ├── api_op_CreateBucket.go │ │ │ ├── api_op_CreateBucketMetadataConfiguration.go │ │ │ ├── api_op_CreateBucketMetadataTableConfiguration.go │ │ │ ├── api_op_CreateMultipartUpload.go │ │ │ ├── api_op_CreateSession.go │ │ │ ├── api_op_DeleteBucket.go │ │ │ ├── api_op_DeleteBucketAnalyticsConfiguration.go │ │ │ ├── api_op_DeleteBucketCors.go │ │ │ ├── api_op_DeleteBucketEncryption.go │ │ │ ├── api_op_DeleteBucketIntelligentTieringConfiguration.go │ │ │ ├── api_op_DeleteBucketInventoryConfiguration.go │ │ │ ├── api_op_DeleteBucketLifecycle.go │ │ │ ├── api_op_DeleteBucketMetadataConfiguration.go │ │ │ ├── api_op_DeleteBucketMetadataTableConfiguration.go │ │ │ ├── api_op_DeleteBucketMetricsConfiguration.go │ │ │ ├── api_op_DeleteBucketOwnershipControls.go │ │ │ ├── api_op_DeleteBucketPolicy.go │ │ │ ├── api_op_DeleteBucketReplication.go │ │ │ ├── api_op_DeleteBucketTagging.go │ │ │ ├── api_op_DeleteBucketWebsite.go │ │ │ ├── api_op_DeleteObject.go │ │ │ ├── api_op_DeleteObjectTagging.go │ │ │ ├── api_op_DeleteObjects.go │ │ │ ├── api_op_DeletePublicAccessBlock.go │ │ │ ├── api_op_GetBucketAccelerateConfiguration.go │ │ │ ├── api_op_GetBucketAcl.go │ │ │ ├── api_op_GetBucketAnalyticsConfiguration.go │ │ │ ├── api_op_GetBucketCors.go │ │ │ ├── api_op_GetBucketEncryption.go │ │ │ ├── api_op_GetBucketIntelligentTieringConfiguration.go │ │ │ ├── api_op_GetBucketInventoryConfiguration.go │ │ │ ├── api_op_GetBucketLifecycleConfiguration.go │ │ │ ├── api_op_GetBucketLocation.go │ │ │ ├── api_op_GetBucketLogging.go │ │ │ ├── api_op_GetBucketMetadataConfiguration.go │ │ │ ├── api_op_GetBucketMetadataTableConfiguration.go │ │ │ ├── api_op_GetBucketMetricsConfiguration.go │ │ │ ├── api_op_GetBucketNotificationConfiguration.go │ │ │ ├── api_op_GetBucketOwnershipControls.go │ │ │ ├── api_op_GetBucketPolicy.go │ │ │ ├── api_op_GetBucketPolicyStatus.go │ │ │ ├── api_op_GetBucketReplication.go │ │ │ ├── api_op_GetBucketRequestPayment.go │ │ │ ├── api_op_GetBucketTagging.go │ │ │ ├── api_op_GetBucketVersioning.go │ │ │ ├── api_op_GetBucketWebsite.go │ │ │ ├── api_op_GetObject.go │ │ │ ├── api_op_GetObjectAcl.go │ │ │ ├── api_op_GetObjectAttributes.go │ │ │ ├── api_op_GetObjectLegalHold.go │ │ │ ├── api_op_GetObjectLockConfiguration.go │ │ │ ├── api_op_GetObjectRetention.go │ │ │ ├── api_op_GetObjectTagging.go │ │ │ ├── api_op_GetObjectTorrent.go │ │ │ ├── api_op_GetPublicAccessBlock.go │ │ │ ├── api_op_HeadBucket.go │ │ │ ├── api_op_HeadObject.go │ │ │ ├── api_op_ListBucketAnalyticsConfigurations.go │ │ │ ├── api_op_ListBucketIntelligentTieringConfigurations.go │ │ │ ├── api_op_ListBucketInventoryConfigurations.go │ │ │ ├── api_op_ListBucketMetricsConfigurations.go │ │ │ ├── api_op_ListBuckets.go │ │ │ ├── api_op_ListDirectoryBuckets.go │ │ │ ├── api_op_ListMultipartUploads.go │ │ │ ├── api_op_ListObjectVersions.go │ │ │ ├── api_op_ListObjects.go │ │ │ ├── api_op_ListObjectsV2.go │ │ │ ├── api_op_ListParts.go │ │ │ ├── api_op_PutBucketAccelerateConfiguration.go │ │ │ ├── api_op_PutBucketAcl.go │ │ │ ├── api_op_PutBucketAnalyticsConfiguration.go │ │ │ ├── api_op_PutBucketCors.go │ │ │ ├── api_op_PutBucketEncryption.go │ │ │ ├── api_op_PutBucketIntelligentTieringConfiguration.go │ │ │ ├── api_op_PutBucketInventoryConfiguration.go │ │ │ ├── api_op_PutBucketLifecycleConfiguration.go │ │ │ ├── api_op_PutBucketLogging.go │ │ │ ├── api_op_PutBucketMetricsConfiguration.go │ │ │ ├── api_op_PutBucketNotificationConfiguration.go │ │ │ ├── api_op_PutBucketOwnershipControls.go │ │ │ ├── api_op_PutBucketPolicy.go │ │ │ ├── api_op_PutBucketReplication.go │ │ │ ├── api_op_PutBucketRequestPayment.go │ │ │ ├── api_op_PutBucketTagging.go │ │ │ ├── api_op_PutBucketVersioning.go │ │ │ ├── api_op_PutBucketWebsite.go │ │ │ ├── api_op_PutObject.go │ │ │ ├── api_op_PutObjectAcl.go │ │ │ ├── api_op_PutObjectLegalHold.go │ │ │ ├── api_op_PutObjectLockConfiguration.go │ │ │ ├── api_op_PutObjectRetention.go │ │ │ ├── api_op_PutObjectTagging.go │ │ │ ├── api_op_PutPublicAccessBlock.go │ │ │ ├── api_op_RenameObject.go │ │ │ ├── api_op_RestoreObject.go │ │ │ ├── api_op_SelectObjectContent.go │ │ │ ├── api_op_UpdateBucketMetadataInventoryTableConfiguration.go │ │ │ ├── api_op_UpdateBucketMetadataJournalTableConfiguration.go │ │ │ ├── api_op_UploadPart.go │ │ │ ├── api_op_UploadPartCopy.go │ │ │ ├── api_op_WriteGetObjectResponse.go │ │ │ ├── auth.go │ │ │ ├── bucket_context.go │ │ │ ├── bucketer.go │ │ │ ├── create_mpu_checksum.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoint_auth_resolver.go │ │ │ ├── endpoints.go │ │ │ ├── eventstream.go │ │ │ ├── express.go │ │ │ ├── express_default.go │ │ │ ├── express_resolve.go │ │ │ ├── express_user_agent.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── handwritten_paginators.go │ │ │ ├── internal │ │ │ │ ├── arn │ │ │ │ │ └── arn_parser.go │ │ │ │ ├── customizations │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── express.go │ │ │ │ │ ├── express_config.go │ │ │ │ │ ├── express_default_checksum.go │ │ │ │ │ ├── express_properties.go │ │ │ │ │ ├── express_signer.go │ │ │ │ │ ├── express_signer_smithy.go │ │ │ │ │ ├── handle_200_error.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── presigned_expires.go │ │ │ │ │ ├── process_arn_resource.go │ │ │ │ │ ├── remove_bucket_middleware.go │ │ │ │ │ ├── s3_object_lambda.go │ │ │ │ │ ├── signer_wrapper.go │ │ │ │ │ └── update_endpoint.go │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── presign_post.go │ │ │ ├── serialize_immutable_hostname_bucket.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ ├── uri_context.go │ │ │ └── validators.go │ │ │ ├── sso │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_GetRoleCredentials.go │ │ │ ├── api_op_ListAccountRoles.go │ │ │ ├── api_op_ListAccounts.go │ │ │ ├── api_op_Logout.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── ssooidc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_CreateToken.go │ │ │ ├── api_op_CreateTokenWithIAM.go │ │ │ ├── api_op_RegisterClient.go │ │ │ ├── api_op_StartDeviceAuthorization.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ └── sts │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AssumeRole.go │ │ │ ├── api_op_AssumeRoleWithSAML.go │ │ │ ├── api_op_AssumeRoleWithWebIdentity.go │ │ │ ├── api_op_AssumeRoot.go │ │ │ ├── api_op_DecodeAuthorizationMessage.go │ │ │ ├── api_op_GetAccessKeyInfo.go │ │ │ ├── api_op_GetCallerIdentity.go │ │ │ ├── api_op_GetFederationToken.go │ │ │ ├── api_op_GetSessionToken.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ └── endpoints │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ ├── errors.go │ │ │ └── types.go │ │ │ └── validators.go │ └── smithy-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── auth │ │ ├── auth.go │ │ ├── bearer │ │ │ ├── docs.go │ │ │ ├── middleware.go │ │ │ ├── token.go │ │ │ └── token_cache.go │ │ ├── identity.go │ │ ├── option.go │ │ └── scheme_id.go │ │ ├── changelog-template.json │ │ ├── container │ │ └── private │ │ │ └── cache │ │ │ ├── cache.go │ │ │ └── lru │ │ │ └── lru.go │ │ ├── context │ │ └── suppress_expired.go │ │ ├── doc.go │ │ ├── document.go │ │ ├── document │ │ ├── doc.go │ │ ├── document.go │ │ └── errors.go │ │ ├── encoding │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── httpbinding │ │ │ ├── encode.go │ │ │ ├── header.go │ │ │ ├── path_replace.go │ │ │ ├── query.go │ │ │ └── uri.go │ │ ├── json │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── decoder_util.go │ │ │ ├── encoder.go │ │ │ ├── escape.go │ │ │ ├── object.go │ │ │ └── value.go │ │ └── xml │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── element.go │ │ │ ├── encoder.go │ │ │ ├── error_utils.go │ │ │ ├── escape.go │ │ │ ├── map.go │ │ │ ├── value.go │ │ │ └── xml_decoder.go │ │ ├── endpoints │ │ ├── endpoint.go │ │ └── private │ │ │ └── rulesfn │ │ │ ├── doc.go │ │ │ ├── strings.go │ │ │ └── uri.go │ │ ├── errors.go │ │ ├── go_module_metadata.go │ │ ├── internal │ │ └── sync │ │ │ └── singleflight │ │ │ ├── LICENSE │ │ │ ├── docs.go │ │ │ └── singleflight.go │ │ ├── io │ │ ├── byte.go │ │ ├── doc.go │ │ ├── reader.go │ │ └── ringbuffer.go │ │ ├── local-mod-replace.sh │ │ ├── logging │ │ └── logger.go │ │ ├── metrics │ │ ├── metrics.go │ │ └── nop.go │ │ ├── middleware │ │ ├── context.go │ │ ├── doc.go │ │ ├── logging.go │ │ ├── metadata.go │ │ ├── middleware.go │ │ ├── ordered_group.go │ │ ├── stack.go │ │ ├── stack_values.go │ │ ├── step_build.go │ │ ├── step_deserialize.go │ │ ├── step_finalize.go │ │ ├── step_initialize.go │ │ └── step_serialize.go │ │ ├── modman.toml │ │ ├── private │ │ └── requestcompression │ │ │ ├── gzip.go │ │ │ ├── middleware_capture_request_compression.go │ │ │ └── request_compression.go │ │ ├── properties.go │ │ ├── ptr │ │ ├── doc.go │ │ ├── from_ptr.go │ │ ├── gen_scalars.go │ │ └── to_ptr.go │ │ ├── rand │ │ ├── doc.go │ │ ├── rand.go │ │ └── uuid.go │ │ ├── sync │ │ └── error.go │ │ ├── time │ │ └── time.go │ │ ├── tracing │ │ ├── context.go │ │ ├── nop.go │ │ └── tracing.go │ │ ├── transport │ │ └── http │ │ │ ├── auth.go │ │ │ ├── auth_schemes.go │ │ │ ├── checksum_middleware.go │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── headerlist.go │ │ │ ├── host.go │ │ │ ├── interceptor.go │ │ │ ├── interceptor_middleware.go │ │ │ ├── internal │ │ │ └── io │ │ │ │ └── safe.go │ │ │ ├── md5_checksum.go │ │ │ ├── metrics.go │ │ │ ├── middleware_close_response_body.go │ │ │ ├── middleware_content_length.go │ │ │ ├── middleware_header_comment.go │ │ │ ├── middleware_headers.go │ │ │ ├── middleware_http_logging.go │ │ │ ├── middleware_metadata.go │ │ │ ├── middleware_min_proto.go │ │ │ ├── properties.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── time.go │ │ │ ├── url.go │ │ │ └── user_agent.go │ │ ├── validation.go │ │ └── waiter │ │ ├── logger.go │ │ └── waiter.go ├── aymerick │ └── douceur │ │ ├── LICENSE │ │ ├── css │ │ ├── declaration.go │ │ ├── rule.go │ │ └── stylesheet.go │ │ └── parser │ │ └── parser.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── cenkalti │ └── backoff │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── context.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ ├── timer.go │ │ └── tries.go ├── cespare │ └── xxhash │ │ └── v2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── cncf │ └── xds │ │ └── go │ │ ├── LICENSE │ │ ├── udpa │ │ ├── annotations │ │ │ ├── migrate.pb.go │ │ │ ├── migrate.pb.validate.go │ │ │ ├── security.pb.go │ │ │ ├── security.pb.validate.go │ │ │ ├── sensitive.pb.go │ │ │ ├── sensitive.pb.validate.go │ │ │ ├── status.pb.go │ │ │ ├── status.pb.validate.go │ │ │ ├── versioning.pb.go │ │ │ └── versioning.pb.validate.go │ │ └── type │ │ │ └── v1 │ │ │ ├── typed_struct.pb.go │ │ │ └── typed_struct.pb.validate.go │ │ └── xds │ │ ├── annotations │ │ └── v3 │ │ │ ├── migrate.pb.go │ │ │ ├── migrate.pb.validate.go │ │ │ ├── security.pb.go │ │ │ ├── security.pb.validate.go │ │ │ ├── sensitive.pb.go │ │ │ ├── sensitive.pb.validate.go │ │ │ ├── status.pb.go │ │ │ ├── status.pb.validate.go │ │ │ ├── versioning.pb.go │ │ │ └── versioning.pb.validate.go │ │ ├── core │ │ └── v3 │ │ │ ├── authority.pb.go │ │ │ ├── authority.pb.validate.go │ │ │ ├── cidr.pb.go │ │ │ ├── cidr.pb.validate.go │ │ │ ├── collection_entry.pb.go │ │ │ ├── collection_entry.pb.validate.go │ │ │ ├── context_params.pb.go │ │ │ ├── context_params.pb.validate.go │ │ │ ├── extension.pb.go │ │ │ ├── extension.pb.validate.go │ │ │ ├── resource.pb.go │ │ │ ├── resource.pb.validate.go │ │ │ ├── resource_locator.pb.go │ │ │ ├── resource_locator.pb.validate.go │ │ │ ├── resource_name.pb.go │ │ │ └── resource_name.pb.validate.go │ │ ├── data │ │ └── orca │ │ │ └── v3 │ │ │ ├── orca_load_report.pb.go │ │ │ └── orca_load_report.pb.validate.go │ │ ├── service │ │ └── orca │ │ │ └── v3 │ │ │ ├── orca.pb.go │ │ │ ├── orca.pb.validate.go │ │ │ └── orca_grpc.pb.go │ │ └── type │ │ ├── matcher │ │ └── v3 │ │ │ ├── cel.pb.go │ │ │ ├── cel.pb.validate.go │ │ │ ├── domain.pb.go │ │ │ ├── domain.pb.validate.go │ │ │ ├── http_inputs.pb.go │ │ │ ├── http_inputs.pb.validate.go │ │ │ ├── ip.pb.go │ │ │ ├── ip.pb.validate.go │ │ │ ├── matcher.pb.go │ │ │ ├── matcher.pb.validate.go │ │ │ ├── range.pb.go │ │ │ ├── range.pb.validate.go │ │ │ ├── regex.pb.go │ │ │ ├── regex.pb.validate.go │ │ │ ├── string.pb.go │ │ │ └── string.pb.validate.go │ │ └── v3 │ │ ├── cel.pb.go │ │ ├── cel.pb.validate.go │ │ ├── range.pb.go │ │ ├── range.pb.validate.go │ │ ├── typed_struct.pb.go │ │ └── typed_struct.pb.validate.go ├── containerd │ ├── cgroups │ │ └── v3 │ │ │ ├── LICENSE │ │ │ └── cgroup1 │ │ │ └── stats │ │ │ ├── doc.go │ │ │ ├── metrics.pb.go │ │ │ ├── metrics.pb.txt │ │ │ └── metrics.proto │ ├── errdefs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── pkg │ │ │ ├── LICENSE │ │ │ ├── errgrpc │ │ │ │ └── grpc.go │ │ │ ├── errhttp │ │ │ │ └── http.go │ │ │ └── internal │ │ │ │ ├── cause │ │ │ │ └── cause.go │ │ │ │ └── types │ │ │ │ └── collapsible.go │ │ └── resolve.go │ ├── stargz-snapshotter │ │ └── estargz │ │ │ ├── LICENSE │ │ │ ├── build.go │ │ │ ├── errorutil │ │ │ └── errors.go │ │ │ ├── estargz.go │ │ │ ├── gzip.go │ │ │ ├── testutil.go │ │ │ └── types.go │ └── typeurl │ │ └── v2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── types.go │ │ └── types_gogo.go ├── containers │ ├── common │ │ ├── LICENSE │ │ └── pkg │ │ │ └── retry │ │ │ ├── retry.go │ │ │ ├── retry_linux.go │ │ │ └── retry_unsupported.go │ ├── image │ │ └── v5 │ │ │ ├── LICENSE │ │ │ ├── copy │ │ │ ├── blob.go │ │ │ ├── compression.go │ │ │ ├── copy.go │ │ │ ├── digesting_reader.go │ │ │ ├── encryption.go │ │ │ ├── manifest.go │ │ │ ├── multiple.go │ │ │ ├── progress_bars.go │ │ │ ├── progress_channel.go │ │ │ ├── sign.go │ │ │ └── single.go │ │ │ ├── directory │ │ │ ├── directory_dest.go │ │ │ ├── directory_src.go │ │ │ ├── directory_transport.go │ │ │ └── explicitfilepath │ │ │ │ └── path.go │ │ │ ├── docker │ │ │ ├── archive │ │ │ │ ├── dest.go │ │ │ │ ├── reader.go │ │ │ │ ├── src.go │ │ │ │ ├── transport.go │ │ │ │ └── writer.go │ │ │ ├── body_reader.go │ │ │ ├── cache.go │ │ │ ├── daemon │ │ │ │ ├── client.go │ │ │ │ ├── daemon_dest.go │ │ │ │ ├── daemon_src.go │ │ │ │ └── daemon_transport.go │ │ │ ├── distribution_error.go │ │ │ ├── docker_client.go │ │ │ ├── docker_image.go │ │ │ ├── docker_image_dest.go │ │ │ ├── docker_image_src.go │ │ │ ├── docker_transport.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── tarfile │ │ │ │ │ ├── dest.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── src.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── writer.go │ │ │ ├── paths_common.go │ │ │ ├── paths_freebsd.go │ │ │ ├── policyconfiguration │ │ │ │ └── naming.go │ │ │ ├── reference │ │ │ │ ├── README.md │ │ │ │ ├── helpers.go │ │ │ │ ├── normalize.go │ │ │ │ ├── reference.go │ │ │ │ ├── regexp-additions.go │ │ │ │ └── regexp.go │ │ │ ├── registries_d.go │ │ │ └── wwwauthenticate.go │ │ │ ├── internal │ │ │ ├── blobinfocache │ │ │ │ ├── blobinfocache.go │ │ │ │ └── types.go │ │ │ ├── image │ │ │ │ ├── docker_list.go │ │ │ │ ├── docker_schema1.go │ │ │ │ ├── docker_schema2.go │ │ │ │ ├── manifest.go │ │ │ │ ├── memory.go │ │ │ │ ├── oci.go │ │ │ │ ├── oci_index.go │ │ │ │ ├── sourced.go │ │ │ │ └── unparsed.go │ │ │ ├── imagedestination │ │ │ │ ├── impl │ │ │ │ │ ├── compat.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ └── properties.go │ │ │ │ ├── stubs │ │ │ │ │ ├── original_oci_config.go │ │ │ │ │ ├── put_blob_partial.go │ │ │ │ │ ├── signatures.go │ │ │ │ │ └── stubs.go │ │ │ │ └── wrapper.go │ │ │ ├── imagesource │ │ │ │ ├── impl │ │ │ │ │ ├── compat.go │ │ │ │ │ ├── layer_infos.go │ │ │ │ │ ├── properties.go │ │ │ │ │ └── signatures.go │ │ │ │ ├── stubs │ │ │ │ │ ├── get_blob_at.go │ │ │ │ │ └── stubs.go │ │ │ │ └── wrapper.go │ │ │ ├── iolimits │ │ │ │ └── iolimits.go │ │ │ ├── manifest │ │ │ │ ├── common.go │ │ │ │ ├── docker_schema2.go │ │ │ │ ├── docker_schema2_list.go │ │ │ │ ├── errors.go │ │ │ │ ├── list.go │ │ │ │ ├── manifest.go │ │ │ │ └── oci_index.go │ │ │ ├── multierr │ │ │ │ └── multierr.go │ │ │ ├── pkg │ │ │ │ └── platform │ │ │ │ │ └── platform_matcher.go │ │ │ ├── private │ │ │ │ └── private.go │ │ │ ├── putblobdigest │ │ │ │ └── put_blob_digest.go │ │ │ ├── rootless │ │ │ │ └── rootless.go │ │ │ ├── set │ │ │ │ └── set.go │ │ │ ├── signature │ │ │ │ ├── signature.go │ │ │ │ ├── sigstore.go │ │ │ │ └── simple.go │ │ │ ├── signer │ │ │ │ └── signer.go │ │ │ ├── streamdigest │ │ │ │ └── stream_digest.go │ │ │ ├── tmpdir │ │ │ │ └── tmpdir.go │ │ │ ├── unparsedimage │ │ │ │ └── wrapper.go │ │ │ ├── uploadreader │ │ │ │ └── upload_reader.go │ │ │ └── useragent │ │ │ │ └── useragent.go │ │ │ ├── manifest │ │ │ ├── common.go │ │ │ ├── docker_schema1.go │ │ │ ├── docker_schema2.go │ │ │ ├── docker_schema2_list.go │ │ │ ├── list.go │ │ │ ├── manifest.go │ │ │ ├── oci.go │ │ │ └── oci_index.go │ │ │ ├── oci │ │ │ ├── archive │ │ │ │ ├── oci_dest.go │ │ │ │ ├── oci_src.go │ │ │ │ └── oci_transport.go │ │ │ ├── internal │ │ │ │ └── oci_util.go │ │ │ └── layout │ │ │ │ ├── oci_delete.go │ │ │ │ ├── oci_dest.go │ │ │ │ ├── oci_src.go │ │ │ │ ├── oci_transport.go │ │ │ │ └── reader.go │ │ │ ├── openshift │ │ │ ├── openshift-copies.go │ │ │ ├── openshift.go │ │ │ ├── openshift_dest.go │ │ │ ├── openshift_src.go │ │ │ └── openshift_transport.go │ │ │ ├── pkg │ │ │ ├── blobinfocache │ │ │ │ ├── default.go │ │ │ │ ├── internal │ │ │ │ │ └── prioritize │ │ │ │ │ │ └── prioritize.go │ │ │ │ ├── memory │ │ │ │ │ └── memory.go │ │ │ │ ├── none │ │ │ │ │ └── none.go │ │ │ │ └── sqlite │ │ │ │ │ └── sqlite.go │ │ │ ├── compression │ │ │ │ ├── compression.go │ │ │ │ ├── internal │ │ │ │ │ └── types.go │ │ │ │ ├── types │ │ │ │ │ └── types.go │ │ │ │ └── zstd.go │ │ │ ├── docker │ │ │ │ └── config │ │ │ │ │ └── config.go │ │ │ ├── strslice │ │ │ │ ├── README.md │ │ │ │ └── strslice.go │ │ │ ├── sysregistriesv2 │ │ │ │ ├── paths_common.go │ │ │ │ ├── paths_freebsd.go │ │ │ │ ├── shortnames.go │ │ │ │ └── system_registries_v2.go │ │ │ └── tlsclientconfig │ │ │ │ └── tlsclientconfig.go │ │ │ ├── sif │ │ │ ├── load.go │ │ │ ├── src.go │ │ │ └── transport.go │ │ │ ├── signature │ │ │ ├── docker.go │ │ │ ├── fulcio_cert.go │ │ │ ├── internal │ │ │ │ ├── errors.go │ │ │ │ ├── json.go │ │ │ │ ├── rekor_api_types.go │ │ │ │ ├── rekor_set.go │ │ │ │ └── sigstore_payload.go │ │ │ ├── mechanism.go │ │ │ ├── mechanism_gpgme.go │ │ │ ├── mechanism_openpgp.go │ │ │ ├── pki_cert.go │ │ │ ├── policy_config.go │ │ │ ├── policy_config_sigstore.go │ │ │ ├── policy_eval.go │ │ │ ├── policy_eval_baselayer.go │ │ │ ├── policy_eval_signedby.go │ │ │ ├── policy_eval_sigstore.go │ │ │ ├── policy_eval_simple.go │ │ │ ├── policy_paths_common.go │ │ │ ├── policy_paths_freebsd.go │ │ │ ├── policy_reference_match.go │ │ │ ├── policy_types.go │ │ │ ├── signer │ │ │ │ └── signer.go │ │ │ ├── sigstore │ │ │ │ ├── copied.go │ │ │ │ ├── generate.go │ │ │ │ ├── internal │ │ │ │ │ └── signer.go │ │ │ │ └── signer.go │ │ │ ├── simple.go │ │ │ └── simplesigning │ │ │ │ └── signer.go │ │ │ ├── storage │ │ │ ├── storage_dest.go │ │ │ ├── storage_image.go │ │ │ ├── storage_reference.go │ │ │ ├── storage_src.go │ │ │ └── storage_transport.go │ │ │ ├── tarball │ │ │ ├── doc.go │ │ │ ├── tarball_reference.go │ │ │ ├── tarball_src.go │ │ │ └── tarball_transport.go │ │ │ ├── transports │ │ │ ├── alltransports │ │ │ │ ├── alltransports.go │ │ │ │ ├── docker_daemon.go │ │ │ │ ├── docker_daemon_stub.go │ │ │ │ ├── storage.go │ │ │ │ └── storage_stub.go │ │ │ ├── stub.go │ │ │ └── transports.go │ │ │ ├── types │ │ │ └── types.go │ │ │ └── version │ │ │ └── version.go │ ├── libtrust │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── certificates.go │ │ ├── doc.go │ │ ├── ec_key.go │ │ ├── ec_key_no_openssl.go │ │ ├── ec_key_openssl.go │ │ ├── filter.go │ │ ├── hash.go │ │ ├── jsonsign.go │ │ ├── key.go │ │ ├── key_files.go │ │ ├── key_manager.go │ │ ├── rsa_key.go │ │ └── util.go │ ├── ocicrypt │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── ADOPTERS.md │ │ ├── CODE-OF-CONDUCT.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── blockcipher │ │ │ ├── blockcipher.go │ │ │ └── blockcipher_aes_ctr.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── constructors.go │ │ │ └── keyprovider-config │ │ │ │ └── config.go │ │ ├── crypto │ │ │ └── pkcs11 │ │ │ │ ├── common.go │ │ │ │ ├── pkcs11helpers.go │ │ │ │ ├── pkcs11helpers_nocgo.go │ │ │ │ └── utils.go │ │ ├── encryption.go │ │ ├── gpg.go │ │ ├── gpgvault.go │ │ ├── keywrap │ │ │ ├── jwe │ │ │ │ └── keywrapper_jwe.go │ │ │ ├── keyprovider │ │ │ │ └── keyprovider.go │ │ │ ├── keywrap.go │ │ │ ├── pgp │ │ │ │ └── keywrapper_gpg.go │ │ │ ├── pkcs11 │ │ │ │ └── keywrapper_pkcs11.go │ │ │ └── pkcs7 │ │ │ │ └── keywrapper_pkcs7.go │ │ ├── reader.go │ │ ├── spec │ │ │ └── spec.go │ │ └── utils │ │ │ ├── delayedreader.go │ │ │ ├── ioutils.go │ │ │ ├── keyprovider │ │ │ ├── keyprovider.pb.go │ │ │ └── keyprovider.proto │ │ │ ├── testing.go │ │ │ └── utils.go │ └── storage │ │ ├── .cirrus.yml │ │ ├── .codespellrc │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── AUTHORS │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── check.go │ │ ├── containers.go │ │ ├── deprecated.go │ │ ├── drivers │ │ ├── aufs │ │ │ ├── aufs.go │ │ │ ├── dirs.go │ │ │ ├── mount.go │ │ │ └── mount_linux.go │ │ ├── btrfs │ │ │ ├── btrfs.go │ │ │ ├── dummy_unsupported.go │ │ │ └── version.go │ │ ├── chown.go │ │ ├── chown_darwin.go │ │ ├── chown_unix.go │ │ ├── chown_windows.go │ │ ├── chroot_unix.go │ │ ├── chroot_windows.go │ │ ├── copy │ │ │ ├── copy_linux.go │ │ │ └── copy_unsupported.go │ │ ├── counter.go │ │ ├── driver.go │ │ ├── driver_darwin.go │ │ ├── driver_freebsd.go │ │ ├── driver_linux.go │ │ ├── driver_solaris.go │ │ ├── driver_unsupported.go │ │ ├── driver_windows.go │ │ ├── fsdiff.go │ │ ├── jsoniter.go │ │ ├── overlay │ │ │ ├── check.go │ │ │ ├── check_116.go │ │ │ ├── composefs.go │ │ │ ├── jsoniter.go │ │ │ ├── mount.go │ │ │ ├── overlay.go │ │ │ ├── overlay_disk_quota.go │ │ │ ├── overlay_disk_quota_unsupported.go │ │ │ ├── overlay_unsupported.go │ │ │ └── randomid.go │ │ ├── overlayutils │ │ │ └── overlayutils.go │ │ ├── quota │ │ │ ├── projectquota.go │ │ │ ├── projectquota_supported.go │ │ │ └── projectquota_unsupported.go │ │ ├── register │ │ │ ├── register_aufs.go │ │ │ ├── register_btrfs.go │ │ │ ├── register_overlay.go │ │ │ ├── register_vfs.go │ │ │ ├── register_windows.go │ │ │ └── register_zfs.go │ │ ├── template.go │ │ ├── vfs │ │ │ ├── copy_linux.go │ │ │ ├── copy_unsupported.go │ │ │ └── driver.go │ │ ├── windows │ │ │ ├── jsoniter_windows.go │ │ │ └── windows.go │ │ └── zfs │ │ │ ├── MAINTAINERS │ │ │ ├── zfs.go │ │ │ ├── zfs_freebsd.go │ │ │ ├── zfs_linux.go │ │ │ └── zfs_unsupported.go │ │ ├── errors.go │ │ ├── idset.go │ │ ├── images.go │ │ ├── internal │ │ ├── dedup │ │ │ ├── dedup.go │ │ │ ├── dedup_linux.go │ │ │ └── dedup_unsupported.go │ │ ├── rawfilelock │ │ │ ├── rawfilelock.go │ │ │ ├── rawfilelock_unix.go │ │ │ └── rawfilelock_windows.go │ │ ├── staging_lockfile │ │ │ └── staging_lockfile.go │ │ └── tempdir │ │ │ └── tempdir.go │ │ ├── jsoniter.go │ │ ├── layers.go │ │ ├── lockfile_compat.go │ │ ├── pkg │ │ ├── archive │ │ │ ├── README.md │ │ │ ├── archive.go │ │ │ ├── archive_110.go │ │ │ ├── archive_19.go │ │ │ ├── archive_bsd.go │ │ │ ├── archive_linux.go │ │ │ ├── archive_other.go │ │ │ ├── archive_unix.go │ │ │ ├── archive_windows.go │ │ │ ├── archive_zstd.go │ │ │ ├── changes.go │ │ │ ├── changes_linux.go │ │ │ ├── changes_other.go │ │ │ ├── changes_unix.go │ │ │ ├── changes_windows.go │ │ │ ├── copy.go │ │ │ ├── copy_unix.go │ │ │ ├── copy_windows.go │ │ │ ├── diff.go │ │ │ ├── fflags_bsd.go │ │ │ ├── fflags_unsupported.go │ │ │ ├── filter.go │ │ │ ├── time_linux.go │ │ │ ├── time_unsupported.go │ │ │ ├── whiteouts.go │ │ │ └── wrap.go │ │ ├── chrootarchive │ │ │ ├── archive.go │ │ │ ├── archive_darwin.go │ │ │ ├── archive_unix.go │ │ │ ├── archive_windows.go │ │ │ ├── chroot_linux.go │ │ │ ├── chroot_unix.go │ │ │ ├── diff.go │ │ │ ├── diff_darwin.go │ │ │ ├── diff_unix.go │ │ │ ├── diff_windows.go │ │ │ ├── init_unix.go │ │ │ └── jsoniter.go │ │ ├── chunked │ │ │ ├── bloom_filter_linux.go │ │ │ ├── cache_linux.go │ │ │ ├── compression.go │ │ │ ├── compression_linux.go │ │ │ ├── compressor │ │ │ │ ├── compressor.go │ │ │ │ └── rollsum.go │ │ │ ├── dump │ │ │ │ └── dump.go │ │ │ ├── filesystem_linux.go │ │ │ ├── internal │ │ │ │ ├── minimal │ │ │ │ │ └── compression.go │ │ │ │ └── path │ │ │ │ │ └── path.go │ │ │ ├── storage.go │ │ │ ├── storage_linux.go │ │ │ ├── storage_unsupported.go │ │ │ └── toc │ │ │ │ └── toc.go │ │ ├── config │ │ │ └── config.go │ │ ├── directory │ │ │ ├── directory.go │ │ │ ├── directory_unix.go │ │ │ └── directory_windows.go │ │ ├── fileutils │ │ │ ├── exists_freebsd.go │ │ │ ├── exists_unix.go │ │ │ ├── exists_windows.go │ │ │ ├── fileutils.go │ │ │ ├── fileutils_darwin.go │ │ │ ├── fileutils_solaris.go │ │ │ ├── fileutils_unix.go │ │ │ ├── fileutils_windows.go │ │ │ ├── reflink_linux.go │ │ │ └── reflink_unsupported.go │ │ ├── fsutils │ │ │ └── fsutils_linux.go │ │ ├── fsverity │ │ │ ├── fsverity_linux.go │ │ │ └── fsverity_unsupported.go │ │ ├── homedir │ │ │ ├── homedir.go │ │ │ ├── homedir_unix.go │ │ │ └── homedir_windows.go │ │ ├── idmap │ │ │ ├── idmapped_utils.go │ │ │ └── idmapped_utils_unsupported.go │ │ ├── idtools │ │ │ ├── idtools.go │ │ │ ├── idtools_supported.go │ │ │ ├── idtools_unix.go │ │ │ ├── idtools_unsupported.go │ │ │ ├── idtools_windows.go │ │ │ ├── parser.go │ │ │ ├── usergroupadd_linux.go │ │ │ ├── usergroupadd_unsupported.go │ │ │ └── utils_unix.go │ │ ├── ioutils │ │ │ ├── buffer.go │ │ │ ├── bytespipe.go │ │ │ ├── fswriters.go │ │ │ ├── fswriters_linux.go │ │ │ ├── fswriters_other.go │ │ │ ├── readers.go │ │ │ ├── temp_unix.go │ │ │ ├── temp_windows.go │ │ │ ├── writeflusher.go │ │ │ └── writers.go │ │ ├── locker │ │ │ ├── README.md │ │ │ └── locker.go │ │ ├── lockfile │ │ │ ├── lastwrite.go │ │ │ ├── lockfile.go │ │ │ ├── lockfile_unix.go │ │ │ └── lockfile_windows.go │ │ ├── longpath │ │ │ └── longpath.go │ │ ├── loopback │ │ │ ├── attach_loopback.go │ │ │ ├── ioctl.go │ │ │ ├── loop_wrapper.go │ │ │ ├── loopback.go │ │ │ └── loopback_unsupported.go │ │ ├── mount │ │ │ ├── flags.go │ │ │ ├── flags_freebsd.go │ │ │ ├── flags_linux.go │ │ │ ├── flags_unsupported.go │ │ │ ├── mount.go │ │ │ ├── mounter_freebsd.go │ │ │ ├── mounter_linux.go │ │ │ ├── mounter_unsupported.go │ │ │ ├── mountinfo.go │ │ │ ├── mountinfo_linux.go │ │ │ ├── sharedsubtree_linux.go │ │ │ ├── unmount_unix.go │ │ │ └── unmount_unsupported.go │ │ ├── parsers │ │ │ └── parsers.go │ │ ├── pools │ │ │ └── pools.go │ │ ├── promise │ │ │ └── promise.go │ │ ├── reexec │ │ │ ├── README.md │ │ │ ├── command_freebsd.go │ │ │ ├── command_linux.go │ │ │ ├── command_unix.go │ │ │ ├── command_unsupported.go │ │ │ ├── command_windows.go │ │ │ └── reexec.go │ │ ├── regexp │ │ │ ├── regexp.go │ │ │ ├── regexp_dontprecompile.go │ │ │ └── regexp_precompile.go │ │ ├── stringid │ │ │ ├── README.md │ │ │ └── stringid.go │ │ ├── stringutils │ │ │ ├── README.md │ │ │ └── stringutils.go │ │ ├── system │ │ │ ├── chmod.go │ │ │ ├── chtimes.go │ │ │ ├── chtimes_unix.go │ │ │ ├── chtimes_windows.go │ │ │ ├── errors.go │ │ │ ├── exitcode.go │ │ │ ├── extattr_freebsd.go │ │ │ ├── extattr_unsupported.go │ │ │ ├── init.go │ │ │ ├── init_windows.go │ │ │ ├── lchflags_bsd.go │ │ │ ├── lchown.go │ │ │ ├── lcow_unix.go │ │ │ ├── lcow_windows.go │ │ │ ├── lstat_unix.go │ │ │ ├── lstat_windows.go │ │ │ ├── meminfo.go │ │ │ ├── meminfo_freebsd.go │ │ │ ├── meminfo_linux.go │ │ │ ├── meminfo_solaris.go │ │ │ ├── meminfo_unsupported.go │ │ │ ├── meminfo_windows.go │ │ │ ├── mknod.go │ │ │ ├── mknod_freebsd.go │ │ │ ├── mknod_windows.go │ │ │ ├── path.go │ │ │ ├── path_unix.go │ │ │ ├── path_windows.go │ │ │ ├── process_unix.go │ │ │ ├── rm.go │ │ │ ├── rm_common.go │ │ │ ├── rm_freebsd.go │ │ │ ├── stat_common.go │ │ │ ├── stat_darwin.go │ │ │ ├── stat_freebsd.go │ │ │ ├── stat_linux.go │ │ │ ├── stat_netbsd.go │ │ │ ├── stat_openbsd.go │ │ │ ├── stat_solaris.go │ │ │ ├── stat_unix.go │ │ │ ├── stat_windows.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_windows.go │ │ │ ├── umask.go │ │ │ ├── umask_windows.go │ │ │ ├── utimes_freebsd.go │ │ │ ├── utimes_linux.go │ │ │ ├── utimes_unsupported.go │ │ │ ├── xattrs_darwin.go │ │ │ ├── xattrs_freebsd.go │ │ │ ├── xattrs_linux.go │ │ │ └── xattrs_unsupported.go │ │ ├── tarlog │ │ │ └── tarlogger.go │ │ ├── truncindex │ │ │ └── truncindex.go │ │ └── unshare │ │ │ ├── getenv_linux_cgo.go │ │ │ ├── getenv_linux_nocgo.go │ │ │ ├── unshare.c │ │ │ ├── unshare.go │ │ │ ├── unshare_cgo.go │ │ │ ├── unshare_darwin.go │ │ │ ├── unshare_freebsd.c │ │ │ ├── unshare_freebsd.go │ │ │ ├── unshare_gccgo.go │ │ │ ├── unshare_linux.go │ │ │ ├── unshare_unsupported.go │ │ │ └── unshare_unsupported_cgo.go │ │ ├── storage.conf │ │ ├── storage.conf-freebsd │ │ ├── store.go │ │ ├── types │ │ ├── default_override_test.conf │ │ ├── errors.go │ │ ├── idmappings.go │ │ ├── options.go │ │ ├── options_bsd.go │ │ ├── options_darwin.go │ │ ├── options_linux.go │ │ ├── options_windows.go │ │ ├── storage_broken.conf │ │ ├── storage_test.conf │ │ └── utils.go │ │ ├── userns.go │ │ ├── userns_unsupported.go │ │ └── utils.go ├── coreos │ ├── go-semver │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── semver │ │ │ ├── semver.go │ │ │ └── sort.go │ └── go-systemd │ │ └── v22 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── activation │ │ ├── files_unix.go │ │ ├── files_windows.go │ │ ├── listeners.go │ │ └── packetconns.go │ │ └── journal │ │ ├── journal.go │ │ ├── journal_unix.go │ │ └── journal_windows.go ├── cyberphone │ └── json-canonicalization │ │ ├── LICENSE │ │ └── go │ │ └── src │ │ └── webpki.org │ │ └── jsoncanonicalizer │ │ ├── es6numfmt.go │ │ └── jsoncanonicalizer.go ├── cyphar │ └── filepath-securejoin │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── doc.go │ │ ├── gocompat_errors_go120.go │ │ ├── gocompat_errors_unsupported.go │ │ ├── gocompat_generics_go121.go │ │ ├── gocompat_generics_unsupported.go │ │ ├── join.go │ │ ├── lookup_linux.go │ │ ├── mkdir_linux.go │ │ ├── open_linux.go │ │ ├── openat2_linux.go │ │ ├── openat_linux.go │ │ ├── procfs_linux.go │ │ └── vfs.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── distribution │ └── reference │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── distribution-logo.svg │ │ ├── helpers.go │ │ ├── normalize.go │ │ ├── reference.go │ │ ├── regexp.go │ │ └── sort.go ├── docker │ ├── distribution │ │ ├── LICENSE │ │ └── registry │ │ │ └── api │ │ │ ├── errcode │ │ │ ├── errors.go │ │ │ ├── handler.go │ │ │ └── register.go │ │ │ └── v2 │ │ │ ├── descriptors.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── headerparser.go │ │ │ ├── routes.go │ │ │ └── urls.go │ ├── docker-credential-helpers │ │ ├── LICENSE │ │ ├── client │ │ │ ├── client.go │ │ │ └── command.go │ │ └── credentials │ │ │ ├── credentials.go │ │ │ ├── error.go │ │ │ ├── helper.go │ │ │ └── version.go │ ├── docker │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── api │ │ │ ├── README.md │ │ │ ├── common.go │ │ │ ├── swagger-gen.yaml │ │ │ ├── swagger.yaml │ │ │ └── types │ │ │ │ ├── blkiodev │ │ │ │ └── blkio.go │ │ │ │ ├── build │ │ │ │ ├── build.go │ │ │ │ ├── cache.go │ │ │ │ └── disk_usage.go │ │ │ │ ├── checkpoint │ │ │ │ ├── list.go │ │ │ │ └── options.go │ │ │ │ ├── client.go │ │ │ │ ├── common │ │ │ │ └── id_response.go │ │ │ │ ├── container │ │ │ │ ├── change_type.go │ │ │ │ ├── change_types.go │ │ │ │ ├── commit.go │ │ │ │ ├── config.go │ │ │ │ ├── container.go │ │ │ │ ├── create_request.go │ │ │ │ ├── create_response.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── errors.go │ │ │ │ ├── exec.go │ │ │ │ ├── filesystem_change.go │ │ │ │ ├── health.go │ │ │ │ ├── hostconfig.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ ├── hostconfig_windows.go │ │ │ │ ├── network_settings.go │ │ │ │ ├── options.go │ │ │ │ ├── port.go │ │ │ │ ├── state.go │ │ │ │ ├── stats.go │ │ │ │ ├── top_response.go │ │ │ │ ├── update_response.go │ │ │ │ ├── wait_exit_error.go │ │ │ │ ├── wait_response.go │ │ │ │ └── waitcondition.go │ │ │ │ ├── error_response.go │ │ │ │ ├── error_response_ext.go │ │ │ │ ├── events │ │ │ │ └── events.go │ │ │ │ ├── filters │ │ │ │ ├── errors.go │ │ │ │ └── parse.go │ │ │ │ ├── image │ │ │ │ ├── delete_response.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── image.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── manifest.go │ │ │ │ ├── opts.go │ │ │ │ └── summary.go │ │ │ │ ├── mount │ │ │ │ └── mount.go │ │ │ │ ├── network │ │ │ │ ├── create_response.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── ipam.go │ │ │ │ └── network.go │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_device.go │ │ │ │ ├── plugin_env.go │ │ │ │ ├── plugin_interface_type.go │ │ │ │ ├── plugin_mount.go │ │ │ │ ├── plugin_responses.go │ │ │ │ ├── registry │ │ │ │ ├── authconfig.go │ │ │ │ ├── authenticate.go │ │ │ │ ├── registry.go │ │ │ │ └── search.go │ │ │ │ ├── storage │ │ │ │ └── driver_data.go │ │ │ │ ├── strslice │ │ │ │ └── strslice.go │ │ │ │ ├── swarm │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── container.go │ │ │ │ ├── network.go │ │ │ │ ├── node.go │ │ │ │ ├── runtime.go │ │ │ │ ├── runtime │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ └── plugin.proto │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_create_response.go │ │ │ │ ├── service_update_response.go │ │ │ │ ├── swarm.go │ │ │ │ └── task.go │ │ │ │ ├── system │ │ │ │ ├── disk_usage.go │ │ │ │ ├── info.go │ │ │ │ ├── runtime.go │ │ │ │ └── security_opts.go │ │ │ │ ├── time │ │ │ │ └── timestamp.go │ │ │ │ ├── types.go │ │ │ │ ├── types_deprecated.go │ │ │ │ ├── versions │ │ │ │ └── compare.go │ │ │ │ └── volume │ │ │ │ ├── cluster_volume.go │ │ │ │ ├── create_options.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── list_response.go │ │ │ │ ├── options.go │ │ │ │ ├── volume.go │ │ │ │ └── volume_update.go │ │ ├── client │ │ │ ├── README.md │ │ │ ├── build_cancel.go │ │ │ ├── build_prune.go │ │ │ ├── checkpoint.go │ │ │ ├── checkpoint_create.go │ │ │ ├── checkpoint_delete.go │ │ │ ├── checkpoint_list.go │ │ │ ├── client.go │ │ │ ├── client_deprecated.go │ │ │ ├── client_interfaces.go │ │ │ ├── client_unix.go │ │ │ ├── client_windows.go │ │ │ ├── config_create.go │ │ │ ├── config_inspect.go │ │ │ ├── config_list.go │ │ │ ├── config_remove.go │ │ │ ├── config_update.go │ │ │ ├── container_attach.go │ │ │ ├── container_commit.go │ │ │ ├── container_copy.go │ │ │ ├── container_create.go │ │ │ ├── container_diff.go │ │ │ ├── container_exec.go │ │ │ ├── container_export.go │ │ │ ├── container_inspect.go │ │ │ ├── container_kill.go │ │ │ ├── container_list.go │ │ │ ├── container_logs.go │ │ │ ├── container_pause.go │ │ │ ├── container_prune.go │ │ │ ├── container_remove.go │ │ │ ├── container_rename.go │ │ │ ├── container_resize.go │ │ │ ├── container_restart.go │ │ │ ├── container_start.go │ │ │ ├── container_stats.go │ │ │ ├── container_stop.go │ │ │ ├── container_top.go │ │ │ ├── container_unpause.go │ │ │ ├── container_update.go │ │ │ ├── container_wait.go │ │ │ ├── disk_usage.go │ │ │ ├── distribution_inspect.go │ │ │ ├── envvars.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── hijack.go │ │ │ ├── image_build.go │ │ │ ├── image_create.go │ │ │ ├── image_history.go │ │ │ ├── image_history_opts.go │ │ │ ├── image_import.go │ │ │ ├── image_inspect.go │ │ │ ├── image_inspect_opts.go │ │ │ ├── image_list.go │ │ │ ├── image_load.go │ │ │ ├── image_load_opts.go │ │ │ ├── image_prune.go │ │ │ ├── image_pull.go │ │ │ ├── image_push.go │ │ │ ├── image_remove.go │ │ │ ├── image_save.go │ │ │ ├── image_save_opts.go │ │ │ ├── image_search.go │ │ │ ├── image_tag.go │ │ │ ├── info.go │ │ │ ├── login.go │ │ │ ├── network_connect.go │ │ │ ├── network_create.go │ │ │ ├── network_disconnect.go │ │ │ ├── network_inspect.go │ │ │ ├── network_list.go │ │ │ ├── network_prune.go │ │ │ ├── network_remove.go │ │ │ ├── node_inspect.go │ │ │ ├── node_list.go │ │ │ ├── node_remove.go │ │ │ ├── node_update.go │ │ │ ├── options.go │ │ │ ├── ping.go │ │ │ ├── plugin_create.go │ │ │ ├── plugin_disable.go │ │ │ ├── plugin_enable.go │ │ │ ├── plugin_inspect.go │ │ │ ├── plugin_install.go │ │ │ ├── plugin_list.go │ │ │ ├── plugin_push.go │ │ │ ├── plugin_remove.go │ │ │ ├── plugin_set.go │ │ │ ├── plugin_upgrade.go │ │ │ ├── request.go │ │ │ ├── secret_create.go │ │ │ ├── secret_inspect.go │ │ │ ├── secret_list.go │ │ │ ├── secret_remove.go │ │ │ ├── secret_update.go │ │ │ ├── service_create.go │ │ │ ├── service_inspect.go │ │ │ ├── service_list.go │ │ │ ├── service_logs.go │ │ │ ├── service_remove.go │ │ │ ├── service_update.go │ │ │ ├── swarm_get_unlock_key.go │ │ │ ├── swarm_init.go │ │ │ ├── swarm_inspect.go │ │ │ ├── swarm_join.go │ │ │ ├── swarm_leave.go │ │ │ ├── swarm_unlock.go │ │ │ ├── swarm_update.go │ │ │ ├── task_inspect.go │ │ │ ├── task_list.go │ │ │ ├── task_logs.go │ │ │ ├── utils.go │ │ │ ├── version.go │ │ │ ├── volume_create.go │ │ │ ├── volume_inspect.go │ │ │ ├── volume_list.go │ │ │ ├── volume_prune.go │ │ │ ├── volume_remove.go │ │ │ └── volume_update.go │ │ └── internal │ │ │ ├── lazyregexp │ │ │ └── lazyregexp.go │ │ │ └── multierror │ │ │ └── multierror.go │ ├── go-connections │ │ ├── LICENSE │ │ ├── nat │ │ │ ├── nat.go │ │ │ ├── parse.go │ │ │ └── sort.go │ │ ├── sockets │ │ │ ├── README.md │ │ │ ├── inmem_socket.go │ │ │ ├── proxy.go │ │ │ ├── sockets.go │ │ │ ├── sockets_unix.go │ │ │ ├── sockets_windows.go │ │ │ ├── tcp_socket.go │ │ │ └── unix_socket.go │ │ └── tlsconfig │ │ │ ├── certpool.go │ │ │ ├── config.go │ │ │ └── config_client_ciphers.go │ └── go-units │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── circle.yml │ │ ├── duration.go │ │ ├── size.go │ │ └── ulimit.go ├── dougm │ └── pretty │ │ ├── .gitignore │ │ ├── License │ │ ├── Readme │ │ ├── diff.go │ │ ├── formatter.go │ │ ├── pretty.go │ │ └── zero.go ├── dprotaso │ └── go-yit │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aggregates.go │ │ ├── iterator.go │ │ └── predicates.go ├── envoyproxy │ ├── go-control-plane │ │ └── envoy │ │ │ ├── LICENSE │ │ │ ├── admin │ │ │ └── v3 │ │ │ │ ├── certs.pb.go │ │ │ │ ├── certs.pb.validate.go │ │ │ │ ├── certs_vtproto.pb.go │ │ │ │ ├── clusters.pb.go │ │ │ │ ├── clusters.pb.validate.go │ │ │ │ ├── clusters_vtproto.pb.go │ │ │ │ ├── config_dump.pb.go │ │ │ │ ├── config_dump.pb.validate.go │ │ │ │ ├── config_dump_shared.pb.go │ │ │ │ ├── config_dump_shared.pb.validate.go │ │ │ │ ├── config_dump_shared_vtproto.pb.go │ │ │ │ ├── config_dump_vtproto.pb.go │ │ │ │ ├── init_dump.pb.go │ │ │ │ ├── init_dump.pb.validate.go │ │ │ │ ├── init_dump_vtproto.pb.go │ │ │ │ ├── listeners.pb.go │ │ │ │ ├── listeners.pb.validate.go │ │ │ │ ├── listeners_vtproto.pb.go │ │ │ │ ├── memory.pb.go │ │ │ │ ├── memory.pb.validate.go │ │ │ │ ├── memory_vtproto.pb.go │ │ │ │ ├── metrics.pb.go │ │ │ │ ├── metrics.pb.validate.go │ │ │ │ ├── metrics_vtproto.pb.go │ │ │ │ ├── mutex_stats.pb.go │ │ │ │ ├── mutex_stats.pb.validate.go │ │ │ │ ├── mutex_stats_vtproto.pb.go │ │ │ │ ├── server_info.pb.go │ │ │ │ ├── server_info.pb.validate.go │ │ │ │ ├── server_info_vtproto.pb.go │ │ │ │ ├── tap.pb.go │ │ │ │ ├── tap.pb.validate.go │ │ │ │ └── tap_vtproto.pb.go │ │ │ ├── annotations │ │ │ ├── deprecation.pb.go │ │ │ ├── deprecation.pb.validate.go │ │ │ ├── resource.pb.go │ │ │ ├── resource.pb.validate.go │ │ │ └── resource_vtproto.pb.go │ │ │ ├── config │ │ │ ├── accesslog │ │ │ │ └── v3 │ │ │ │ │ ├── accesslog.pb.go │ │ │ │ │ ├── accesslog.pb.validate.go │ │ │ │ │ └── accesslog_vtproto.pb.go │ │ │ ├── bootstrap │ │ │ │ └── v3 │ │ │ │ │ ├── bootstrap.pb.go │ │ │ │ │ ├── bootstrap.pb.validate.go │ │ │ │ │ └── bootstrap_vtproto.pb.go │ │ │ ├── cluster │ │ │ │ └── v3 │ │ │ │ │ ├── circuit_breaker.pb.go │ │ │ │ │ ├── circuit_breaker.pb.validate.go │ │ │ │ │ ├── circuit_breaker_vtproto.pb.go │ │ │ │ │ ├── cluster.pb.go │ │ │ │ │ ├── cluster.pb.validate.go │ │ │ │ │ ├── cluster_vtproto.pb.go │ │ │ │ │ ├── filter.pb.go │ │ │ │ │ ├── filter.pb.validate.go │ │ │ │ │ ├── filter_vtproto.pb.go │ │ │ │ │ ├── outlier_detection.pb.go │ │ │ │ │ ├── outlier_detection.pb.validate.go │ │ │ │ │ └── outlier_detection_vtproto.pb.go │ │ │ ├── common │ │ │ │ └── matcher │ │ │ │ │ └── v3 │ │ │ │ │ ├── matcher.pb.go │ │ │ │ │ ├── matcher.pb.validate.go │ │ │ │ │ └── matcher_vtproto.pb.go │ │ │ ├── core │ │ │ │ └── v3 │ │ │ │ │ ├── address.pb.go │ │ │ │ │ ├── address.pb.validate.go │ │ │ │ │ ├── address_vtproto.pb.go │ │ │ │ │ ├── backoff.pb.go │ │ │ │ │ ├── backoff.pb.validate.go │ │ │ │ │ ├── backoff_vtproto.pb.go │ │ │ │ │ ├── base.pb.go │ │ │ │ │ ├── base.pb.validate.go │ │ │ │ │ ├── base_vtproto.pb.go │ │ │ │ │ ├── config_source.pb.go │ │ │ │ │ ├── config_source.pb.validate.go │ │ │ │ │ ├── config_source_vtproto.pb.go │ │ │ │ │ ├── event_service_config.pb.go │ │ │ │ │ ├── event_service_config.pb.validate.go │ │ │ │ │ ├── event_service_config_vtproto.pb.go │ │ │ │ │ ├── extension.pb.go │ │ │ │ │ ├── extension.pb.validate.go │ │ │ │ │ ├── extension_vtproto.pb.go │ │ │ │ │ ├── grpc_method_list.pb.go │ │ │ │ │ ├── grpc_method_list.pb.validate.go │ │ │ │ │ ├── grpc_method_list_vtproto.pb.go │ │ │ │ │ ├── grpc_service.pb.go │ │ │ │ │ ├── grpc_service.pb.validate.go │ │ │ │ │ ├── grpc_service_vtproto.pb.go │ │ │ │ │ ├── health_check.pb.go │ │ │ │ │ ├── health_check.pb.validate.go │ │ │ │ │ ├── health_check_vtproto.pb.go │ │ │ │ │ ├── http_service.pb.go │ │ │ │ │ ├── http_service.pb.validate.go │ │ │ │ │ ├── http_service_vtproto.pb.go │ │ │ │ │ ├── http_uri.pb.go │ │ │ │ │ ├── http_uri.pb.validate.go │ │ │ │ │ ├── http_uri_vtproto.pb.go │ │ │ │ │ ├── protocol.pb.go │ │ │ │ │ ├── protocol.pb.validate.go │ │ │ │ │ ├── protocol_vtproto.pb.go │ │ │ │ │ ├── proxy_protocol.pb.go │ │ │ │ │ ├── proxy_protocol.pb.validate.go │ │ │ │ │ ├── proxy_protocol_vtproto.pb.go │ │ │ │ │ ├── resolver.pb.go │ │ │ │ │ ├── resolver.pb.validate.go │ │ │ │ │ ├── resolver_vtproto.pb.go │ │ │ │ │ ├── socket_cmsg_headers.pb.go │ │ │ │ │ ├── socket_cmsg_headers.pb.validate.go │ │ │ │ │ ├── socket_cmsg_headers_vtproto.pb.go │ │ │ │ │ ├── socket_option.pb.go │ │ │ │ │ ├── socket_option.pb.validate.go │ │ │ │ │ ├── socket_option_vtproto.pb.go │ │ │ │ │ ├── substitution_format_string.pb.go │ │ │ │ │ ├── substitution_format_string.pb.validate.go │ │ │ │ │ ├── substitution_format_string_vtproto.pb.go │ │ │ │ │ ├── udp_socket_config.pb.go │ │ │ │ │ ├── udp_socket_config.pb.validate.go │ │ │ │ │ └── udp_socket_config_vtproto.pb.go │ │ │ ├── endpoint │ │ │ │ └── v3 │ │ │ │ │ ├── endpoint.pb.go │ │ │ │ │ ├── endpoint.pb.validate.go │ │ │ │ │ ├── endpoint_components.pb.go │ │ │ │ │ ├── endpoint_components.pb.validate.go │ │ │ │ │ ├── endpoint_components_vtproto.pb.go │ │ │ │ │ ├── endpoint_vtproto.pb.go │ │ │ │ │ ├── load_report.pb.go │ │ │ │ │ ├── load_report.pb.validate.go │ │ │ │ │ └── load_report_vtproto.pb.go │ │ │ ├── listener │ │ │ │ └── v3 │ │ │ │ │ ├── api_listener.pb.go │ │ │ │ │ ├── api_listener.pb.validate.go │ │ │ │ │ ├── api_listener_vtproto.pb.go │ │ │ │ │ ├── listener.pb.go │ │ │ │ │ ├── listener.pb.validate.go │ │ │ │ │ ├── listener_components.pb.go │ │ │ │ │ ├── listener_components.pb.validate.go │ │ │ │ │ ├── listener_components_vtproto.pb.go │ │ │ │ │ ├── listener_vtproto.pb.go │ │ │ │ │ ├── quic_config.pb.go │ │ │ │ │ ├── quic_config.pb.validate.go │ │ │ │ │ ├── quic_config_vtproto.pb.go │ │ │ │ │ ├── udp_listener_config.pb.go │ │ │ │ │ ├── udp_listener_config.pb.validate.go │ │ │ │ │ └── udp_listener_config_vtproto.pb.go │ │ │ ├── metrics │ │ │ │ └── v3 │ │ │ │ │ ├── metrics_service.pb.go │ │ │ │ │ ├── metrics_service.pb.validate.go │ │ │ │ │ ├── metrics_service_vtproto.pb.go │ │ │ │ │ ├── stats.pb.go │ │ │ │ │ ├── stats.pb.validate.go │ │ │ │ │ └── stats_vtproto.pb.go │ │ │ ├── overload │ │ │ │ └── v3 │ │ │ │ │ ├── overload.pb.go │ │ │ │ │ ├── overload.pb.validate.go │ │ │ │ │ └── overload_vtproto.pb.go │ │ │ ├── rbac │ │ │ │ └── v3 │ │ │ │ │ ├── rbac.pb.go │ │ │ │ │ ├── rbac.pb.validate.go │ │ │ │ │ └── rbac_vtproto.pb.go │ │ │ ├── route │ │ │ │ └── v3 │ │ │ │ │ ├── route.pb.go │ │ │ │ │ ├── route.pb.validate.go │ │ │ │ │ ├── route_components.pb.go │ │ │ │ │ ├── route_components.pb.validate.go │ │ │ │ │ ├── route_components_vtproto.pb.go │ │ │ │ │ ├── route_vtproto.pb.go │ │ │ │ │ ├── scoped_route.pb.go │ │ │ │ │ ├── scoped_route.pb.validate.go │ │ │ │ │ └── scoped_route_vtproto.pb.go │ │ │ ├── tap │ │ │ │ └── v3 │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── common.pb.validate.go │ │ │ │ │ └── common_vtproto.pb.go │ │ │ └── trace │ │ │ │ └── v3 │ │ │ │ ├── datadog.pb.go │ │ │ │ ├── datadog.pb.validate.go │ │ │ │ ├── datadog_vtproto.pb.go │ │ │ │ ├── dynamic_ot.pb.go │ │ │ │ ├── dynamic_ot.pb.validate.go │ │ │ │ ├── dynamic_ot_vtproto.pb.go │ │ │ │ ├── http_tracer.pb.go │ │ │ │ ├── http_tracer.pb.validate.go │ │ │ │ ├── http_tracer_vtproto.pb.go │ │ │ │ ├── lightstep.pb.go │ │ │ │ ├── lightstep.pb.validate.go │ │ │ │ ├── lightstep_vtproto.pb.go │ │ │ │ ├── opentelemetry.pb.go │ │ │ │ ├── opentelemetry.pb.validate.go │ │ │ │ ├── opentelemetry_vtproto.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── service.pb.validate.go │ │ │ │ ├── service_vtproto.pb.go │ │ │ │ ├── skywalking.pb.go │ │ │ │ ├── skywalking.pb.validate.go │ │ │ │ ├── skywalking_vtproto.pb.go │ │ │ │ ├── trace.pb.go │ │ │ │ ├── trace.pb.validate.go │ │ │ │ ├── xray.pb.go │ │ │ │ ├── xray.pb.validate.go │ │ │ │ ├── xray_vtproto.pb.go │ │ │ │ ├── zipkin.pb.go │ │ │ │ ├── zipkin.pb.validate.go │ │ │ │ └── zipkin_vtproto.pb.go │ │ │ ├── data │ │ │ └── accesslog │ │ │ │ └── v3 │ │ │ │ ├── accesslog.pb.go │ │ │ │ ├── accesslog.pb.validate.go │ │ │ │ └── accesslog_vtproto.pb.go │ │ │ ├── extensions │ │ │ ├── clusters │ │ │ │ └── aggregate │ │ │ │ │ └── v3 │ │ │ │ │ ├── cluster.pb.go │ │ │ │ │ ├── cluster.pb.validate.go │ │ │ │ │ └── cluster_vtproto.pb.go │ │ │ ├── filters │ │ │ │ ├── common │ │ │ │ │ └── fault │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── fault.pb.go │ │ │ │ │ │ ├── fault.pb.validate.go │ │ │ │ │ │ └── fault_vtproto.pb.go │ │ │ │ ├── http │ │ │ │ │ ├── fault │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── fault.pb.go │ │ │ │ │ │ │ ├── fault.pb.validate.go │ │ │ │ │ │ │ └── fault_vtproto.pb.go │ │ │ │ │ ├── rbac │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── rbac.pb.go │ │ │ │ │ │ │ ├── rbac.pb.validate.go │ │ │ │ │ │ │ └── rbac_vtproto.pb.go │ │ │ │ │ └── router │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── router.pb.go │ │ │ │ │ │ ├── router.pb.validate.go │ │ │ │ │ │ └── router_vtproto.pb.go │ │ │ │ └── network │ │ │ │ │ └── http_connection_manager │ │ │ │ │ └── v3 │ │ │ │ │ ├── http_connection_manager.pb.go │ │ │ │ │ ├── http_connection_manager.pb.validate.go │ │ │ │ │ └── http_connection_manager_vtproto.pb.go │ │ │ ├── load_balancing_policies │ │ │ │ ├── client_side_weighted_round_robin │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── client_side_weighted_round_robin.pb.go │ │ │ │ │ │ ├── client_side_weighted_round_robin.pb.validate.go │ │ │ │ │ │ └── client_side_weighted_round_robin_vtproto.pb.go │ │ │ │ ├── common │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ │ ├── common.pb.validate.go │ │ │ │ │ │ └── common_vtproto.pb.go │ │ │ │ ├── least_request │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── least_request.pb.go │ │ │ │ │ │ ├── least_request.pb.validate.go │ │ │ │ │ │ └── least_request_vtproto.pb.go │ │ │ │ ├── pick_first │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── pick_first.pb.go │ │ │ │ │ │ ├── pick_first.pb.validate.go │ │ │ │ │ │ └── pick_first_vtproto.pb.go │ │ │ │ ├── ring_hash │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── ring_hash.pb.go │ │ │ │ │ │ ├── ring_hash.pb.validate.go │ │ │ │ │ │ └── ring_hash_vtproto.pb.go │ │ │ │ └── wrr_locality │ │ │ │ │ └── v3 │ │ │ │ │ ├── wrr_locality.pb.go │ │ │ │ │ ├── wrr_locality.pb.validate.go │ │ │ │ │ └── wrr_locality_vtproto.pb.go │ │ │ ├── rbac │ │ │ │ └── audit_loggers │ │ │ │ │ └── stream │ │ │ │ │ └── v3 │ │ │ │ │ ├── stream.pb.go │ │ │ │ │ ├── stream.pb.validate.go │ │ │ │ │ └── stream_vtproto.pb.go │ │ │ └── transport_sockets │ │ │ │ └── tls │ │ │ │ └── v3 │ │ │ │ ├── cert.pb.go │ │ │ │ ├── cert.pb.validate.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── common.pb.validate.go │ │ │ │ ├── common_vtproto.pb.go │ │ │ │ ├── secret.pb.go │ │ │ │ ├── secret.pb.validate.go │ │ │ │ ├── secret_vtproto.pb.go │ │ │ │ ├── tls.pb.go │ │ │ │ ├── tls.pb.validate.go │ │ │ │ ├── tls_spiffe_validator_config.pb.go │ │ │ │ ├── tls_spiffe_validator_config.pb.validate.go │ │ │ │ ├── tls_spiffe_validator_config_vtproto.pb.go │ │ │ │ └── tls_vtproto.pb.go │ │ │ ├── service │ │ │ ├── discovery │ │ │ │ └── v3 │ │ │ │ │ ├── ads.pb.go │ │ │ │ │ ├── ads.pb.validate.go │ │ │ │ │ ├── ads_grpc.pb.go │ │ │ │ │ ├── ads_vtproto.pb.go │ │ │ │ │ ├── discovery.pb.go │ │ │ │ │ ├── discovery.pb.validate.go │ │ │ │ │ └── discovery_vtproto.pb.go │ │ │ ├── load_stats │ │ │ │ └── v3 │ │ │ │ │ ├── lrs.pb.go │ │ │ │ │ ├── lrs.pb.validate.go │ │ │ │ │ ├── lrs_grpc.pb.go │ │ │ │ │ └── lrs_vtproto.pb.go │ │ │ └── status │ │ │ │ └── v3 │ │ │ │ ├── csds.pb.go │ │ │ │ ├── csds.pb.validate.go │ │ │ │ ├── csds_grpc.pb.go │ │ │ │ └── csds_vtproto.pb.go │ │ │ └── type │ │ │ ├── http │ │ │ └── v3 │ │ │ │ ├── cookie.pb.go │ │ │ │ ├── cookie.pb.validate.go │ │ │ │ ├── cookie_vtproto.pb.go │ │ │ │ ├── path_transformation.pb.go │ │ │ │ ├── path_transformation.pb.validate.go │ │ │ │ └── path_transformation_vtproto.pb.go │ │ │ ├── matcher │ │ │ └── v3 │ │ │ │ ├── address.pb.go │ │ │ │ ├── address.pb.validate.go │ │ │ │ ├── address_vtproto.pb.go │ │ │ │ ├── filter_state.pb.go │ │ │ │ ├── filter_state.pb.validate.go │ │ │ │ ├── filter_state_vtproto.pb.go │ │ │ │ ├── http_inputs.pb.go │ │ │ │ ├── http_inputs.pb.validate.go │ │ │ │ ├── http_inputs_vtproto.pb.go │ │ │ │ ├── metadata.pb.go │ │ │ │ ├── metadata.pb.validate.go │ │ │ │ ├── metadata_vtproto.pb.go │ │ │ │ ├── node.pb.go │ │ │ │ ├── node.pb.validate.go │ │ │ │ ├── node_vtproto.pb.go │ │ │ │ ├── number.pb.go │ │ │ │ ├── number.pb.validate.go │ │ │ │ ├── number_vtproto.pb.go │ │ │ │ ├── path.pb.go │ │ │ │ ├── path.pb.validate.go │ │ │ │ ├── path_vtproto.pb.go │ │ │ │ ├── regex.pb.go │ │ │ │ ├── regex.pb.validate.go │ │ │ │ ├── regex_vtproto.pb.go │ │ │ │ ├── status_code_input.pb.go │ │ │ │ ├── status_code_input.pb.validate.go │ │ │ │ ├── status_code_input_vtproto.pb.go │ │ │ │ ├── string.pb.go │ │ │ │ ├── string.pb.validate.go │ │ │ │ ├── string_vtproto.pb.go │ │ │ │ ├── struct.pb.go │ │ │ │ ├── struct.pb.validate.go │ │ │ │ ├── struct_vtproto.pb.go │ │ │ │ ├── value.pb.go │ │ │ │ ├── value.pb.validate.go │ │ │ │ └── value_vtproto.pb.go │ │ │ ├── metadata │ │ │ └── v3 │ │ │ │ ├── metadata.pb.go │ │ │ │ ├── metadata.pb.validate.go │ │ │ │ └── metadata_vtproto.pb.go │ │ │ ├── tracing │ │ │ └── v3 │ │ │ │ ├── custom_tag.pb.go │ │ │ │ ├── custom_tag.pb.validate.go │ │ │ │ └── custom_tag_vtproto.pb.go │ │ │ └── v3 │ │ │ ├── hash_policy.pb.go │ │ │ ├── hash_policy.pb.validate.go │ │ │ ├── hash_policy_vtproto.pb.go │ │ │ ├── http.pb.go │ │ │ ├── http.pb.validate.go │ │ │ ├── http_status.pb.go │ │ │ ├── http_status.pb.validate.go │ │ │ ├── http_status_vtproto.pb.go │ │ │ ├── percent.pb.go │ │ │ ├── percent.pb.validate.go │ │ │ ├── percent_vtproto.pb.go │ │ │ ├── range.pb.go │ │ │ ├── range.pb.validate.go │ │ │ ├── range_vtproto.pb.go │ │ │ ├── ratelimit_strategy.pb.go │ │ │ ├── ratelimit_strategy.pb.validate.go │ │ │ ├── ratelimit_strategy_vtproto.pb.go │ │ │ ├── ratelimit_unit.pb.go │ │ │ ├── ratelimit_unit.pb.validate.go │ │ │ ├── semantic_version.pb.go │ │ │ ├── semantic_version.pb.validate.go │ │ │ ├── semantic_version_vtproto.pb.go │ │ │ ├── token_bucket.pb.go │ │ │ ├── token_bucket.pb.validate.go │ │ │ └── token_bucket_vtproto.pb.go │ └── protoc-gen-validate │ │ ├── LICENSE │ │ └── validate │ │ ├── BUILD │ │ ├── validate.h │ │ ├── validate.pb.go │ │ └── validate.proto ├── felixge │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── getkin │ └── kin-openapi │ │ ├── LICENSE │ │ ├── openapi3 │ │ ├── callback.go │ │ ├── components.go │ │ ├── contact.go │ │ ├── content.go │ │ ├── discriminator.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── errors.go │ │ ├── example.go │ │ ├── example_validation.go │ │ ├── extension.go │ │ ├── external_docs.go │ │ ├── header.go │ │ ├── helpers.go │ │ ├── info.go │ │ ├── internalize_refs.go │ │ ├── license.go │ │ ├── link.go │ │ ├── loader.go │ │ ├── loader_uri_reader.go │ │ ├── maplike.go │ │ ├── marsh.go │ │ ├── media_type.go │ │ ├── openapi3.go │ │ ├── operation.go │ │ ├── origin.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── ref.go │ │ ├── refs.go │ │ ├── refs.tmpl │ │ ├── refs_test.tmpl │ │ ├── request_body.go │ │ ├── response.go │ │ ├── schema.go │ │ ├── schema_formats.go │ │ ├── schema_pattern.go │ │ ├── schema_validation_settings.go │ │ ├── security_requirements.go │ │ ├── security_scheme.go │ │ ├── serialization_method.go │ │ ├── server.go │ │ ├── stringmap.go │ │ ├── tag.go │ │ ├── validation_options.go │ │ ├── visited.go │ │ └── xml.go │ │ ├── openapi3filter │ │ ├── authentication_input.go │ │ ├── errors.go │ │ ├── internal.go │ │ ├── middleware.go │ │ ├── options.go │ │ ├── req_resp_decoder.go │ │ ├── req_resp_encoder.go │ │ ├── validate_request.go │ │ ├── validate_request_input.go │ │ ├── validate_response.go │ │ ├── validate_response_input.go │ │ ├── validation_error.go │ │ ├── validation_error_encoder.go │ │ ├── validation_handler.go │ │ └── validation_kit.go │ │ └── routers │ │ ├── legacy │ │ ├── pathpattern │ │ │ └── node.go │ │ └── router.go │ │ └── types.go ├── getsentry │ └── sentry-go │ │ ├── .codecov.yml │ │ ├── .craft.yml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MIGRATION.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── attribute │ │ ├── builder.go │ │ ├── rawhelpers.go │ │ └── value.go │ │ ├── batch_logger.go │ │ ├── check_in.go │ │ ├── client.go │ │ ├── doc.go │ │ ├── dsn.go │ │ ├── dynamic_sampling_context.go │ │ ├── echo │ │ ├── LICENSE │ │ ├── README.md │ │ └── sentryecho.go │ │ ├── exception.go │ │ ├── hub.go │ │ ├── integrations.go │ │ ├── interfaces.go │ │ ├── internal │ │ ├── debug │ │ │ └── transport.go │ │ ├── debuglog │ │ │ └── log.go │ │ ├── http │ │ │ └── transport.go │ │ ├── otel │ │ │ └── baggage │ │ │ │ ├── README.md │ │ │ │ ├── baggage.go │ │ │ │ └── internal │ │ │ │ └── baggage │ │ │ │ └── baggage.go │ │ ├── protocol │ │ │ ├── dsn.go │ │ │ ├── envelope.go │ │ │ ├── interfaces.go │ │ │ └── types.go │ │ └── ratelimit │ │ │ ├── category.go │ │ │ ├── deadline.go │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── rate_limits.go │ │ │ └── retry_after.go │ │ ├── log.go │ │ ├── log_fallback.go │ │ ├── logrus │ │ ├── LICENSE │ │ ├── README.md │ │ └── logrusentry.go │ │ ├── mocks.go │ │ ├── propagation_context.go │ │ ├── scope.go │ │ ├── sentry.go │ │ ├── sourcereader.go │ │ ├── span_recorder.go │ │ ├── stacktrace.go │ │ ├── traces_sampler.go │ │ ├── tracing.go │ │ ├── transport.go │ │ └── util.go ├── go-jose │ └── go-jose │ │ └── v4 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── asymmetric.go │ │ ├── cipher │ │ ├── cbc_hmac.go │ │ ├── concat_kdf.go │ │ ├── ecdh_es.go │ │ └── key_wrap.go │ │ ├── crypter.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── encode.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ └── tags.go │ │ ├── jwe.go │ │ ├── jwk.go │ │ ├── jws.go │ │ ├── opaque.go │ │ ├── shared.go │ │ ├── signing.go │ │ └── symmetric.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ └── slogsink.go │ └── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go ├── go-openapi │ ├── jsonpointer │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ └── pointer.go │ └── swag │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── BENCHMARK.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert.go │ │ ├── convert_types.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── file.go │ │ ├── initialism_index.go │ │ ├── json.go │ │ ├── loading.go │ │ ├── name_lexem.go │ │ ├── net.go │ │ ├── path.go │ │ ├── split.go │ │ ├── string_bytes.go │ │ ├── util.go │ │ └── yaml.go ├── gobwas │ └── glob │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── bench.sh │ │ ├── compiler │ │ └── compiler.go │ │ ├── glob.go │ │ ├── match │ │ ├── any.go │ │ ├── any_of.go │ │ ├── btree.go │ │ ├── contains.go │ │ ├── every_of.go │ │ ├── list.go │ │ ├── match.go │ │ ├── max.go │ │ ├── min.go │ │ ├── nothing.go │ │ ├── prefix.go │ │ ├── prefix_any.go │ │ ├── prefix_suffix.go │ │ ├── range.go │ │ ├── row.go │ │ ├── segments.go │ │ ├── single.go │ │ ├── suffix.go │ │ ├── suffix_any.go │ │ ├── super.go │ │ └── text.go │ │ ├── readme.md │ │ ├── syntax │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── parser.go │ │ ├── lexer │ │ │ ├── lexer.go │ │ │ └── token.go │ │ └── syntax.go │ │ └── util │ │ ├── runes │ │ └── runes.go │ │ └── strings │ │ └── strings.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go ├── golang-jwt │ └── jwt │ │ ├── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── ed25519.go │ │ ├── ed25519_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── parser_option.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ ├── staticcheck.conf │ │ ├── token.go │ │ └── types.go │ │ └── v5 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── ed25519.go │ │ ├── ed25519_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── parser_option.go │ │ ├── registered_claims.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ ├── staticcheck.conf │ │ ├── token.go │ │ ├── token_option.go │ │ ├── types.go │ │ └── validator.go ├── golang │ ├── glog │ │ ├── LICENSE │ │ ├── README.md │ │ ├── glog.go │ │ ├── glog_file.go │ │ ├── glog_file_linux.go │ │ ├── glog_file_nonwindows.go │ │ ├── glog_file_other.go │ │ ├── glog_file_posix.go │ │ ├── glog_file_windows.go │ │ ├── glog_flags.go │ │ └── internal │ │ │ ├── logsink │ │ │ ├── logsink.go │ │ │ └── logsink_fatal.go │ │ │ └── stackdump │ │ │ └── stackdump.go │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go ├── google │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── go-containerregistry │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── name │ │ │ ├── README.md │ │ │ ├── check.go │ │ │ ├── digest.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── options.go │ │ │ ├── ref.go │ │ │ ├── registry.go │ │ │ ├── repository.go │ │ │ └── tag.go │ │ │ └── v1 │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layer.go │ │ │ ├── manifest.go │ │ │ ├── platform.go │ │ │ ├── progress.go │ │ │ ├── types │ │ │ └── types.go │ │ │ └── zz_deepcopy_generated.go │ ├── go-intervals │ │ ├── LICENSE │ │ └── intervalset │ │ │ ├── intervalset.go │ │ │ └── intervalset_immutable.go │ ├── s2a-go │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── fallback │ │ │ └── s2a_fallback.go │ │ ├── internal │ │ │ ├── authinfo │ │ │ │ └── authinfo.go │ │ │ ├── handshaker │ │ │ │ ├── handshaker.go │ │ │ │ └── service │ │ │ │ │ └── service.go │ │ │ ├── proto │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ ├── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ └── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ ├── record │ │ │ │ ├── internal │ │ │ │ │ ├── aeadcrypter │ │ │ │ │ │ ├── aeadcrypter.go │ │ │ │ │ │ ├── aesgcm.go │ │ │ │ │ │ ├── chachapoly.go │ │ │ │ │ │ └── common.go │ │ │ │ │ └── halfconn │ │ │ │ │ │ ├── ciphersuite.go │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── expander.go │ │ │ │ │ │ └── halfconn.go │ │ │ │ ├── record.go │ │ │ │ └── ticketsender.go │ │ │ ├── tokenmanager │ │ │ │ └── tokenmanager.go │ │ │ └── v2 │ │ │ │ ├── README.md │ │ │ │ ├── certverifier │ │ │ │ └── certverifier.go │ │ │ │ ├── remotesigner │ │ │ │ └── remotesigner.go │ │ │ │ ├── s2av2.go │ │ │ │ └── tlsconfigstore │ │ │ │ └── tlsconfigstore.go │ │ ├── retry │ │ │ └── retry.go │ │ ├── s2a.go │ │ ├── s2a_options.go │ │ ├── s2a_utils.go │ │ └── stream │ │ │ └── s2a_stream.go │ └── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go ├── googleapis │ ├── enterprise-certificate-proxy │ │ ├── LICENSE │ │ └── client │ │ │ ├── client.go │ │ │ └── util │ │ │ └── util.go │ └── gax-go │ │ └── v2 │ │ ├── .release-please-manifest.json │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── apierror │ │ ├── apierror.go │ │ └── internal │ │ │ └── proto │ │ │ ├── README.md │ │ │ ├── custom_error.pb.go │ │ │ ├── custom_error.proto │ │ │ ├── error.pb.go │ │ │ └── error.proto │ │ ├── call_option.go │ │ ├── callctx │ │ └── callctx.go │ │ ├── content_type.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── internal │ │ └── version.go │ │ ├── internallog │ │ ├── grpclog │ │ │ └── grpclog.go │ │ ├── internal │ │ │ └── internal.go │ │ └── internallog.go │ │ ├── invoke.go │ │ ├── iterator │ │ └── iterator.go │ │ ├── proto_json_stream.go │ │ └── release-please-config.json ├── gorilla │ ├── css │ │ ├── LICENSE │ │ └── scanner │ │ │ ├── doc.go │ │ │ └── scanner.go │ └── mux │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── middleware.go │ │ ├── mux.go │ │ ├── regexp.go │ │ ├── route.go │ │ └── test_helpers.go ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── errwrap.go │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ └── handlers.go │ ├── go-multierror │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── group.go │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go │ ├── go-retryablehttp │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cert_error_go119.go │ │ ├── cert_error_go120.go │ │ ├── client.go │ │ └── roundtripper.go │ └── go-version │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constraint.go │ │ ├── version.go │ │ └── version_collection.go ├── jackc │ ├── chunkreader │ │ └── v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── chunkreader.go │ ├── pgconn │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth_scram.go │ │ ├── config.go │ │ ├── defaults.go │ │ ├── defaults_windows.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── ctxwatch │ │ │ │ └── context_watcher.go │ │ ├── krb5.go │ │ ├── pgconn.go │ │ └── stmtcache │ │ │ ├── lru.go │ │ │ └── stmtcache.go │ ├── pgio │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ └── write.go │ ├── pgpassfile │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── pgpass.go │ ├── pgproto3 │ │ └── v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── authentication_cleartext_password.go │ │ │ ├── authentication_gss.go │ │ │ ├── authentication_gss_continue.go │ │ │ ├── authentication_md5_password.go │ │ │ ├── authentication_ok.go │ │ │ ├── authentication_sasl.go │ │ │ ├── authentication_sasl_continue.go │ │ │ ├── authentication_sasl_final.go │ │ │ ├── backend.go │ │ │ ├── backend_key_data.go │ │ │ ├── big_endian.go │ │ │ ├── bind.go │ │ │ ├── bind_complete.go │ │ │ ├── cancel_request.go │ │ │ ├── chunkreader.go │ │ │ ├── close.go │ │ │ ├── close_complete.go │ │ │ ├── command_complete.go │ │ │ ├── copy_both_response.go │ │ │ ├── copy_data.go │ │ │ ├── copy_done.go │ │ │ ├── copy_fail.go │ │ │ ├── copy_in_response.go │ │ │ ├── copy_out_response.go │ │ │ ├── data_row.go │ │ │ ├── describe.go │ │ │ ├── doc.go │ │ │ ├── empty_query_response.go │ │ │ ├── error_response.go │ │ │ ├── execute.go │ │ │ ├── flush.go │ │ │ ├── frontend.go │ │ │ ├── function_call.go │ │ │ ├── function_call_response.go │ │ │ ├── gss_enc_request.go │ │ │ ├── gss_response.go │ │ │ ├── no_data.go │ │ │ ├── notice_response.go │ │ │ ├── notification_response.go │ │ │ ├── parameter_description.go │ │ │ ├── parameter_status.go │ │ │ ├── parse.go │ │ │ ├── parse_complete.go │ │ │ ├── password_message.go │ │ │ ├── pgproto3.go │ │ │ ├── portal_suspended.go │ │ │ ├── query.go │ │ │ ├── ready_for_query.go │ │ │ ├── row_description.go │ │ │ ├── sasl_initial_response.go │ │ │ ├── sasl_response.go │ │ │ ├── ssl_request.go │ │ │ ├── startup_message.go │ │ │ ├── sync.go │ │ │ └── terminate.go │ ├── pgservicefile │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── pgservicefile.go │ ├── pgtype │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aclitem.go │ │ ├── aclitem_array.go │ │ ├── array.go │ │ ├── array_type.go │ │ ├── bit.go │ │ ├── bool.go │ │ ├── bool_array.go │ │ ├── box.go │ │ ├── bpchar.go │ │ ├── bpchar_array.go │ │ ├── bytea.go │ │ ├── bytea_array.go │ │ ├── cid.go │ │ ├── cidr.go │ │ ├── cidr_array.go │ │ ├── circle.go │ │ ├── composite_fields.go │ │ ├── composite_type.go │ │ ├── convert.go │ │ ├── database_sql.go │ │ ├── date.go │ │ ├── date_array.go │ │ ├── daterange.go │ │ ├── enum_array.go │ │ ├── enum_type.go │ │ ├── float4.go │ │ ├── float4_array.go │ │ ├── float8.go │ │ ├── float8_array.go │ │ ├── generic_binary.go │ │ ├── generic_text.go │ │ ├── hstore.go │ │ ├── hstore_array.go │ │ ├── inet.go │ │ ├── inet_array.go │ │ ├── int2.go │ │ ├── int2_array.go │ │ ├── int4.go │ │ ├── int4_array.go │ │ ├── int4_multirange.go │ │ ├── int4range.go │ │ ├── int8.go │ │ ├── int8_array.go │ │ ├── int8_multirange.go │ │ ├── int8range.go │ │ ├── interval.go │ │ ├── json.go │ │ ├── json_array.go │ │ ├── jsonb.go │ │ ├── jsonb_array.go │ │ ├── line.go │ │ ├── lseg.go │ │ ├── ltree.go │ │ ├── macaddr.go │ │ ├── macaddr_array.go │ │ ├── multirange.go │ │ ├── name.go │ │ ├── num_multirange.go │ │ ├── numeric.go │ │ ├── numeric_array.go │ │ ├── numrange.go │ │ ├── oid.go │ │ ├── oid_value.go │ │ ├── path.go │ │ ├── pgtype.go │ │ ├── pguint32.go │ │ ├── point.go │ │ ├── polygon.go │ │ ├── qchar.go │ │ ├── range.go │ │ ├── record.go │ │ ├── record_array.go │ │ ├── text.go │ │ ├── text_array.go │ │ ├── tid.go │ │ ├── time.go │ │ ├── timestamp.go │ │ ├── timestamp_array.go │ │ ├── timestamptz.go │ │ ├── timestamptz_array.go │ │ ├── tsrange.go │ │ ├── tsrange_array.go │ │ ├── tstzrange.go │ │ ├── tstzrange_array.go │ │ ├── typed_array.go.erb │ │ ├── typed_array_gen.sh │ │ ├── typed_multirange.go.erb │ │ ├── typed_multirange_gen.sh │ │ ├── typed_range.go.erb │ │ ├── typed_range_gen.sh │ │ ├── unknown.go │ │ ├── uuid.go │ │ ├── uuid_array.go │ │ ├── varbit.go │ │ ├── varchar.go │ │ ├── varchar_array.go │ │ └── xid.go │ ├── pgx │ │ └── v4 │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── batch.go │ │ │ ├── conn.go │ │ │ ├── copy_from.go │ │ │ ├── doc.go │ │ │ ├── extended_query_builder.go │ │ │ ├── go_stdlib.go │ │ │ ├── internal │ │ │ └── sanitize │ │ │ │ └── sanitize.go │ │ │ ├── large_objects.go │ │ │ ├── logger.go │ │ │ ├── messages.go │ │ │ ├── pgxpool │ │ │ ├── batch_results.go │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── pool.go │ │ │ ├── rows.go │ │ │ ├── stat.go │ │ │ └── tx.go │ │ │ ├── rows.go │ │ │ ├── tx.go │ │ │ └── values.go │ └── puddle │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── nanotime_time.go │ │ ├── nanotime_unsafe.go │ │ └── pool.go ├── josharian │ └── intern │ │ ├── README.md │ │ ├── intern.go │ │ └── license.md ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── julienschmidt │ └── httprouter │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── path.go │ │ ├── router.go │ │ └── tree.go ├── klauspost │ ├── compress │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── compressible.go │ │ ├── flate │ │ │ ├── deflate.go │ │ │ ├── dict_decoder.go │ │ │ ├── fast_encoder.go │ │ │ ├── huffman_bit_writer.go │ │ │ ├── huffman_code.go │ │ │ ├── huffman_sortByFreq.go │ │ │ ├── huffman_sortByLiteral.go │ │ │ ├── inflate.go │ │ │ ├── inflate_gen.go │ │ │ ├── level1.go │ │ │ ├── level2.go │ │ │ ├── level3.go │ │ │ ├── level4.go │ │ │ ├── level5.go │ │ │ ├── level6.go │ │ │ ├── matchlen_generic.go │ │ │ ├── regmask_amd64.go │ │ │ ├── regmask_other.go │ │ │ ├── stateless.go │ │ │ └── token.go │ │ ├── fse │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── bytereader.go │ │ │ ├── compress.go │ │ │ ├── decompress.go │ │ │ └── fse.go │ │ ├── gen.sh │ │ ├── huff0 │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── compress.go │ │ │ ├── decompress.go │ │ │ ├── decompress_amd64.go │ │ │ ├── decompress_amd64.s │ │ │ ├── decompress_generic.go │ │ │ └── huff0.go │ │ ├── internal │ │ │ ├── cpuinfo │ │ │ │ ├── cpuinfo.go │ │ │ │ ├── cpuinfo_amd64.go │ │ │ │ └── cpuinfo_amd64.s │ │ │ ├── le │ │ │ │ ├── le.go │ │ │ │ ├── unsafe_disabled.go │ │ │ │ └── unsafe_enabled.go │ │ │ └── snapref │ │ │ │ ├── LICENSE │ │ │ │ ├── decode.go │ │ │ │ ├── decode_other.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_other.go │ │ │ │ └── snappy.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ └── zstd │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── blockdec.go │ │ │ ├── blockenc.go │ │ │ ├── blocktype_string.go │ │ │ ├── bytebuf.go │ │ │ ├── bytereader.go │ │ │ ├── decodeheader.go │ │ │ ├── decoder.go │ │ │ ├── decoder_options.go │ │ │ ├── dict.go │ │ │ ├── enc_base.go │ │ │ ├── enc_best.go │ │ │ ├── enc_better.go │ │ │ ├── enc_dfast.go │ │ │ ├── enc_fast.go │ │ │ ├── encoder.go │ │ │ ├── encoder_options.go │ │ │ ├── framedec.go │ │ │ ├── frameenc.go │ │ │ ├── fse_decoder.go │ │ │ ├── fse_decoder_amd64.go │ │ │ ├── fse_decoder_amd64.s │ │ │ ├── fse_decoder_generic.go │ │ │ ├── fse_encoder.go │ │ │ ├── fse_predefined.go │ │ │ ├── hash.go │ │ │ ├── history.go │ │ │ ├── internal │ │ │ └── xxhash │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── xxhash.go │ │ │ │ ├── xxhash_amd64.s │ │ │ │ ├── xxhash_arm64.s │ │ │ │ ├── xxhash_asm.go │ │ │ │ ├── xxhash_other.go │ │ │ │ └── xxhash_safe.go │ │ │ ├── matchlen_amd64.go │ │ │ ├── matchlen_amd64.s │ │ │ ├── matchlen_generic.go │ │ │ ├── seqdec.go │ │ │ ├── seqdec_amd64.go │ │ │ ├── seqdec_amd64.s │ │ │ ├── seqdec_generic.go │ │ │ ├── seqenc.go │ │ │ ├── snappy.go │ │ │ ├── zip.go │ │ │ └── zstd.go │ └── pgzip │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── GO_LICENSE │ │ ├── LICENSE │ │ ├── README.md │ │ ├── gunzip.go │ │ └── gzip.go ├── kolo │ └── xmlrpc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── decoder.go │ │ ├── encoder.go │ │ ├── request.go │ │ ├── response.go │ │ └── test_server.rb ├── kr │ └── text │ │ ├── License │ │ ├── Readme │ │ ├── doc.go │ │ ├── indent.go │ │ └── wrap.go ├── kylelemons │ └── godebug │ │ ├── LICENSE │ │ ├── diff │ │ └── diff.go │ │ └── pretty │ │ ├── .gitignore │ │ ├── doc.go │ │ ├── public.go │ │ ├── reflect.go │ │ └── structure.go ├── labstack │ ├── echo │ │ └── v4 │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bind.go │ │ │ ├── binder.go │ │ │ ├── codecov.yml │ │ │ ├── context.go │ │ │ ├── context_fs.go │ │ │ ├── echo.go │ │ │ ├── echo_fs.go │ │ │ ├── group.go │ │ │ ├── group_fs.go │ │ │ ├── ip.go │ │ │ ├── json.go │ │ │ ├── log.go │ │ │ ├── middleware │ │ │ ├── basic_auth.go │ │ │ ├── body_dump.go │ │ │ ├── body_limit.go │ │ │ ├── compress.go │ │ │ ├── context_timeout.go │ │ │ ├── cors.go │ │ │ ├── csrf.go │ │ │ ├── decompress.go │ │ │ ├── extractor.go │ │ │ ├── key_auth.go │ │ │ ├── logger.go │ │ │ ├── method_override.go │ │ │ ├── middleware.go │ │ │ ├── proxy.go │ │ │ ├── rate_limiter.go │ │ │ ├── recover.go │ │ │ ├── redirect.go │ │ │ ├── request_id.go │ │ │ ├── request_logger.go │ │ │ ├── rewrite.go │ │ │ ├── secure.go │ │ │ ├── slash.go │ │ │ ├── static.go │ │ │ ├── static_other.go │ │ │ ├── static_windows.go │ │ │ ├── timeout.go │ │ │ └── util.go │ │ │ ├── renderer.go │ │ │ ├── response.go │ │ │ └── router.go │ └── gommon │ │ ├── LICENSE │ │ ├── bytes │ │ ├── README.md │ │ └── bytes.go │ │ ├── color │ │ ├── README.md │ │ └── color.go │ │ └── log │ │ ├── README.md │ │ ├── color.go │ │ ├── log.go │ │ └── white.go ├── letsencrypt │ └── boulder │ │ ├── LICENSE.txt │ │ ├── core │ │ ├── challenges.go │ │ ├── interfaces.go │ │ ├── objects.go │ │ └── util.go │ │ ├── goodkey │ │ ├── blocked.go │ │ ├── good_key.go │ │ └── weak.go │ │ ├── identifier │ │ └── identifier.go │ │ ├── probs │ │ └── probs.go │ │ ├── revocation │ │ └── reasons.go │ │ └── strictyaml │ │ └── yaml.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ ├── go.test.sh │ │ └── noncolorable.go │ ├── go-isatty │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.test.sh │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go │ ├── go-runewidth │ │ ├── LICENSE │ │ ├── README.md │ │ ├── runewidth.go │ │ ├── runewidth_appengine.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ ├── runewidth_table.go │ │ └── runewidth_windows.go │ └── go-sqlite3 │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backup.go │ │ ├── callback.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── sqlite3-binding.c │ │ ├── sqlite3-binding.h │ │ ├── sqlite3.go │ │ ├── sqlite3_context.go │ │ ├── sqlite3_func_crypt.go │ │ ├── sqlite3_go18.go │ │ ├── sqlite3_libsqlite3.go │ │ ├── sqlite3_load_extension.go │ │ ├── sqlite3_load_extension_omit.go │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ ├── sqlite3_opt_app_armor.go │ │ ├── sqlite3_opt_column_metadata.go │ │ ├── sqlite3_opt_foreign_keys.go │ │ ├── sqlite3_opt_fts5.go │ │ ├── sqlite3_opt_icu.go │ │ ├── sqlite3_opt_introspect.go │ │ ├── sqlite3_opt_math_functions.go │ │ ├── sqlite3_opt_os_trace.go │ │ ├── sqlite3_opt_preupdate.go │ │ ├── sqlite3_opt_preupdate_hook.go │ │ ├── sqlite3_opt_preupdate_omit.go │ │ ├── sqlite3_opt_secure_delete.go │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ ├── sqlite3_opt_serialize.go │ │ ├── sqlite3_opt_serialize_omit.go │ │ ├── sqlite3_opt_stat4.go │ │ ├── sqlite3_opt_unlock_notify.c │ │ ├── sqlite3_opt_unlock_notify.go │ │ ├── sqlite3_opt_userauth.go │ │ ├── sqlite3_opt_userauth_omit.go │ │ ├── sqlite3_opt_vacuum_full.go │ │ ├── sqlite3_opt_vacuum_incr.go │ │ ├── sqlite3_opt_vtable.go │ │ ├── sqlite3_other.go │ │ ├── sqlite3_solaris.go │ │ ├── sqlite3_trace.go │ │ ├── sqlite3_type.go │ │ ├── sqlite3_usleep_windows.go │ │ ├── sqlite3_windows.go │ │ ├── sqlite3ext.h │ │ └── static_mock.go ├── microcosm-cc │ └── bluemonday │ │ ├── .coveralls.yml │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CREDITS.md │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── css │ │ └── handlers.go │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── policies.go │ │ ├── policy.go │ │ ├── sanitize.go │ │ ├── stringwriterwriter_go1.12.go │ │ └── stringwriterwriter_ltgo1.12.go ├── miekg │ └── pkcs11 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile.release │ │ ├── README.md │ │ ├── error.go │ │ ├── hsm.db │ │ ├── params.go │ │ ├── pkcs11.go │ │ ├── pkcs11.h │ │ ├── pkcs11f.h │ │ ├── pkcs11go.h │ │ ├── pkcs11t.h │ │ ├── release.go │ │ ├── softhsm.conf │ │ ├── softhsm2.conf │ │ ├── types.go │ │ ├── vendor.go │ │ └── zconst.go ├── mistifyio │ └── go-zfs │ │ └── v3 │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .yamllint │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── Vagrantfile │ │ ├── error.go │ │ ├── lint.mk │ │ ├── rules.mk │ │ ├── shell.nix │ │ ├── utils.go │ │ ├── utils_notsolaris.go │ │ ├── utils_solaris.go │ │ ├── zfs.go │ │ └── zpool.go ├── moby │ ├── docker-image-spec │ │ ├── LICENSE │ │ └── specs-go │ │ │ └── v1 │ │ │ └── image.go │ └── sys │ │ ├── capability │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── capability.go │ │ ├── capability_linux.go │ │ ├── capability_noop.go │ │ ├── enum.go │ │ ├── enum_gen.go │ │ └── syscall_linux.go │ │ ├── mountinfo │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── mounted_linux.go │ │ ├── mounted_unix.go │ │ ├── mountinfo.go │ │ ├── mountinfo_bsd.go │ │ ├── mountinfo_filters.go │ │ ├── mountinfo_freebsdlike.go │ │ ├── mountinfo_linux.go │ │ ├── mountinfo_openbsd.go │ │ ├── mountinfo_unsupported.go │ │ └── mountinfo_windows.go │ │ └── user │ │ ├── LICENSE │ │ ├── idtools.go │ │ ├── idtools_unix.go │ │ ├── idtools_windows.go │ │ ├── lookup_unix.go │ │ ├── user.go │ │ └── user_fuzzer.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_118.go │ │ ├── go_above_19.go │ │ ├── go_below_118.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── mohae │ └── deepcopy │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── deepcopy.go ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── oapi-codegen │ ├── oapi-codegen │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── cmd │ │ │ └── oapi-codegen │ │ │ │ └── oapi-codegen.go │ │ │ └── pkg │ │ │ ├── codegen │ │ │ ├── codegen.go │ │ │ ├── configuration.go │ │ │ ├── extension.go │ │ │ ├── externalref.go │ │ │ ├── filter.go │ │ │ ├── inline.go │ │ │ ├── merge_schemas.go │ │ │ ├── merge_schemas_v1.go │ │ │ ├── minimum_go_version.go │ │ │ ├── operations.go │ │ │ ├── prune.go │ │ │ ├── schema.go │ │ │ ├── server_urls.go │ │ │ ├── template_helpers.go │ │ │ ├── templates │ │ │ │ ├── additional-properties.tmpl │ │ │ │ ├── chi │ │ │ │ │ ├── chi-handler.tmpl │ │ │ │ │ ├── chi-interface.tmpl │ │ │ │ │ └── chi-middleware.tmpl │ │ │ │ ├── client-with-responses.tmpl │ │ │ │ ├── client.tmpl │ │ │ │ ├── constants.tmpl │ │ │ │ ├── echo │ │ │ │ │ ├── echo-interface.tmpl │ │ │ │ │ ├── echo-register.tmpl │ │ │ │ │ └── echo-wrappers.tmpl │ │ │ │ ├── fiber │ │ │ │ │ ├── fiber-handler.tmpl │ │ │ │ │ ├── fiber-interface.tmpl │ │ │ │ │ └── fiber-middleware.tmpl │ │ │ │ ├── gin │ │ │ │ │ ├── gin-interface.tmpl │ │ │ │ │ ├── gin-register.tmpl │ │ │ │ │ └── gin-wrappers.tmpl │ │ │ │ ├── gorilla │ │ │ │ │ ├── gorilla-interface.tmpl │ │ │ │ │ ├── gorilla-middleware.tmpl │ │ │ │ │ └── gorilla-register.tmpl │ │ │ │ ├── imports.tmpl │ │ │ │ ├── inline.tmpl │ │ │ │ ├── iris │ │ │ │ │ ├── iris-handler.tmpl │ │ │ │ │ ├── iris-interface.tmpl │ │ │ │ │ └── iris-middleware.tmpl │ │ │ │ ├── param-types.tmpl │ │ │ │ ├── request-bodies.tmpl │ │ │ │ ├── server-urls.tmpl │ │ │ │ ├── stdhttp │ │ │ │ │ ├── std-http-handler.tmpl │ │ │ │ │ ├── std-http-interface.tmpl │ │ │ │ │ └── std-http-middleware.tmpl │ │ │ │ ├── strict │ │ │ │ │ ├── strict-echo.tmpl │ │ │ │ │ ├── strict-fiber-interface.tmpl │ │ │ │ │ ├── strict-fiber.tmpl │ │ │ │ │ ├── strict-gin.tmpl │ │ │ │ │ ├── strict-http.tmpl │ │ │ │ │ ├── strict-interface.tmpl │ │ │ │ │ ├── strict-iris-interface.tmpl │ │ │ │ │ ├── strict-iris.tmpl │ │ │ │ │ └── strict-responses.tmpl │ │ │ │ ├── typedef.tmpl │ │ │ │ ├── union-and-additional-properties.tmpl │ │ │ │ └── union.tmpl │ │ │ ├── test_schema.json │ │ │ ├── test_spec.yaml │ │ │ └── utils.go │ │ │ └── util │ │ │ ├── inputmapping.go │ │ │ ├── isjson.go │ │ │ └── loader.go │ └── runtime │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bind.go │ │ ├── bindform.go │ │ ├── bindparam.go │ │ ├── bindstring.go │ │ ├── deepobject.go │ │ ├── jsonmerge.go │ │ ├── renovate.json │ │ ├── styleparam.go │ │ └── types │ │ ├── date.go │ │ ├── email.go │ │ ├── file.go │ │ ├── regexes.go │ │ └── uuid.go ├── oasdiff │ ├── yaml │ │ ├── .gitignore │ │ ├── .golangci.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fields.go │ │ └── yaml.go │ └── yaml3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── origin.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── opencontainers │ ├── go-digest │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── LICENSE.docs │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── algorithm.go │ │ ├── digest.go │ │ ├── digester.go │ │ ├── doc.go │ │ └── verifiers.go │ ├── image-spec │ │ ├── LICENSE │ │ └── specs-go │ │ │ ├── v1 │ │ │ ├── annotations.go │ │ │ ├── config.go │ │ │ ├── descriptor.go │ │ │ ├── index.go │ │ │ ├── layout.go │ │ │ ├── manifest.go │ │ │ └── mediatype.go │ │ │ ├── version.go │ │ │ └── versioned.go │ ├── runtime-spec │ │ ├── LICENSE │ │ └── specs-go │ │ │ ├── config.go │ │ │ ├── state.go │ │ │ └── version.go │ └── selinux │ │ ├── LICENSE │ │ ├── go-selinux │ │ ├── doc.go │ │ ├── label │ │ │ ├── label.go │ │ │ ├── label_linux.go │ │ │ └── label_stub.go │ │ ├── selinux.go │ │ ├── selinux_linux.go │ │ ├── selinux_stub.go │ │ └── xattrs_linux.go │ │ └── pkg │ │ └── pwalkdir │ │ ├── README.md │ │ └── pwalkdir.go ├── openshift-online │ └── ocm-sdk-go │ │ ├── LICENSE.txt │ │ ├── authentication │ │ ├── auth.go │ │ ├── context.go │ │ ├── device_auth.go │ │ ├── handler.go │ │ ├── helpers.go │ │ ├── token_info.go │ │ └── transport_wrapper.go │ │ ├── errors │ │ └── errors.go │ │ ├── helpers │ │ ├── helpers.go │ │ └── json_helpers.go │ │ ├── internal │ │ ├── check_content_type.go │ │ ├── client_selector.go │ │ ├── data.go │ │ ├── helpers.go │ │ ├── server_address.go │ │ └── system_cas.go │ │ └── logging │ │ ├── glog_logger.go │ │ ├── go_logger.go │ │ ├── list.go │ │ ├── logger.go │ │ └── std_logger.go ├── oracle │ └── oci-go-sdk │ │ └── v54 │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── common │ │ ├── auth │ │ │ ├── certificate_retriever.go │ │ │ ├── configuration.go │ │ │ ├── dispatcher_modifier.go │ │ │ ├── federation_client.go │ │ │ ├── instance_principal_delegation_token_provider.go │ │ │ ├── instance_principal_key_provider.go │ │ │ ├── jwt.go │ │ │ ├── resouce_principal_key_provider.go │ │ │ ├── resource_principal_token_path_provider.go │ │ │ ├── resource_principals_v1.go │ │ │ └── utils.go │ │ ├── circuit_breaker.go │ │ ├── client.go │ │ ├── common.go │ │ ├── configuration.go │ │ ├── errors.go │ │ ├── helpers.go │ │ ├── http.go │ │ ├── http_signer.go │ │ ├── log.go │ │ ├── regions.go │ │ ├── regions.json │ │ ├── retry.go │ │ └── version.go │ │ ├── core │ │ ├── accept_shielded_integrity_policy_request_response.go │ │ ├── add_drg_route_distribution_statement_details.go │ │ ├── add_drg_route_distribution_statements_details.go │ │ ├── add_drg_route_distribution_statements_request_response.go │ │ ├── add_drg_route_rule_details.go │ │ ├── add_drg_route_rules_details.go │ │ ├── add_drg_route_rules_request_response.go │ │ ├── add_image_shape_compatibility_entry_details.go │ │ ├── add_image_shape_compatibility_entry_request_response.go │ │ ├── add_ipv6_vcn_cidr_request_response.go │ │ ├── add_network_security_group_security_rules_details.go │ │ ├── add_network_security_group_security_rules_request_response.go │ │ ├── add_public_ip_pool_capacity_details.go │ │ ├── add_public_ip_pool_capacity_request_response.go │ │ ├── add_security_rule_details.go │ │ ├── add_vcn_cidr_details.go │ │ ├── add_vcn_cidr_request_response.go │ │ ├── added_network_security_group_security_rules.go │ │ ├── advertise_byoip_range_request_response.go │ │ ├── allowed_ike_ip_sec_parameters.go │ │ ├── allowed_phase_one_parameters.go │ │ ├── allowed_phase_two_parameters.go │ │ ├── amd_milan_bm_launch_instance_platform_config.go │ │ ├── amd_milan_bm_platform_config.go │ │ ├── amd_rome_bm_launch_instance_platform_config.go │ │ ├── amd_rome_bm_platform_config.go │ │ ├── amd_vm_launch_instance_platform_config.go │ │ ├── amd_vm_platform_config.go │ │ ├── app_catalog_listing.go │ │ ├── app_catalog_listing_resource_version.go │ │ ├── app_catalog_listing_resource_version_agreements.go │ │ ├── app_catalog_listing_resource_version_summary.go │ │ ├── app_catalog_listing_summary.go │ │ ├── app_catalog_subscription.go │ │ ├── app_catalog_subscription_summary.go │ │ ├── attach_boot_volume_details.go │ │ ├── attach_boot_volume_request_response.go │ │ ├── attach_emulated_volume_details.go │ │ ├── attach_i_scsi_volume_details.go │ │ ├── attach_instance_pool_instance_details.go │ │ ├── attach_instance_pool_instance_request_response.go │ │ ├── attach_load_balancer_details.go │ │ ├── attach_load_balancer_request_response.go │ │ ├── attach_paravirtualized_volume_details.go │ │ ├── attach_service_determined_volume_details.go │ │ ├── attach_service_id_request_response.go │ │ ├── attach_vnic_details.go │ │ ├── attach_vnic_request_response.go │ │ ├── attach_volume_details.go │ │ ├── attach_volume_request_response.go │ │ ├── bgp_session_info.go │ │ ├── block_volume_replica.go │ │ ├── block_volume_replica_details.go │ │ ├── block_volume_replica_info.go │ │ ├── boolean_image_capability_schema_descriptor.go │ │ ├── boot_volume.go │ │ ├── boot_volume_attachment.go │ │ ├── boot_volume_backup.go │ │ ├── boot_volume_kms_key.go │ │ ├── boot_volume_replica.go │ │ ├── boot_volume_replica_details.go │ │ ├── boot_volume_replica_info.go │ │ ├── boot_volume_source_details.go │ │ ├── boot_volume_source_from_boot_volume_backup_details.go │ │ ├── boot_volume_source_from_boot_volume_details.go │ │ ├── boot_volume_source_from_boot_volume_replica_details.go │ │ ├── bulk_add_virtual_circuit_public_prefixes_details.go │ │ ├── bulk_add_virtual_circuit_public_prefixes_request_response.go │ │ ├── bulk_delete_virtual_circuit_public_prefixes_details.go │ │ ├── bulk_delete_virtual_circuit_public_prefixes_request_response.go │ │ ├── byoip_allocated_range_collection.go │ │ ├── byoip_allocated_range_summary.go │ │ ├── byoip_range.go │ │ ├── byoip_range_collection.go │ │ ├── byoip_range_summary.go │ │ ├── capacity_reservation_instance_summary.go │ │ ├── capture_console_history_details.go │ │ ├── capture_console_history_request_response.go │ │ ├── change_boot_volume_backup_compartment_details.go │ │ ├── change_boot_volume_backup_compartment_request_response.go │ │ ├── change_boot_volume_compartment_details.go │ │ ├── change_boot_volume_compartment_request_response.go │ │ ├── change_byoip_range_compartment_details.go │ │ ├── change_byoip_range_compartment_request_response.go │ │ ├── change_cluster_network_compartment_details.go │ │ ├── change_cluster_network_compartment_request_response.go │ │ ├── change_compute_capacity_reservation_compartment_details.go │ │ ├── change_compute_capacity_reservation_compartment_request_response.go │ │ ├── change_compute_image_capability_schema_compartment_details.go │ │ ├── change_compute_image_capability_schema_compartment_request_response.go │ │ ├── change_cpe_compartment_details.go │ │ ├── change_cpe_compartment_request_response.go │ │ ├── change_cross_connect_compartment_details.go │ │ ├── change_cross_connect_compartment_request_response.go │ │ ├── change_cross_connect_group_compartment_details.go │ │ ├── change_cross_connect_group_compartment_request_response.go │ │ ├── change_dedicated_vm_host_compartment_details.go │ │ ├── change_dedicated_vm_host_compartment_request_response.go │ │ ├── change_dhcp_options_compartment_details.go │ │ ├── change_dhcp_options_compartment_request_response.go │ │ ├── change_drg_compartment_details.go │ │ ├── change_drg_compartment_request_response.go │ │ ├── change_i_p_sec_connection_compartment_request_response.go │ │ ├── change_image_compartment_details.go │ │ ├── change_image_compartment_request_response.go │ │ ├── change_instance_compartment_details.go │ │ ├── change_instance_compartment_request_response.go │ │ ├── change_instance_configuration_compartment_details.go │ │ ├── change_instance_configuration_compartment_request_response.go │ │ ├── change_instance_pool_compartment_details.go │ │ ├── change_instance_pool_compartment_request_response.go │ │ ├── change_internet_gateway_compartment_details.go │ │ ├── change_internet_gateway_compartment_request_response.go │ │ ├── change_ip_sec_connection_compartment_details.go │ │ ├── change_local_peering_gateway_compartment_details.go │ │ ├── change_local_peering_gateway_compartment_request_response.go │ │ ├── change_nat_gateway_compartment_details.go │ │ ├── change_nat_gateway_compartment_request_response.go │ │ ├── change_network_security_group_compartment_details.go │ │ ├── change_network_security_group_compartment_request_response.go │ │ ├── change_public_ip_compartment_details.go │ │ ├── change_public_ip_compartment_request_response.go │ │ ├── change_public_ip_pool_compartment_details.go │ │ ├── change_public_ip_pool_compartment_request_response.go │ │ ├── change_remote_peering_connection_compartment_details.go │ │ ├── change_remote_peering_connection_compartment_request_response.go │ │ ├── change_route_table_compartment_details.go │ │ ├── change_route_table_compartment_request_response.go │ │ ├── change_security_list_compartment_details.go │ │ ├── change_security_list_compartment_request_response.go │ │ ├── change_service_gateway_compartment_details.go │ │ ├── change_service_gateway_compartment_request_response.go │ │ ├── change_subnet_compartment_details.go │ │ ├── change_subnet_compartment_request_response.go │ │ ├── change_vcn_compartment_details.go │ │ ├── change_vcn_compartment_request_response.go │ │ ├── change_virtual_circuit_compartment_details.go │ │ ├── change_virtual_circuit_compartment_request_response.go │ │ ├── change_vlan_compartment_details.go │ │ ├── change_vlan_compartment_request_response.go │ │ ├── change_volume_backup_compartment_details.go │ │ ├── change_volume_backup_compartment_request_response.go │ │ ├── change_volume_compartment_details.go │ │ ├── change_volume_compartment_request_response.go │ │ ├── change_volume_group_backup_compartment_details.go │ │ ├── change_volume_group_backup_compartment_request_response.go │ │ ├── change_volume_group_compartment_details.go │ │ ├── change_volume_group_compartment_request_response.go │ │ ├── cluster_network.go │ │ ├── cluster_network_placement_configuration_details.go │ │ ├── cluster_network_summary.go │ │ ├── compute_capacity_reservation.go │ │ ├── compute_capacity_reservation_instance_shape_summary.go │ │ ├── compute_capacity_reservation_summary.go │ │ ├── compute_global_image_capability_schema.go │ │ ├── compute_global_image_capability_schema_summary.go │ │ ├── compute_global_image_capability_schema_version.go │ │ ├── compute_global_image_capability_schema_version_summary.go │ │ ├── compute_image_capability_schema.go │ │ ├── compute_image_capability_schema_summary.go │ │ ├── compute_instance_details.go │ │ ├── connect_local_peering_gateways_details.go │ │ ├── connect_local_peering_gateways_request_response.go │ │ ├── connect_remote_peering_connections_details.go │ │ ├── connect_remote_peering_connections_request_response.go │ │ ├── console_history.go │ │ ├── copy_boot_volume_backup_details.go │ │ ├── copy_boot_volume_backup_request_response.go │ │ ├── copy_volume_backup_details.go │ │ ├── copy_volume_backup_request_response.go │ │ ├── copy_volume_group_backup_details.go │ │ ├── copy_volume_group_backup_request_response.go │ │ ├── core_blockstorage_client.go │ │ ├── core_compute_client.go │ │ ├── core_computemanagement_client.go │ │ ├── core_virtualnetwork_client.go │ │ ├── cpe.go │ │ ├── cpe_device_config_answer.go │ │ ├── cpe_device_config_question.go │ │ ├── cpe_device_info.go │ │ ├── cpe_device_shape_detail.go │ │ ├── cpe_device_shape_summary.go │ │ ├── create_app_catalog_subscription_details.go │ │ ├── create_app_catalog_subscription_request_response.go │ │ ├── create_boot_volume_backup_details.go │ │ ├── create_boot_volume_backup_request_response.go │ │ ├── create_boot_volume_details.go │ │ ├── create_boot_volume_request_response.go │ │ ├── create_byoip_range_details.go │ │ ├── create_byoip_range_request_response.go │ │ ├── create_cluster_network_details.go │ │ ├── create_cluster_network_instance_pool_details.go │ │ ├── create_cluster_network_request_response.go │ │ ├── create_compute_capacity_reservation_details.go │ │ ├── create_compute_capacity_reservation_request_response.go │ │ ├── create_compute_image_capability_schema_details.go │ │ ├── create_compute_image_capability_schema_request_response.go │ │ ├── create_cpe_details.go │ │ ├── create_cpe_request_response.go │ │ ├── create_cross_connect_details.go │ │ ├── create_cross_connect_group_details.go │ │ ├── create_cross_connect_group_request_response.go │ │ ├── create_cross_connect_request_response.go │ │ ├── create_dedicated_vm_host_details.go │ │ ├── create_dedicated_vm_host_request_response.go │ │ ├── create_dhcp_details.go │ │ ├── create_dhcp_options_request_response.go │ │ ├── create_drg_attachment_details.go │ │ ├── create_drg_attachment_request_response.go │ │ ├── create_drg_details.go │ │ ├── create_drg_request_response.go │ │ ├── create_drg_route_distribution_details.go │ │ ├── create_drg_route_distribution_request_response.go │ │ ├── create_drg_route_table_details.go │ │ ├── create_drg_route_table_request_response.go │ │ ├── create_i_p_sec_connection_request_response.go │ │ ├── create_image_details.go │ │ ├── create_image_request_response.go │ │ ├── create_instance_configuration_base.go │ │ ├── create_instance_configuration_details.go │ │ ├── create_instance_configuration_from_instance_details.go │ │ ├── create_instance_configuration_request_response.go │ │ ├── create_instance_console_connection_details.go │ │ ├── create_instance_console_connection_request_response.go │ │ ├── create_instance_pool_details.go │ │ ├── create_instance_pool_placement_configuration_details.go │ │ ├── create_instance_pool_request_response.go │ │ ├── create_internet_gateway_details.go │ │ ├── create_internet_gateway_request_response.go │ │ ├── create_ip_sec_connection_details.go │ │ ├── create_ip_sec_connection_tunnel_details.go │ │ ├── create_ip_sec_tunnel_bgp_session_details.go │ │ ├── create_ip_sec_tunnel_encryption_domain_details.go │ │ ├── create_ipv6_details.go │ │ ├── create_ipv6_request_response.go │ │ ├── create_local_peering_gateway_details.go │ │ ├── create_local_peering_gateway_request_response.go │ │ ├── create_macsec_key.go │ │ ├── create_macsec_properties.go │ │ ├── create_nat_gateway_details.go │ │ ├── create_nat_gateway_request_response.go │ │ ├── create_network_security_group_details.go │ │ ├── create_network_security_group_request_response.go │ │ ├── create_private_ip_details.go │ │ ├── create_private_ip_request_response.go │ │ ├── create_public_ip_details.go │ │ ├── create_public_ip_pool_details.go │ │ ├── create_public_ip_pool_request_response.go │ │ ├── create_public_ip_request_response.go │ │ ├── create_remote_peering_connection_details.go │ │ ├── create_remote_peering_connection_request_response.go │ │ ├── create_route_table_details.go │ │ ├── create_route_table_request_response.go │ │ ├── create_security_list_details.go │ │ ├── create_security_list_request_response.go │ │ ├── create_service_gateway_details.go │ │ ├── create_service_gateway_request_response.go │ │ ├── create_subnet_details.go │ │ ├── create_subnet_request_response.go │ │ ├── create_vcn_details.go │ │ ├── create_vcn_request_response.go │ │ ├── create_virtual_circuit_details.go │ │ ├── create_virtual_circuit_public_prefix_details.go │ │ ├── create_virtual_circuit_request_response.go │ │ ├── create_vlan_details.go │ │ ├── create_vlan_request_response.go │ │ ├── create_vnic_details.go │ │ ├── create_volume_backup_details.go │ │ ├── create_volume_backup_policy_assignment_details.go │ │ ├── create_volume_backup_policy_assignment_request_response.go │ │ ├── create_volume_backup_policy_details.go │ │ ├── create_volume_backup_policy_request_response.go │ │ ├── create_volume_backup_request_response.go │ │ ├── create_volume_details.go │ │ ├── create_volume_group_backup_details.go │ │ ├── create_volume_group_backup_request_response.go │ │ ├── create_volume_group_details.go │ │ ├── create_volume_group_request_response.go │ │ ├── create_volume_request_response.go │ │ ├── cross_connect.go │ │ ├── cross_connect_group.go │ │ ├── cross_connect_location.go │ │ ├── cross_connect_mapping.go │ │ ├── cross_connect_mapping_details.go │ │ ├── cross_connect_mapping_details_collection.go │ │ ├── cross_connect_port_speed_shape.go │ │ ├── cross_connect_status.go │ │ ├── dedicated_vm_host.go │ │ ├── dedicated_vm_host_instance_shape_summary.go │ │ ├── dedicated_vm_host_instance_summary.go │ │ ├── dedicated_vm_host_shape_summary.go │ │ ├── dedicated_vm_host_summary.go │ │ ├── default_drg_route_tables.go │ │ ├── default_phase_one_parameters.go │ │ ├── default_phase_two_parameters.go │ │ ├── delete_app_catalog_subscription_request_response.go │ │ ├── delete_boot_volume_backup_request_response.go │ │ ├── delete_boot_volume_kms_key_request_response.go │ │ ├── delete_boot_volume_request_response.go │ │ ├── delete_byoip_range_request_response.go │ │ ├── delete_compute_capacity_reservation_request_response.go │ │ ├── delete_compute_image_capability_schema_request_response.go │ │ ├── delete_console_history_request_response.go │ │ ├── delete_cpe_request_response.go │ │ ├── delete_cross_connect_group_request_response.go │ │ ├── delete_cross_connect_request_response.go │ │ ├── delete_dedicated_vm_host_request_response.go │ │ ├── delete_dhcp_options_request_response.go │ │ ├── delete_drg_attachment_request_response.go │ │ ├── delete_drg_request_response.go │ │ ├── delete_drg_route_distribution_request_response.go │ │ ├── delete_drg_route_table_request_response.go │ │ ├── delete_i_p_sec_connection_request_response.go │ │ ├── delete_image_request_response.go │ │ ├── delete_instance_configuration_request_response.go │ │ ├── delete_instance_console_connection_request_response.go │ │ ├── delete_internet_gateway_request_response.go │ │ ├── delete_ipv6_request_response.go │ │ ├── delete_local_peering_gateway_request_response.go │ │ ├── delete_nat_gateway_request_response.go │ │ ├── delete_network_security_group_request_response.go │ │ ├── delete_private_ip_request_response.go │ │ ├── delete_public_ip_pool_request_response.go │ │ ├── delete_public_ip_request_response.go │ │ ├── delete_remote_peering_connection_request_response.go │ │ ├── delete_route_table_request_response.go │ │ ├── delete_security_list_request_response.go │ │ ├── delete_service_gateway_request_response.go │ │ ├── delete_subnet_request_response.go │ │ ├── delete_vcn_request_response.go │ │ ├── delete_virtual_circuit_public_prefix_details.go │ │ ├── delete_virtual_circuit_request_response.go │ │ ├── delete_vlan_request_response.go │ │ ├── delete_volume_backup_policy_assignment_request_response.go │ │ ├── delete_volume_backup_policy_request_response.go │ │ ├── delete_volume_backup_request_response.go │ │ ├── delete_volume_group_backup_request_response.go │ │ ├── delete_volume_group_request_response.go │ │ ├── delete_volume_kms_key_request_response.go │ │ ├── delete_volume_request_response.go │ │ ├── detach_boot_volume_request_response.go │ │ ├── detach_instance_pool_instance_details.go │ │ ├── detach_instance_pool_instance_request_response.go │ │ ├── detach_load_balancer_details.go │ │ ├── detach_load_balancer_request_response.go │ │ ├── detach_service_id_request_response.go │ │ ├── detach_vnic_request_response.go │ │ ├── detach_volume_request_response.go │ │ ├── device.go │ │ ├── dhcp_dns_option.go │ │ ├── dhcp_option.go │ │ ├── dhcp_options.go │ │ ├── dhcp_search_domain_option.go │ │ ├── dpd_config.go │ │ ├── drg.go │ │ ├── drg_attachment.go │ │ ├── drg_attachment_id_drg_route_distribution_match_criteria.go │ │ ├── drg_attachment_info.go │ │ ├── drg_attachment_network_create_details.go │ │ ├── drg_attachment_network_details.go │ │ ├── drg_attachment_network_update_details.go │ │ ├── drg_attachment_type_drg_route_distribution_match_criteria.go │ │ ├── drg_redundancy_status.go │ │ ├── drg_route_distribution.go │ │ ├── drg_route_distribution_match_criteria.go │ │ ├── drg_route_distribution_statement.go │ │ ├── drg_route_rule.go │ │ ├── drg_route_table.go │ │ ├── egress_security_rule.go │ │ ├── emulated_volume_attachment.go │ │ ├── encryption_domain_config.go │ │ ├── encryption_in_transit_type.go │ │ ├── enum_integer_image_capability_descriptor.go │ │ ├── enum_string_image_capability_schema_descriptor.go │ │ ├── export_image_details.go │ │ ├── export_image_request_response.go │ │ ├── export_image_via_object_storage_tuple_details.go │ │ ├── export_image_via_object_storage_uri_details.go │ │ ├── fast_connect_provider_service.go │ │ ├── fast_connect_provider_service_key.go │ │ ├── get_all_drg_attachments_request_response.go │ │ ├── get_allowed_ike_i_p_sec_parameters_request_response.go │ │ ├── get_app_catalog_listing_agreements_request_response.go │ │ ├── get_app_catalog_listing_request_response.go │ │ ├── get_app_catalog_listing_resource_version_request_response.go │ │ ├── get_block_volume_replica_request_response.go │ │ ├── get_boot_volume_attachment_request_response.go │ │ ├── get_boot_volume_backup_request_response.go │ │ ├── get_boot_volume_kms_key_request_response.go │ │ ├── get_boot_volume_replica_request_response.go │ │ ├── get_boot_volume_request_response.go │ │ ├── get_byoip_range_request_response.go │ │ ├── get_cluster_network_request_response.go │ │ ├── get_compute_capacity_reservation_request_response.go │ │ ├── get_compute_global_image_capability_schema_request_response.go │ │ ├── get_compute_global_image_capability_schema_version_request_response.go │ │ ├── get_compute_image_capability_schema_request_response.go │ │ ├── get_console_history_content_request_response.go │ │ ├── get_console_history_request_response.go │ │ ├── get_cpe_device_config_content_request_response.go │ │ ├── get_cpe_device_shape_request_response.go │ │ ├── get_cpe_request_response.go │ │ ├── get_cross_connect_group_request_response.go │ │ ├── get_cross_connect_letter_of_authority_request_response.go │ │ ├── get_cross_connect_request_response.go │ │ ├── get_cross_connect_status_request_response.go │ │ ├── get_dedicated_vm_host_request_response.go │ │ ├── get_dhcp_options_request_response.go │ │ ├── get_drg_attachment_request_response.go │ │ ├── get_drg_redundancy_status_request_response.go │ │ ├── get_drg_request_response.go │ │ ├── get_drg_route_distribution_request_response.go │ │ ├── get_drg_route_table_request_response.go │ │ ├── get_fast_connect_provider_service_key_request_response.go │ │ ├── get_fast_connect_provider_service_request_response.go │ │ ├── get_i_p_sec_connection_device_config_request_response.go │ │ ├── get_i_p_sec_connection_device_status_request_response.go │ │ ├── get_i_p_sec_connection_request_response.go │ │ ├── get_i_p_sec_connection_tunnel_error_request_response.go │ │ ├── get_i_p_sec_connection_tunnel_request_response.go │ │ ├── get_i_p_sec_connection_tunnel_shared_secret_request_response.go │ │ ├── get_image_request_response.go │ │ ├── get_image_shape_compatibility_entry_request_response.go │ │ ├── get_instance_configuration_request_response.go │ │ ├── get_instance_console_connection_request_response.go │ │ ├── get_instance_pool_instance_request_response.go │ │ ├── get_instance_pool_load_balancer_attachment_request_response.go │ │ ├── get_instance_pool_request_response.go │ │ ├── get_instance_request_response.go │ │ ├── get_internet_gateway_request_response.go │ │ ├── get_ipsec_cpe_device_config_content_request_response.go │ │ ├── get_ipv6_request_response.go │ │ ├── get_local_peering_gateway_request_response.go │ │ ├── get_measured_boot_report_request_response.go │ │ ├── get_nat_gateway_request_response.go │ │ ├── get_network_security_group_request_response.go │ │ ├── get_networking_topology_request_response.go │ │ ├── get_private_ip_request_response.go │ │ ├── get_public_ip_by_ip_address_details.go │ │ ├── get_public_ip_by_ip_address_request_response.go │ │ ├── get_public_ip_by_private_ip_id_details.go │ │ ├── get_public_ip_by_private_ip_id_request_response.go │ │ ├── get_public_ip_pool_request_response.go │ │ ├── get_public_ip_request_response.go │ │ ├── get_remote_peering_connection_request_response.go │ │ ├── get_route_table_request_response.go │ │ ├── get_security_list_request_response.go │ │ ├── get_service_gateway_request_response.go │ │ ├── get_service_request_response.go │ │ ├── get_subnet_request_response.go │ │ ├── get_subnet_topology_request_response.go │ │ ├── get_tunnel_cpe_device_config_content_request_response.go │ │ ├── get_tunnel_cpe_device_config_request_response.go │ │ ├── get_upgrade_status_request_response.go │ │ ├── get_vcn_dns_resolver_association_request_response.go │ │ ├── get_vcn_request_response.go │ │ ├── get_vcn_topology_request_response.go │ │ ├── get_virtual_circuit_request_response.go │ │ ├── get_vlan_request_response.go │ │ ├── get_vnic_attachment_request_response.go │ │ ├── get_vnic_request_response.go │ │ ├── get_volume_attachment_request_response.go │ │ ├── get_volume_backup_policy_asset_assignment_request_response.go │ │ ├── get_volume_backup_policy_assignment_request_response.go │ │ ├── get_volume_backup_policy_request_response.go │ │ ├── get_volume_backup_request_response.go │ │ ├── get_volume_group_backup_request_response.go │ │ ├── get_volume_group_request_response.go │ │ ├── get_volume_kms_key_request_response.go │ │ ├── get_volume_request_response.go │ │ ├── get_windows_instance_initial_credentials_request_response.go │ │ ├── i_scsi_volume_attachment.go │ │ ├── icmp_options.go │ │ ├── image.go │ │ ├── image_capability_schema_descriptor.go │ │ ├── image_memory_constraints.go │ │ ├── image_ocpu_constraints.go │ │ ├── image_shape_compatibility_entry.go │ │ ├── image_shape_compatibility_summary.go │ │ ├── image_source_details.go │ │ ├── image_source_via_object_storage_tuple_details.go │ │ ├── image_source_via_object_storage_uri_details.go │ │ ├── ingress_security_rule.go │ │ ├── instance.go │ │ ├── instance_action_request_response.go │ │ ├── instance_agent_config.go │ │ ├── instance_agent_features.go │ │ ├── instance_agent_plugin_config_details.go │ │ ├── instance_availability_config.go │ │ ├── instance_configuration.go │ │ ├── instance_configuration_amd_milan_bm_launch_instance_platform_config.go │ │ ├── instance_configuration_amd_rome_bm_launch_instance_platform_config.go │ │ ├── instance_configuration_amd_vm_launch_instance_platform_config.go │ │ ├── instance_configuration_attach_vnic_details.go │ │ ├── instance_configuration_attach_volume_details.go │ │ ├── instance_configuration_availability_config.go │ │ ├── instance_configuration_block_volume_details.go │ │ ├── instance_configuration_create_vnic_details.go │ │ ├── instance_configuration_create_volume_details.go │ │ ├── instance_configuration_instance_details.go │ │ ├── instance_configuration_instance_options.go │ │ ├── instance_configuration_instance_source_details.go │ │ ├── instance_configuration_instance_source_via_boot_volume_details.go │ │ ├── instance_configuration_instance_source_via_image_details.go │ │ ├── instance_configuration_intel_skylake_bm_launch_instance_platform_config.go │ │ ├── instance_configuration_intel_vm_launch_instance_platform_config.go │ │ ├── instance_configuration_iscsi_attach_volume_details.go │ │ ├── instance_configuration_launch_instance_agent_config_details.go │ │ ├── instance_configuration_launch_instance_details.go │ │ ├── instance_configuration_launch_instance_platform_config.go │ │ ├── instance_configuration_launch_instance_shape_config_details.go │ │ ├── instance_configuration_launch_options.go │ │ ├── instance_configuration_paravirtualized_attach_volume_details.go │ │ ├── instance_configuration_summary.go │ │ ├── instance_configuration_volume_source_details.go │ │ ├── instance_configuration_volume_source_from_volume_backup_details.go │ │ ├── instance_configuration_volume_source_from_volume_details.go │ │ ├── instance_console_connection.go │ │ ├── instance_credentials.go │ │ ├── instance_options.go │ │ ├── instance_pool.go │ │ ├── instance_pool_instance.go │ │ ├── instance_pool_instance_load_balancer_backend.go │ │ ├── instance_pool_load_balancer_attachment.go │ │ ├── instance_pool_placement_configuration.go │ │ ├── instance_pool_placement_secondary_vnic_subnet.go │ │ ├── instance_pool_summary.go │ │ ├── instance_reservation_config.go │ │ ├── instance_reservation_config_details.go │ │ ├── instance_reservation_shape_config_details.go │ │ ├── instance_shape_config.go │ │ ├── instance_source_details.go │ │ ├── instance_source_via_boot_volume_details.go │ │ ├── instance_source_via_image_details.go │ │ ├── instance_summary.go │ │ ├── intel_skylake_bm_launch_instance_platform_config.go │ │ ├── intel_skylake_bm_platform_config.go │ │ ├── intel_vm_launch_instance_platform_config.go │ │ ├── intel_vm_platform_config.go │ │ ├── internet_gateway.go │ │ ├── ip_sec_connection.go │ │ ├── ip_sec_connection_device_config.go │ │ ├── ip_sec_connection_device_status.go │ │ ├── ip_sec_connection_tunnel.go │ │ ├── ip_sec_connection_tunnel_error_details.go │ │ ├── ip_sec_connection_tunnel_shared_secret.go │ │ ├── ipsec_tunnel_drg_attachment_network_details.go │ │ ├── ipv6.go │ │ ├── launch_instance_agent_config_details.go │ │ ├── launch_instance_availability_config_details.go │ │ ├── launch_instance_configuration_request_response.go │ │ ├── launch_instance_details.go │ │ ├── launch_instance_platform_config.go │ │ ├── launch_instance_request_response.go │ │ ├── launch_instance_shape_config_details.go │ │ ├── launch_options.go │ │ ├── letter_of_authority.go │ │ ├── list_allowed_peer_regions_for_remote_peering_request_response.go │ │ ├── list_app_catalog_listing_resource_versions_request_response.go │ │ ├── list_app_catalog_listings_request_response.go │ │ ├── list_app_catalog_subscriptions_request_response.go │ │ ├── list_block_volume_replicas_request_response.go │ │ ├── list_boot_volume_attachments_request_response.go │ │ ├── list_boot_volume_backups_request_response.go │ │ ├── list_boot_volume_replicas_request_response.go │ │ ├── list_boot_volumes_request_response.go │ │ ├── list_byoip_allocated_ranges_request_response.go │ │ ├── list_byoip_ranges_request_response.go │ │ ├── list_cluster_network_instances_request_response.go │ │ ├── list_cluster_networks_request_response.go │ │ ├── list_compute_capacity_reservation_instance_shapes_request_response.go │ │ ├── list_compute_capacity_reservation_instances_request_response.go │ │ ├── list_compute_capacity_reservations_request_response.go │ │ ├── list_compute_global_image_capability_schema_versions_request_response.go │ │ ├── list_compute_global_image_capability_schemas_request_response.go │ │ ├── list_compute_image_capability_schemas_request_response.go │ │ ├── list_console_histories_request_response.go │ │ ├── list_cpe_device_shapes_request_response.go │ │ ├── list_cpes_request_response.go │ │ ├── list_cross_connect_groups_request_response.go │ │ ├── list_cross_connect_locations_request_response.go │ │ ├── list_cross_connect_mappings_request_response.go │ │ ├── list_cross_connects_request_response.go │ │ ├── list_crossconnect_port_speed_shapes_request_response.go │ │ ├── list_dedicated_vm_host_instance_shapes_request_response.go │ │ ├── list_dedicated_vm_host_instances_request_response.go │ │ ├── list_dedicated_vm_host_shapes_request_response.go │ │ ├── list_dedicated_vm_hosts_request_response.go │ │ ├── list_dhcp_options_request_response.go │ │ ├── list_drg_attachments_request_response.go │ │ ├── list_drg_route_distribution_statements_request_response.go │ │ ├── list_drg_route_distributions_request_response.go │ │ ├── list_drg_route_rules_request_response.go │ │ ├── list_drg_route_tables_request_response.go │ │ ├── list_drgs_request_response.go │ │ ├── list_fast_connect_provider_services_request_response.go │ │ ├── list_fast_connect_provider_virtual_circuit_bandwidth_shapes_request_response.go │ │ ├── list_i_p_sec_connection_tunnel_routes_request_response.go │ │ ├── list_i_p_sec_connection_tunnel_security_associations_request_response.go │ │ ├── list_i_p_sec_connection_tunnels_request_response.go │ │ ├── list_i_p_sec_connections_request_response.go │ │ ├── list_image_shape_compatibility_entries_request_response.go │ │ ├── list_images_request_response.go │ │ ├── list_instance_configurations_request_response.go │ │ ├── list_instance_console_connections_request_response.go │ │ ├── list_instance_devices_request_response.go │ │ ├── list_instance_pool_instances_request_response.go │ │ ├── list_instance_pools_request_response.go │ │ ├── list_instances_request_response.go │ │ ├── list_internet_gateways_request_response.go │ │ ├── list_ipv6s_request_response.go │ │ ├── list_local_peering_gateways_request_response.go │ │ ├── list_nat_gateways_request_response.go │ │ ├── list_network_security_group_security_rules_request_response.go │ │ ├── list_network_security_group_vnics_request_response.go │ │ ├── list_network_security_groups_request_response.go │ │ ├── list_private_ips_request_response.go │ │ ├── list_public_ip_pools_request_response.go │ │ ├── list_public_ips_request_response.go │ │ ├── list_remote_peering_connections_request_response.go │ │ ├── list_route_tables_request_response.go │ │ ├── list_security_lists_request_response.go │ │ ├── list_service_gateways_request_response.go │ │ ├── list_services_request_response.go │ │ ├── list_shapes_request_response.go │ │ ├── list_subnets_request_response.go │ │ ├── list_vcns_request_response.go │ │ ├── list_virtual_circuit_bandwidth_shapes_request_response.go │ │ ├── list_virtual_circuit_public_prefixes_request_response.go │ │ ├── list_virtual_circuits_request_response.go │ │ ├── list_vlans_request_response.go │ │ ├── list_vnic_attachments_request_response.go │ │ ├── list_volume_attachments_request_response.go │ │ ├── list_volume_backup_policies_request_response.go │ │ ├── list_volume_backups_request_response.go │ │ ├── list_volume_group_backups_request_response.go │ │ ├── list_volume_groups_request_response.go │ │ ├── list_volumes_request_response.go │ │ ├── local_peering_gateway.go │ │ ├── macsec_encryption_cipher.go │ │ ├── macsec_key.go │ │ ├── macsec_properties.go │ │ ├── macsec_state.go │ │ ├── measured_boot_entry.go │ │ ├── measured_boot_report.go │ │ ├── measured_boot_report_measurements.go │ │ ├── modify_vcn_cidr_details.go │ │ ├── modify_vcn_cidr_request_response.go │ │ ├── multipath_device.go │ │ ├── nat_gateway.go │ │ ├── network_security_group.go │ │ ├── network_security_group_vnic.go │ │ ├── networking_topology.go │ │ ├── paravirtualized_volume_attachment.go │ │ ├── peer_region_for_remote_peering.go │ │ ├── phase_one_config_details.go │ │ ├── phase_two_config_details.go │ │ ├── platform_config.go │ │ ├── port_range.go │ │ ├── preemptible_instance_config_details.go │ │ ├── preemption_action.go │ │ ├── private_ip.go │ │ ├── public_ip.go │ │ ├── public_ip_pool.go │ │ ├── public_ip_pool_collection.go │ │ ├── public_ip_pool_summary.go │ │ ├── remote_peering_connection.go │ │ ├── remote_peering_connection_drg_attachment_network_details.go │ │ ├── remove_drg_route_distribution_statements_details.go │ │ ├── remove_drg_route_distribution_statements_request_response.go │ │ ├── remove_drg_route_rules_details.go │ │ ├── remove_drg_route_rules_request_response.go │ │ ├── remove_export_drg_route_distribution_request_response.go │ │ ├── remove_image_shape_compatibility_entry_request_response.go │ │ ├── remove_import_drg_route_distribution_request_response.go │ │ ├── remove_network_security_group_security_rules_details.go │ │ ├── remove_network_security_group_security_rules_request_response.go │ │ ├── remove_public_ip_pool_capacity_details.go │ │ ├── remove_public_ip_pool_capacity_request_response.go │ │ ├── remove_vcn_cidr_details.go │ │ ├── remove_vcn_cidr_request_response.go │ │ ├── reset_instance_pool_request_response.go │ │ ├── route_rule.go │ │ ├── route_table.go │ │ ├── security_list.go │ │ ├── security_rule.go │ │ ├── service.go │ │ ├── service_gateway.go │ │ ├── service_id_request_details.go │ │ ├── service_id_response_details.go │ │ ├── shape.go │ │ ├── shape_max_vnic_attachment_options.go │ │ ├── shape_measured_boot_options.go │ │ ├── shape_memory_options.go │ │ ├── shape_networking_bandwidth_options.go │ │ ├── shape_numa_nodes_per_socket_platform_options.go │ │ ├── shape_ocpu_options.go │ │ ├── shape_platform_config_options.go │ │ ├── shape_secure_boot_options.go │ │ ├── shape_trusted_platform_module_options.go │ │ ├── softreset_instance_pool_request_response.go │ │ ├── start_instance_pool_request_response.go │ │ ├── stop_instance_pool_request_response.go │ │ ├── subnet.go │ │ ├── subnet_topology.go │ │ ├── tcp_options.go │ │ ├── terminate_cluster_network_request_response.go │ │ ├── terminate_instance_pool_request_response.go │ │ ├── terminate_instance_request_response.go │ │ ├── terminate_preemption_action.go │ │ ├── topology.go │ │ ├── topology_associated_with_entity_relationship.go │ │ ├── topology_associated_with_relationship_details.go │ │ ├── topology_contains_entity_relationship.go │ │ ├── topology_entity_relationship.go │ │ ├── topology_routes_to_entity_relationship.go │ │ ├── topology_routes_to_relationship_details.go │ │ ├── tunnel_config.go │ │ ├── tunnel_cpe_device_config.go │ │ ├── tunnel_phase_one_details.go │ │ ├── tunnel_phase_two_details.go │ │ ├── tunnel_route_summary.go │ │ ├── tunnel_security_association_summary.go │ │ ├── tunnel_status.go │ │ ├── udp_options.go │ │ ├── update_boot_volume_backup_details.go │ │ ├── update_boot_volume_backup_request_response.go │ │ ├── update_boot_volume_details.go │ │ ├── update_boot_volume_kms_key_details.go │ │ ├── update_boot_volume_kms_key_request_response.go │ │ ├── update_boot_volume_request_response.go │ │ ├── update_byoip_range_details.go │ │ ├── update_byoip_range_request_response.go │ │ ├── update_cluster_network_details.go │ │ ├── update_cluster_network_instance_pool_details.go │ │ ├── update_cluster_network_request_response.go │ │ ├── update_compute_capacity_reservation_details.go │ │ ├── update_compute_capacity_reservation_request_response.go │ │ ├── update_compute_image_capability_schema_details.go │ │ ├── update_compute_image_capability_schema_request_response.go │ │ ├── update_console_history_details.go │ │ ├── update_console_history_request_response.go │ │ ├── update_cpe_details.go │ │ ├── update_cpe_request_response.go │ │ ├── update_cross_connect_details.go │ │ ├── update_cross_connect_group_details.go │ │ ├── update_cross_connect_group_request_response.go │ │ ├── update_cross_connect_request_response.go │ │ ├── update_dedicated_vm_host_details.go │ │ ├── update_dedicated_vm_host_request_response.go │ │ ├── update_dhcp_details.go │ │ ├── update_dhcp_options_request_response.go │ │ ├── update_drg_attachment_details.go │ │ ├── update_drg_attachment_request_response.go │ │ ├── update_drg_details.go │ │ ├── update_drg_request_response.go │ │ ├── update_drg_route_distribution_details.go │ │ ├── update_drg_route_distribution_request_response.go │ │ ├── update_drg_route_distribution_statement_details.go │ │ ├── update_drg_route_distribution_statements_details.go │ │ ├── update_drg_route_distribution_statements_request_response.go │ │ ├── update_drg_route_rule_details.go │ │ ├── update_drg_route_rules_details.go │ │ ├── update_drg_route_rules_request_response.go │ │ ├── update_drg_route_table_details.go │ │ ├── update_drg_route_table_request_response.go │ │ ├── update_i_p_sec_connection_request_response.go │ │ ├── update_i_p_sec_connection_tunnel_request_response.go │ │ ├── update_i_p_sec_connection_tunnel_shared_secret_request_response.go │ │ ├── update_image_details.go │ │ ├── update_image_request_response.go │ │ ├── update_instance_agent_config_details.go │ │ ├── update_instance_availability_config_details.go │ │ ├── update_instance_configuration_details.go │ │ ├── update_instance_configuration_request_response.go │ │ ├── update_instance_console_connection_details.go │ │ ├── update_instance_console_connection_request_response.go │ │ ├── update_instance_details.go │ │ ├── update_instance_pool_details.go │ │ ├── update_instance_pool_placement_configuration_details.go │ │ ├── update_instance_pool_request_response.go │ │ ├── update_instance_request_response.go │ │ ├── update_instance_shape_config_details.go │ │ ├── update_internet_gateway_details.go │ │ ├── update_internet_gateway_request_response.go │ │ ├── update_ip_sec_connection_details.go │ │ ├── update_ip_sec_connection_tunnel_details.go │ │ ├── update_ip_sec_connection_tunnel_shared_secret_details.go │ │ ├── update_ip_sec_tunnel_bgp_session_details.go │ │ ├── update_ip_sec_tunnel_encryption_domain_details.go │ │ ├── update_ipv6_details.go │ │ ├── update_ipv6_request_response.go │ │ ├── update_launch_options.go │ │ ├── update_local_peering_gateway_details.go │ │ ├── update_local_peering_gateway_request_response.go │ │ ├── update_macsec_key.go │ │ ├── update_macsec_properties.go │ │ ├── update_nat_gateway_details.go │ │ ├── update_nat_gateway_request_response.go │ │ ├── update_network_security_group_details.go │ │ ├── update_network_security_group_request_response.go │ │ ├── update_network_security_group_security_rules_details.go │ │ ├── update_network_security_group_security_rules_request_response.go │ │ ├── update_private_ip_details.go │ │ ├── update_private_ip_request_response.go │ │ ├── update_public_ip_details.go │ │ ├── update_public_ip_pool_details.go │ │ ├── update_public_ip_pool_request_response.go │ │ ├── update_public_ip_request_response.go │ │ ├── update_remote_peering_connection_details.go │ │ ├── update_remote_peering_connection_request_response.go │ │ ├── update_route_table_details.go │ │ ├── update_route_table_request_response.go │ │ ├── update_security_list_details.go │ │ ├── update_security_list_request_response.go │ │ ├── update_security_rule_details.go │ │ ├── update_service_gateway_details.go │ │ ├── update_service_gateway_request_response.go │ │ ├── update_subnet_details.go │ │ ├── update_subnet_request_response.go │ │ ├── update_tunnel_cpe_device_config_details.go │ │ ├── update_tunnel_cpe_device_config_request_response.go │ │ ├── update_vcn_details.go │ │ ├── update_vcn_request_response.go │ │ ├── update_virtual_circuit_details.go │ │ ├── update_virtual_circuit_request_response.go │ │ ├── update_vlan_details.go │ │ ├── update_vlan_request_response.go │ │ ├── update_vnic_details.go │ │ ├── update_vnic_request_response.go │ │ ├── update_volume_attachment_details.go │ │ ├── update_volume_attachment_request_response.go │ │ ├── update_volume_backup_details.go │ │ ├── update_volume_backup_policy_details.go │ │ ├── update_volume_backup_policy_request_response.go │ │ ├── update_volume_backup_request_response.go │ │ ├── update_volume_details.go │ │ ├── update_volume_group_backup_details.go │ │ ├── update_volume_group_backup_request_response.go │ │ ├── update_volume_group_details.go │ │ ├── update_volume_group_request_response.go │ │ ├── update_volume_kms_key_details.go │ │ ├── update_volume_kms_key_request_response.go │ │ ├── update_volume_request_response.go │ │ ├── updated_network_security_group_security_rules.go │ │ ├── upgrade_drg_request_response.go │ │ ├── upgrade_status.go │ │ ├── validate_byoip_range_request_response.go │ │ ├── vcn.go │ │ ├── vcn_dns_resolver_association.go │ │ ├── vcn_drg_attachment_network_create_details.go │ │ ├── vcn_drg_attachment_network_details.go │ │ ├── vcn_drg_attachment_network_update_details.go │ │ ├── vcn_topology.go │ │ ├── virtual_circuit.go │ │ ├── virtual_circuit_bandwidth_shape.go │ │ ├── virtual_circuit_drg_attachment_network_details.go │ │ ├── virtual_circuit_ip_mtu.go │ │ ├── virtual_circuit_public_prefix.go │ │ ├── vlan.go │ │ ├── vnic.go │ │ ├── vnic_attachment.go │ │ ├── volume.go │ │ ├── volume_attachment.go │ │ ├── volume_backup.go │ │ ├── volume_backup_policy.go │ │ ├── volume_backup_policy_assignment.go │ │ ├── volume_backup_schedule.go │ │ ├── volume_group.go │ │ ├── volume_group_backup.go │ │ ├── volume_group_source_details.go │ │ ├── volume_group_source_from_volume_group_backup_details.go │ │ ├── volume_group_source_from_volume_group_details.go │ │ ├── volume_group_source_from_volumes_details.go │ │ ├── volume_kms_key.go │ │ ├── volume_source_details.go │ │ ├── volume_source_from_block_volume_replica_details.go │ │ ├── volume_source_from_volume_backup_details.go │ │ ├── volume_source_from_volume_details.go │ │ └── withdraw_byoip_range_request_response.go │ │ ├── identity │ │ ├── activate_domain_request_response.go │ │ ├── activate_mfa_totp_device_request_response.go │ │ ├── add_user_to_group_details.go │ │ ├── add_user_to_group_request_response.go │ │ ├── allowed_domain_license_type_summary.go │ │ ├── api_key.go │ │ ├── assemble_effective_tag_set_request_response.go │ │ ├── auth_token.go │ │ ├── authentication_policy.go │ │ ├── availability_domain.go │ │ ├── base_tag_definition_validator.go │ │ ├── bulk_action_resource.go │ │ ├── bulk_action_resource_type.go │ │ ├── bulk_action_resource_type_collection.go │ │ ├── bulk_delete_resources_details.go │ │ ├── bulk_delete_resources_request_response.go │ │ ├── bulk_delete_tags_details.go │ │ ├── bulk_delete_tags_request_response.go │ │ ├── bulk_edit_operation_details.go │ │ ├── bulk_edit_resource.go │ │ ├── bulk_edit_tags_details.go │ │ ├── bulk_edit_tags_request_response.go │ │ ├── bulk_edit_tags_resource_type.go │ │ ├── bulk_edit_tags_resource_type_collection.go │ │ ├── bulk_move_resources_details.go │ │ ├── bulk_move_resources_request_response.go │ │ ├── cascade_delete_tag_namespace_request_response.go │ │ ├── change_domain_compartment_details.go │ │ ├── change_domain_compartment_request_response.go │ │ ├── change_domain_license_type_details.go │ │ ├── change_domain_license_type_request_response.go │ │ ├── change_tag_namespace_compartment_detail.go │ │ ├── change_tag_namespace_compartment_request_response.go │ │ ├── change_tas_domain_license_type_details.go │ │ ├── compartment.go │ │ ├── create_api_key_details.go │ │ ├── create_auth_token_details.go │ │ ├── create_auth_token_request_response.go │ │ ├── create_compartment_details.go │ │ ├── create_compartment_request_response.go │ │ ├── create_customer_secret_key_details.go │ │ ├── create_customer_secret_key_request_response.go │ │ ├── create_db_credential_details.go │ │ ├── create_db_credential_request_response.go │ │ ├── create_domain_details.go │ │ ├── create_domain_request_response.go │ │ ├── create_dynamic_group_details.go │ │ ├── create_dynamic_group_request_response.go │ │ ├── create_group_details.go │ │ ├── create_group_request_response.go │ │ ├── create_identity_provider_details.go │ │ ├── create_identity_provider_request_response.go │ │ ├── create_idp_group_mapping_details.go │ │ ├── create_idp_group_mapping_request_response.go │ │ ├── create_mfa_totp_device_request_response.go │ │ ├── create_network_source_details.go │ │ ├── create_network_source_request_response.go │ │ ├── create_o_auth2_client_credential_details.go │ │ ├── create_o_auth_client_credential_request_response.go │ │ ├── create_or_reset_u_i_password_request_response.go │ │ ├── create_policy_details.go │ │ ├── create_policy_request_response.go │ │ ├── create_region_subscription_details.go │ │ ├── create_region_subscription_request_response.go │ │ ├── create_saml2_identity_provider_details.go │ │ ├── create_smtp_credential_details.go │ │ ├── create_smtp_credential_request_response.go │ │ ├── create_swift_password_details.go │ │ ├── create_swift_password_request_response.go │ │ ├── create_tag_default_details.go │ │ ├── create_tag_default_request_response.go │ │ ├── create_tag_details.go │ │ ├── create_tag_namespace_details.go │ │ ├── create_tag_namespace_request_response.go │ │ ├── create_tag_request_response.go │ │ ├── create_user_details.go │ │ ├── create_user_request_response.go │ │ ├── customer_secret_key.go │ │ ├── customer_secret_key_summary.go │ │ ├── db_credential.go │ │ ├── db_credential_summary.go │ │ ├── deactivate_domain_request_response.go │ │ ├── default_tag_definition_validator.go │ │ ├── delete_api_key_request_response.go │ │ ├── delete_auth_token_request_response.go │ │ ├── delete_compartment_request_response.go │ │ ├── delete_customer_secret_key_request_response.go │ │ ├── delete_db_credential_request_response.go │ │ ├── delete_domain_request_response.go │ │ ├── delete_dynamic_group_request_response.go │ │ ├── delete_group_request_response.go │ │ ├── delete_identity_provider_request_response.go │ │ ├── delete_idp_group_mapping_request_response.go │ │ ├── delete_mfa_totp_device_request_response.go │ │ ├── delete_network_source_request_response.go │ │ ├── delete_o_auth_client_credential_request_response.go │ │ ├── delete_policy_request_response.go │ │ ├── delete_smtp_credential_request_response.go │ │ ├── delete_swift_password_request_response.go │ │ ├── delete_tag_default_request_response.go │ │ ├── delete_tag_namespace_request_response.go │ │ ├── delete_tag_request_response.go │ │ ├── delete_user_request_response.go │ │ ├── domain.go │ │ ├── domain_replication.go │ │ ├── domain_replication_states.go │ │ ├── domain_summary.go │ │ ├── dynamic_group.go │ │ ├── enable_replication_to_region_details.go │ │ ├── enable_replication_to_region_request_response.go │ │ ├── enum_tag_definition_validator.go │ │ ├── fault_domain.go │ │ ├── fully_qualified_scope.go │ │ ├── generate_totp_seed_request_response.go │ │ ├── get_authentication_policy_request_response.go │ │ ├── get_compartment_request_response.go │ │ ├── get_domain_request_response.go │ │ ├── get_dynamic_group_request_response.go │ │ ├── get_group_request_response.go │ │ ├── get_iam_work_request_request_response.go │ │ ├── get_identity_provider_request_response.go │ │ ├── get_idp_group_mapping_request_response.go │ │ ├── get_mfa_totp_device_request_response.go │ │ ├── get_network_source_request_response.go │ │ ├── get_policy_request_response.go │ │ ├── get_standard_tag_template_request_response.go │ │ ├── get_tag_default_request_response.go │ │ ├── get_tag_namespace_request_response.go │ │ ├── get_tag_request_response.go │ │ ├── get_tagging_work_request_request_response.go │ │ ├── get_tenancy_request_response.go │ │ ├── get_user_group_membership_request_response.go │ │ ├── get_user_request_response.go │ │ ├── get_user_u_i_password_information_request_response.go │ │ ├── get_work_request_request_response.go │ │ ├── group.go │ │ ├── iam_work_request.go │ │ ├── iam_work_request_error_summary.go │ │ ├── iam_work_request_log_summary.go │ │ ├── iam_work_request_resource.go │ │ ├── iam_work_request_summary.go │ │ ├── identity_client.go │ │ ├── identity_provider.go │ │ ├── identity_provider_group_summary.go │ │ ├── idp_group_mapping.go │ │ ├── import_standard_tags_details.go │ │ ├── import_standard_tags_request_response.go │ │ ├── list_allowed_domain_license_types_request_response.go │ │ ├── list_api_keys_request_response.go │ │ ├── list_auth_tokens_request_response.go │ │ ├── list_availability_domains_request_response.go │ │ ├── list_bulk_action_resource_types_request_response.go │ │ ├── list_bulk_edit_tags_resource_types_request_response.go │ │ ├── list_compartments_request_response.go │ │ ├── list_cost_tracking_tags_request_response.go │ │ ├── list_customer_secret_keys_request_response.go │ │ ├── list_db_credentials_request_response.go │ │ ├── list_domains_request_response.go │ │ ├── list_dynamic_groups_request_response.go │ │ ├── list_fault_domains_request_response.go │ │ ├── list_groups_request_response.go │ │ ├── list_iam_work_request_errors_request_response.go │ │ ├── list_iam_work_request_logs_request_response.go │ │ ├── list_iam_work_requests_request_response.go │ │ ├── list_identity_provider_groups_request_response.go │ │ ├── list_identity_providers_request_response.go │ │ ├── list_idp_group_mappings_request_response.go │ │ ├── list_mfa_totp_devices_request_response.go │ │ ├── list_network_sources_request_response.go │ │ ├── list_o_auth_client_credentials_request_response.go │ │ ├── list_policies_request_response.go │ │ ├── list_region_subscriptions_request_response.go │ │ ├── list_regions_request_response.go │ │ ├── list_smtp_credentials_request_response.go │ │ ├── list_standard_tag_namespaces_request_response.go │ │ ├── list_swift_passwords_request_response.go │ │ ├── list_tag_defaults_request_response.go │ │ ├── list_tag_namespaces_request_response.go │ │ ├── list_tagging_work_request_errors_request_response.go │ │ ├── list_tagging_work_request_logs_request_response.go │ │ ├── list_tagging_work_requests_request_response.go │ │ ├── list_tags_request_response.go │ │ ├── list_user_group_memberships_request_response.go │ │ ├── list_users_request_response.go │ │ ├── list_work_requests_request_response.go │ │ ├── mfa_totp_device.go │ │ ├── mfa_totp_device_summary.go │ │ ├── mfa_totp_token.go │ │ ├── move_compartment_details.go │ │ ├── move_compartment_request_response.go │ │ ├── network_policy.go │ │ ├── network_sources.go │ │ ├── network_sources_summary.go │ │ ├── network_sources_virtual_source_list.go │ │ ├── o_auth2_client_credential.go │ │ ├── o_auth2_client_credential_summary.go │ │ ├── password_policy.go │ │ ├── policy.go │ │ ├── recover_compartment_request_response.go │ │ ├── region.go │ │ ├── region_subscription.go │ │ ├── remove_user_from_group_request_response.go │ │ ├── replicated_region_details.go │ │ ├── reset_idp_scim_client_request_response.go │ │ ├── saml2_identity_provider.go │ │ ├── scim_client_credentials.go │ │ ├── smtp_credential.go │ │ ├── smtp_credential_summary.go │ │ ├── standard_tag_definition_template.go │ │ ├── standard_tag_namespace_template.go │ │ ├── standard_tag_namespace_template_summary.go │ │ ├── swift_password.go │ │ ├── tag.go │ │ ├── tag_default.go │ │ ├── tag_default_summary.go │ │ ├── tag_namespace.go │ │ ├── tag_namespace_summary.go │ │ ├── tag_summary.go │ │ ├── tagging_work_request.go │ │ ├── tagging_work_request_error_summary.go │ │ ├── tagging_work_request_log_summary.go │ │ ├── tagging_work_request_summary.go │ │ ├── tenancy.go │ │ ├── ui_password.go │ │ ├── ui_password_information.go │ │ ├── update_auth_token_details.go │ │ ├── update_auth_token_request_response.go │ │ ├── update_authentication_policy_details.go │ │ ├── update_authentication_policy_request_response.go │ │ ├── update_compartment_details.go │ │ ├── update_compartment_request_response.go │ │ ├── update_customer_secret_key_details.go │ │ ├── update_customer_secret_key_request_response.go │ │ ├── update_domain_details.go │ │ ├── update_domain_request_response.go │ │ ├── update_dynamic_group_details.go │ │ ├── update_dynamic_group_request_response.go │ │ ├── update_group_details.go │ │ ├── update_group_request_response.go │ │ ├── update_identity_provider_details.go │ │ ├── update_identity_provider_request_response.go │ │ ├── update_idp_group_mapping_details.go │ │ ├── update_idp_group_mapping_request_response.go │ │ ├── update_network_source_details.go │ │ ├── update_network_source_request_response.go │ │ ├── update_o_auth2_client_credential_details.go │ │ ├── update_o_auth_client_credential_request_response.go │ │ ├── update_policy_details.go │ │ ├── update_policy_request_response.go │ │ ├── update_saml2_identity_provider_details.go │ │ ├── update_smtp_credential_details.go │ │ ├── update_smtp_credential_request_response.go │ │ ├── update_state_details.go │ │ ├── update_swift_password_details.go │ │ ├── update_swift_password_request_response.go │ │ ├── update_tag_default_details.go │ │ ├── update_tag_default_request_response.go │ │ ├── update_tag_details.go │ │ ├── update_tag_namespace_details.go │ │ ├── update_tag_namespace_request_response.go │ │ ├── update_tag_request_response.go │ │ ├── update_user_capabilities_details.go │ │ ├── update_user_capabilities_request_response.go │ │ ├── update_user_details.go │ │ ├── update_user_request_response.go │ │ ├── update_user_state_request_response.go │ │ ├── upload_api_key_request_response.go │ │ ├── user.go │ │ ├── user_capabilities.go │ │ ├── user_group_membership.go │ │ ├── work_request.go │ │ ├── work_request_error.go │ │ ├── work_request_log_entry.go │ │ ├── work_request_resource.go │ │ └── work_request_summary.go │ │ ├── objectstorage │ │ ├── abort_multipart_upload_request_response.go │ │ ├── archival_state.go │ │ ├── bucket.go │ │ ├── bucket_summary.go │ │ ├── cancel_work_request_request_response.go │ │ ├── commit_multipart_upload_details.go │ │ ├── commit_multipart_upload_part_details.go │ │ ├── commit_multipart_upload_request_response.go │ │ ├── copy_object_details.go │ │ ├── copy_object_request_response.go │ │ ├── create_bucket_details.go │ │ ├── create_bucket_request_response.go │ │ ├── create_multipart_upload_details.go │ │ ├── create_multipart_upload_request_response.go │ │ ├── create_preauthenticated_request_details.go │ │ ├── create_preauthenticated_request_request_response.go │ │ ├── create_replication_policy_details.go │ │ ├── create_replication_policy_request_response.go │ │ ├── create_retention_rule_details.go │ │ ├── create_retention_rule_request_response.go │ │ ├── delete_bucket_request_response.go │ │ ├── delete_object_lifecycle_policy_request_response.go │ │ ├── delete_object_request_response.go │ │ ├── delete_preauthenticated_request_request_response.go │ │ ├── delete_replication_policy_request_response.go │ │ ├── delete_retention_rule_request_response.go │ │ ├── duration.go │ │ ├── get_bucket_request_response.go │ │ ├── get_namespace_metadata_request_response.go │ │ ├── get_namespace_request_response.go │ │ ├── get_object_lifecycle_policy_request_response.go │ │ ├── get_object_request_response.go │ │ ├── get_preauthenticated_request_request_response.go │ │ ├── get_replication_policy_request_response.go │ │ ├── get_retention_rule_request_response.go │ │ ├── get_work_request_request_response.go │ │ ├── head_bucket_request_response.go │ │ ├── head_object_request_response.go │ │ ├── list_buckets_request_response.go │ │ ├── list_multipart_upload_parts_request_response.go │ │ ├── list_multipart_uploads_request_response.go │ │ ├── list_object_versions_request_response.go │ │ ├── list_objects.go │ │ ├── list_objects_request_response.go │ │ ├── list_preauthenticated_requests_request_response.go │ │ ├── list_replication_policies_request_response.go │ │ ├── list_replication_sources_request_response.go │ │ ├── list_retention_rules_request_response.go │ │ ├── list_work_request_errors_request_response.go │ │ ├── list_work_request_logs_request_response.go │ │ ├── list_work_requests_request_response.go │ │ ├── make_bucket_writable_request_response.go │ │ ├── multipart_upload.go │ │ ├── multipart_upload_part_summary.go │ │ ├── namespace_metadata.go │ │ ├── object_lifecycle_policy.go │ │ ├── object_lifecycle_rule.go │ │ ├── object_name_filter.go │ │ ├── object_summary.go │ │ ├── object_version_collection.go │ │ ├── object_version_summary.go │ │ ├── objectstorage_client.go │ │ ├── pattern_details.go │ │ ├── preauthenticated_request.go │ │ ├── preauthenticated_request_summary.go │ │ ├── put_object_lifecycle_policy_details.go │ │ ├── put_object_lifecycle_policy_request_response.go │ │ ├── put_object_request_response.go │ │ ├── reencrypt_bucket_request_response.go │ │ ├── reencrypt_object_details.go │ │ ├── reencrypt_object_request_response.go │ │ ├── rename_object_details.go │ │ ├── rename_object_request_response.go │ │ ├── replication_policy.go │ │ ├── replication_policy_summary.go │ │ ├── replication_source.go │ │ ├── restore_objects_details.go │ │ ├── restore_objects_request_response.go │ │ ├── retention_rule.go │ │ ├── retention_rule_collection.go │ │ ├── retention_rule_details.go │ │ ├── retention_rule_summary.go │ │ ├── sse_customer_key_details.go │ │ ├── storage_tier.go │ │ ├── transfer │ │ │ ├── file_uploader.go │ │ │ ├── file_uploader_req_resp.go │ │ │ ├── multipart_manifest.go │ │ │ ├── mutipart_uploader.go │ │ │ ├── stream_uploader.go │ │ │ ├── stream_uploader_req_resp.go │ │ │ ├── upload_manager.go │ │ │ └── upload_manager_req_resp.go │ │ ├── update_bucket_details.go │ │ ├── update_bucket_request_response.go │ │ ├── update_namespace_metadata_details.go │ │ ├── update_namespace_metadata_request_response.go │ │ ├── update_object_storage_tier_details.go │ │ ├── update_object_storage_tier_request_response.go │ │ ├── update_retention_rule_details.go │ │ ├── update_retention_rule_request_response.go │ │ ├── upload_part_request_response.go │ │ ├── work_request.go │ │ ├── work_request_error.go │ │ ├── work_request_log_entry.go │ │ ├── work_request_resource.go │ │ ├── work_request_resource_metadata_key.go │ │ └── work_request_summary.go │ │ └── workrequests │ │ ├── get_work_request_request_response.go │ │ ├── list_work_request_errors_request_response.go │ │ ├── list_work_request_logs_request_response.go │ │ ├── list_work_requests_request_response.go │ │ ├── work_request.go │ │ ├── work_request_error.go │ │ ├── work_request_log_entry.go │ │ ├── work_request_resource.go │ │ ├── work_request_summary.go │ │ └── workrequests_workrequest_client.go ├── osbuild │ ├── blueprint │ │ ├── internal │ │ │ └── common │ │ │ │ └── pointers.go │ │ └── pkg │ │ │ └── blueprint │ │ │ ├── blueprint.go │ │ │ ├── customizations.go │ │ │ ├── disk_customizations.go │ │ │ ├── filesystem_customizations.go │ │ │ ├── firstboot_customizations.go │ │ │ ├── fsnode_customizations.go │ │ │ ├── installer_customizations.go │ │ │ ├── partitioning_mode.go │ │ │ ├── repository_customizations.go │ │ │ ├── rhsm_customizations.go │ │ │ ├── rpm_customizations.go │ │ │ └── toml_json_bridge.go │ ├── images │ │ ├── LICENSE │ │ ├── data │ │ │ ├── dependencies │ │ │ │ ├── deps.go │ │ │ │ └── osbuild │ │ │ ├── distrodefs │ │ │ │ ├── README.md │ │ │ │ ├── bootc-generic │ │ │ │ │ └── imagetypes.yaml │ │ │ │ ├── distrodefs.go │ │ │ │ ├── fedora.yaml │ │ │ │ ├── fedora │ │ │ │ │ └── imagetypes.yaml │ │ │ │ ├── rhel-10 │ │ │ │ │ └── imagetypes.yaml │ │ │ │ ├── rhel-7 │ │ │ │ │ └── imagetypes.yaml │ │ │ │ ├── rhel-8 │ │ │ │ │ └── imagetypes.yaml │ │ │ │ ├── rhel-9 │ │ │ │ │ └── imagetypes.yaml │ │ │ │ └── rhel.yaml │ │ │ ├── files │ │ │ │ ├── README.md │ │ │ │ ├── files.go │ │ │ │ └── pxetree │ │ │ │ │ ├── README │ │ │ │ │ └── grub.cfg │ │ │ └── repositories │ │ │ │ ├── README.md │ │ │ │ ├── almalinux-10.0.json │ │ │ │ ├── almalinux-10.1.json │ │ │ │ ├── almalinux-10.2.json │ │ │ │ ├── almalinux-10.json │ │ │ │ ├── almalinux-8.10.json │ │ │ │ ├── almalinux-8.4.json │ │ │ │ ├── almalinux-8.5.json │ │ │ │ ├── almalinux-8.6.json │ │ │ │ ├── almalinux-8.7.json │ │ │ │ ├── almalinux-8.8.json │ │ │ │ ├── almalinux-8.9.json │ │ │ │ ├── almalinux-8.json │ │ │ │ ├── almalinux-9.0.json │ │ │ │ ├── almalinux-9.1.json │ │ │ │ ├── almalinux-9.2.json │ │ │ │ ├── almalinux-9.3.json │ │ │ │ ├── almalinux-9.4.json │ │ │ │ ├── almalinux-9.5.json │ │ │ │ ├── almalinux-9.6.json │ │ │ │ ├── almalinux-9.7.json │ │ │ │ ├── almalinux-9.8.json │ │ │ │ ├── almalinux-9.json │ │ │ │ ├── almalinux_kitten-10.json │ │ │ │ ├── centos-10.json │ │ │ │ ├── centos-9.json │ │ │ │ ├── fedora-41.json │ │ │ │ ├── fedora-42.json │ │ │ │ ├── fedora-43.json │ │ │ │ ├── fedora-44.json │ │ │ │ ├── repos.go │ │ │ │ ├── rhel-10.0.json │ │ │ │ ├── rhel-10.1.json │ │ │ │ ├── rhel-10.2.json │ │ │ │ ├── rhel-10.json │ │ │ │ ├── rhel-8.10.json │ │ │ │ ├── rhel-8.4.json │ │ │ │ ├── rhel-8.6.json │ │ │ │ ├── rhel-8.8.json │ │ │ │ ├── rhel-8.json │ │ │ │ ├── rhel-9.0.json │ │ │ │ ├── rhel-9.2.json │ │ │ │ ├── rhel-9.4.json │ │ │ │ ├── rhel-9.6.json │ │ │ │ ├── rhel-9.7.json │ │ │ │ ├── rhel-9.8.json │ │ │ │ └── rhel-9.json │ │ ├── internal │ │ │ ├── buildconfig │ │ │ │ └── buildconfig.go │ │ │ ├── cmdutil │ │ │ │ ├── multivalue.go │ │ │ │ └── rand.go │ │ │ ├── common │ │ │ │ ├── constants.go │ │ │ │ ├── distro.go │ │ │ │ ├── fips.go │ │ │ │ ├── helpers.go │ │ │ │ ├── pointers.go │ │ │ │ ├── states.go │ │ │ │ └── unmarshal.go │ │ │ └── environment │ │ │ │ ├── azure.go │ │ │ │ ├── ec2.go │ │ │ │ ├── environment.go │ │ │ │ ├── gcp.go │ │ │ │ ├── kvm.go │ │ │ │ ├── openstack.go │ │ │ │ └── vsphere.go │ │ └── pkg │ │ │ ├── arch │ │ │ └── arch.go │ │ │ ├── artifact │ │ │ └── artifact.go │ │ │ ├── bib │ │ │ ├── blueprintload │ │ │ │ └── config.go │ │ │ ├── container │ │ │ │ ├── container.go │ │ │ │ └── solver.go │ │ │ └── osinfo │ │ │ │ └── osinfo.go │ │ │ ├── cert │ │ │ └── parsecerts.go │ │ │ ├── cloud │ │ │ ├── awscloud │ │ │ │ ├── awscloud.go │ │ │ │ ├── client_interfaces.go │ │ │ │ └── uploader.go │ │ │ ├── azure │ │ │ │ ├── azure.go │ │ │ │ ├── azurestorage.go │ │ │ │ ├── client-interfaces.go │ │ │ │ ├── credentials.go │ │ │ │ ├── gallery.go │ │ │ │ └── vm.go │ │ │ ├── gcp │ │ │ │ ├── compute.go │ │ │ │ ├── gcp.go │ │ │ │ └── storage.go │ │ │ └── uploader.go │ │ │ ├── container │ │ │ ├── client.go │ │ │ ├── resolver.go │ │ │ └── spec.go │ │ │ ├── crypt │ │ │ ├── crypt.go │ │ │ ├── crypt_impl.go │ │ │ ├── crypt_impl_macos.go │ │ │ └── crypt_impl_non_cgo.go │ │ │ ├── customizations │ │ │ ├── anaconda │ │ │ │ └── anaconda.go │ │ │ ├── bootc │ │ │ │ └── bootc.go │ │ │ ├── fdo │ │ │ │ └── fdo.go │ │ │ ├── fsnode │ │ │ │ ├── dir.go │ │ │ │ ├── file.go │ │ │ │ └── fsnode.go │ │ │ ├── ignition │ │ │ │ └── ignition.go │ │ │ ├── kickstart │ │ │ │ └── kickstart.go │ │ │ ├── oscap │ │ │ │ └── oscap.go │ │ │ ├── shell │ │ │ │ └── shell.go │ │ │ ├── subscription │ │ │ │ └── subscription.go │ │ │ ├── users │ │ │ │ └── users.go │ │ │ └── wsl │ │ │ │ └── wsl.go │ │ │ ├── datasizes │ │ │ ├── constants.go │ │ │ ├── parse.go │ │ │ └── size.go │ │ │ ├── depsolvednf │ │ │ ├── cache.go │ │ │ └── depsolvednf.go │ │ │ ├── disk │ │ │ ├── btrfs.go │ │ │ ├── disk.go │ │ │ ├── filesystem.go │ │ │ ├── luks.go │ │ │ ├── lvm.go │ │ │ ├── partition.go │ │ │ ├── partition │ │ │ │ └── partition_mode.go │ │ │ ├── partition_table.go │ │ │ ├── raw.go │ │ │ ├── swap.go │ │ │ └── unmarshal.go │ │ │ ├── distro │ │ │ ├── bootc │ │ │ │ ├── bootc.go │ │ │ │ ├── partition.go │ │ │ │ ├── shared.go │ │ │ │ └── util.go │ │ │ ├── defs │ │ │ │ ├── id.go │ │ │ │ └── loader.go │ │ │ ├── distro.go │ │ │ ├── generic │ │ │ │ ├── distro.go │ │ │ │ ├── images.go │ │ │ │ ├── imagetype.go │ │ │ │ └── options.go │ │ │ ├── host.go │ │ │ ├── id.go │ │ │ ├── image_config.go │ │ │ ├── installer_config.go │ │ │ ├── test_distro │ │ │ │ └── distro.go │ │ │ └── validator.go │ │ │ ├── distrofactory │ │ │ └── distrofactory.go │ │ │ ├── distroidparser │ │ │ └── idparser.go │ │ │ ├── experimentalflags │ │ │ └── experimental.go │ │ │ ├── hashutil │ │ │ └── sha256sum.go │ │ │ ├── image │ │ │ ├── anaconda_container_installer.go │ │ │ ├── anaconda_container_installer_legacy.go │ │ │ ├── anaconda_live_installer.go │ │ │ ├── anaconda_net_installer.go │ │ │ ├── anaconda_ostree_installer.go │ │ │ ├── anaconda_tar_installer.go │ │ │ ├── archive.go │ │ │ ├── bootc_disk.go │ │ │ ├── bootc_disk_legacy.go │ │ │ ├── build.go │ │ │ ├── container.go │ │ │ ├── disk.go │ │ │ ├── gce.go │ │ │ ├── image.go │ │ │ ├── ostree_archive.go │ │ │ ├── ostree_container.go │ │ │ ├── ostree_disk.go │ │ │ ├── ostree_simplified_installer.go │ │ │ └── pxetar.go │ │ │ ├── manifest │ │ │ ├── anaconda_installer.go │ │ │ ├── anaconda_installer_iso_tree.go │ │ │ ├── build.go │ │ │ ├── coi_iso_tree.go │ │ │ ├── commit.go │ │ │ ├── commit_server_tree.go │ │ │ ├── common.go │ │ │ ├── coreos_installer.go │ │ │ ├── efi_boot_tree.go │ │ │ ├── empty.go │ │ │ ├── gzip.go │ │ │ ├── installer.go │ │ │ ├── iso.go │ │ │ ├── iso_rootfs.go │ │ │ ├── manifest.go │ │ │ ├── oci_container.go │ │ │ ├── os.go │ │ │ ├── ostree_deployment.go │ │ │ ├── ostree_encapsulate.go │ │ │ ├── ovf.go │ │ │ ├── pipeline.go │ │ │ ├── pxetree.go │ │ │ ├── qcow2.go │ │ │ ├── raw.go │ │ │ ├── raw_bootc.go │ │ │ ├── raw_ostree.go │ │ │ ├── subscription.go │ │ │ ├── tar.go │ │ │ ├── vagrant.go │ │ │ ├── vmdk.go │ │ │ ├── vpc.go │ │ │ ├── xz.go │ │ │ └── zstd.go │ │ │ ├── olog │ │ │ ├── package.go │ │ │ ├── proxy.go │ │ │ └── var.go │ │ │ ├── osbuild │ │ │ ├── anaconda_stage.go │ │ │ ├── authconfig_stage.go │ │ │ ├── authselect_stage.go │ │ │ ├── bind_mount.go │ │ │ ├── bootc_install_config_stage.go │ │ │ ├── bootc_install_to_filesystem_stage.go │ │ │ ├── bootiso_stage.go │ │ │ ├── bootupd_gen_metadata_stage.go │ │ │ ├── bootupd_stage.go │ │ │ ├── btrfs_mount.go │ │ │ ├── btrfs_subvol_stage.go │ │ │ ├── buildstamp_stage.go │ │ │ ├── chmod_stage.go │ │ │ ├── chown_stage.go │ │ │ ├── chrony_stage.go │ │ │ ├── clevis_luks_bind_stage.go │ │ │ ├── cloud_init_stage.go │ │ │ ├── container_deploy_stage.go │ │ │ ├── containers.go │ │ │ ├── containers_input.go │ │ │ ├── containers_storage_conf_stage.go │ │ │ ├── containers_storage_source.go │ │ │ ├── copy_stage.go │ │ │ ├── curl_source.go │ │ │ ├── device.go │ │ │ ├── discinfo_stage.go │ │ │ ├── disk.go │ │ │ ├── dnf4_versionlock.go │ │ │ ├── dnf_automatic_config_stage.go │ │ │ ├── dnf_config_stage.go │ │ │ ├── dnf_module_config_stage.go │ │ │ ├── dracut_conf_stage.go │ │ │ ├── dracut_stage.go │ │ │ ├── erofs_stage.go │ │ │ ├── ext4_mount.go │ │ │ ├── fat_mount.go │ │ │ ├── fdo_stage.go │ │ │ ├── files_input.go │ │ │ ├── fips.go │ │ │ ├── firewall_stage.go │ │ │ ├── first_boot_stage.go │ │ │ ├── fix_bls_stage.go │ │ │ ├── fsnode.go │ │ │ ├── fstab_stage.go │ │ │ ├── gcp_guest_agent_conf_stage.go │ │ │ ├── groups_stage.go │ │ │ ├── grub2_inst_stage.go │ │ │ ├── grub2_iso_legacy_stage.go │ │ │ ├── grub2_legacy_stage.go │ │ │ ├── grub2_stage.go │ │ │ ├── grub_iso_stage.go │ │ │ ├── gzip_stage.go │ │ │ ├── hmac_stage.go │ │ │ ├── hostname_stage.go │ │ │ ├── ignition_stage.go │ │ │ ├── implantisomd5_stage.go │ │ │ ├── inline_source.go │ │ │ ├── input.go │ │ │ ├── insights_client_config_stage.go │ │ │ ├── isolinux_stage.go │ │ │ ├── kernel_cmdline_stage.go │ │ │ ├── keymap_stage.go │ │ │ ├── kickstart_stage.go │ │ │ ├── librepo_source.go │ │ │ ├── locale_stage.go │ │ │ ├── loopback_device.go │ │ │ ├── lorax_script_stage.go │ │ │ ├── luks2_device.go │ │ │ ├── luks2_format_stage.go │ │ │ ├── luks2_remove_key_stage.go │ │ │ ├── lvm2_create_stage.go │ │ │ ├── lvm2_lv_device.go │ │ │ ├── lvm2_metadata_stage.go │ │ │ ├── machine_id_stage.go │ │ │ ├── mkdir_stage.go │ │ │ ├── mkfs_btrfs_stage.go │ │ │ ├── mkfs_ext4_stage.go │ │ │ ├── mkfs_fat_stage.go │ │ │ ├── mkfs_stage.go │ │ │ ├── mkfs_xfs_stage.go │ │ │ ├── mkswap_stage.go │ │ │ ├── modprobe_stage.go │ │ │ ├── monitor.go │ │ │ ├── mount.go │ │ │ ├── nginxconf_stage.go │ │ │ ├── nm_conf_stage.go │ │ │ ├── oci_archive_stage.go │ │ │ ├── osbuild-exec.go │ │ │ ├── osbuild.go │ │ │ ├── oscap_autotailor_stage.go │ │ │ ├── oscap_remediation_stage.go │ │ │ ├── ostree_commit_stage.go │ │ │ ├── ostree_config_stage.go │ │ │ ├── ostree_deploy_container_stage.go │ │ │ ├── ostree_deploy_stage.go │ │ │ ├── ostree_deployment_mount.go │ │ │ ├── ostree_encapsulate_stage.go │ │ │ ├── ostree_fillvar_stage.go │ │ │ ├── ostree_init_fs_stage.go │ │ │ ├── ostree_init_stage.go │ │ │ ├── ostree_input.go │ │ │ ├── ostree_os_init_stage.go │ │ │ ├── ostree_passwd_stage.go │ │ │ ├── ostree_preptree_stage.go │ │ │ ├── ostree_pull_stage.go │ │ │ ├── ostree_remotes_stage.go │ │ │ ├── ostree_selinux_stage.go │ │ │ ├── ostree_source.go │ │ │ ├── ovf_stage.go │ │ │ ├── pam_limits_conf_stage.go │ │ │ ├── pki_update_ca_trust_stage.go │ │ │ ├── pwquality_conf_stage.go │ │ │ ├── qemu_stage.go │ │ │ ├── result.go │ │ │ ├── result_test_data.go │ │ │ ├── rhsm_facts_stage.go │ │ │ ├── rhsm_stage.go │ │ │ ├── rpm_stage.go │ │ │ ├── selinux_config_stage.go │ │ │ ├── selinux_stage.go │ │ │ ├── sfdisk_stage.go │ │ │ ├── sgdisk_stage.go │ │ │ ├── shell_init_stage.go │ │ │ ├── skopeo_index_source.go │ │ │ ├── skopeo_source.go │ │ │ ├── skopeo_stage.go │ │ │ ├── source.go │ │ │ ├── squashfs_stage.go │ │ │ ├── sshd_config_stage.go │ │ │ ├── stage.go │ │ │ ├── sysconfig_stage.go │ │ │ ├── sysctld_stage.go │ │ │ ├── systemd_journald_stage.go │ │ │ ├── systemd_logind_stage.go │ │ │ ├── systemd_preset_stage.go │ │ │ ├── systemd_stage.go │ │ │ ├── systemd_unit_create_stage.go │ │ │ ├── systemd_unit_stage.go │ │ │ ├── tar_stage.go │ │ │ ├── timezone_stage.go │ │ │ ├── tmpfilesd_stage.go │ │ │ ├── tree_input.go │ │ │ ├── truncate_stage.go │ │ │ ├── tuned_stage.go │ │ │ ├── udev_rules_stage.go │ │ │ ├── update_crypto_policies_stage.go │ │ │ ├── users_stage.go │ │ │ ├── v1result.go │ │ │ ├── vagrant_stage.go │ │ │ ├── waagent_conf.go │ │ │ ├── write_device_stage.go │ │ │ ├── wsl_conf_stage.go │ │ │ ├── wsl_distribution_conf_stage.go │ │ │ ├── xfs_mount.go │ │ │ ├── xorrisofs_stage.go │ │ │ ├── xz_stage.go │ │ │ ├── yum_config_stage.go │ │ │ ├── yum_repos_stage.go │ │ │ ├── zipl_inst_stage.go │ │ │ ├── zipl_stage.go │ │ │ └── zstd_stage.go │ │ │ ├── ostree │ │ │ ├── errors.go │ │ │ ├── mock_ostree_repo │ │ │ │ └── mock_repo.go │ │ │ └── ostree.go │ │ │ ├── pathpolicy │ │ │ ├── path_policy.go │ │ │ └── path_trie.go │ │ │ ├── platform │ │ │ ├── bootmode.go │ │ │ ├── platform.go │ │ │ └── yaml.go │ │ │ ├── policies │ │ │ └── policies.go │ │ │ ├── reporegistry │ │ │ ├── error.go │ │ │ ├── reporegistry.go │ │ │ └── repository.go │ │ │ ├── rhsm │ │ │ ├── facts │ │ │ │ └── facts.go │ │ │ └── secrets.go │ │ │ ├── rpmmd │ │ │ ├── module.go │ │ │ ├── package.go │ │ │ └── repository.go │ │ │ ├── runner │ │ │ ├── centos.go │ │ │ ├── fedora.go │ │ │ ├── linux.go │ │ │ ├── rhel.go │ │ │ ├── runner.go │ │ │ └── yaml.go │ │ │ ├── sbom │ │ │ └── document.go │ │ │ ├── shutil │ │ │ └── shlex_quote.go │ │ │ └── upload │ │ │ ├── koji │ │ │ ├── koji.go │ │ │ ├── metadata-rpm.go │ │ │ └── metadata.go │ │ │ ├── oci │ │ │ └── upload.go │ │ │ └── vmware │ │ │ └── vmware.go │ └── osbuild-composer │ │ └── pkg │ │ └── splunk_logger │ │ ├── LICENSE │ │ ├── environment_hook.go │ │ ├── splunk_hook.go │ │ └── splunk_logger.go ├── perimeterx │ └── marshmallow │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cache.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── options.go │ │ ├── reflection.go │ │ ├── unmarshal.go │ │ └── unmarshal_from_json_map.go ├── pkg │ ├── browser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.go │ │ ├── browser_darwin.go │ │ ├── browser_freebsd.go │ │ ├── browser_linux.go │ │ ├── browser_netbsd.go │ │ ├── browser_openbsd.go │ │ ├── browser_unsupported.go │ │ └── browser_windows.go │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── planetscale │ └── vtprotobuf │ │ ├── LICENSE │ │ ├── protohelpers │ │ └── protohelpers.go │ │ └── types │ │ └── known │ │ ├── anypb │ │ └── any_vtproto.pb.go │ │ ├── durationpb │ │ └── duration_vtproto.pb.go │ │ ├── emptypb │ │ └── empty_vtproto.pb.go │ │ ├── structpb │ │ └── struct_vtproto.pb.go │ │ ├── timestamppb │ │ └── timestamp_vtproto.pb.go │ │ └── wrapperspb │ │ └── wrappers_vtproto.pb.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── proglottis │ └── gpgme │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── data.go │ │ ├── go_gpgme.c │ │ ├── go_gpgme.h │ │ ├── gpgme.go │ │ ├── unset_agent_info.go │ │ └── unset_agent_info_windows.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── golang │ │ │ │ └── gddo │ │ │ │ ├── LICENSE │ │ │ │ └── httputil │ │ │ │ ├── header │ │ │ │ └── header.go │ │ │ │ └── negotiate.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectorfunc.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_darwin.go │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ ├── process_collector_not_supported.go │ │ │ ├── process_collector_procfsenabled.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promauto │ │ │ └── auto.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ ├── internal │ │ │ │ └── compression.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── testutil │ │ │ ├── lint.go │ │ │ ├── promlint │ │ │ │ ├── problem.go │ │ │ │ ├── promlint.go │ │ │ │ ├── validation.go │ │ │ │ └── validations │ │ │ │ │ ├── counter_validations.go │ │ │ │ │ ├── duplicate_validations.go │ │ │ │ │ ├── generic_name_validations.go │ │ │ │ │ ├── help_validations.go │ │ │ │ │ ├── histogram_validations.go │ │ │ │ │ └── units.go │ │ │ └── testutil.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── labelset_string.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ └── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_dev_snmp6.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_tls_stat.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go ├── rivo │ └── uniseg │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── doc.go │ │ ├── eastasianwidth.go │ │ ├── emojipresentation.go │ │ ├── gen_breaktest.go │ │ ├── gen_properties.go │ │ ├── grapheme.go │ │ ├── graphemeproperties.go │ │ ├── graphemerules.go │ │ ├── line.go │ │ ├── lineproperties.go │ │ ├── linerules.go │ │ ├── properties.go │ │ ├── sentence.go │ │ ├── sentenceproperties.go │ │ ├── sentencerules.go │ │ ├── step.go │ │ ├── width.go │ │ ├── word.go │ │ ├── wordproperties.go │ │ └── wordrules.go ├── secure-systems-lab │ └── go-securesystemslib │ │ ├── LICENSE │ │ └── encrypted │ │ └── encrypted.go ├── segmentio │ └── ksuid │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── base62.go │ │ ├── ksuid.go │ │ ├── rand.go │ │ ├── sequence.go │ │ ├── set.go │ │ └── uint128.go ├── sigstore │ ├── fulcio │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE │ │ └── pkg │ │ │ └── certificate │ │ │ ├── doc.go │ │ │ └── extensions.go │ ├── protobuf-specs │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE │ │ └── gen │ │ │ └── pb-go │ │ │ └── common │ │ │ └── v1 │ │ │ └── sigstore_common.pb.go │ └── sigstore │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE │ │ └── pkg │ │ ├── cryptoutils │ │ ├── certificate.go │ │ ├── doc.go │ │ ├── generic.go │ │ ├── password.go │ │ ├── privatekey.go │ │ ├── publickey.go │ │ └── sans.go │ │ └── signature │ │ ├── algorithm_registry.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ed25519.go │ │ ├── ed25519ph.go │ │ ├── message.go │ │ ├── options.go │ │ ├── options │ │ ├── context.go │ │ ├── digest.go │ │ ├── doc.go │ │ ├── keyversion.go │ │ ├── loadoptions.go │ │ ├── noop.go │ │ ├── rand.go │ │ ├── remoteverification.go │ │ ├── rpcauth.go │ │ └── signeropts.go │ │ ├── payload │ │ ├── doc.go │ │ └── payload.go │ │ ├── publickey.go │ │ ├── rsapkcs1v15.go │ │ ├── rsapss.go │ │ ├── signer.go │ │ ├── signerverifier.go │ │ ├── util.go │ │ └── verifier.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── hooks │ │ └── test │ │ │ └── test.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── skratchdot │ └── open-golang │ │ ├── LICENSE │ │ └── open │ │ ├── exec.go │ │ ├── exec_darwin.go │ │ ├── exec_windows.go │ │ └── open.go ├── smallstep │ └── pkcs7 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ber.go │ │ ├── decrypt.go │ │ ├── encrypt.go │ │ ├── internal │ │ └── legacy │ │ │ └── x509 │ │ │ ├── debug.go │ │ │ ├── doc.go │ │ │ ├── oid.go │ │ │ ├── parser.go │ │ │ ├── pkcs1.go │ │ │ ├── verify.go │ │ │ └── x509.go │ │ ├── pkcs7.go │ │ ├── sign.go │ │ └── verify.go ├── sony │ └── gobreaker │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── gobreaker.go ├── speakeasy-api │ ├── jsonpath │ │ ├── LICENSE │ │ └── pkg │ │ │ └── jsonpath │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── filter.go │ │ │ ├── jsonpath.go │ │ │ ├── parser.go │ │ │ ├── segment.go │ │ │ ├── selector.go │ │ │ ├── token │ │ │ └── token.go │ │ │ ├── yaml_eval.go │ │ │ └── yaml_query.go │ └── openapi-overlay │ │ ├── LICENSE │ │ └── pkg │ │ ├── loader │ │ ├── overlay.go │ │ └── spec.go │ │ └── overlay │ │ ├── apply.go │ │ ├── compare.go │ │ ├── jsonpath.go │ │ ├── parents.go │ │ ├── parse.go │ │ ├── schema.go │ │ ├── utils.go │ │ └── validate.go ├── spiffe │ └── go-spiffe │ │ └── v2 │ │ ├── LICENSE │ │ ├── bundle │ │ ├── jwtbundle │ │ │ ├── bundle.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── source.go │ │ ├── spiffebundle │ │ │ ├── bundle.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── source.go │ │ └── x509bundle │ │ │ ├── bundle.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── source.go │ │ ├── internal │ │ ├── cryptoutil │ │ │ └── keys.go │ │ ├── jwtutil │ │ │ └── util.go │ │ ├── pemutil │ │ │ └── pem.go │ │ └── x509util │ │ │ └── util.go │ │ └── spiffeid │ │ ├── charset_backcompat_allow.go │ │ ├── charset_backcompat_deny.go │ │ ├── errors.go │ │ ├── id.go │ │ ├── match.go │ │ ├── path.go │ │ ├── require.go │ │ └── trustdomain.go ├── stefanberger │ └── go-pkcs11uri │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── pkcs11uri.go ├── stretchr │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ ├── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go │ │ └── suite │ │ ├── doc.go │ │ ├── interfaces.go │ │ ├── stats.go │ │ └── suite.go ├── sylabs │ └── sif │ │ └── v2 │ │ ├── LICENSE.md │ │ └── pkg │ │ └── sif │ │ ├── add.go │ │ ├── arch.go │ │ ├── buffer.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── descriptor.go │ │ ├── descriptor_input.go │ │ ├── load.go │ │ ├── select.go │ │ ├── set.go │ │ └── sif.go ├── tchap │ └── go-patricia │ │ └── v2 │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── patricia │ │ ├── children.go │ │ └── patricia.go ├── titanous │ └── rocacheck │ │ ├── LICENSE │ │ ├── README.md │ │ └── rocacheck.go ├── ubccr │ └── kerby │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── base64.c │ │ ├── base64.h │ │ ├── kerberosgss.c │ │ ├── kerberosgss.h │ │ ├── kerby.go │ │ └── khttp │ │ ├── handler.go │ │ └── http.go ├── ulikunitz │ └── xz │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── TODO.md │ │ ├── bits.go │ │ ├── crc.go │ │ ├── format.go │ │ ├── fox-check-none.xz │ │ ├── fox.xz │ │ ├── internal │ │ ├── hash │ │ │ ├── cyclic_poly.go │ │ │ ├── doc.go │ │ │ ├── rabin_karp.go │ │ │ └── roller.go │ │ └── xlog │ │ │ └── xlog.go │ │ ├── lzma │ │ ├── bintree.go │ │ ├── bitops.go │ │ ├── breader.go │ │ ├── buffer.go │ │ ├── bytewriter.go │ │ ├── decoder.go │ │ ├── decoderdict.go │ │ ├── directcodec.go │ │ ├── distcodec.go │ │ ├── encoder.go │ │ ├── encoderdict.go │ │ ├── fox.lzma │ │ ├── hashtable.go │ │ ├── header.go │ │ ├── header2.go │ │ ├── lengthcodec.go │ │ ├── literalcodec.go │ │ ├── matchalgorithm.go │ │ ├── operation.go │ │ ├── prob.go │ │ ├── properties.go │ │ ├── rangecodec.go │ │ ├── reader.go │ │ ├── reader2.go │ │ ├── state.go │ │ ├── treecodecs.go │ │ ├── writer.go │ │ └── writer2.go │ │ ├── lzmafilter.go │ │ ├── make-docs │ │ ├── none-check.go │ │ ├── reader.go │ │ └── writer.go ├── valyala │ ├── bytebufferpool │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bytebuffer.go │ │ ├── doc.go │ │ └── pool.go │ └── fasttemplate │ │ ├── LICENSE │ │ ├── README.md │ │ ├── template.go │ │ ├── unsafe.go │ │ └── unsafe_gae.go ├── vbatts │ └── tar-split │ │ ├── LICENSE │ │ ├── archive │ │ └── tar │ │ │ ├── common.go │ │ │ ├── format.go │ │ │ ├── reader.go │ │ │ ├── stat_actime1.go │ │ │ ├── stat_actime2.go │ │ │ ├── stat_unix.go │ │ │ ├── strconv.go │ │ │ └── writer.go │ │ └── tar │ │ ├── asm │ │ ├── README.md │ │ ├── assemble.go │ │ ├── disassemble.go │ │ ├── doc.go │ │ └── iterate.go │ │ └── storage │ │ ├── doc.go │ │ ├── entry.go │ │ ├── getter.go │ │ └── packer.go ├── vbauerster │ └── mpb │ │ └── v8 │ │ ├── .gitignore │ │ ├── CONTRIBUTING │ │ ├── README.md │ │ ├── UNLICENSE │ │ ├── bar.go │ │ ├── bar_filler.go │ │ ├── bar_filler_bar.go │ │ ├── bar_filler_nop.go │ │ ├── bar_filler_spinner.go │ │ ├── bar_option.go │ │ ├── container_option.go │ │ ├── cwriter │ │ ├── doc.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_solaris.go │ │ ├── util_zos.go │ │ ├── writer.go │ │ ├── writer_posix.go │ │ └── writer_windows.go │ │ ├── decor │ │ ├── any.go │ │ ├── counters.go │ │ ├── decorator.go │ │ ├── doc.go │ │ ├── elapsed.go │ │ ├── eta.go │ │ ├── meta.go │ │ ├── moving_average.go │ │ ├── name.go │ │ ├── on_abort.go │ │ ├── on_compete_or_on_abort.go │ │ ├── on_complete.go │ │ ├── on_condition.go │ │ ├── percentage.go │ │ ├── size_type.go │ │ ├── sizeb1000_string.go │ │ ├── sizeb1024_string.go │ │ ├── speed.go │ │ └── spinner.go │ │ ├── doc.go │ │ ├── heap_manager.go │ │ ├── internal │ │ ├── percentage.go │ │ └── width.go │ │ ├── priority_queue.go │ │ ├── progress.go │ │ ├── proxyreader.go │ │ └── proxywriter.go ├── vmware-labs │ └── yaml-jsonpath │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pkg │ │ └── yamlpath │ │ ├── comparison.go │ │ ├── doc.go │ │ ├── filter.go │ │ ├── filter_parser.go │ │ ├── lexer.go │ │ ├── path.go │ │ └── slicer.go ├── vmware │ └── govmomi │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── Dockerfile.govc │ │ ├── Dockerfile.govc.runner │ │ ├── Dockerfile.vcsim │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── cli │ │ ├── command.go │ │ ├── flags │ │ │ ├── client.go │ │ │ ├── cluster.go │ │ │ ├── common.go │ │ │ ├── datacenter.go │ │ │ ├── datastore.go │ │ │ ├── debug.go │ │ │ ├── empty.go │ │ │ ├── env.go │ │ │ ├── folder.go │ │ │ ├── host_connect.go │ │ │ ├── host_system.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── library.go │ │ │ ├── list.go │ │ │ ├── network.go │ │ │ ├── optional_bool.go │ │ │ ├── optional_string.go │ │ │ ├── output.go │ │ │ ├── resource_allocation_info.go │ │ │ ├── resource_pool.go │ │ │ ├── search.go │ │ │ ├── storage_pod.go │ │ │ ├── storage_profile.go │ │ │ ├── version.go │ │ │ ├── virtual_app.go │ │ │ └── virtual_machine.go │ │ ├── importx │ │ │ ├── options.go │ │ │ ├── ova.go │ │ │ ├── ovf.go │ │ │ ├── spec.go │ │ │ └── vmdk.go │ │ └── register.go │ │ ├── client.go │ │ ├── cns │ │ ├── .gitignore │ │ ├── client.go │ │ ├── cns_util.go │ │ ├── methods │ │ │ ├── methods.go │ │ │ └── unreleased.go │ │ ├── types │ │ │ ├── enum.go │ │ │ ├── if.go │ │ │ ├── types.go │ │ │ └── unreleased_types.go │ │ └── unreleased_client.go │ │ ├── fault │ │ ├── fault.go │ │ └── meta_types.go │ │ ├── find │ │ ├── doc.go │ │ ├── error.go │ │ ├── finder.go │ │ └── recurser.go │ │ ├── history │ │ └── collector.go │ │ ├── internal │ │ ├── helpers.go │ │ ├── methods.go │ │ ├── types.go │ │ └── version │ │ │ └── version.go │ │ ├── list │ │ ├── lister.go │ │ └── path.go │ │ ├── nfc │ │ ├── lease.go │ │ └── lease_updater.go │ │ ├── object │ │ ├── authorization_manager.go │ │ ├── authorization_manager_internal.go │ │ ├── cluster_compute_resource.go │ │ ├── common.go │ │ ├── compute_resource.go │ │ ├── custom_fields_manager.go │ │ ├── customization_spec_manager.go │ │ ├── datacenter.go │ │ ├── datastore.go │ │ ├── datastore_file.go │ │ ├── datastore_file_manager.go │ │ ├── datastore_path.go │ │ ├── diagnostic_log.go │ │ ├── diagnostic_manager.go │ │ ├── distributed_virtual_portgroup.go │ │ ├── distributed_virtual_switch.go │ │ ├── environment_browser.go │ │ ├── extension_manager.go │ │ ├── file_manager.go │ │ ├── folder.go │ │ ├── host_account_manager.go │ │ ├── host_certificate_info.go │ │ ├── host_certificate_manager.go │ │ ├── host_config_manager.go │ │ ├── host_datastore_browser.go │ │ ├── host_datastore_system.go │ │ ├── host_date_time_system.go │ │ ├── host_firewall_system.go │ │ ├── host_network_system.go │ │ ├── host_service_system.go │ │ ├── host_storage_system.go │ │ ├── host_system.go │ │ ├── host_virtual_nic_manager.go │ │ ├── host_vsan_internal_system.go │ │ ├── host_vsan_system.go │ │ ├── namespace_manager.go │ │ ├── network.go │ │ ├── network_reference.go │ │ ├── opaque_network.go │ │ ├── option_manager.go │ │ ├── option_value_list.go │ │ ├── resource_pool.go │ │ ├── search_index.go │ │ ├── storage_pod.go │ │ ├── storage_resource_manager.go │ │ ├── task.go │ │ ├── tenant_manager.go │ │ ├── types.go │ │ ├── virtual_app.go │ │ ├── virtual_device_list.go │ │ ├── virtual_disk_manager.go │ │ ├── virtual_disk_manager_internal.go │ │ ├── virtual_machine.go │ │ ├── vm_compatability_checker.go │ │ ├── vm_provisioning_checker.go │ │ └── vmware_distributed_virtual_switch.go │ │ ├── ovf │ │ ├── cim.go │ │ ├── configspec.go │ │ ├── doc.go │ │ ├── env.go │ │ ├── envelope.go │ │ ├── importer │ │ │ ├── archive.go │ │ │ ├── importable.go │ │ │ ├── importer.go │ │ │ ├── options.go │ │ │ └── spec.go │ │ ├── manager.go │ │ ├── ovf.go │ │ └── parser.go │ │ ├── pbm │ │ ├── client.go │ │ ├── methods │ │ │ ├── internal_methods.go │ │ │ └── methods.go │ │ ├── pbm_util.go │ │ └── types │ │ │ ├── enum.go │ │ │ ├── if.go │ │ │ ├── internal_types.go │ │ │ └── types.go │ │ ├── program.mk │ │ ├── property │ │ ├── collector.go │ │ ├── filter.go │ │ ├── match.go │ │ └── wait.go │ │ ├── session │ │ ├── cache │ │ │ └── session.go │ │ ├── keep_alive.go │ │ ├── keepalive │ │ │ └── handler.go │ │ └── manager.go │ │ ├── task │ │ ├── error.go │ │ ├── history_collector.go │ │ ├── manager.go │ │ └── wait.go │ │ ├── units │ │ └── size.go │ │ ├── vapi │ │ ├── internal │ │ │ └── internal.go │ │ ├── library │ │ │ ├── finder │ │ │ │ ├── README.md │ │ │ │ ├── finder.go │ │ │ │ └── path.go │ │ │ ├── library.go │ │ │ ├── library_file.go │ │ │ ├── library_item.go │ │ │ ├── library_item_downloadsession_file.go │ │ │ ├── library_item_storage.go │ │ │ ├── library_item_updatesession.go │ │ │ ├── library_item_updatesession_file.go │ │ │ ├── security_policy.go │ │ │ └── trusted_certificates.go │ │ └── rest │ │ │ ├── client.go │ │ │ └── resource.go │ │ ├── view │ │ ├── container_view.go │ │ ├── list_view.go │ │ ├── managed_object_view.go │ │ ├── manager.go │ │ └── task_view.go │ │ ├── vim25 │ │ ├── client.go │ │ ├── debug │ │ │ ├── debug.go │ │ │ ├── file.go │ │ │ └── log.go │ │ ├── doc.go │ │ ├── json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── discriminator.go │ │ │ ├── encode.go │ │ │ ├── fold.go │ │ │ ├── fuzz.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── methods │ │ │ ├── methods.go │ │ │ ├── service_content.go │ │ │ └── unreleased.go │ │ ├── mo │ │ │ ├── ancestors.go │ │ │ ├── entity.go │ │ │ ├── extra.go │ │ │ ├── helpers.go │ │ │ ├── mo.go │ │ │ ├── reference.go │ │ │ ├── registry.go │ │ │ ├── retrieve.go │ │ │ └── type_info.go │ │ ├── progress │ │ │ ├── aggregator.go │ │ │ ├── doc.go │ │ │ ├── loger.go │ │ │ ├── prefix.go │ │ │ ├── reader.go │ │ │ ├── report.go │ │ │ ├── scale.go │ │ │ ├── sinker.go │ │ │ └── tee.go │ │ ├── retry.go │ │ ├── soap │ │ │ ├── client.go │ │ │ ├── debug.go │ │ │ ├── error.go │ │ │ ├── json_client.go │ │ │ └── soap.go │ │ ├── types │ │ │ ├── base.go │ │ │ ├── byte_slice.go │ │ │ ├── configspec.go │ │ │ ├── deep_copy.go │ │ │ ├── enum.go │ │ │ ├── esxi_version.go │ │ │ ├── fault.go │ │ │ ├── hardware_version.go │ │ │ ├── helpers.go │ │ │ ├── if.go │ │ │ ├── json.go │ │ │ ├── registry.go │ │ │ ├── types.go │ │ │ └── unreleased.go │ │ └── xml │ │ │ ├── LICENSE │ │ │ ├── extras.go │ │ │ ├── marshal.go │ │ │ ├── read.go │ │ │ ├── typeinfo.go │ │ │ └── xml.go │ │ ├── vmdk │ │ ├── descriptor.go │ │ ├── disk_info.go │ │ └── import.go │ │ └── vsan │ │ └── vsanfs │ │ └── types │ │ ├── enum.go │ │ └── types.go ├── woodsbury │ └── decimal128 │ │ ├── LICENCE │ │ ├── arith.go │ │ ├── binary.go │ │ ├── compare.go │ │ ├── compose.go │ │ ├── constants.go │ │ ├── convert.go │ │ ├── decimal.go │ │ ├── decomposed.go │ │ ├── exp.go │ │ ├── format.go │ │ ├── int.go │ │ ├── json.go │ │ ├── payload.go │ │ ├── rounding.go │ │ └── scan.go └── zeebo │ └── errs │ ├── .gitignore │ ├── AUTHORS │ ├── LICENSE │ ├── README.md │ ├── errs.go │ ├── group.go │ ├── is_go1.20.go │ └── is_go_other.go ├── go.opencensus.io ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── internal │ ├── internal.go │ ├── sanitize.go │ └── traceinternals.go ├── opencensus.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_api.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.go ├── go.opentelemetry.io ├── auto │ └── sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go ├── contrib │ ├── detectors │ │ └── gcp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cloud-function.go │ │ │ ├── cloud-run.go │ │ │ ├── detector.go │ │ │ ├── gce.go │ │ │ ├── gke.go │ │ │ ├── types.go │ │ │ └── version.go │ └── instrumentation │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── interceptor.go │ │ │ ├── interceptorinfo.go │ │ │ ├── internal │ │ │ └── parse.go │ │ │ ├── metadata_supplier.go │ │ │ ├── stats_handler.go │ │ │ └── version.go │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── request │ │ │ ├── body_wrapper.go │ │ │ ├── gen.go │ │ │ └── resp_writer_wrapper.go │ │ ├── semconv │ │ │ ├── env.go │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ ├── util.go │ │ │ └── v1.20.0.go │ │ └── semconvutil │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── netconv.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go └── otel │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── VERSIONING.md │ ├── attribute │ ├── README.md │ ├── doc.go │ ├── encoder.go │ ├── filter.go │ ├── internal │ │ └── attribute.go │ ├── iterator.go │ ├── key.go │ ├── kv.go │ ├── rawhelpers.go │ ├── set.go │ ├── type_string.go │ └── value.go │ ├── baggage │ ├── README.md │ ├── baggage.go │ ├── context.go │ └── doc.go │ ├── codes │ ├── README.md │ ├── codes.go │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── handler.go │ ├── internal │ ├── baggage │ │ ├── baggage.go │ │ └── context.go │ └── global │ │ ├── handler.go │ │ ├── instruments.go │ │ ├── internal_logging.go │ │ ├── meter.go │ │ ├── propagator.go │ │ ├── state.go │ │ └── trace.go │ ├── internal_logging.go │ ├── metric.go │ ├── metric │ ├── LICENSE │ ├── README.md │ ├── asyncfloat64.go │ ├── asyncint64.go │ ├── config.go │ ├── doc.go │ ├── embedded │ │ ├── README.md │ │ └── embedded.go │ ├── instrument.go │ ├── meter.go │ ├── noop │ │ ├── README.md │ │ └── noop.go │ ├── syncfloat64.go │ └── syncint64.go │ ├── propagation.go │ ├── propagation │ ├── README.md │ ├── baggage.go │ ├── doc.go │ ├── propagation.go │ └── trace_context.go │ ├── renovate.json │ ├── requirements.txt │ ├── sdk │ ├── LICENSE │ ├── README.md │ ├── instrumentation │ │ ├── README.md │ │ ├── doc.go │ │ ├── library.go │ │ └── scope.go │ ├── internal │ │ └── x │ │ │ ├── README.md │ │ │ └── x.go │ ├── metric │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aggregation.go │ │ ├── cache.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── env.go │ │ ├── exemplar.go │ │ ├── exemplar │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── exemplar.go │ │ │ ├── filter.go │ │ │ ├── fixed_size_reservoir.go │ │ │ ├── histogram_reservoir.go │ │ │ ├── reservoir.go │ │ │ ├── storage.go │ │ │ └── value.go │ │ ├── exporter.go │ │ ├── instrument.go │ │ ├── instrumentkind_string.go │ │ ├── internal │ │ │ ├── aggregate │ │ │ │ ├── aggregate.go │ │ │ │ ├── doc.go │ │ │ │ ├── drop.go │ │ │ │ ├── exemplar.go │ │ │ │ ├── exponential_histogram.go │ │ │ │ ├── filtered_reservoir.go │ │ │ │ ├── histogram.go │ │ │ │ ├── lastvalue.go │ │ │ │ ├── limit.go │ │ │ │ └── sum.go │ │ │ ├── reuse_slice.go │ │ │ └── x │ │ │ │ ├── README.md │ │ │ │ └── x.go │ │ ├── manual_reader.go │ │ ├── meter.go │ │ ├── metricdata │ │ │ ├── README.md │ │ │ ├── data.go │ │ │ ├── temporality.go │ │ │ └── temporality_string.go │ │ ├── periodic_reader.go │ │ ├── pipeline.go │ │ ├── provider.go │ │ ├── reader.go │ │ ├── version.go │ │ └── view.go │ ├── resource │ │ ├── README.md │ │ ├── auto.go │ │ ├── builtin.go │ │ ├── config.go │ │ ├── container.go │ │ ├── doc.go │ │ ├── env.go │ │ ├── host_id.go │ │ ├── host_id_bsd.go │ │ ├── host_id_darwin.go │ │ ├── host_id_exec.go │ │ ├── host_id_linux.go │ │ ├── host_id_readfile.go │ │ ├── host_id_unsupported.go │ │ ├── host_id_windows.go │ │ ├── os.go │ │ ├── os_release_darwin.go │ │ ├── os_release_unix.go │ │ ├── os_unix.go │ │ ├── os_unsupported.go │ │ ├── os_windows.go │ │ ├── process.go │ │ └── resource.go │ └── version.go │ ├── semconv │ ├── v1.20.0 │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── exception.go │ │ ├── http.go │ │ ├── resource.go │ │ ├── schema.go │ │ └── trace.go │ ├── v1.24.0 │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── exception.go │ │ ├── metric.go │ │ ├── resource.go │ │ ├── schema.go │ │ └── trace.go │ ├── v1.26.0 │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── exception.go │ │ ├── metric.go │ │ └── schema.go │ └── v1.30.0 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── exception.go │ │ ├── metric.go │ │ └── schema.go │ ├── trace.go │ ├── trace │ ├── LICENSE │ ├── README.md │ ├── auto.go │ ├── config.go │ ├── context.go │ ├── doc.go │ ├── embedded │ │ ├── README.md │ │ └── embedded.go │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ ├── nonrecording.go │ ├── noop.go │ ├── noop │ │ ├── README.md │ │ └── noop.go │ ├── provider.go │ ├── span.go │ ├── trace.go │ ├── tracer.go │ └── tracestate.go │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml ├── go.yaml.in └── yaml │ ├── v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go │ └── v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── acme │ │ ├── acme.go │ │ ├── autocert │ │ │ ├── autocert.go │ │ │ ├── cache.go │ │ │ ├── listener.go │ │ │ └── renewal.go │ │ ├── http.go │ │ ├── jws.go │ │ ├── rfc8555.go │ │ └── types.go │ ├── cast5 │ │ └── cast5.go │ ├── chacha20 │ │ ├── chacha_arm64.go │ │ ├── chacha_arm64.s │ │ ├── chacha_generic.go │ │ ├── chacha_noasm.go │ │ ├── chacha_ppc64x.go │ │ ├── chacha_ppc64x.s │ │ ├── chacha_s390x.go │ │ ├── chacha_s390x.s │ │ └── xor.go │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.go │ │ ├── chacha20poly1305_amd64.go │ │ ├── chacha20poly1305_amd64.s │ │ ├── chacha20poly1305_generic.go │ │ ├── chacha20poly1305_noasm.go │ │ └── xchacha20poly1305.go │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── builder.go │ │ └── string.go │ ├── hkdf │ │ └── hkdf.go │ ├── internal │ │ ├── alias │ │ │ ├── alias.go │ │ │ └── alias_purego.go │ │ └── poly1305 │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_asm.go │ │ │ ├── sum_generic.go │ │ │ ├── sum_loong64.s │ │ │ ├── sum_ppc64x.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ ├── nacl │ │ └── secretbox │ │ │ └── secretbox.go │ ├── ocsp │ │ └── ocsp.go │ ├── openpgp │ │ ├── armor │ │ │ ├── armor.go │ │ │ └── encode.go │ │ ├── canonical_text.go │ │ ├── elgamal │ │ │ └── elgamal.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── keys.go │ │ ├── packet │ │ │ ├── compressed.go │ │ │ ├── config.go │ │ │ ├── encrypted_key.go │ │ │ ├── literal.go │ │ │ ├── ocfb.go │ │ │ ├── one_pass_signature.go │ │ │ ├── opaque.go │ │ │ ├── packet.go │ │ │ ├── private_key.go │ │ │ ├── public_key.go │ │ │ ├── public_key_v3.go │ │ │ ├── reader.go │ │ │ ├── signature.go │ │ │ ├── signature_v3.go │ │ │ ├── symmetric_key_encrypted.go │ │ │ ├── symmetrically_encrypted.go │ │ │ ├── userattribute.go │ │ │ └── userid.go │ │ ├── read.go │ │ ├── s2k │ │ │ └── s2k.go │ │ └── write.go │ ├── pbkdf2 │ │ └── pbkdf2.go │ ├── pkcs12 │ │ ├── bmp-string.go │ │ ├── crypto.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── rc2 │ │ │ │ └── rc2.go │ │ ├── mac.go │ │ ├── pbkdf.go │ │ ├── pkcs12.go │ │ └── safebags.go │ ├── salsa20 │ │ └── salsa │ │ │ ├── hsalsa20.go │ │ │ ├── salsa208.go │ │ │ ├── salsa20_amd64.go │ │ │ ├── salsa20_amd64.s │ │ │ ├── salsa20_noasm.go │ │ │ └── salsa20_ref.go │ ├── scrypt │ │ └── scrypt.go │ └── sha3 │ │ ├── doc.go │ │ ├── hashes.go │ │ ├── hashes_noasm.go │ │ ├── keccakf.go │ │ ├── keccakf_amd64.go │ │ ├── keccakf_amd64.s │ │ ├── sha3.go │ │ ├── sha3_s390x.go │ │ ├── sha3_s390x.s │ │ ├── shake.go │ │ └── shake_noasm.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ └── slices │ │ ├── slices.go │ │ └── sort.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── lazyregexp │ │ │ └── lazyre.go │ ├── modfile │ │ ├── print.go │ │ ├── read.go │ │ ├── rule.go │ │ └── work.go │ ├── module │ │ ├── module.go │ │ └── pseudo.go │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── escape.go │ │ ├── foreign.go │ │ ├── iter.go │ │ ├── node.go │ │ ├── parse.go │ │ ├── render.go │ │ └── token.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go124.go │ │ ├── config_pre_go124.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── h2c │ │ │ └── h2c.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── timer.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ └── timeseries │ │ │ └── timeseries.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── deviceauth.go │ ├── google │ │ ├── appengine.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── externalaccount │ │ │ ├── aws.go │ │ │ ├── basecredentials.go │ │ │ ├── executablecredsource.go │ │ │ ├── filecredsource.go │ │ │ ├── header.go │ │ │ ├── programmaticrefreshcredsource.go │ │ │ └── urlcredsource.go │ │ ├── google.go │ │ ├── internal │ │ │ ├── externalaccountauthorizeduser │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ ├── impersonate │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ ├── clientauth.go │ │ │ │ └── sts_exchange.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ └── errgroup.go │ └── semaphore │ │ └── semaphore.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_x86_gc.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_darwin_x86.go │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gc_x86.s │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_loong64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_loong64.s │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_other_x86.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ ├── syscall_aix_ppc64_gc.go │ │ └── syscall_darwin_x86_gc.go │ ├── execabs │ │ ├── execabs.go │ │ ├── execabs_go118.go │ │ └── execabs_go119.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── internal.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ └── tag │ │ │ └── tag.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ ├── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ │ └── precis │ │ │ ├── class.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profiles.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transformer.go │ │ │ └── trieval.go │ ├── transform │ │ └── transform.go │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── prop.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ └── width │ │ ├── kind_string.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── trieval.go │ │ └── width.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── go │ └── ast │ │ └── astutil │ │ ├── enclosing.go │ │ ├── imports.go │ │ ├── rewrite.go │ │ └── util.go │ ├── imports │ └── forward.go │ └── internal │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── gocommand │ ├── invoke.go │ ├── invoke_notunix.go │ ├── invoke_unix.go │ ├── vendor.go │ └── version.go │ ├── gopathwalk │ └── walk.go │ ├── imports │ ├── fix.go │ ├── imports.go │ ├── mod.go │ ├── mod_cache.go │ ├── sortimports.go │ ├── source.go │ ├── source_env.go │ └── source_modindex.go │ ├── modindex │ ├── directories.go │ ├── index.go │ ├── lookup.go │ ├── modindex.go │ └── symbols.go │ └── stdlib │ ├── deps.go │ ├── import.go │ ├── manifest.go │ └── stdlib.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── googleapi │ │ ├── googleapi.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── iamcredentials │ │ └── v1 │ │ │ ├── iamcredentials-api.json │ │ │ └── iamcredentials-gen.go │ ├── internal │ │ ├── cba.go │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ └── secureconnect_cert.go │ │ ├── conn_pool.go │ │ ├── creds.go │ │ ├── gensupport │ │ │ ├── buffer.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── json.go │ │ │ ├── jsonfloat.go │ │ │ ├── media.go │ │ │ ├── params.go │ │ │ ├── resumable.go │ │ │ ├── retry.go │ │ │ ├── send.go │ │ │ └── version.go │ │ ├── impersonate │ │ │ └── impersonate.go │ │ ├── s2a.go │ │ ├── settings.go │ │ ├── third_party │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ └── version.go │ ├── iterator │ │ └── iterator.go │ ├── option │ │ ├── internaloption │ │ │ └── internaloption.go │ │ └── option.go │ ├── storage │ │ └── v1 │ │ │ ├── storage-api.json │ │ │ └── storage-gen.go │ └── transport │ │ ├── dial.go │ │ ├── doc.go │ │ ├── grpc │ │ ├── dial.go │ │ ├── dial_socketopt.go │ │ └── pool.go │ │ └── http │ │ └── dial.go ├── genproto │ ├── LICENSE │ └── googleapis │ │ ├── api │ │ ├── LICENSE │ │ ├── annotations │ │ │ ├── annotations.pb.go │ │ │ ├── client.pb.go │ │ │ ├── field_behavior.pb.go │ │ │ ├── field_info.pb.go │ │ │ ├── http.pb.go │ │ │ ├── resource.pb.go │ │ │ └── routing.pb.go │ │ ├── distribution │ │ │ └── distribution.pb.go │ │ ├── expr │ │ │ └── v1alpha1 │ │ │ │ ├── checked.pb.go │ │ │ │ ├── eval.pb.go │ │ │ │ ├── explain.pb.go │ │ │ │ ├── syntax.pb.go │ │ │ │ └── value.pb.go │ │ ├── label │ │ │ └── label.pb.go │ │ ├── launch_stage.pb.go │ │ ├── metric │ │ │ └── metric.pb.go │ │ └── monitoredres │ │ │ └── monitored_resource.pb.go │ │ ├── cloud │ │ └── extendedops │ │ │ └── extended_operations.pb.go │ │ ├── rpc │ │ ├── LICENSE │ │ ├── code │ │ │ └── code.pb.go │ │ ├── errdetails │ │ │ └── error_details.pb.go │ │ └── status │ │ │ └── status.pb.go │ │ └── type │ │ ├── calendarperiod │ │ └── calendar_period.pb.go │ │ ├── date │ │ └── date.pb.go │ │ ├── expr │ │ └── expr.pb.go │ │ └── timeofday │ │ └── timeofday.pb.go ├── grpc │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE.txt │ ├── README.md │ ├── SECURITY.md │ ├── attributes │ │ └── attributes.go │ ├── authz │ │ └── audit │ │ │ ├── audit_logger.go │ │ │ └── stdout │ │ │ └── stdout_logger.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── endpointsharding │ │ │ └── endpointsharding.go │ │ ├── grpclb │ │ │ ├── grpc_lb_v1 │ │ │ │ ├── load_balancer.pb.go │ │ │ │ └── load_balancer_grpc.pb.go │ │ │ ├── grpclb.go │ │ │ ├── grpclb_config.go │ │ │ ├── grpclb_picker.go │ │ │ ├── grpclb_remote_balancer.go │ │ │ ├── grpclb_util.go │ │ │ └── state │ │ │ │ └── state.go │ │ ├── lazy │ │ │ └── lazy.go │ │ ├── leastrequest │ │ │ └── leastrequest.go │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── ringhash │ │ │ ├── config.go │ │ │ ├── logging.go │ │ │ ├── picker.go │ │ │ ├── ring.go │ │ │ └── ringhash.go │ │ ├── rls │ │ │ ├── balancer.go │ │ │ ├── cache.go │ │ │ ├── child_policy.go │ │ │ ├── config.go │ │ │ ├── control_channel.go │ │ │ ├── internal │ │ │ │ ├── adaptive │ │ │ │ │ ├── adaptive.go │ │ │ │ │ └── lookback.go │ │ │ │ └── keys │ │ │ │ │ └── builder.go │ │ │ └── picker.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ ├── subconn.go │ │ ├── weightedroundrobin │ │ │ ├── balancer.go │ │ │ ├── config.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── logging.go │ │ │ └── scheduler.go │ │ └── weightedtarget │ │ │ ├── logging.go │ │ │ ├── weightedaggregator │ │ │ └── aggregator.go │ │ │ ├── weightedtarget.go │ │ │ └── weightedtarget_config.go │ ├── balancer_wrapper.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── alts │ │ │ ├── alts.go │ │ │ ├── internal │ │ │ │ ├── authinfo │ │ │ │ │ └── authinfo.go │ │ │ │ ├── common.go │ │ │ │ ├── conn │ │ │ │ │ ├── aeadrekey.go │ │ │ │ │ ├── aes128gcm.go │ │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── record.go │ │ │ │ │ └── utils.go │ │ │ │ ├── handshaker │ │ │ │ │ ├── handshaker.go │ │ │ │ │ └── service │ │ │ │ │ │ └── service.go │ │ │ │ └── proto │ │ │ │ │ └── grpc_gcp │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ ├── handshaker_grpc.pb.go │ │ │ │ │ └── transport_security_common.pb.go │ │ │ └── utils.go │ │ ├── credentials.go │ │ ├── google │ │ │ ├── google.go │ │ │ └── xds.go │ │ ├── insecure │ │ │ └── insecure.go │ │ ├── oauth │ │ │ └── oauth.go │ │ ├── tls.go │ │ └── tls │ │ │ └── certprovider │ │ │ ├── distributor.go │ │ │ ├── pemfile │ │ │ ├── builder.go │ │ │ └── watcher.go │ │ │ ├── provider.go │ │ │ └── store.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_v2.go │ │ ├── gzip │ │ │ └── gzip.go │ │ └── proto │ │ │ └── proto.go │ ├── experimental │ │ ├── opentelemetry │ │ │ └── trace_options.go │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── interceptor.go │ ├── internal │ │ ├── admin │ │ │ └── admin.go │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ ├── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ │ ├── nop │ │ │ │ └── nop.go │ │ │ └── weight │ │ │ │ └── weight.go │ │ ├── balancergroup │ │ │ ├── balancergroup.go │ │ │ └── balancerstateaggregator.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── cache │ │ │ └── timeoutCache.go │ │ ├── channelz │ │ │ ├── channel.go │ │ │ ├── channelmap.go │ │ │ ├── funcs.go │ │ │ ├── logging.go │ │ │ ├── server.go │ │ │ ├── socket.go │ │ │ ├── subchannel.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_nonlinux.go │ │ │ └── trace.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── spiffe.go │ │ │ ├── spiffe │ │ │ │ └── spiffe.go │ │ │ ├── syscallconn.go │ │ │ ├── util.go │ │ │ └── xds │ │ │ │ └── handshake_info.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── googlecloud │ │ │ ├── googlecloud.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── grpclog │ │ │ └── prefix_logger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ └── pubsub.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── hierarchy │ │ │ └── hierarchy.go │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── proto │ │ │ └── grpc_lookup_v1 │ │ │ │ ├── rls.pb.go │ │ │ │ ├── rls_config.pb.go │ │ │ │ └── rls_grpc.pb.go │ │ ├── proxyattributes │ │ │ └── proxyattributes.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── delegatingresolver │ │ │ │ └── delegatingresolver.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── ringhash │ │ │ └── ringhash.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── labels.go │ │ │ └── metrics_recorder_list.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── tcp_keepalive_others.go │ │ ├── tcp_keepalive_unix.go │ │ ├── tcp_keepalive_windows.go │ │ ├── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── client_stream.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ ├── server_stream.go │ │ │ └── transport.go │ │ ├── wrr │ │ │ ├── edf.go │ │ │ ├── random.go │ │ │ └── wrr.go │ │ └── xds │ │ │ ├── bootstrap │ │ │ ├── bootstrap.go │ │ │ ├── logging.go │ │ │ ├── template.go │ │ │ └── tlscreds │ │ │ │ └── bundle.go │ │ │ ├── matcher │ │ │ ├── matcher_header.go │ │ │ └── string_matcher.go │ │ │ ├── rbac │ │ │ ├── converter.go │ │ │ ├── matchers.go │ │ │ └── rbac_engine.go │ │ │ └── xds.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── orca │ │ ├── call_metrics.go │ │ ├── internal │ │ │ └── internal.go │ │ ├── orca.go │ │ ├── producer.go │ │ ├── server_metrics.go │ │ └── service.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── map.go │ │ ├── resolver.go │ │ └── ringhash │ │ │ └── attr.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ ├── opentelemetry │ │ │ ├── client_metrics.go │ │ │ ├── client_tracing.go │ │ │ ├── grpc_trace_bin_propagator.go │ │ │ ├── internal │ │ │ │ ├── pluginoption.go │ │ │ │ └── tracing │ │ │ │ │ └── carrier.go │ │ │ ├── opentelemetry.go │ │ │ ├── server_metrics.go │ │ │ ├── server_tracing.go │ │ │ └── trace.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ ├── version.go │ └── xds │ │ ├── bootstrap │ │ ├── bootstrap.go │ │ └── credentials.go │ │ ├── csds │ │ └── csds.go │ │ ├── googledirectpath │ │ ├── googlec2p.go │ │ └── utils.go │ │ ├── internal │ │ ├── balancer │ │ │ ├── balancer.go │ │ │ ├── cdsbalancer │ │ │ │ ├── cdsbalancer.go │ │ │ │ ├── cluster_watcher.go │ │ │ │ └── logging.go │ │ │ ├── clusterimpl │ │ │ │ ├── clusterimpl.go │ │ │ │ ├── config.go │ │ │ │ ├── logging.go │ │ │ │ └── picker.go │ │ │ ├── clustermanager │ │ │ │ ├── balancerstateaggregator.go │ │ │ │ ├── clustermanager.go │ │ │ │ ├── config.go │ │ │ │ └── picker.go │ │ │ ├── clusterresolver │ │ │ │ ├── clusterresolver.go │ │ │ │ ├── config.go │ │ │ │ ├── configbuilder.go │ │ │ │ ├── configbuilder_childname.go │ │ │ │ ├── logging.go │ │ │ │ ├── resource_resolver.go │ │ │ │ ├── resource_resolver_dns.go │ │ │ │ └── resource_resolver_eds.go │ │ │ ├── loadstore │ │ │ │ └── load_store_wrapper.go │ │ │ ├── outlierdetection │ │ │ │ ├── balancer.go │ │ │ │ ├── callcounter.go │ │ │ │ ├── config.go │ │ │ │ ├── logging.go │ │ │ │ └── subconn_wrapper.go │ │ │ ├── priority │ │ │ │ ├── balancer.go │ │ │ │ ├── balancer_child.go │ │ │ │ ├── balancer_priority.go │ │ │ │ ├── config.go │ │ │ │ ├── ignore_resolve_now.go │ │ │ │ ├── logging.go │ │ │ │ └── utils.go │ │ │ └── wrrlocality │ │ │ │ ├── balancer.go │ │ │ │ └── logging.go │ │ ├── clients │ │ │ ├── config.go │ │ │ ├── grpctransport │ │ │ │ └── grpc_transport.go │ │ │ ├── internal │ │ │ │ ├── backoff │ │ │ │ │ └── backoff.go │ │ │ │ ├── buffer │ │ │ │ │ └── unbounded.go │ │ │ │ ├── internal.go │ │ │ │ ├── pretty │ │ │ │ │ └── pretty.go │ │ │ │ └── syncutil │ │ │ │ │ ├── callback_serializer.go │ │ │ │ │ └── event.go │ │ │ ├── lrsclient │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ ├── load_store.go │ │ │ │ ├── logging.go │ │ │ │ ├── lrs_stream.go │ │ │ │ ├── lrsclient.go │ │ │ │ └── lrsconfig.go │ │ │ ├── transport_builder.go │ │ │ └── xdsclient │ │ │ │ ├── ads_stream.go │ │ │ │ ├── authority.go │ │ │ │ ├── channel.go │ │ │ │ ├── clientimpl_watchers.go │ │ │ │ ├── internal │ │ │ │ ├── internal.go │ │ │ │ └── xdsresource │ │ │ │ │ ├── ads_stream.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── name.go │ │ │ │ │ ├── type.go │ │ │ │ │ └── version.go │ │ │ │ ├── logging.go │ │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ │ ├── resource_type.go │ │ │ │ ├── resource_watcher.go │ │ │ │ ├── xdsclient.go │ │ │ │ └── xdsconfig.go │ │ ├── clusterspecifier │ │ │ ├── cluster_specifier.go │ │ │ └── rls │ │ │ │ └── rls.go │ │ ├── httpfilter │ │ │ ├── fault │ │ │ │ └── fault.go │ │ │ ├── httpfilter.go │ │ │ ├── rbac │ │ │ │ └── rbac.go │ │ │ └── router │ │ │ │ └── router.go │ │ ├── internal.go │ │ ├── resolver │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── logging.go │ │ │ ├── serviceconfig.go │ │ │ ├── watch_service.go │ │ │ └── xds_resolver.go │ │ ├── server │ │ │ ├── conn_wrapper.go │ │ │ ├── listener_wrapper.go │ │ │ └── rds_handler.go │ │ └── xdsclient │ │ │ ├── attributes.go │ │ │ ├── client.go │ │ │ ├── clientimpl.go │ │ │ ├── clientimpl_loadreport.go │ │ │ ├── clientimpl_watchers.go │ │ │ ├── logging.go │ │ │ ├── pool.go │ │ │ ├── requests_counter.go │ │ │ ├── resource_types.go │ │ │ ├── xdslbregistry │ │ │ ├── converter │ │ │ │ └── converter.go │ │ │ └── xdslbregistry.go │ │ │ └── xdsresource │ │ │ ├── cluster_resource_type.go │ │ │ ├── endpoints_resource_type.go │ │ │ ├── errors.go │ │ │ ├── filter_chain.go │ │ │ ├── listener_resource_type.go │ │ │ ├── logging.go │ │ │ ├── matcher.go │ │ │ ├── matcher_path.go │ │ │ ├── name.go │ │ │ ├── resource_type.go │ │ │ ├── route_config_resource_type.go │ │ │ ├── type.go │ │ │ ├── type_cds.go │ │ │ ├── type_eds.go │ │ │ ├── type_lds.go │ │ │ ├── type_rds.go │ │ │ ├── unmarshal_cds.go │ │ │ ├── unmarshal_eds.go │ │ │ ├── unmarshal_lds.go │ │ │ ├── unmarshal_rds.go │ │ │ └── version │ │ │ └── version.go │ │ ├── server.go │ │ ├── server_options.go │ │ └── xds.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protodelim │ │ └── protodelim.go │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── editionssupport │ │ └── editions.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ ├── placeholder.go │ │ └── presence.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── gofeaturespb │ └── go_features.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ ├── emptypb │ └── empty.pb.go │ ├── fieldmaskpb │ └── field_mask.pb.go │ ├── structpb │ └── struct.pb.go │ ├── timestamppb │ └── timestamp.pb.go │ └── wrapperspb │ └── wrappers.pb.go ├── gopkg.in ├── ini.v1 │ ├── .editorconfig │ ├── .gitignore │ ├── .golangci.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── codecov.yml │ ├── data_source.go │ ├── deprecated.go │ ├── error.go │ ├── file.go │ ├── helper.go │ ├── ini.go │ ├── key.go │ ├── parser.go │ ├── section.go │ └── struct.go ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── modules.txt /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=composer 2 | -------------------------------------------------------------------------------- /.fmf/version: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/coverity_scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/workflows/coverity_scan.yml -------------------------------------------------------------------------------- /.github/workflows/create-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/workflows/create-tag.yml -------------------------------------------------------------------------------- /.github/workflows/gobump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/workflows/gobump.yml -------------------------------------------------------------------------------- /.github/workflows/pr_best_practices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/workflows/pr_best_practices.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/workflows/stale-cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.github/workflows/trigger-gitlab.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.gitleaks.toml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.packit.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.pylintrc -------------------------------------------------------------------------------- /.tekton/osbuild-composer-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/.tekton/osbuild-composer-push.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Containerfile_golangci_lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/Containerfile_golangci_lint -------------------------------------------------------------------------------- /DEPLOYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/DEPLOYING.md -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/README.md -------------------------------------------------------------------------------- /Schutzfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/Schutzfile -------------------------------------------------------------------------------- /cmd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/README -------------------------------------------------------------------------------- /cmd/osbuild-auth-tests/certificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-auth-tests/certificates.go -------------------------------------------------------------------------------- /cmd/osbuild-auth-tests/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-auth-tests/main_test.go -------------------------------------------------------------------------------- /cmd/osbuild-composer/composer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-composer/composer.go -------------------------------------------------------------------------------- /cmd/osbuild-composer/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-composer/config.go -------------------------------------------------------------------------------- /cmd/osbuild-composer/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-composer/config_test.go -------------------------------------------------------------------------------- /cmd/osbuild-composer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-composer/main.go -------------------------------------------------------------------------------- /cmd/osbuild-composer/testdata/empty-config.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/osbuild-composer/testdata/test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-composer/testdata/test.toml -------------------------------------------------------------------------------- /cmd/osbuild-koji-tests/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-koji-tests/main_test.go -------------------------------------------------------------------------------- /cmd/osbuild-service-maintenance/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-service-maintenance/aws.go -------------------------------------------------------------------------------- /cmd/osbuild-service-maintenance/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-service-maintenance/db.go -------------------------------------------------------------------------------- /cmd/osbuild-service-maintenance/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-service-maintenance/gcp.go -------------------------------------------------------------------------------- /cmd/osbuild-service-maintenance/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-service-maintenance/main.go -------------------------------------------------------------------------------- /cmd/osbuild-store-dump/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-store-dump/main.go -------------------------------------------------------------------------------- /cmd/osbuild-worker-executor/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker-executor/config.go -------------------------------------------------------------------------------- /cmd/osbuild-worker-executor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker-executor/main.go -------------------------------------------------------------------------------- /cmd/osbuild-worker-executor/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker-executor/routes.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/config.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/config_test.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/export_test.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/jobimpl-awsec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/jobimpl-awsec2.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/jobimpl-depsolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/jobimpl-depsolve.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/jobimpl-koji-init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/jobimpl-koji-init.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/jobimpl-osbuild.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/jobimpl-osbuild.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/jobimpl-search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/jobimpl-search.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/main.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/main_test.go -------------------------------------------------------------------------------- /cmd/osbuild-worker/rh-logrus-adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/cmd/osbuild-worker/rh-logrus-adapter.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/codecov.yml -------------------------------------------------------------------------------- /containers/fauxauth/fauxauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/containers/fauxauth/fauxauth.py -------------------------------------------------------------------------------- /distribution/Dockerfile-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/distribution/Dockerfile-config -------------------------------------------------------------------------------- /distribution/Dockerfile-fauxauth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/distribution/Dockerfile-fauxauth -------------------------------------------------------------------------------- /distribution/Dockerfile-ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/distribution/Dockerfile-ubi -------------------------------------------------------------------------------- /distribution/Dockerfile-ubi-maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/distribution/Dockerfile-ubi-maintenance -------------------------------------------------------------------------------- /distribution/Dockerfile-ubi-packer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/distribution/Dockerfile-ubi-packer -------------------------------------------------------------------------------- /distribution/Dockerfile-worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/distribution/Dockerfile-worker -------------------------------------------------------------------------------- /distribution/osbuild-composer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/distribution/osbuild-composer.conf -------------------------------------------------------------------------------- /distribution/osbuild-composer.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/distribution/osbuild-composer.service -------------------------------------------------------------------------------- /distribution/osbuild-composer.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/distribution/osbuild-composer.socket -------------------------------------------------------------------------------- /distribution/osbuild-worker@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/distribution/osbuild-worker@.service -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/docs/errors.md -------------------------------------------------------------------------------- /docs/osbuild-composer-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/docs/osbuild-composer-cloud.svg -------------------------------------------------------------------------------- /docs/osbuild-composer-koji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/docs/osbuild-composer-koji.svg -------------------------------------------------------------------------------- /docs/osbuild-composer.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/docs/osbuild-composer.7.rst -------------------------------------------------------------------------------- /docs/osbuild-composer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/docs/osbuild-composer.svg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/go.sum -------------------------------------------------------------------------------- /image-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/image-types/README.md -------------------------------------------------------------------------------- /image-types/rhel8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/image-types/rhel8/README.md -------------------------------------------------------------------------------- /image-types/rhel8/amazon-ec2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/image-types/rhel8/amazon-ec2.md -------------------------------------------------------------------------------- /image-types/rhel8/google-gce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/image-types/rhel8/google-gce.md -------------------------------------------------------------------------------- /image-types/rhel8/kvm-guest-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/image-types/rhel8/kvm-guest-image.md -------------------------------------------------------------------------------- /image-types/rhel8/microsoft-azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/image-types/rhel8/microsoft-azure.md -------------------------------------------------------------------------------- /image-types/rhel8/openstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/image-types/rhel8/openstack.md -------------------------------------------------------------------------------- /image-types/rhel8/oracle-oci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/image-types/rhel8/oracle-oci.md -------------------------------------------------------------------------------- /image-types/rhel8/vmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/image-types/rhel8/vmware.md -------------------------------------------------------------------------------- /internal/auth/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/auth/jwt.go -------------------------------------------------------------------------------- /internal/auth/jwt_auth_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/auth/jwt_auth_handler.go -------------------------------------------------------------------------------- /internal/auth/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/auth/jwt_test.go -------------------------------------------------------------------------------- /internal/auth/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/auth/middleware.go -------------------------------------------------------------------------------- /internal/client/blueprints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/blueprints.go -------------------------------------------------------------------------------- /internal/client/blueprints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/blueprints_test.go -------------------------------------------------------------------------------- /internal/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/client.go -------------------------------------------------------------------------------- /internal/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/client_test.go -------------------------------------------------------------------------------- /internal/client/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/compose.go -------------------------------------------------------------------------------- /internal/client/compose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/compose_test.go -------------------------------------------------------------------------------- /internal/client/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/integration_test.go -------------------------------------------------------------------------------- /internal/client/modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/modules.go -------------------------------------------------------------------------------- /internal/client/modules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/modules_test.go -------------------------------------------------------------------------------- /internal/client/projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/projects.go -------------------------------------------------------------------------------- /internal/client/projects_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/projects_test.go -------------------------------------------------------------------------------- /internal/client/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/source.go -------------------------------------------------------------------------------- /internal/client/source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/source_test.go -------------------------------------------------------------------------------- /internal/client/unit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/unit_test.go -------------------------------------------------------------------------------- /internal/client/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/utils.go -------------------------------------------------------------------------------- /internal/client/weldr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/client/weldr.go -------------------------------------------------------------------------------- /internal/cloud/awscloud/autoscaling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloud/awscloud/autoscaling.go -------------------------------------------------------------------------------- /internal/cloud/awscloud/awscloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloud/awscloud/awscloud.go -------------------------------------------------------------------------------- /internal/cloud/awscloud/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloud/awscloud/export_test.go -------------------------------------------------------------------------------- /internal/cloud/awscloud/maintenance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloud/awscloud/maintenance.go -------------------------------------------------------------------------------- /internal/cloud/awscloud/mocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloud/awscloud/mocks_test.go -------------------------------------------------------------------------------- /internal/cloudapi/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/server.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/compose.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/compose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/compose_test.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/depsolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/depsolve.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/errors.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/errors_test.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/export_test.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/handler.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/imagerequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/imagerequest.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/middleware.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/openapi.v2.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/openapi.v2.gen.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/openapi.v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/openapi.v2.yml -------------------------------------------------------------------------------- /internal/cloudapi/v2/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/search.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/server.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/v2_disk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/v2_disk_test.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/v2_koji_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/v2_koji_test.go -------------------------------------------------------------------------------- /internal/cloudapi/v2/v2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/cloudapi/v2/v2_test.go -------------------------------------------------------------------------------- /internal/common/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/constants.go -------------------------------------------------------------------------------- /internal/common/context_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/context_hook.go -------------------------------------------------------------------------------- /internal/common/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/dependencies.go -------------------------------------------------------------------------------- /internal/common/echo_logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/echo_logrus.go -------------------------------------------------------------------------------- /internal/common/external_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/external_id.go -------------------------------------------------------------------------------- /internal/common/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/helpers.go -------------------------------------------------------------------------------- /internal/common/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/helpers_test.go -------------------------------------------------------------------------------- /internal/common/journal_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/journal_hook.go -------------------------------------------------------------------------------- /internal/common/journal_hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/journal_hook_test.go -------------------------------------------------------------------------------- /internal/common/logger_middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/logger_middleware.go -------------------------------------------------------------------------------- /internal/common/operation_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/operation_id.go -------------------------------------------------------------------------------- /internal/common/pointers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/pointers.go -------------------------------------------------------------------------------- /internal/common/pointers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/pointers_test.go -------------------------------------------------------------------------------- /internal/common/slogger/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/slogger/logrus.go -------------------------------------------------------------------------------- /internal/common/slogger/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/slogger/logrus_test.go -------------------------------------------------------------------------------- /internal/common/slogger/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/slogger/noop.go -------------------------------------------------------------------------------- /internal/common/states.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/states.go -------------------------------------------------------------------------------- /internal/common/states_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/common/states_test.go -------------------------------------------------------------------------------- /internal/jsondb/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/jsondb/db.go -------------------------------------------------------------------------------- /internal/jsondb/db_private_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/jsondb/db_private_test.go -------------------------------------------------------------------------------- /internal/jsondb/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/jsondb/db_test.go -------------------------------------------------------------------------------- /internal/mocks/depsolvednf/mock_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/mocks/depsolvednf/mock_data.go -------------------------------------------------------------------------------- /internal/mocks/rpmmd/fixtures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/mocks/rpmmd/fixtures.go -------------------------------------------------------------------------------- /internal/mocks/rpmmd/rpmmd_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/mocks/rpmmd/rpmmd_mock.go -------------------------------------------------------------------------------- /internal/mocks/rpmrepo/rpmrepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/mocks/rpmrepo/rpmrepo.go -------------------------------------------------------------------------------- /internal/osbuildexecutor/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/osbuildexecutor/export_test.go -------------------------------------------------------------------------------- /internal/prometheus/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/prometheus/constants.go -------------------------------------------------------------------------------- /internal/prometheus/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/prometheus/helpers.go -------------------------------------------------------------------------------- /internal/prometheus/http_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/prometheus/http_metrics.go -------------------------------------------------------------------------------- /internal/prometheus/job_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/prometheus/job_metrics.go -------------------------------------------------------------------------------- /internal/prometheus/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/prometheus/middleware.go -------------------------------------------------------------------------------- /internal/prometheus/status_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/prometheus/status_metrics.go -------------------------------------------------------------------------------- /internal/remotefile/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/remotefile/client.go -------------------------------------------------------------------------------- /internal/remotefile/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/remotefile/client_test.go -------------------------------------------------------------------------------- /internal/remotefile/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/remotefile/resolver.go -------------------------------------------------------------------------------- /internal/remotefile/resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/remotefile/resolver_test.go -------------------------------------------------------------------------------- /internal/remotefile/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/remotefile/spec.go -------------------------------------------------------------------------------- /internal/store/fixtures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/store/fixtures.go -------------------------------------------------------------------------------- /internal/store/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/store/json.go -------------------------------------------------------------------------------- /internal/store/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/store/json_test.go -------------------------------------------------------------------------------- /internal/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/store/store.go -------------------------------------------------------------------------------- /internal/store/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/store/store_test.go -------------------------------------------------------------------------------- /internal/store/test/state-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/store/test/state-v12.json -------------------------------------------------------------------------------- /internal/store/test/state-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/store/test/state-v13.json -------------------------------------------------------------------------------- /internal/target/aws_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/aws_target.go -------------------------------------------------------------------------------- /internal/target/azure_image_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/azure_image_target.go -------------------------------------------------------------------------------- /internal/target/azure_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/azure_target.go -------------------------------------------------------------------------------- /internal/target/container_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/container_target.go -------------------------------------------------------------------------------- /internal/target/gcp_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/gcp_target.go -------------------------------------------------------------------------------- /internal/target/koji_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/koji_target.go -------------------------------------------------------------------------------- /internal/target/koji_target_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/koji_target_test.go -------------------------------------------------------------------------------- /internal/target/local_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/local_target.go -------------------------------------------------------------------------------- /internal/target/oci_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/oci_target.go -------------------------------------------------------------------------------- /internal/target/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/target.go -------------------------------------------------------------------------------- /internal/target/target_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/target_test.go -------------------------------------------------------------------------------- /internal/target/targetresult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/targetresult.go -------------------------------------------------------------------------------- /internal/target/targetresult_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/targetresult_test.go -------------------------------------------------------------------------------- /internal/target/vmware_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/vmware_target.go -------------------------------------------------------------------------------- /internal/target/worker_server_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/target/worker_server_target.go -------------------------------------------------------------------------------- /internal/test/apicall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/test/apicall.go -------------------------------------------------------------------------------- /internal/test/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/test/helpers.go -------------------------------------------------------------------------------- /internal/test/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/test/request.go -------------------------------------------------------------------------------- /internal/test/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/test/validator.go -------------------------------------------------------------------------------- /internal/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/tools.go -------------------------------------------------------------------------------- /internal/weldr/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldr/api.go -------------------------------------------------------------------------------- /internal/weldr/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldr/api_test.go -------------------------------------------------------------------------------- /internal/weldr/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldr/compose.go -------------------------------------------------------------------------------- /internal/weldr/compose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldr/compose_test.go -------------------------------------------------------------------------------- /internal/weldr/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldr/json.go -------------------------------------------------------------------------------- /internal/weldr/responses_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldr/responses_test.go -------------------------------------------------------------------------------- /internal/weldr/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldr/upload.go -------------------------------------------------------------------------------- /internal/weldr/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldr/util.go -------------------------------------------------------------------------------- /internal/weldrtypes/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldrtypes/compose.go -------------------------------------------------------------------------------- /internal/weldrtypes/imagebuild.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldrtypes/imagebuild.go -------------------------------------------------------------------------------- /internal/weldrtypes/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldrtypes/package.go -------------------------------------------------------------------------------- /internal/weldrtypes/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/weldrtypes/package_test.go -------------------------------------------------------------------------------- /internal/worker/api/api.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/api/api.gen.go -------------------------------------------------------------------------------- /internal/worker/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/api/api.go -------------------------------------------------------------------------------- /internal/worker/api/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/api/errors.go -------------------------------------------------------------------------------- /internal/worker/api/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/api/openapi.yml -------------------------------------------------------------------------------- /internal/worker/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/client.go -------------------------------------------------------------------------------- /internal/worker/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/client_test.go -------------------------------------------------------------------------------- /internal/worker/clienterrors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/clienterrors/errors.go -------------------------------------------------------------------------------- /internal/worker/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/json.go -------------------------------------------------------------------------------- /internal/worker/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/json_test.go -------------------------------------------------------------------------------- /internal/worker/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/proxy_test.go -------------------------------------------------------------------------------- /internal/worker/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/server.go -------------------------------------------------------------------------------- /internal/worker/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/internal/worker/server_test.go -------------------------------------------------------------------------------- /krb5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/krb5.conf -------------------------------------------------------------------------------- /osbuild-composer.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/osbuild-composer.spec -------------------------------------------------------------------------------- /pkg/jobqueue/dbjobqueue/dbjobqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/pkg/jobqueue/dbjobqueue/dbjobqueue.go -------------------------------------------------------------------------------- /pkg/jobqueue/dbjobqueue/schemas/008_workers_add_channel.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workers 2 | ADD COLUMN channel varchar NOT NULL DEFAULT ''; 3 | -------------------------------------------------------------------------------- /pkg/jobqueue/jobqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/pkg/jobqueue/jobqueue.go -------------------------------------------------------------------------------- /pkg/splunk_logger/environment_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/pkg/splunk_logger/environment_hook.go -------------------------------------------------------------------------------- /pkg/splunk_logger/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/pkg/splunk_logger/go.mod -------------------------------------------------------------------------------- /pkg/splunk_logger/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/pkg/splunk_logger/go.sum -------------------------------------------------------------------------------- /pkg/splunk_logger/splunk_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/pkg/splunk_logger/splunk_hook.go -------------------------------------------------------------------------------- /pkg/splunk_logger/splunk_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/pkg/splunk_logger/splunk_logger.go -------------------------------------------------------------------------------- /pkg/splunk_logger/splunk_logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/pkg/splunk_logger/splunk_logger_test.go -------------------------------------------------------------------------------- /repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/repositories/README.md -------------------------------------------------------------------------------- /repositories/centos-stream-10.json: -------------------------------------------------------------------------------- 1 | centos-10.json -------------------------------------------------------------------------------- /repositories/centos-stream-9.json: -------------------------------------------------------------------------------- 1 | centos-9.json -------------------------------------------------------------------------------- /repositories/rhel-8-no-aux-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/repositories/rhel-8-no-aux-key.json -------------------------------------------------------------------------------- /repositories/rhel-8.10-no-aux-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/repositories/rhel-8.10-no-aux-key.json -------------------------------------------------------------------------------- /repositories/rhel-8.4-no-aux-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/repositories/rhel-8.4-no-aux-key.json -------------------------------------------------------------------------------- /repositories/rhel-8.6-no-aux-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/repositories/rhel-8.6-no-aux-key.json -------------------------------------------------------------------------------- /repositories/rhel-8.8-no-aux-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/repositories/rhel-8.8-no-aux-key.json -------------------------------------------------------------------------------- /rpmlint.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/rpmlint.config -------------------------------------------------------------------------------- /schutzbot/ci_details.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/ci_details.sh -------------------------------------------------------------------------------- /schutzbot/containerbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/containerbuild.sh -------------------------------------------------------------------------------- /schutzbot/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/deploy.sh -------------------------------------------------------------------------------- /schutzbot/mockbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/mockbuild.sh -------------------------------------------------------------------------------- /schutzbot/prepare-rhel-internal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/prepare-rhel-internal.sh -------------------------------------------------------------------------------- /schutzbot/save_journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/save_journal.sh -------------------------------------------------------------------------------- /schutzbot/send_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/send_webhook.py -------------------------------------------------------------------------------- /schutzbot/slack_notification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/slack_notification.sh -------------------------------------------------------------------------------- /schutzbot/start_iostats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/start_iostats.sh -------------------------------------------------------------------------------- /schutzbot/stop_iostats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/stop_iostats.sh -------------------------------------------------------------------------------- /schutzbot/team_ssh_keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/team_ssh_keys.txt -------------------------------------------------------------------------------- /schutzbot/terraform: -------------------------------------------------------------------------------- 1 | 37259c2cdc5dc3f1f983dc9508cb8b1cf73da1d3 2 | -------------------------------------------------------------------------------- /schutzbot/unregister.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/unregister.sh -------------------------------------------------------------------------------- /schutzbot/update_github_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/update_github_status.sh -------------------------------------------------------------------------------- /schutzbot/upload_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/schutzbot/upload_artifacts.sh -------------------------------------------------------------------------------- /templates/.kube-linter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/templates/.kube-linter-config.yml -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- 1 | # Openshift deploy templates 2 | 3 | -------------------------------------------------------------------------------- /templates/composer.yml: -------------------------------------------------------------------------------- 1 | openshift/composer.yml -------------------------------------------------------------------------------- /templates/openshift/composer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/templates/openshift/composer.yml -------------------------------------------------------------------------------- /templates/openshift/maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/templates/openshift/maintenance.yml -------------------------------------------------------------------------------- /templates/packer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/templates/packer/README.md -------------------------------------------------------------------------------- /templates/packer/ansible/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/templates/packer/ansible/playbook.yml -------------------------------------------------------------------------------- /templates/packer/ansible/roles/common/files/osbuild-worker.toml: -------------------------------------------------------------------------------- 1 | base_path = "/api/image-builder-worker/v1" 2 | -------------------------------------------------------------------------------- /templates/packer/config.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/templates/packer/config.pkr.hcl -------------------------------------------------------------------------------- /templates/packer/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/templates/packer/variables.pkr.hcl -------------------------------------------------------------------------------- /templates/packer/worker.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/templates/packer/worker.pkr.hcl -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/README.md -------------------------------------------------------------------------------- /test/cases/api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api.sh -------------------------------------------------------------------------------- /test/cases/api/aws.s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/aws.s3.sh -------------------------------------------------------------------------------- /test/cases/api/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/aws.sh -------------------------------------------------------------------------------- /test/cases/api/azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/azure.sh -------------------------------------------------------------------------------- /test/cases/api/common/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/common/aws.sh -------------------------------------------------------------------------------- /test/cases/api/common/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/common/common.sh -------------------------------------------------------------------------------- /test/cases/api/common/s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/common/s3.sh -------------------------------------------------------------------------------- /test/cases/api/common/vsphere.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/common/vsphere.sh -------------------------------------------------------------------------------- /test/cases/api/container.registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/container.registry.sh -------------------------------------------------------------------------------- /test/cases/api/gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/gcp.sh -------------------------------------------------------------------------------- /test/cases/api/generic.s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/generic.s3.sh -------------------------------------------------------------------------------- /test/cases/api/oci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/api/oci.sh -------------------------------------------------------------------------------- /test/cases/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/aws.sh -------------------------------------------------------------------------------- /test/cases/aws_s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/aws_s3.sh -------------------------------------------------------------------------------- /test/cases/azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/azure.sh -------------------------------------------------------------------------------- /test/cases/azure_hyperv_gen2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/azure_hyperv_gen2.sh -------------------------------------------------------------------------------- /test/cases/base_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/base_tests.sh -------------------------------------------------------------------------------- /test/cases/container-embedding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/container-embedding.sh -------------------------------------------------------------------------------- /test/cases/container-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/container-upload.sh -------------------------------------------------------------------------------- /test/cases/cross-distro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/cross-distro.sh -------------------------------------------------------------------------------- /test/cases/filesystem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/filesystem.sh -------------------------------------------------------------------------------- /test/cases/gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/gcp.sh -------------------------------------------------------------------------------- /test/cases/generic_s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/generic_s3.sh -------------------------------------------------------------------------------- /test/cases/generic_s3_http.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/generic_s3_http.sh -------------------------------------------------------------------------------- /test/cases/generic_s3_https_insecure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/generic_s3_https_insecure.sh -------------------------------------------------------------------------------- /test/cases/generic_s3_https_secure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/generic_s3_https_secure.sh -------------------------------------------------------------------------------- /test/cases/installers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/installers.sh -------------------------------------------------------------------------------- /test/cases/koji.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/koji.sh -------------------------------------------------------------------------------- /test/cases/libvirt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/libvirt.sh -------------------------------------------------------------------------------- /test/cases/minimal-raw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/minimal-raw.sh -------------------------------------------------------------------------------- /test/cases/multi-tenancy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/multi-tenancy.sh -------------------------------------------------------------------------------- /test/cases/oci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/oci.sh -------------------------------------------------------------------------------- /test/cases/openshift_virtualization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/openshift_virtualization.sh -------------------------------------------------------------------------------- /test/cases/ostree-ami-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/ostree-ami-image.sh -------------------------------------------------------------------------------- /test/cases/ostree-ignition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/ostree-ignition.sh -------------------------------------------------------------------------------- /test/cases/ostree-iot-qcow2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/ostree-iot-qcow2.sh -------------------------------------------------------------------------------- /test/cases/ostree-ng.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/ostree-ng.sh -------------------------------------------------------------------------------- /test/cases/ostree-raw-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/ostree-raw-image.sh -------------------------------------------------------------------------------- /test/cases/ostree-vsphere.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/ostree-vsphere.sh -------------------------------------------------------------------------------- /test/cases/ostree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/ostree.sh -------------------------------------------------------------------------------- /test/cases/regression-insecure-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/regression-insecure-repo.sh -------------------------------------------------------------------------------- /test/cases/rhel-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/rhel-upgrade.sh -------------------------------------------------------------------------------- /test/cases/shared_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/shared_lib.sh -------------------------------------------------------------------------------- /test/cases/ubi-wsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/ubi-wsl.sh -------------------------------------------------------------------------------- /test/cases/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/vmware.sh -------------------------------------------------------------------------------- /test/cases/worker-executor-crash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/worker-executor-crash.sh -------------------------------------------------------------------------------- /test/cases/worker-executor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/cases/worker-executor.sh -------------------------------------------------------------------------------- /test/data/ansible/check-minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/ansible/check-minimal.yaml -------------------------------------------------------------------------------- /test/data/ansible/check_install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/ansible/check_install.yaml -------------------------------------------------------------------------------- /test/data/ansible/check_ostree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/ansible/check_ostree.yaml -------------------------------------------------------------------------------- /test/data/cloud-init/meta-data: -------------------------------------------------------------------------------- 1 | instance-id: nocloud 2 | local-hostname: vm 3 | -------------------------------------------------------------------------------- /test/data/cloud-init/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/cloud-init/user-data -------------------------------------------------------------------------------- /test/data/kerberos/krb5-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/kerberos/krb5-local.conf -------------------------------------------------------------------------------- /test/data/keyring/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/keyring/id_rsa -------------------------------------------------------------------------------- /test/data/keyring/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/keyring/id_rsa.pub -------------------------------------------------------------------------------- /test/data/koji/koji.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/koji/koji.conf -------------------------------------------------------------------------------- /test/data/repositories/centos-10.json: -------------------------------------------------------------------------------- 1 | centos-stream-10.json -------------------------------------------------------------------------------- /test/data/repositories/centos-9.json: -------------------------------------------------------------------------------- 1 | centos-stream-9.json -------------------------------------------------------------------------------- /test/data/repositories/fedora-41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/fedora-41.json -------------------------------------------------------------------------------- /test/data/repositories/fedora-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/fedora-42.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-10.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-10.0.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-10.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-10.1.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-10.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-10.2.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-10.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-8.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-8.10.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-8.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-8.4.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-8.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-8.5.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-8.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-8.6.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-8.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-8.7.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-8.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-8.8.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-8.9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-8.9.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-8.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-9.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-9.0.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-9.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-9.1.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-9.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-9.2.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-9.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-9.3.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-9.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-9.4.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-9.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-9.5.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-9.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-9.6.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-9.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-9.7.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-9.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-9.8.json -------------------------------------------------------------------------------- /test/data/repositories/rhel-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/repositories/rhel-9.json -------------------------------------------------------------------------------- /test/data/rhel-upgrade/integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/rhel-upgrade/integration.xml -------------------------------------------------------------------------------- /test/data/testrepo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/testrepo/README.md -------------------------------------------------------------------------------- /test/data/testrepo/repodata/repomd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/testrepo/repodata/repomd.xml -------------------------------------------------------------------------------- /test/data/x509/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/data/x509/openssl.cnf -------------------------------------------------------------------------------- /test/gitlab_ci_schedule_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/gitlab_ci_schedule_trigger.png -------------------------------------------------------------------------------- /test/gitlab_ci_scheduled_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/test/gitlab_ci_scheduled_pipeline.png -------------------------------------------------------------------------------- /tmt/plans/edge-test.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tmt/plans/edge-test.fmf -------------------------------------------------------------------------------- /tmt/tests/edge-test.fmf: -------------------------------------------------------------------------------- 1 | test: ./test.sh 2 | duration: 180m 3 | -------------------------------------------------------------------------------- /tmt/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tmt/tests/test.sh -------------------------------------------------------------------------------- /tools/appsre-ansible/rpmbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/appsre-ansible/rpmbuild.yml -------------------------------------------------------------------------------- /tools/appsre-build-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/appsre-build-deploy.sh -------------------------------------------------------------------------------- /tools/appsre-build-worker-packer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/appsre-build-worker-packer.sh -------------------------------------------------------------------------------- /tools/appsre-worker-packer-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/appsre-worker-packer-container.sh -------------------------------------------------------------------------------- /tools/apt-install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/apt-install-deps.sh -------------------------------------------------------------------------------- /tools/build-rpms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/build-rpms.py -------------------------------------------------------------------------------- /tools/check-runners: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/check-runners -------------------------------------------------------------------------------- /tools/check-snapshots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/check-snapshots -------------------------------------------------------------------------------- /tools/ci-build-worker-packer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/ci-build-worker-packer.sh -------------------------------------------------------------------------------- /tools/dbtest-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/dbtest-entrypoint.sh -------------------------------------------------------------------------------- /tools/dbtest-prepare-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/dbtest-prepare-env.sh -------------------------------------------------------------------------------- /tools/dbtest-run-migrations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/dbtest-run-migrations.sh -------------------------------------------------------------------------------- /tools/define-compose-url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/define-compose-url.sh -------------------------------------------------------------------------------- /tools/deploy-openstack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/deploy-openstack -------------------------------------------------------------------------------- /tools/deploy-qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/deploy-qemu -------------------------------------------------------------------------------- /tools/deploy/test/user-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/deploy/test/user-data.yml -------------------------------------------------------------------------------- /tools/gen-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/gen-certs.sh -------------------------------------------------------------------------------- /tools/gen-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/gen-ssh.sh -------------------------------------------------------------------------------- /tools/gen-user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/gen-user-data -------------------------------------------------------------------------------- /tools/generic_s3_https_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/generic_s3_https_test.sh -------------------------------------------------------------------------------- /tools/generic_s3_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/generic_s3_test.sh -------------------------------------------------------------------------------- /tools/koji-compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/koji-compose.py -------------------------------------------------------------------------------- /tools/libvirt_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/libvirt_test.sh -------------------------------------------------------------------------------- /tools/prepare-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/prepare-source.sh -------------------------------------------------------------------------------- /tools/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/provision.sh -------------------------------------------------------------------------------- /tools/rpm_spec_add_provides_bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/rpm_spec_add_provides_bundle.sh -------------------------------------------------------------------------------- /tools/rpm_spec_vendor2provides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/rpm_spec_vendor2provides -------------------------------------------------------------------------------- /tools/run-koji-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/run-koji-container.sh -------------------------------------------------------------------------------- /tools/run-mock-auth-servers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/run-mock-auth-servers.sh -------------------------------------------------------------------------------- /tools/s3_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/s3_test.sh -------------------------------------------------------------------------------- /tools/set-env-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/set-env-variables.sh -------------------------------------------------------------------------------- /tools/update-distgit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/tools/update-distgit.py -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.3.2 2 | # Keep this pinned version in parity with cel-go 3 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/.gitattributes -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/.gitignore -------------------------------------------------------------------------------- /vendor/cel.dev/expr/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/BUILD.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/GOVERNANCE.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/LICENSE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/MAINTAINERS.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/MODULE.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/README.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/WORKSPACE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/checked.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/checked.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/cloudbuild.yaml -------------------------------------------------------------------------------- /vendor/cel.dev/expr/eval.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/eval.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/explain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/explain.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/regen_go_proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/regen_go_proto.sh -------------------------------------------------------------------------------- /vendor/cel.dev/expr/syntax.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/syntax.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/value.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cel.dev/expr/value.pb.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cloud.google.com/go/auth/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cloud.google.com/go/auth/auth.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cloud.google.com/go/iam/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/cloud.google.com/go/iam/iam.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/.deepsource.toml -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/FUNDING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/FUNDING.json -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/README.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/SECURITY.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/doc.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/map.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/merge.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/dario.cat/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/.gitignore: -------------------------------------------------------------------------------- 1 | # live test artifacts 2 | Dockerfile 3 | k8s.yaml 4 | sshkey* 5 | -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/go.work: -------------------------------------------------------------------------------- 1 | go 1.23.0 2 | 3 | use ( 4 | . 5 | ./cache 6 | ) 7 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcs/doc.go: -------------------------------------------------------------------------------- 1 | package hcs 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcserror/doc.go: -------------------------------------------------------------------------------- 1 | package hcserror 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hns/doc.go: -------------------------------------------------------------------------------- 1 | package hns 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/interop/doc.go: -------------------------------------------------------------------------------- 1 | package interop 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/safefile/do.go: -------------------------------------------------------------------------------- 1 | package safefile 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/vmcompute/doc.go: -------------------------------------------------------------------------------- 1 | package vmcompute 2 | -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .*.sw? 3 | /coverage.txt -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/.whitesource: -------------------------------------------------------------------------------- 1 | { 2 | "settingsInheritedFrom": "VividCortex/whitesource-config@master" 3 | } -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/aws/smithy-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/aws/smithy-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cncf/xds/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/cncf/xds/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/containerd/typeurl/v2/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/containers/ocicrypt/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/.dockerignore: -------------------------------------------------------------------------------- 1 | bundles 2 | .gopath 3 | vendor/pkg 4 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/VERSION: -------------------------------------------------------------------------------- 1 | 1.59.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/drivers/btrfs/dummy_unsupported.go: -------------------------------------------------------------------------------- 1 | //go:build !linux || !cgo 2 | 3 | package btrfs 4 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/drivers/zfs/zfs_unsupported.go: -------------------------------------------------------------------------------- 1 | //go:build !linux && !freebsd 2 | 3 | package zfs 4 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/pkg/loopback/loopback_unsupported.go: -------------------------------------------------------------------------------- 1 | package loopback 2 | -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/VERSION: -------------------------------------------------------------------------------- 1 | 0.4.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitignore: -------------------------------------------------------------------------------- 1 | # Cover profiles 2 | *.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/dougm/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/dougm/pretty/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/dougm/pretty/License -------------------------------------------------------------------------------- /vendor/github.com/dougm/pretty/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/dougm/pretty/Readme -------------------------------------------------------------------------------- /vendor/github.com/dougm/pretty/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/dougm/pretty/diff.go -------------------------------------------------------------------------------- /vendor/github.com/dougm/pretty/zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/dougm/pretty/zero.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gobwas/glob/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gobwas/glob/bench.sh -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gobwas/glob/glob.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gobwas/glob/readme.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v4/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/golang/glog/README.md -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/s2a-go/s2a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/s2a-go/s2a.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.15.0" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/css/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gorilla/css/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gorilla/mux/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gorilla/mux/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gorilla/mux/regexp.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | *.test 4 | .vscode/ -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.go-version: -------------------------------------------------------------------------------- 1 | 1.23 2 | -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/.gitignore: -------------------------------------------------------------------------------- 1 | .envrc 2 | vendor/ 3 | .vscode 4 | -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgconn/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgconn/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/krb5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgconn/krb5.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgio/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgio/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgio/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgio/write.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/bit.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/bool.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/box.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bytea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/bytea.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/cid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/cid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/cidr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/cidr.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/date.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/inet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/inet.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/int2.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/int4.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/int8.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/json.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/jsonb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/jsonb.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/line.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/lseg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/lseg.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/ltree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/ltree.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/name.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/oid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/oid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/path.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/point.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/qchar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/qchar.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/range.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/text.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/tid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/tid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/time.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/xid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgtype/xid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgx/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgx/v4/batch.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgx/v4/conn.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgx/v4/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgx/v4/rows.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/pgx/v4/tx.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/puddle/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/puddle/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/jackc/puddle/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/kolo/xmlrpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/kolo/xmlrpc/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/kolo/xmlrpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/kolo/xmlrpc/README.md -------------------------------------------------------------------------------- /vendor/github.com/kolo/xmlrpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/kolo/xmlrpc/client.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/kr/text/License -------------------------------------------------------------------------------- /vendor/github.com/kr/text/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/kr/text/Readme -------------------------------------------------------------------------------- /vendor/github.com/kr/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/kr/text/doc.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/kr/text/indent.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/kr/text/wrap.go -------------------------------------------------------------------------------- /vendor/github.com/microcosm-cc/bluemonday/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: x2wlA1x0X8CK45ybWpZRCVRB4g7vtkhaw 2 | -------------------------------------------------------------------------------- /vendor/github.com/microcosm-cc/bluemonday/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | -------------------------------------------------------------------------------- /vendor/github.com/microcosm-cc/bluemonday/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/miekg/pkcs11/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/miekg/pkcs11/error.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/hsm.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/miekg/pkcs11/hsm.db -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/miekg/pkcs11/pkcs11.h -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/softhsm.conf: -------------------------------------------------------------------------------- 1 | 0:hsm.db 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/miekg/pkcs11/types.go -------------------------------------------------------------------------------- /vendor/github.com/mistifyio/go-zfs/v3/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | go-zfs.test 3 | .vagrant 4 | 5 | # added by lint-install 6 | out/ 7 | -------------------------------------------------------------------------------- /vendor/github.com/moby/sys/user/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/moby/sys/user/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moby/sys/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/moby/sys/user/user.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/oapi-codegen/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/oasdiff/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/oasdiff/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/oasdiff/yaml3/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/oasdiff/yaml3/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/oasdiff/yaml3/apic.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/oasdiff/yaml3/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/osbuild/images/data/dependencies/osbuild: -------------------------------------------------------------------------------- 1 | 163 -------------------------------------------------------------------------------- /vendor/github.com/pkg/browser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/pkg/browser/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/pkg/browser/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/rivo/uniseg/README.md -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/rivo/uniseg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/rivo/uniseg/line.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/rivo/uniseg/step.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/rivo/uniseg/width.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/word.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/rivo/uniseg/word.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/stefanberger/go-pkcs11uri/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | pkcs11uri 3 | -------------------------------------------------------------------------------- /vendor/github.com/ubccr/kerby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/ubccr/kerby/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ubccr/kerby/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/ubccr/kerby/base64.c -------------------------------------------------------------------------------- /vendor/github.com/ubccr/kerby/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/ubccr/kerby/base64.h -------------------------------------------------------------------------------- /vendor/github.com/ubccr/kerby/kerby.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/ubccr/kerby/kerby.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/ulikunitz/xz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/ulikunitz/xz/TODO.md -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/ulikunitz/xz/bits.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/crc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/ulikunitz/xz/crc.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/fox.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/ulikunitz/xz/fox.xz -------------------------------------------------------------------------------- /vendor/github.com/vmware/govmomi/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile* 2 | .*ignore -------------------------------------------------------------------------------- /vendor/github.com/vmware/govmomi/cns/.gitignore: -------------------------------------------------------------------------------- 1 | .soap/ -------------------------------------------------------------------------------- /vendor/github.com/zeebo/errs/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /vendor/github.com/zeebo/errs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/zeebo/errs/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/zeebo/errs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/zeebo/errs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/zeebo/errs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/zeebo/errs/README.md -------------------------------------------------------------------------------- /vendor/github.com/zeebo/errs/errs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/zeebo/errs/errs.go -------------------------------------------------------------------------------- /vendor/github.com/zeebo/errs/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/github.com/zeebo/errs/group.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/trace/config.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/trace/export.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/lrumap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/trace/lrumap.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v2/yamlh.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/go.yaml.in/yaml/v3/yamlh.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/crypto/acme/http.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/exp/slices/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/modfile/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/mod/modfile/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/modfile/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/mod/modfile/rule.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/modfile/work.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/mod/modfile/work.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/http2/timer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/.editorconfig -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/.golangci.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/codecov.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/deprecated.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/osbuild-composer/HEAD/vendor/modules.txt --------------------------------------------------------------------------------