├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── chocolatey-release.yml │ ├── commit-lint.yml │ ├── lacework-code-analysis.yml │ ├── nightly-build.yml │ ├── prepare-release.yml │ ├── release.yml │ ├── test-build.yml │ ├── update-cli-docs.yml │ ├── update-homebrew-formula.yml │ ├── verify-release.yml │ └── windows-integration.yml ├── .gitignore ├── .gitlint ├── .go-version ├── .golangci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DEVELOPER_GUIDELINES.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── RELEASE_NOTES.md ├── VERSION ├── api ├── README.md ├── _examples │ ├── active-containers │ │ └── main.go │ ├── agent-access-token │ │ └── main.go │ ├── alert-channels-v2 │ │ └── main.go │ ├── alert-profiles │ │ └── main.go │ ├── alert-rules │ │ └── main.go │ ├── aws-cloudwatch-alert-channel │ │ └── main.go │ ├── aws-s3-alert-channel │ │ └── main.go │ ├── cisco-webex-alert-channel │ │ └── main.go │ ├── cloud-accounts │ │ ├── aws-agentless-scanning-org │ │ │ └── main.go │ │ ├── aws-agentless-scanning │ │ │ └── main.go │ │ ├── aws-cfg │ │ │ └── main.go │ │ ├── aws-ct-sqs │ │ │ └── main.go │ │ ├── aws-eks-audit │ │ │ └── main.go │ │ ├── azure-ad-al │ │ │ └── main.go │ │ ├── gcp-al-pub-sub │ │ │ └── main.go │ │ ├── gcp-gke-audit │ │ │ └── main.go │ │ └── oci-cfg │ │ │ └── main.go │ ├── components │ │ └── main.go │ ├── container-registries │ │ ├── aws_ecr_access_key │ │ │ └── main.go │ │ ├── aws_ecr_iam_role │ │ │ └── main.go │ │ ├── inline_scanner │ │ │ └── main.go │ │ └── proxy_scanner │ │ │ └── main.go │ ├── container-vuln-search │ │ └── main.go │ ├── data-export-rules │ │ └── main.go │ ├── datadog-alert-channel │ │ └── main.go │ ├── feature-flags │ │ └── main.go │ ├── gcp_pub_sub-alert-channel │ │ └── main.go │ ├── host-vuln-list-cves │ │ └── main.go │ ├── jira-cloud-with-custom-template-alert-channel │ │ └── main.go │ ├── microsoft-teams-alert-channel │ │ └── main.go │ ├── new-relic-alert-channel │ │ └── main.go │ ├── pagerduty-alert-channel │ │ └── main.go │ ├── pagination │ │ └── main.go │ ├── policy-exceptions │ │ └── main.go │ ├── policy │ │ └── main.go │ ├── qradar-alert-channel │ │ └── main.go │ ├── report-definitions │ │ └── main.go │ ├── report-distributions │ │ └── main.go │ ├── report-rules │ │ └── main.go │ ├── reports │ │ ├── aws │ │ │ └── main.go │ │ ├── azure │ │ │ └── main.go │ │ └── gcp │ │ │ └── main.go │ ├── resource-groups │ │ └── main.go │ ├── service-now-alert-channel │ │ └── main.go │ ├── slack-alert-channel │ │ └── main.go │ ├── splunk-alert-channel │ │ └── main.go │ ├── team-members-org │ │ └── main.go │ ├── team-members │ │ └── main.go │ ├── token-generation │ │ └── main.go │ ├── victorops-alert-channel │ │ └── main.go │ ├── vulnerability-exceptions │ │ └── main.go │ └── webhook-alert-channel │ │ └── main.go ├── _templates │ └── resource_groups │ │ ├── aws.json │ │ ├── azure.json │ │ ├── container.json │ │ ├── gcp.json │ │ ├── kubernetes.json │ │ ├── machine.json │ │ └── oci.json ├── agent_access_tokens.go ├── agent_access_tokens_test.go ├── agent_info.go ├── agent_info_test.go ├── alert_channel_datadog.go ├── alert_channel_datadog_test.go ├── alert_channels.go ├── alert_channels_aws_cloudwatch.go ├── alert_channels_aws_cloudwatch_test.go ├── alert_channels_aws_s3.go ├── alert_channels_aws_s3_test.go ├── alert_channels_cisco_spark_webhook.go ├── alert_channels_cisco_spark_webhook_test.go ├── alert_channels_email_user.go ├── alert_channels_email_user_test.go ├── alert_channels_gcp_pub_sub.go ├── alert_channels_gcp_pub_sub_test.go ├── alert_channels_ibm_qradar.go ├── alert_channels_ibm_qradar_test.go ├── alert_channels_jira_cloud_server.go ├── alert_channels_jira_cloud_server_test.go ├── alert_channels_microsoft_teams.go ├── alert_channels_microsoft_teams_test.go ├── alert_channels_new_relic.go ├── alert_channels_new_relic_test.go ├── alert_channels_pager_duty.go ├── alert_channels_pager_duty_test.go ├── alert_channels_service_now_rest.go ├── alert_channels_service_now_rest_test.go ├── alert_channels_slack_channel.go ├── alert_channels_slack_channel_test.go ├── alert_channels_splunk.go ├── alert_channels_splunk_test.go ├── alert_channels_test.go ├── alert_channels_victorops.go ├── alert_channels_victorops_test.go ├── alert_channels_webhook.go ├── alert_channels_webhook_test.go ├── alert_profiles.go ├── alert_profiles_test.go ├── alert_rules.go ├── alert_rules_test.go ├── alert_templates.go ├── alerts.go ├── alerts_close.go ├── alerts_close_test.go ├── alerts_comment.go ├── alerts_comment_test.go ├── alerts_details.go ├── alerts_details_events.go ├── alerts_details_events_test.go ├── alerts_details_integrations.go ├── alerts_details_integrations_test.go ├── alerts_details_investigation.go ├── alerts_details_investigation_test.go ├── alerts_details_observationtimeline.go ├── alerts_details_observationtimeline_test.go ├── alerts_details_related.go ├── alerts_details_related_test.go ├── alerts_details_test.go ├── alerts_details_timeline.go ├── alerts_details_timeline_test.go ├── alerts_search.go ├── alerts_search_test.go ├── alerts_test.go ├── api.go ├── auth.go ├── auth_internal_test.go ├── auth_test.go ├── callbacks.go ├── callbacks_test.go ├── client.go ├── client_test.go ├── cloud_accounts.go ├── cloud_accounts_aws_cfg.go ├── cloud_accounts_aws_cfg_test.go ├── cloud_accounts_aws_ct_sqs.go ├── cloud_accounts_aws_ct_sqs_test.go ├── cloud_accounts_aws_eks_audit.go ├── cloud_accounts_aws_eks_audit_test.go ├── cloud_accounts_aws_gov_cfg.go ├── cloud_accounts_aws_gov_cfg_test.go ├── cloud_accounts_aws_gov_ct.go ├── cloud_accounts_aws_gov_ct_test.go ├── cloud_accounts_aws_sidekick.go ├── cloud_accounts_aws_sidekick_org.go ├── cloud_accounts_aws_sidekick_org_test.go ├── cloud_accounts_aws_sidekick_test.go ├── cloud_accounts_az_al.go ├── cloud_accounts_az_al_test.go ├── cloud_accounts_az_cfg.go ├── cloud_accounts_az_cfg_test.go ├── cloud_accounts_azure_ad_al.go ├── cloud_accounts_azure_ad_al_test.go ├── cloud_accounts_azure_sidekick.go ├── cloud_accounts_azure_sidekick_test.go ├── cloud_accounts_gcp_al_pubsub.go ├── cloud_accounts_gcp_al_pubsub_test.go ├── cloud_accounts_gcp_at.go ├── cloud_accounts_gcp_at_test.go ├── cloud_accounts_gcp_cfg.go ├── cloud_accounts_gcp_cfg_test.go ├── cloud_accounts_gcp_gke_audit.go ├── cloud_accounts_gcp_gke_audit_test.go ├── cloud_accounts_gcp_sidekick.go ├── cloud_accounts_gcp_sidekick_test.go ├── cloud_accounts_oci_cfg.go ├── cloud_accounts_oci_cfg_test.go ├── cloud_accounts_test.go ├── compliance_evaluations.go ├── compliance_evaluations_aws.go ├── component_data.go ├── component_data_test.go ├── components.go ├── components_test.go ├── container_registries.go ├── container_registries_aws_ecr_access_key.go ├── container_registries_aws_ecr_access_key_test.go ├── container_registries_aws_ecr_iam_role.go ├── container_registries_aws_ecr_iam_role_test.go ├── container_registries_dockerhub.go ├── container_registries_dockerhub_test.go ├── container_registries_dockerhub_v2.go ├── container_registries_gcp_gar.go ├── container_registries_gcp_gar_test.go ├── container_registries_gcp_gcr.go ├── container_registries_ghcr.go ├── container_registries_ghcr_test.go ├── container_registries_inline_scanner.go ├── container_registries_proxy_scanner.go ├── container_registries_test.go ├── data_export_rules.go ├── datasources.go ├── datasources_test.go ├── entities.go ├── entities_containers.go ├── entities_images.go ├── entities_images_test.go ├── entities_machine_details.go ├── entities_machine_details_test.go ├── entities_machines.go ├── entities_test.go ├── entities_users.go ├── entities_users_test.go ├── errors.go ├── errors_test.go ├── feature_flags.go ├── feature_flags_test.go ├── http.go ├── http_test.go ├── inventory.go ├── inventory_aws.go ├── inventory_aws_test.go ├── inventory_test.go ├── logging.go ├── logging_test.go ├── lql.go ├── lql_delete.go ├── lql_delete_test.go ├── lql_execute.go ├── lql_execute_internal_test.go ├── lql_execute_test.go ├── lql_test.go ├── lql_update_test.go ├── lql_validate.go ├── lql_validate_test.go ├── metrics.go ├── metrics_test.go ├── organization_info.go ├── organization_info_test.go ├── policy.go ├── policy_exceptions.go ├── policy_exceptions_test.go ├── policy_parse_test.go ├── policy_test.go ├── reader.go ├── reader_internal_test.go ├── report_definitions_test.go ├── report_distributions_test.go ├── report_rule_notification_types.go ├── report_rule_notification_types_test.go ├── report_rules.go ├── report_rules_test.go ├── reports.go ├── reports_aws.go ├── reports_azure.go ├── reports_definitions.go ├── reports_distributions.go ├── reports_gcp.go ├── reports_test.go ├── resource_groups.go ├── resource_groups_test.go ├── schemas.go ├── team_members.go ├── team_members_test.go ├── user_profile.go ├── user_profile_test.go ├── v2.go ├── v2_configs.go ├── v2_configs_azure.go ├── v2_configs_gcp.go ├── v2_recommendations.go ├── v2_recommendations_aws.go ├── v2_recommendations_aws_test.go ├── v2_recommendations_azure.go ├── v2_recommendations_azure_test.go ├── v2_recommendations_gcp.go ├── v2_recommendations_gcp_test.go ├── v2_recommendations_test.go ├── v2_search_filters.go ├── v2_search_filters_test.go ├── v2_suppressions.go ├── v2_suppressions_aws.go ├── v2_suppressions_azure.go ├── v2_suppressions_gcp.go ├── v2_suppressions_test.go ├── v2_test.go ├── v2_vulnerabilities.go ├── v2_vulnerabilities_software_packages.go ├── v2_vulnerabilities_test.go ├── v2_vulnerability_observations.go ├── v2_vulnerability_observations_test.go ├── version.go ├── version_test.go ├── vulnerability_exceptions.go ├── vulnerability_exceptions_container.go ├── vulnerability_exceptions_host.go └── vulnerability_exceptions_test.go ├── cli ├── README.md ├── cdk │ ├── client │ │ └── go │ │ │ └── client.go │ ├── go │ │ └── proto │ │ │ └── v1 │ │ │ ├── cdk.pb.go │ │ │ └── cdk_grpc.pb.go │ └── python │ │ └── proto │ │ └── v1 │ │ ├── cdk_pb2.py │ │ └── cdk_pb2_grpc.py ├── cmd │ ├── access_token.go │ ├── account.go │ ├── agent.go │ ├── agent_aws-install_ec2ic.go │ ├── agent_aws-install_ec2ic_test.go │ ├── agent_aws-install_ec2ssh.go │ ├── agent_aws-install_ec2ssm.go │ ├── agent_gcp-install-osl.go │ ├── agent_install.go │ ├── agent_install_test.go │ ├── agent_list.go │ ├── alert.go │ ├── alert_channel.go │ ├── alert_close.go │ ├── alert_comment.go │ ├── alert_list.go │ ├── alert_list_fixable.go │ ├── alert_list_fixable_internal_test.go │ ├── alert_profiles.go │ ├── alert_profiles_test.go │ ├── alert_rules.go │ ├── alert_show.go │ ├── alert_show_details.go │ ├── alert_show_events.go │ ├── alert_show_integrations.go │ ├── alert_show_investigation.go │ ├── alert_show_observationtimeline.go │ ├── alert_show_related.go │ ├── alert_show_timeline.go │ ├── alert_test.go │ ├── api.go │ ├── api_test.go │ ├── aws.go │ ├── awsiam.go │ ├── awsiam_test.go │ ├── cache.go │ ├── cache_test.go │ ├── cdk.go │ ├── cdk_test.go │ ├── cli_state.go │ ├── cli_unix.go │ ├── cli_unix_test.go │ ├── cli_windows.go │ ├── cli_windows_test.go │ ├── cloud_account.go │ ├── cloud_account_test.go │ ├── compliance.go │ ├── compliance_aws.go │ ├── compliance_aws_test.go │ ├── compliance_azure.go │ ├── compliance_azure_test.go │ ├── compliance_gcp.go │ ├── compliance_gcp_test.go │ ├── compliance_test.go │ ├── component.go │ ├── component_args.go │ ├── component_args_test.go │ ├── component_dev.go │ ├── configure.go │ ├── configure_switch_profile.go │ ├── container_registry.go │ ├── container_registry_test.go │ ├── content_library.go │ ├── content_library_internal_test.go │ ├── docs.go │ ├── emoji.go │ ├── emoji_unix.go │ ├── emoji_windows.go │ ├── errors.go │ ├── errors_lql.go │ ├── errors_test.go │ ├── flags.go │ ├── flags_test.go │ ├── gcp.go │ ├── generate.go │ ├── generate_aws.go │ ├── generate_aws_controltower.go │ ├── generate_aws_controltower_test.go │ ├── generate_aws_eks_audit.go │ ├── generate_aws_eks_audit_test.go │ ├── generate_aws_test.go │ ├── generate_azure.go │ ├── generate_azure_test.go │ ├── generate_cloud_account.go │ ├── generate_execute.go │ ├── generate_execute_test.go │ ├── generate_gcp.go │ ├── generate_gcp_test.go │ ├── generate_gke.go │ ├── generate_gke_test.go │ ├── generate_k8s.go │ ├── generate_oci.go │ ├── generate_oci_test.go │ ├── generate_terraform_test.go │ ├── generate_test.go │ ├── grpc.go │ ├── integration_aws.go │ ├── integration_aws_cloudwatch.go │ ├── integration_aws_govcloud.go │ ├── integration_aws_s3_channel.go │ ├── integration_azure.go │ ├── integration_cisco_webex.go │ ├── integration_ctr_reg_limits.go │ ├── integration_datadog.go │ ├── integration_docker_hub.go │ ├── integration_docker_v2.go │ ├── integration_ecr.go │ ├── integration_email.go │ ├── integration_gar.go │ ├── integration_gcp.go │ ├── integration_gcp_pub_sub_audit.go │ ├── integration_gcp_pub_sub_channel.go │ ├── integration_gcr.go │ ├── integration_ghcr.go │ ├── integration_inline_scanner.go │ ├── integration_jira.go │ ├── integration_microsoft_teams.go │ ├── integration_new_relic_channel.go │ ├── integration_oci.go │ ├── integration_pagerduty.go │ ├── integration_proxy_scanner.go │ ├── integration_qradar_channel.go │ ├── integration_service_now_channel.go │ ├── integration_slack_channel.go │ ├── integration_splunk.go │ ├── integration_victorops.go │ ├── integration_webhook.go │ ├── lql.go │ ├── lql_create.go │ ├── lql_delete.go │ ├── lql_internal_test.go │ ├── lql_library.go │ ├── lql_list.go │ ├── lql_list_internal_test.go │ ├── lql_preview.go │ ├── lql_show.go │ ├── lql_sources.go │ ├── lql_sources_internal_test.go │ ├── lql_update.go │ ├── lql_validate.go │ ├── metricevent.go │ ├── metricevent_test.go │ ├── migration.go │ ├── outputs.go │ ├── outputs_test.go │ ├── package_manifest.go │ ├── package_manifest_test.go │ ├── policy.go │ ├── policy_create.go │ ├── policy_delete.go │ ├── policy_disable.go │ ├── policy_enable.go │ ├── policy_exceptions.go │ ├── policy_exceptions_test.go │ ├── policy_internal_test.go │ ├── policy_library.go │ ├── policy_library_internal_test.go │ ├── policy_update.go │ ├── prompt.go │ ├── report_definitions.go │ ├── report_definitions_create.go │ ├── report_definitions_create_test.go │ ├── report_definitions_diff.go │ ├── report_definitions_revert.go │ ├── report_definitions_test.go │ ├── report_definitions_update.go │ ├── report_distributions.go │ ├── report_distributions_create.go │ ├── report_distributions_update.go │ ├── report_rules.go │ ├── report_rules_test.go │ ├── resource_group_v2.go │ ├── resource_groups.go │ ├── root.go │ ├── suppressions.go │ ├── suppressions_aws.go │ ├── suppressions_aws_test.go │ ├── suppressions_azure.go │ ├── suppressions_azure_test.go │ ├── suppressions_gcp.go │ ├── suppressions_gcp_test.go │ ├── table_render.go │ ├── table_render_test.go │ ├── team_members.go │ ├── team_members_test.go │ ├── telemetry.go │ ├── telemetry_test.go │ ├── test_resources │ │ └── content-library │ │ │ ├── .version │ │ │ ├── content-library-nonzero.sh │ │ │ ├── content-library-nonzero.sh.sig │ │ │ ├── content-library-noparse.sh │ │ │ └── content-library-noparse.sh.sig │ ├── version.go │ ├── vuln_container.go │ ├── vuln_container_list_assessments.go │ ├── vuln_container_list_assessments_test.go │ ├── vuln_container_list_registries.go │ ├── vuln_container_scan.go │ ├── vuln_container_show_assessments.go │ ├── vuln_container_test.go │ ├── vuln_host.go │ ├── vuln_host_gen_package_manifest.go │ ├── vuln_host_list_cves.go │ ├── vuln_host_list_hosts.go │ ├── vuln_host_scan_package_manifest.go │ ├── vuln_host_scan_package_manifest_test.go │ ├── vuln_host_show_assessment.go │ ├── vuln_host_show_assessment_test.go │ ├── vuln_host_test.go │ ├── vuln_html.go │ ├── vuln_html_test.go │ ├── vulnerability.go │ ├── vulnerability_exception_container.go │ ├── vulnerability_exception_host.go │ ├── vulnerability_exceptions_test.go │ ├── vulnerability_test.go │ └── vulnerabilty_exceptions.go ├── docs │ ├── lacework.md │ ├── lacework_access-token.md │ ├── lacework_account.md │ ├── lacework_account_list.md │ ├── lacework_agent.md │ ├── lacework_agent_aws-install.md │ ├── lacework_agent_aws-install_ec2ic.md │ ├── lacework_agent_aws-install_ec2ssh.md │ ├── lacework_agent_aws-install_ec2ssm.md │ ├── lacework_agent_gcp-install.md │ ├── lacework_agent_gcp-install_osl.md │ ├── lacework_agent_install.md │ ├── lacework_agent_list.md │ ├── lacework_agent_token.md │ ├── lacework_agent_token_create.md │ ├── lacework_agent_token_list.md │ ├── lacework_agent_token_show.md │ ├── lacework_agent_token_update.md │ ├── lacework_alert-channel.md │ ├── lacework_alert-channel_create.md │ ├── lacework_alert-channel_delete.md │ ├── lacework_alert-channel_list.md │ ├── lacework_alert-channel_show.md │ ├── lacework_alert-profile.md │ ├── lacework_alert-profile_create.md │ ├── lacework_alert-profile_delete.md │ ├── lacework_alert-profile_list.md │ ├── lacework_alert-profile_show.md │ ├── lacework_alert-profile_update.md │ ├── lacework_alert-rule.md │ ├── lacework_alert-rule_create.md │ ├── lacework_alert-rule_delete.md │ ├── lacework_alert-rule_list.md │ ├── lacework_alert-rule_show.md │ ├── lacework_alert.md │ ├── lacework_alert_close.md │ ├── lacework_alert_comment.md │ ├── lacework_alert_list.md │ ├── lacework_alert_open.md │ ├── lacework_alert_show.md │ ├── lacework_api.md │ ├── lacework_cloud-account.md │ ├── lacework_cloud-account_create.md │ ├── lacework_cloud-account_delete.md │ ├── lacework_cloud-account_list.md │ ├── lacework_cloud-account_migrate.md │ ├── lacework_cloud-account_show.md │ ├── lacework_compliance.md │ ├── lacework_compliance_aws.md │ ├── lacework_compliance_aws_get-report.md │ ├── lacework_compliance_aws_list-accounts.md │ ├── lacework_compliance_aws_scan.md │ ├── lacework_compliance_aws_search.md │ ├── lacework_compliance_azure.md │ ├── lacework_compliance_azure_get-report.md │ ├── lacework_compliance_azure_list-subscriptions.md │ ├── lacework_compliance_azure_list.md │ ├── lacework_compliance_azure_scan.md │ ├── lacework_compliance_google.md │ ├── lacework_compliance_google_get-report.md │ ├── lacework_compliance_google_list-projects.md │ ├── lacework_compliance_google_list.md │ ├── lacework_compliance_google_scan.md │ ├── lacework_configure.md │ ├── lacework_configure_list.md │ ├── lacework_configure_show.md │ ├── lacework_configure_switch-profile.md │ ├── lacework_container-registry.md │ ├── lacework_container-registry_create.md │ ├── lacework_container-registry_delete.md │ ├── lacework_container-registry_list.md │ ├── lacework_container-registry_show.md │ ├── lacework_generate.md │ ├── lacework_generate_cloud-account.md │ ├── lacework_generate_cloud-account_aws.md │ ├── lacework_generate_cloud-account_aws_controltower.md │ ├── lacework_generate_cloud-account_azure.md │ ├── lacework_generate_cloud-account_gcp.md │ ├── lacework_generate_cloud-account_oci.md │ ├── lacework_generate_k8s.md │ ├── lacework_generate_k8s_eks.md │ ├── lacework_generate_k8s_gke.md │ ├── lacework_policy-exception.md │ ├── lacework_policy-exception_create.md │ ├── lacework_policy-exception_delete.md │ ├── lacework_policy-exception_list.md │ ├── lacework_policy-exception_show.md │ ├── lacework_policy.md │ ├── lacework_policy_create.md │ ├── lacework_policy_delete.md │ ├── lacework_policy_disable.md │ ├── lacework_policy_enable.md │ ├── lacework_policy_list-tags.md │ ├── lacework_policy_list.md │ ├── lacework_policy_show.md │ ├── lacework_policy_update.md │ ├── lacework_query.md │ ├── lacework_query_create.md │ ├── lacework_query_delete.md │ ├── lacework_query_list-sources.md │ ├── lacework_query_list.md │ ├── lacework_query_preview-source.md │ ├── lacework_query_run.md │ ├── lacework_query_show-source.md │ ├── lacework_query_show.md │ ├── lacework_query_update.md │ ├── lacework_query_validate.md │ ├── lacework_report-rule.md │ ├── lacework_report-rule_create.md │ ├── lacework_report-rule_delete.md │ ├── lacework_report-rule_list.md │ ├── lacework_report-rule_show.md │ ├── lacework_resource-group.md │ ├── lacework_resource-group_create.md │ ├── lacework_resource-group_delete.md │ ├── lacework_resource-group_list.md │ ├── lacework_resource-group_show.md │ ├── lacework_team-member.md │ ├── lacework_team-member_create.md │ ├── lacework_team-member_delete.md │ ├── lacework_team-member_list.md │ ├── lacework_team-member_show.md │ ├── lacework_version.md │ ├── lacework_vulnerability-exception.md │ ├── lacework_vulnerability-exception_create.md │ ├── lacework_vulnerability-exception_delete.md │ ├── lacework_vulnerability-exception_list.md │ ├── lacework_vulnerability-exception_show.md │ ├── lacework_vulnerability.md │ ├── lacework_vulnerability_container.md │ ├── lacework_vulnerability_container_list-assessments.md │ ├── lacework_vulnerability_container_list-registries.md │ ├── lacework_vulnerability_container_scan.md │ ├── lacework_vulnerability_container_show-assessment.md │ ├── lacework_vulnerability_host.md │ ├── lacework_vulnerability_host_generate-pkg-manifest.md │ ├── lacework_vulnerability_host_list-cves.md │ ├── lacework_vulnerability_host_list-hosts.md │ ├── lacework_vulnerability_host_scan-pkg-manifest.md │ └── lacework_vulnerability_host_show-assessment.md ├── images │ └── windows-nanoserver │ │ └── Dockerfile ├── install.ps1 ├── install.sh ├── main.go └── vagrant │ ├── centos-6.10 │ └── Vagrantfile │ ├── macos-sierra │ └── Vagrantfile │ ├── ubuntu-1804 │ └── Vagrantfile │ └── windows-10 │ ├── Vagrantfile │ └── provision.ps1 ├── docs ├── _config.yml └── index.md ├── go.mod ├── go.sum ├── integration ├── account_test.go ├── agent_list_test.go ├── agent_token_test.go ├── alert_channel_test.go ├── alert_close_test.go ├── alert_comment_test.go ├── alert_list_test.go ├── alert_profile_test.go ├── alert_rules_test.go ├── alert_show_test.go ├── alert_test.go ├── aws_controltower_generation_test.go ├── aws_eks_audit_generation_test.go ├── aws_generation_test.go ├── azure_generation_test.go ├── cloud_account_test.go ├── completion_unix_test.go ├── completion_windows_test.go ├── compliance_aws_test.go ├── compliance_azure_test.go ├── compliance_gcp_test.go ├── component_test.go ├── configure_list_test.go ├── configure_show_test.go ├── configure_switch_profile_test.go ├── configure_test.go ├── configure_unix_test.go ├── configure_windows_test.go ├── container_registry_test.go ├── container_vulnerability_test.go ├── context │ ├── ctx.toml │ └── ctx_cfg.go ├── framework_test.go ├── gcp_generation_test.go ├── generate_oci_test.go ├── gke_generation_test.go ├── global_flags_test.go ├── help_test.go ├── host_vulnerability_test.go ├── lql_constants.go ├── lql_create_test.go ├── lql_create_unix_test.go ├── lql_delete_test.go ├── lql_list_test.go ├── lql_preview_test.go ├── lql_show_test.go ├── lql_sources_test.go ├── lql_test.go ├── lql_update_test.go ├── lql_update_unix_test.go ├── lql_validate_test.go ├── lwupdater_test.go ├── policy_exceptions_test.go ├── policy_test.go ├── preflight_aws_test.go ├── preflight_azure_test.go ├── preflight_gcp_test.go ├── report_definitions_create_test.go ├── report_definitions_test.go ├── report_definitions_update_test.go ├── resource_groups_test.go ├── team_members_test.go ├── test_resources │ ├── cdk │ │ └── go-component │ │ │ ├── bin │ │ │ ├── go-component-darwin-amd64 │ │ │ ├── go-component-darwin-arm64 │ │ │ ├── go-component-linux-386 │ │ │ ├── go-component-linux-amd64 │ │ │ ├── go-component-linux-arm │ │ │ ├── go-component-linux-arm64 │ │ │ ├── go-component-windows-386.exe │ │ │ └── go-component-windows-amd64.exe │ │ │ ├── client.go │ │ │ └── main.go │ ├── clean.Dockerfile │ ├── help │ │ ├── access-token │ │ ├── account │ │ ├── account_list │ │ ├── agent │ │ ├── agent_aws-install │ │ ├── agent_aws-install_ec2ic │ │ ├── agent_aws-install_ec2ssh │ │ ├── agent_aws-install_ec2ssm │ │ ├── agent_gcp-install │ │ ├── agent_gcp-install_osl │ │ ├── agent_install │ │ ├── agent_list │ │ ├── agent_token │ │ ├── agent_token_create │ │ ├── agent_token_list │ │ ├── agent_token_show │ │ ├── agent_token_update │ │ ├── alert │ │ ├── alert-channel │ │ ├── alert-channel_create │ │ ├── alert-channel_delete │ │ ├── alert-channel_list │ │ ├── alert-channel_show │ │ ├── alert-profile │ │ ├── alert-profile_create │ │ ├── alert-profile_delete │ │ ├── alert-profile_list │ │ ├── alert-profile_show │ │ ├── alert-profile_update │ │ ├── alert-rule │ │ ├── alert-rule_create │ │ ├── alert-rule_delete │ │ ├── alert-rule_list │ │ ├── alert-rule_show │ │ ├── alert_close │ │ ├── alert_comment │ │ ├── alert_list │ │ ├── alert_open │ │ ├── alert_show │ │ ├── api │ │ ├── cloud-account │ │ ├── cloud-account_create │ │ ├── cloud-account_delete │ │ ├── cloud-account_list │ │ ├── cloud-account_migrate │ │ ├── cloud-account_show │ │ ├── completion │ │ ├── completion_bash │ │ ├── completion_fish │ │ ├── completion_powershell │ │ ├── completion_zsh │ │ ├── compliance │ │ ├── compliance_aws │ │ ├── compliance_aws_get-report │ │ ├── compliance_aws_list-accounts │ │ ├── compliance_aws_scan │ │ ├── compliance_aws_search │ │ ├── compliance_azure │ │ ├── compliance_azure_get-report │ │ ├── compliance_azure_list │ │ ├── compliance_azure_list-subscriptions │ │ ├── compliance_azure_scan │ │ ├── compliance_google │ │ ├── compliance_google_get-report │ │ ├── compliance_google_list │ │ ├── compliance_google_list-projects │ │ ├── compliance_google_scan │ │ ├── component │ │ ├── component_install │ │ ├── component_list │ │ ├── component_show │ │ ├── component_uninstall │ │ ├── component_update │ │ ├── configure │ │ ├── configure_list │ │ ├── configure_show │ │ ├── configure_switch-profile │ │ ├── container-registry │ │ ├── container-registry_create │ │ ├── container-registry_delete │ │ ├── container-registry_list │ │ ├── container-registry_show │ │ ├── generate │ │ ├── generate_cloud-account │ │ ├── generate_cloud-account_aws │ │ ├── generate_cloud-account_aws_controltower │ │ ├── generate_cloud-account_azure │ │ ├── generate_cloud-account_gcp │ │ ├── generate_cloud-account_oci │ │ ├── generate_k8s │ │ ├── generate_k8s_eks │ │ ├── generate_k8s_gke │ │ ├── help │ │ ├── no-command-provided │ │ ├── policy │ │ ├── policy-exception │ │ ├── policy-exception_create │ │ ├── policy-exception_delete │ │ ├── policy-exception_list │ │ ├── policy-exception_show │ │ ├── policy_create │ │ ├── policy_delete │ │ ├── policy_disable │ │ ├── policy_enable │ │ ├── policy_list │ │ ├── policy_list-tags │ │ ├── policy_show │ │ ├── policy_update │ │ ├── query │ │ ├── query_create │ │ ├── query_delete │ │ ├── query_list │ │ ├── query_list-sources │ │ ├── query_preview-source │ │ ├── query_run │ │ ├── query_show │ │ ├── query_show-source │ │ ├── query_update │ │ ├── query_validate │ │ ├── report-definition │ │ ├── report-definition_create │ │ ├── report-definition_delete │ │ ├── report-definition_diff │ │ ├── report-definition_list │ │ ├── report-definition_revert │ │ ├── report-definition_show │ │ ├── report-definition_update │ │ ├── report-distribution │ │ ├── report-distribution_create │ │ ├── report-distribution_list │ │ ├── report-distribution_show │ │ ├── report-distribution_update │ │ ├── report-rule │ │ ├── report-rule_create │ │ ├── report-rule_delete │ │ ├── report-rule_list │ │ ├── report-rule_show │ │ ├── resource-group │ │ ├── resource-group_create │ │ ├── resource-group_delete │ │ ├── resource-group_list │ │ ├── resource-group_show │ │ ├── team-member │ │ ├── team-member_create │ │ ├── team-member_delete │ │ ├── team-member_list │ │ ├── team-member_show │ │ ├── version │ │ ├── vulnerability │ │ ├── vulnerability-exception │ │ ├── vulnerability-exception_create │ │ ├── vulnerability-exception_delete │ │ ├── vulnerability-exception_list │ │ ├── vulnerability-exception_show │ │ ├── vulnerability-exception_show_show-assessment │ │ ├── vulnerability_container │ │ ├── vulnerability_container_list-assessments │ │ ├── vulnerability_container_list-registries │ │ ├── vulnerability_container_scan │ │ ├── vulnerability_container_show-assessment │ │ ├── vulnerability_host │ │ ├── vulnerability_host_generate-pkg-manifest │ │ ├── vulnerability_host_list-cves │ │ ├── vulnerability_host_list-hosts │ │ ├── vulnerability_host_scan-pkg-manifest │ │ ├── vulnerability_host_show-assessment │ │ └── windows │ │ │ └── configure_switch-profile │ ├── lacework_env │ │ └── integrations │ │ │ ├── agent.tf │ │ │ ├── integrations.tf │ │ │ └── variables.tf │ ├── lql │ │ ├── CLI_AWS_CTA_IntegrationTest.yaml │ │ └── CLI_Host_Files_IntegrationTest.yaml │ ├── policy │ │ └── account-clitest-1.json │ └── vuln_scan │ │ └── dirty.Dockerfile ├── version_test.go └── vulnerability_test.go ├── internal ├── archive │ ├── detect.go │ ├── detect_test.go │ ├── gz.go │ ├── gz_test.go │ ├── tar.go │ ├── tar_test.go │ └── test_resources │ │ ├── test_archive.tar │ │ └── test_archive.tar.gz ├── array │ ├── contains.go │ ├── join.go │ ├── sort.go │ ├── sort_test.go │ └── unique.go ├── cache │ └── cache.go ├── capturer │ └── capture_output.go ├── databox │ ├── blob.go │ ├── box.go │ ├── generator │ │ └── main.go │ └── static │ │ ├── reports │ │ ├── aws │ │ │ └── cis.json │ │ ├── azure │ │ │ ├── cis.json │ │ │ └── cis_131.json │ │ └── gcp │ │ │ ├── cis.json │ │ │ └── cis_12.json │ │ ├── scaffoldings │ │ ├── golang │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── VERSION │ │ │ ├── bin │ │ │ │ └── .gitkeeper │ │ │ ├── cmd │ │ │ │ ├── README.md │ │ │ │ ├── cdk.go │ │ │ │ ├── placeholder.go │ │ │ │ └── root.go │ │ │ ├── go.mod │ │ │ ├── internal │ │ │ │ ├── README.md │ │ │ │ ├── logger │ │ │ │ │ └── logger.go │ │ │ │ ├── metric │ │ │ │ │ └── metric.go │ │ │ │ └── version │ │ │ │ │ └── version.go │ │ │ ├── main.go │ │ │ └── pkg │ │ │ │ └── README.md │ │ └── python │ │ │ ├── README.md │ │ │ └── src │ │ │ └── package │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ └── vuln_assessment.html ├── failon │ ├── count_operation.go │ └── count_operation_test.go ├── file │ ├── file.go │ └── file_test.go ├── format │ ├── secret.go │ ├── secret_test.go │ ├── strings.go │ └── strings_test.go ├── intgguid │ └── rand.go ├── lacework │ └── server.go ├── pointer │ ├── bool.go │ └── bool_test.go ├── unique │ ├── strings.go │ └── strings_test.go └── validate │ ├── email.go │ └── email_test.go ├── lwcloud └── gcp │ ├── helpers │ └── helper.go │ └── resources │ ├── folders │ └── folders.go │ ├── instances │ └── instances.go │ ├── models │ └── models.go │ └── projects │ └── projects.go ├── lwcomponent ├── DESIGN.md ├── api_info.go ├── api_info_test.go ├── catalog.go ├── catalog_test.go ├── cdk_component.go ├── cdk_component_test.go ├── cdk_executable.go ├── component.go ├── component_internal_test.go ├── component_test.go ├── dev_info.go ├── error.go ├── error_test.go ├── executable.go ├── host_info.go ├── http.go ├── http_test.go ├── imgs │ └── lacework-cdk-high-level-diagram.jpeg ├── keys │ └── lwcomponent-root.pub ├── library.go ├── minisign.go ├── minisign_internal_test.go ├── staging.go ├── staging_test.go ├── status.go ├── test_resources │ ├── env-vars.sh │ ├── env-vars.sig │ ├── hello-world.sh │ ├── hello-world.sig │ ├── hello-world2.sh │ └── hello-world2.sig └── types.go ├── lwconfig ├── README.md ├── _examples │ └── main.go ├── config.go └── config_test.go ├── lwdomain ├── README.md ├── domain.go └── domain_test.go ├── lwgenerate ├── _examples │ ├── aws │ │ └── main.go │ ├── aws_controltower │ │ └── main.go │ ├── azure │ │ └── main.go │ ├── gcp │ │ └── main.go │ └── hcl │ │ └── main.go ├── aws │ ├── aws.go │ └── aws_test.go ├── aws_controltower │ ├── aws_controltower.go │ └── aws_controltower_test.go ├── aws_eks_audit │ ├── aws_eks_audit.go │ └── aws_eks_audit_test.go ├── azure │ ├── azure.go │ ├── azure_test.go │ └── test-data │ │ ├── activity-log-with-all-subscriptions.tf │ │ ├── activity-log-with-existing-storage.tf │ │ ├── activity-log-with-lacework-profile.tf │ │ ├── activity-log-with-list-subscriptions.tf │ │ ├── activity-log-with-location.tf │ │ ├── activity-log-with-storage-account-network-rules.tf │ │ ├── activity_log_with_config.tf │ │ ├── activity_log_with_config_azureadprovider_args.tf │ │ ├── activity_log_with_config_extra.tf │ │ ├── activity_log_with_config_provider_args.tf │ │ ├── activity_log_with_config_root_blocks.tf │ │ ├── activity_log_without_config.tf │ │ ├── agentless_subscription_multiregion.tf │ │ ├── agentless_subscription_singleregion.tf │ │ ├── agentless_tenant_multiregion.tf │ │ ├── agentless_tenant_singleregion.tf │ │ ├── config-log-with-list-subscriptions.tf │ │ ├── config-with-all-subscriptions.tf │ │ ├── config-with-azurerm-subscription.tf │ │ ├── config-with-management-group.tf │ │ ├── config_without_activity_log.tf │ │ ├── customer-ad-details.tf │ │ ├── entra-id-activity-log-event-hub-location-and-partition.tf │ │ ├── entra-id-activity-log-existing-ad-app.tf │ │ ├── entra-id-activity-log-existing-event-hub-ns.tf │ │ ├── entra-id-activity-log-no-custom-input.tf │ │ ├── renamed_activity_log.tf │ │ ├── renamed_config.tf │ │ └── renamed_config_and_activity_log.tf ├── constants.go ├── gcp │ ├── gcp.go │ ├── gcp_test.go │ ├── gke.go │ ├── gke_test.go │ ├── service_account.go │ ├── service_account_test.go │ └── test_resources │ │ ├── creds_no_client_email.json │ │ ├── creds_no_private_key.json │ │ ├── invalid_json.json │ │ └── private_key_client_email_valid.json ├── hcl.go ├── hcl_test.go └── oci │ ├── oci.go │ └── oci_test.go ├── lwlogger ├── README.md ├── _examples │ ├── io-writer │ │ └── main.go │ └── simple-usage │ │ └── main.go ├── logger.go └── logger_test.go ├── lwpreflight ├── aws │ ├── aws.go │ ├── caller.go │ ├── constants.go │ ├── constraint.go │ ├── detail.go │ ├── permission.go │ ├── policy.go │ ├── util.go │ └── util_test.go ├── azure │ ├── azure.go │ ├── caller.go │ ├── constants.go │ ├── constraint.go │ ├── detail.go │ ├── permission.go │ └── policy.go ├── gcp │ ├── caller.go │ ├── constants.go │ ├── constraint.go │ ├── detail.go │ ├── gcp.go │ ├── permission.go │ └── policy.go ├── logger │ └── logger.go └── verbosewriter │ └── verbosewriter.go ├── lwrunner ├── awsrunner.go ├── awsrunner_test.go ├── gcprunner.go ├── runner.go ├── runner_test.go └── ssh.go ├── lwseverity ├── severity.go └── severity_test.go ├── lwtime ├── README.md ├── _examples │ ├── natural-time │ │ └── main.go │ └── relative-time │ │ └── main.go ├── epoch.go ├── epoch_test.go ├── epochstring.go ├── epochstring_test.go ├── nanotime.go ├── nattime.go ├── nattime_internal_test.go ├── nattime_test.go ├── reltime.go ├── reltime_internal_test.go ├── reltime_test.go ├── rfc1123z.go ├── rfc1123z_test.go └── rfc3339.go ├── lwupdater ├── README.md ├── _examples │ └── main.go ├── updater.go └── updater_test.go ├── proto └── v1 │ └── cdk.proto ├── scripts ├── chocolatey │ ├── build │ │ ├── lacework-cli.nuspec │ │ └── tools │ │ │ ├── chocolateyinstall.ps1 │ │ │ └── chocolateyuninstall.ps1 │ ├── lacework.png │ └── package.ps1 ├── codefresh.ps1 ├── docs │ └── doc_gen.go ├── git_env.sh ├── githooks │ └── commit-msg ├── integration_test_ctx.sh ├── prepare_test_resources.sh ├── project.env ├── release.sh ├── release_containers.sh └── version_updater.sh └── vendor ├── aead.dev └── minisign │ ├── .gitignore │ ├── .golangci.yml │ ├── LICENSE │ ├── README.md │ ├── minisign.go │ ├── private.go │ ├── public.go │ └── signature.go ├── cloud.google.com └── go │ ├── .gitignore │ ├── .release-please-manifest-individual.json │ ├── .release-please-manifest-submodules.json │ ├── .release-please-manifest.json │ ├── CHANGES.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── RELEASING.md │ ├── SECURITY.md │ ├── 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_attachments_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 │ │ ├── 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 │ ├── debug.md │ ├── doc.go │ ├── go.work │ ├── go.work.sum │ ├── iam │ ├── LICENSE │ └── apiv1 │ │ └── iampb │ │ ├── iam_policy.pb.go │ │ ├── options.pb.go │ │ ├── policy.pb.go │ │ └── resource_policy_member.pb.go │ ├── longrunning │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── autogen │ │ ├── auxiliary.go │ │ ├── auxiliary_go123.go │ │ ├── doc.go │ │ ├── from_conn.go │ │ ├── gapic_metadata.json │ │ ├── helpers.go │ │ ├── info.go │ │ ├── longrunningpb │ │ │ └── operations.pb.go │ │ └── operations_client.go │ ├── longrunning.go │ └── tidyfix.go │ ├── migration.md │ ├── oslogin │ ├── LICENSE │ ├── apiv1 │ │ ├── auxiliary.go │ │ ├── auxiliary_go123.go │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── os_login_client.go │ │ ├── osloginpb │ │ │ └── oslogin.pb.go │ │ └── version.go │ ├── common │ │ └── commonpb │ │ │ └── common.pb.go │ └── internal │ │ └── version.go │ ├── release-please-config-individual.json │ ├── release-please-config-yoshi-submodules.json │ ├── release-please-config.json │ ├── resourcemanager │ ├── LICENSE │ ├── apiv3 │ │ ├── auxiliary.go │ │ ├── auxiliary_go123.go │ │ ├── doc.go │ │ ├── folders_client.go │ │ ├── gapic_metadata.json │ │ ├── helpers.go │ │ ├── organizations_client.go │ │ ├── projects_client.go │ │ ├── resourcemanagerpb │ │ │ ├── folders.pb.go │ │ │ ├── organizations.pb.go │ │ │ ├── projects.pb.go │ │ │ ├── tag_bindings.pb.go │ │ │ ├── tag_holds.pb.go │ │ │ ├── tag_keys.pb.go │ │ │ └── tag_values.pb.go │ │ ├── tag_bindings_client.go │ │ ├── tag_holds_client.go │ │ ├── tag_keys_client.go │ │ ├── tag_values_client.go │ │ └── version.go │ └── internal │ │ └── version.go │ └── testing.md ├── dario.cat └── mergo │ ├── .deepsource.toml │ ├── .gitignore │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── doc.go │ ├── map.go │ ├── merge.go │ └── mergo.go ├── github.com ├── AlecAivazis │ └── survey │ │ └── v2 │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _tasks.hcl │ │ ├── confirm.go │ │ ├── core │ │ ├── template.go │ │ └── write.go │ │ ├── editor.go │ │ ├── filter.go │ │ ├── input.go │ │ ├── multiline.go │ │ ├── multiselect.go │ │ ├── password.go │ │ ├── renderer.go │ │ ├── select.go │ │ ├── survey.go │ │ ├── terminal │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── buffered_reader.go │ │ ├── cursor.go │ │ ├── cursor_windows.go │ │ ├── display.go │ │ ├── display_posix.go │ │ ├── display_windows.go │ │ ├── error.go │ │ ├── output.go │ │ ├── output_windows.go │ │ ├── runereader.go │ │ ├── runereader_bsd.go │ │ ├── runereader_linux.go │ │ ├── runereader_posix.go │ │ ├── runereader_ppc64le.go │ │ ├── runereader_windows.go │ │ ├── sequences.go │ │ ├── stdio.go │ │ ├── syscall_windows.go │ │ └── terminal.go │ │ ├── transform.go │ │ └── validate.go ├── 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 │ │ ├── authorization │ │ └── armauthorization │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── autorest.md │ │ │ ├── build.go │ │ │ ├── ci.yml │ │ │ ├── zz_generated_classicadministrators_client.go │ │ │ ├── zz_generated_constants.go │ │ │ ├── zz_generated_eligiblechildresources_client.go │ │ │ ├── zz_generated_globaladministrator_client.go │ │ │ ├── zz_generated_models.go │ │ │ ├── zz_generated_models_serde.go │ │ │ ├── zz_generated_permissions_client.go │ │ │ ├── zz_generated_polymorphic_helpers.go │ │ │ ├── zz_generated_provideroperationsmetadata_client.go │ │ │ ├── zz_generated_response_types.go │ │ │ ├── zz_generated_roleassignments_client.go │ │ │ ├── zz_generated_roleassignmentscheduleinstances_client.go │ │ │ ├── zz_generated_roleassignmentschedulerequests_client.go │ │ │ ├── zz_generated_roleassignmentschedules_client.go │ │ │ ├── zz_generated_roledefinitions_client.go │ │ │ ├── zz_generated_roleeligibilityscheduleinstances_client.go │ │ │ ├── zz_generated_roleeligibilityschedulerequests_client.go │ │ │ ├── zz_generated_roleeligibilityschedules_client.go │ │ │ ├── zz_generated_rolemanagementpolicies_client.go │ │ │ ├── zz_generated_rolemanagementpolicyassignments_client.go │ │ │ └── zz_generated_time_rfc3339.go │ │ ├── network │ │ └── armnetwork │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── adminrulecollections_client.go │ │ │ ├── adminrules_client.go │ │ │ ├── applicationgatewayprivateendpointconnections_client.go │ │ │ ├── applicationgatewayprivatelinkresources_client.go │ │ │ ├── applicationgateways_client.go │ │ │ ├── applicationsecuritygroups_client.go │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── firewallpolicyidpssignatures_client.go │ │ │ ├── firewallpolicyidpssignaturesfiltervalues_client.go │ │ │ ├── firewallpolicyidpssignaturesoverrides_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_client.go │ │ │ ├── interfacetapconfigurations_client.go │ │ │ ├── ipallocations_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 │ │ │ ├── managers_client.go │ │ │ ├── models.go │ │ │ ├── models_serde.go │ │ │ ├── natgateways_client.go │ │ │ ├── natrules_client.go │ │ │ ├── operations_client.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 │ │ │ ├── resourcenavigationlinks_client.go │ │ │ ├── response_types.go │ │ │ ├── routefilterrules_client.go │ │ │ ├── routefilters_client.go │ │ │ ├── routes_client.go │ │ │ ├── routetables_client.go │ │ │ ├── routingintent_client.go │ │ │ ├── scopeconnections_client.go │ │ │ ├── securityadminconfigurations_client.go │ │ │ ├── securitygroups_client.go │ │ │ ├── securitypartnerproviders_client.go │ │ │ ├── securityrules_client.go │ │ │ ├── serviceassociationlinks_client.go │ │ │ ├── serviceendpointpolicies_client.go │ │ │ ├── serviceendpointpolicydefinitions_client.go │ │ │ ├── servicetaginformation_client.go │ │ │ ├── servicetags_client.go │ │ │ ├── staticmembers_client.go │ │ │ ├── subnets_client.go │ │ │ ├── subscriptionnetworkmanagerconnections_client.go │ │ │ ├── time_rfc3339.go │ │ │ ├── usages_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 │ │ └── armsubscriptions │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── assets.json │ │ ├── autorest.md │ │ ├── build.go │ │ ├── ci.yml │ │ ├── client.go │ │ ├── client_factory.go │ │ ├── constants.go │ │ ├── models.go │ │ ├── models_serde.go │ │ ├── operations_client.go │ │ ├── options.go │ │ ├── response_types.go │ │ ├── subscription_client.go │ │ └── tenants_client.go ├── 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 │ │ ├── decode_go116.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal │ │ └── tz.go │ │ ├── lex.go │ │ ├── meta.go │ │ ├── parse.go │ │ ├── type_fields.go │ │ └── type_toml.go ├── Masterminds │ └── semver │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── collection.go │ │ ├── constraints.go │ │ ├── doc.go │ │ ├── version.go │ │ └── version_fuzz.go ├── Microsoft │ └── go-winio │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── backup.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 │ │ ├── tools.go │ │ └── zsyscall_windows.go ├── Netflix │ └── go-expect │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── OSSMETADATA │ │ ├── README.md │ │ ├── console.go │ │ ├── doc.go │ │ ├── expect.go │ │ ├── expect_opt.go │ │ ├── passthrough_pipe.go │ │ ├── reader_lease.go │ │ └── test_log.go ├── ProtonMail │ └── go-crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bitcurves │ │ └── bitcurve.go │ │ ├── brainpool │ │ ├── brainpool.go │ │ └── rcurve.go │ │ ├── eax │ │ ├── eax.go │ │ ├── eax_test_vectors.go │ │ └── random_vectors.go │ │ ├── internal │ │ └── byteutil │ │ │ └── byteutil.go │ │ ├── ocb │ │ ├── ocb.go │ │ ├── random_vectors.go │ │ ├── rfc7253_test_vectors_suite_a.go │ │ └── rfc7253_test_vectors_suite_b.go │ │ └── openpgp │ │ ├── aes │ │ └── keywrap │ │ │ └── keywrap.go │ │ ├── armor │ │ ├── armor.go │ │ └── encode.go │ │ ├── canonical_text.go │ │ ├── ecdh │ │ └── ecdh.go │ │ ├── ecdsa │ │ └── ecdsa.go │ │ ├── ed25519 │ │ └── ed25519.go │ │ ├── ed448 │ │ └── ed448.go │ │ ├── eddsa │ │ └── eddsa.go │ │ ├── elgamal │ │ └── elgamal.go │ │ ├── errors │ │ └── errors.go │ │ ├── hash.go │ │ ├── internal │ │ ├── algorithm │ │ │ ├── aead.go │ │ │ ├── cipher.go │ │ │ └── hash.go │ │ ├── ecc │ │ │ ├── curve25519.go │ │ │ ├── curve_info.go │ │ │ ├── curves.go │ │ │ ├── ed25519.go │ │ │ ├── ed448.go │ │ │ ├── generic.go │ │ │ └── x448.go │ │ └── encoding │ │ │ ├── encoding.go │ │ │ ├── mpi.go │ │ │ └── oid.go │ │ ├── key_generation.go │ │ ├── keys.go │ │ ├── keys_test_data.go │ │ ├── packet │ │ ├── aead_config.go │ │ ├── aead_crypter.go │ │ ├── aead_encrypted.go │ │ ├── compressed.go │ │ ├── config.go │ │ ├── config_v5.go │ │ ├── encrypted_key.go │ │ ├── literal.go │ │ ├── marker.go │ │ ├── notation.go │ │ ├── ocfb.go │ │ ├── one_pass_signature.go │ │ ├── opaque.go │ │ ├── packet.go │ │ ├── packet_sequence.go │ │ ├── packet_unsupported.go │ │ ├── padding.go │ │ ├── private_key.go │ │ ├── private_key_test_data.go │ │ ├── public_key.go │ │ ├── public_key_test_data.go │ │ ├── reader.go │ │ ├── recipient.go │ │ ├── signature.go │ │ ├── symmetric_key_encrypted.go │ │ ├── symmetrically_encrypted.go │ │ ├── symmetrically_encrypted_aead.go │ │ ├── symmetrically_encrypted_mdc.go │ │ ├── userattribute.go │ │ └── userid.go │ │ ├── read.go │ │ ├── read_write_test_data.go │ │ ├── s2k │ │ ├── s2k.go │ │ ├── s2k_cache.go │ │ └── s2k_config.go │ │ ├── write.go │ │ ├── x25519 │ │ └── x25519.go │ │ └── x448 │ │ └── x448.go ├── abiosoft │ └── colima │ │ ├── LICENSE │ │ └── util │ │ └── terminal │ │ ├── output.go │ │ └── terminal.go ├── agext │ └── levenshtein │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── DCO │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── levenshtein.go │ │ └── params.go ├── apparentlymart │ └── go-textseg │ │ └── v13 │ │ ├── LICENSE │ │ └── textseg │ │ ├── all_tokens.go │ │ ├── emoji_table.rl │ │ ├── generate.go │ │ ├── grapheme_clusters.go │ │ ├── grapheme_clusters.rl │ │ ├── grapheme_clusters_table.rl │ │ ├── tables.go │ │ ├── unicode2ragel.rb │ │ └── utf8_seqs.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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── internal │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── scheme.go │ │ │ │ └── smithy │ │ │ │ │ ├── bearer_token_adapter.go │ │ │ │ │ ├── bearer_token_signer_adapter.go │ │ │ │ │ ├── credentials_adapter.go │ │ │ │ │ ├── smithy.go │ │ │ │ │ └── v4signer_adapter.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 │ │ └── service │ │ │ ├── cloudtrail │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AddTags.go │ │ │ ├── api_op_CancelQuery.go │ │ │ ├── api_op_CreateChannel.go │ │ │ ├── api_op_CreateDashboard.go │ │ │ ├── api_op_CreateEventDataStore.go │ │ │ ├── api_op_CreateTrail.go │ │ │ ├── api_op_DeleteChannel.go │ │ │ ├── api_op_DeleteDashboard.go │ │ │ ├── api_op_DeleteEventDataStore.go │ │ │ ├── api_op_DeleteResourcePolicy.go │ │ │ ├── api_op_DeleteTrail.go │ │ │ ├── api_op_DeregisterOrganizationDelegatedAdmin.go │ │ │ ├── api_op_DescribeQuery.go │ │ │ ├── api_op_DescribeTrails.go │ │ │ ├── api_op_DisableFederation.go │ │ │ ├── api_op_EnableFederation.go │ │ │ ├── api_op_GenerateQuery.go │ │ │ ├── api_op_GetChannel.go │ │ │ ├── api_op_GetDashboard.go │ │ │ ├── api_op_GetEventDataStore.go │ │ │ ├── api_op_GetEventSelectors.go │ │ │ ├── api_op_GetImport.go │ │ │ ├── api_op_GetInsightSelectors.go │ │ │ ├── api_op_GetQueryResults.go │ │ │ ├── api_op_GetResourcePolicy.go │ │ │ ├── api_op_GetTrail.go │ │ │ ├── api_op_GetTrailStatus.go │ │ │ ├── api_op_ListChannels.go │ │ │ ├── api_op_ListDashboards.go │ │ │ ├── api_op_ListEventDataStores.go │ │ │ ├── api_op_ListImportFailures.go │ │ │ ├── api_op_ListImports.go │ │ │ ├── api_op_ListInsightsMetricData.go │ │ │ ├── api_op_ListPublicKeys.go │ │ │ ├── api_op_ListQueries.go │ │ │ ├── api_op_ListTags.go │ │ │ ├── api_op_ListTrails.go │ │ │ ├── api_op_LookupEvents.go │ │ │ ├── api_op_PutEventSelectors.go │ │ │ ├── api_op_PutInsightSelectors.go │ │ │ ├── api_op_PutResourcePolicy.go │ │ │ ├── api_op_RegisterOrganizationDelegatedAdmin.go │ │ │ ├── api_op_RemoveTags.go │ │ │ ├── api_op_RestoreEventDataStore.go │ │ │ ├── api_op_SearchSampleQueries.go │ │ │ ├── api_op_StartDashboardRefresh.go │ │ │ ├── api_op_StartEventDataStoreIngestion.go │ │ │ ├── api_op_StartImport.go │ │ │ ├── api_op_StartLogging.go │ │ │ ├── api_op_StartQuery.go │ │ │ ├── api_op_StopEventDataStoreIngestion.go │ │ │ ├── api_op_StopImport.go │ │ │ ├── api_op_StopLogging.go │ │ │ ├── api_op_UpdateChannel.go │ │ │ ├── api_op_UpdateDashboard.go │ │ │ ├── api_op_UpdateEventDataStore.go │ │ │ ├── api_op_UpdateTrail.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_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_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_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_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_DeleteInstanceConnectEndpoint.go │ │ │ ├── api_op_DeleteInstanceEventWindow.go │ │ │ ├── api_op_DeleteInternetGateway.go │ │ │ ├── api_op_DeleteIpam.go │ │ │ ├── api_op_DeleteIpamExternalResourceVerificationToken.go │ │ │ ├── api_op_DeleteIpamPool.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_DescribeCapacityReservationBillingRequests.go │ │ │ ├── api_op_DescribeCapacityReservationFleets.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_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_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_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_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_GetAllowedImagesSettings.go │ │ │ ├── api_op_GetAssociatedEnclaveCertificateIamRoles.go │ │ │ ├── api_op_GetAssociatedIpv6PoolCidrs.go │ │ │ ├── api_op_GetAwsNetworkPerformanceData.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_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_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_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_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 │ │ │ ├── ec2instanceconnect │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_SendSSHPublicKey.go │ │ │ ├── api_op_SendSerialConsoleSSHPublicKey.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 │ │ │ ├── eks │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AssociateAccessPolicy.go │ │ │ ├── api_op_AssociateEncryptionConfig.go │ │ │ ├── api_op_AssociateIdentityProviderConfig.go │ │ │ ├── api_op_CreateAccessEntry.go │ │ │ ├── api_op_CreateAddon.go │ │ │ ├── api_op_CreateCluster.go │ │ │ ├── api_op_CreateEksAnywhereSubscription.go │ │ │ ├── api_op_CreateFargateProfile.go │ │ │ ├── api_op_CreateNodegroup.go │ │ │ ├── api_op_CreatePodIdentityAssociation.go │ │ │ ├── api_op_DeleteAccessEntry.go │ │ │ ├── api_op_DeleteAddon.go │ │ │ ├── api_op_DeleteCluster.go │ │ │ ├── api_op_DeleteEksAnywhereSubscription.go │ │ │ ├── api_op_DeleteFargateProfile.go │ │ │ ├── api_op_DeleteNodegroup.go │ │ │ ├── api_op_DeletePodIdentityAssociation.go │ │ │ ├── api_op_DeregisterCluster.go │ │ │ ├── api_op_DescribeAccessEntry.go │ │ │ ├── api_op_DescribeAddon.go │ │ │ ├── api_op_DescribeAddonConfiguration.go │ │ │ ├── api_op_DescribeAddonVersions.go │ │ │ ├── api_op_DescribeCluster.go │ │ │ ├── api_op_DescribeClusterVersions.go │ │ │ ├── api_op_DescribeEksAnywhereSubscription.go │ │ │ ├── api_op_DescribeFargateProfile.go │ │ │ ├── api_op_DescribeIdentityProviderConfig.go │ │ │ ├── api_op_DescribeInsight.go │ │ │ ├── api_op_DescribeNodegroup.go │ │ │ ├── api_op_DescribePodIdentityAssociation.go │ │ │ ├── api_op_DescribeUpdate.go │ │ │ ├── api_op_DisassociateAccessPolicy.go │ │ │ ├── api_op_DisassociateIdentityProviderConfig.go │ │ │ ├── api_op_ListAccessEntries.go │ │ │ ├── api_op_ListAccessPolicies.go │ │ │ ├── api_op_ListAddons.go │ │ │ ├── api_op_ListAssociatedAccessPolicies.go │ │ │ ├── api_op_ListClusters.go │ │ │ ├── api_op_ListEksAnywhereSubscriptions.go │ │ │ ├── api_op_ListFargateProfiles.go │ │ │ ├── api_op_ListIdentityProviderConfigs.go │ │ │ ├── api_op_ListInsights.go │ │ │ ├── api_op_ListNodegroups.go │ │ │ ├── api_op_ListPodIdentityAssociations.go │ │ │ ├── api_op_ListTagsForResource.go │ │ │ ├── api_op_ListUpdates.go │ │ │ ├── api_op_RegisterCluster.go │ │ │ ├── api_op_TagResource.go │ │ │ ├── api_op_UntagResource.go │ │ │ ├── api_op_UpdateAccessEntry.go │ │ │ ├── api_op_UpdateAddon.go │ │ │ ├── api_op_UpdateClusterConfig.go │ │ │ ├── api_op_UpdateClusterVersion.go │ │ │ ├── api_op_UpdateEksAnywhereSubscription.go │ │ │ ├── api_op_UpdateNodegroupConfig.go │ │ │ ├── api_op_UpdateNodegroupVersion.go │ │ │ ├── api_op_UpdatePodIdentityAssociation.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 │ │ │ ├── iam │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AddClientIDToOpenIDConnectProvider.go │ │ │ ├── api_op_AddRoleToInstanceProfile.go │ │ │ ├── api_op_AddUserToGroup.go │ │ │ ├── api_op_AttachGroupPolicy.go │ │ │ ├── api_op_AttachRolePolicy.go │ │ │ ├── api_op_AttachUserPolicy.go │ │ │ ├── api_op_ChangePassword.go │ │ │ ├── api_op_CreateAccessKey.go │ │ │ ├── api_op_CreateAccountAlias.go │ │ │ ├── api_op_CreateGroup.go │ │ │ ├── api_op_CreateInstanceProfile.go │ │ │ ├── api_op_CreateLoginProfile.go │ │ │ ├── api_op_CreateOpenIDConnectProvider.go │ │ │ ├── api_op_CreatePolicy.go │ │ │ ├── api_op_CreatePolicyVersion.go │ │ │ ├── api_op_CreateRole.go │ │ │ ├── api_op_CreateSAMLProvider.go │ │ │ ├── api_op_CreateServiceLinkedRole.go │ │ │ ├── api_op_CreateServiceSpecificCredential.go │ │ │ ├── api_op_CreateUser.go │ │ │ ├── api_op_CreateVirtualMFADevice.go │ │ │ ├── api_op_DeactivateMFADevice.go │ │ │ ├── api_op_DeleteAccessKey.go │ │ │ ├── api_op_DeleteAccountAlias.go │ │ │ ├── api_op_DeleteAccountPasswordPolicy.go │ │ │ ├── api_op_DeleteGroup.go │ │ │ ├── api_op_DeleteGroupPolicy.go │ │ │ ├── api_op_DeleteInstanceProfile.go │ │ │ ├── api_op_DeleteLoginProfile.go │ │ │ ├── api_op_DeleteOpenIDConnectProvider.go │ │ │ ├── api_op_DeletePolicy.go │ │ │ ├── api_op_DeletePolicyVersion.go │ │ │ ├── api_op_DeleteRole.go │ │ │ ├── api_op_DeleteRolePermissionsBoundary.go │ │ │ ├── api_op_DeleteRolePolicy.go │ │ │ ├── api_op_DeleteSAMLProvider.go │ │ │ ├── api_op_DeleteSSHPublicKey.go │ │ │ ├── api_op_DeleteServerCertificate.go │ │ │ ├── api_op_DeleteServiceLinkedRole.go │ │ │ ├── api_op_DeleteServiceSpecificCredential.go │ │ │ ├── api_op_DeleteSigningCertificate.go │ │ │ ├── api_op_DeleteUser.go │ │ │ ├── api_op_DeleteUserPermissionsBoundary.go │ │ │ ├── api_op_DeleteUserPolicy.go │ │ │ ├── api_op_DeleteVirtualMFADevice.go │ │ │ ├── api_op_DetachGroupPolicy.go │ │ │ ├── api_op_DetachRolePolicy.go │ │ │ ├── api_op_DetachUserPolicy.go │ │ │ ├── api_op_DisableOrganizationsRootCredentialsManagement.go │ │ │ ├── api_op_DisableOrganizationsRootSessions.go │ │ │ ├── api_op_EnableMFADevice.go │ │ │ ├── api_op_EnableOrganizationsRootCredentialsManagement.go │ │ │ ├── api_op_EnableOrganizationsRootSessions.go │ │ │ ├── api_op_GenerateCredentialReport.go │ │ │ ├── api_op_GenerateOrganizationsAccessReport.go │ │ │ ├── api_op_GenerateServiceLastAccessedDetails.go │ │ │ ├── api_op_GetAccessKeyLastUsed.go │ │ │ ├── api_op_GetAccountAuthorizationDetails.go │ │ │ ├── api_op_GetAccountPasswordPolicy.go │ │ │ ├── api_op_GetAccountSummary.go │ │ │ ├── api_op_GetContextKeysForCustomPolicy.go │ │ │ ├── api_op_GetContextKeysForPrincipalPolicy.go │ │ │ ├── api_op_GetCredentialReport.go │ │ │ ├── api_op_GetGroup.go │ │ │ ├── api_op_GetGroupPolicy.go │ │ │ ├── api_op_GetInstanceProfile.go │ │ │ ├── api_op_GetLoginProfile.go │ │ │ ├── api_op_GetMFADevice.go │ │ │ ├── api_op_GetOpenIDConnectProvider.go │ │ │ ├── api_op_GetOrganizationsAccessReport.go │ │ │ ├── api_op_GetPolicy.go │ │ │ ├── api_op_GetPolicyVersion.go │ │ │ ├── api_op_GetRole.go │ │ │ ├── api_op_GetRolePolicy.go │ │ │ ├── api_op_GetSAMLProvider.go │ │ │ ├── api_op_GetSSHPublicKey.go │ │ │ ├── api_op_GetServerCertificate.go │ │ │ ├── api_op_GetServiceLastAccessedDetails.go │ │ │ ├── api_op_GetServiceLastAccessedDetailsWithEntities.go │ │ │ ├── api_op_GetServiceLinkedRoleDeletionStatus.go │ │ │ ├── api_op_GetUser.go │ │ │ ├── api_op_GetUserPolicy.go │ │ │ ├── api_op_ListAccessKeys.go │ │ │ ├── api_op_ListAccountAliases.go │ │ │ ├── api_op_ListAttachedGroupPolicies.go │ │ │ ├── api_op_ListAttachedRolePolicies.go │ │ │ ├── api_op_ListAttachedUserPolicies.go │ │ │ ├── api_op_ListEntitiesForPolicy.go │ │ │ ├── api_op_ListGroupPolicies.go │ │ │ ├── api_op_ListGroups.go │ │ │ ├── api_op_ListGroupsForUser.go │ │ │ ├── api_op_ListInstanceProfileTags.go │ │ │ ├── api_op_ListInstanceProfiles.go │ │ │ ├── api_op_ListInstanceProfilesForRole.go │ │ │ ├── api_op_ListMFADeviceTags.go │ │ │ ├── api_op_ListMFADevices.go │ │ │ ├── api_op_ListOpenIDConnectProviderTags.go │ │ │ ├── api_op_ListOpenIDConnectProviders.go │ │ │ ├── api_op_ListOrganizationsFeatures.go │ │ │ ├── api_op_ListPolicies.go │ │ │ ├── api_op_ListPoliciesGrantingServiceAccess.go │ │ │ ├── api_op_ListPolicyTags.go │ │ │ ├── api_op_ListPolicyVersions.go │ │ │ ├── api_op_ListRolePolicies.go │ │ │ ├── api_op_ListRoleTags.go │ │ │ ├── api_op_ListRoles.go │ │ │ ├── api_op_ListSAMLProviderTags.go │ │ │ ├── api_op_ListSAMLProviders.go │ │ │ ├── api_op_ListSSHPublicKeys.go │ │ │ ├── api_op_ListServerCertificateTags.go │ │ │ ├── api_op_ListServerCertificates.go │ │ │ ├── api_op_ListServiceSpecificCredentials.go │ │ │ ├── api_op_ListSigningCertificates.go │ │ │ ├── api_op_ListUserPolicies.go │ │ │ ├── api_op_ListUserTags.go │ │ │ ├── api_op_ListUsers.go │ │ │ ├── api_op_ListVirtualMFADevices.go │ │ │ ├── api_op_PutGroupPolicy.go │ │ │ ├── api_op_PutRolePermissionsBoundary.go │ │ │ ├── api_op_PutRolePolicy.go │ │ │ ├── api_op_PutUserPermissionsBoundary.go │ │ │ ├── api_op_PutUserPolicy.go │ │ │ ├── api_op_RemoveClientIDFromOpenIDConnectProvider.go │ │ │ ├── api_op_RemoveRoleFromInstanceProfile.go │ │ │ ├── api_op_RemoveUserFromGroup.go │ │ │ ├── api_op_ResetServiceSpecificCredential.go │ │ │ ├── api_op_ResyncMFADevice.go │ │ │ ├── api_op_SetDefaultPolicyVersion.go │ │ │ ├── api_op_SetSecurityTokenServicePreferences.go │ │ │ ├── api_op_SimulateCustomPolicy.go │ │ │ ├── api_op_SimulatePrincipalPolicy.go │ │ │ ├── api_op_TagInstanceProfile.go │ │ │ ├── api_op_TagMFADevice.go │ │ │ ├── api_op_TagOpenIDConnectProvider.go │ │ │ ├── api_op_TagPolicy.go │ │ │ ├── api_op_TagRole.go │ │ │ ├── api_op_TagSAMLProvider.go │ │ │ ├── api_op_TagServerCertificate.go │ │ │ ├── api_op_TagUser.go │ │ │ ├── api_op_UntagInstanceProfile.go │ │ │ ├── api_op_UntagMFADevice.go │ │ │ ├── api_op_UntagOpenIDConnectProvider.go │ │ │ ├── api_op_UntagPolicy.go │ │ │ ├── api_op_UntagRole.go │ │ │ ├── api_op_UntagSAMLProvider.go │ │ │ ├── api_op_UntagServerCertificate.go │ │ │ ├── api_op_UntagUser.go │ │ │ ├── api_op_UpdateAccessKey.go │ │ │ ├── api_op_UpdateAccountPasswordPolicy.go │ │ │ ├── api_op_UpdateAssumeRolePolicy.go │ │ │ ├── api_op_UpdateGroup.go │ │ │ ├── api_op_UpdateLoginProfile.go │ │ │ ├── api_op_UpdateOpenIDConnectProviderThumbprint.go │ │ │ ├── api_op_UpdateRole.go │ │ │ ├── api_op_UpdateRoleDescription.go │ │ │ ├── api_op_UpdateSAMLProvider.go │ │ │ ├── api_op_UpdateSSHPublicKey.go │ │ │ ├── api_op_UpdateServerCertificate.go │ │ │ ├── api_op_UpdateServiceSpecificCredential.go │ │ │ ├── api_op_UpdateSigningCertificate.go │ │ │ ├── api_op_UpdateUser.go │ │ │ ├── api_op_UploadSSHPublicKey.go │ │ │ ├── api_op_UploadServerCertificate.go │ │ │ ├── api_op_UploadSigningCertificate.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 │ │ │ ├── internal │ │ │ ├── accept-encoding │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── accept_encoding_gzip.go │ │ │ │ ├── doc.go │ │ │ │ └── go_module_metadata.go │ │ │ └── presigned-url │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ └── middleware.go │ │ │ ├── organizations │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AcceptHandshake.go │ │ │ ├── api_op_AttachPolicy.go │ │ │ ├── api_op_CancelHandshake.go │ │ │ ├── api_op_CloseAccount.go │ │ │ ├── api_op_CreateAccount.go │ │ │ ├── api_op_CreateGovCloudAccount.go │ │ │ ├── api_op_CreateOrganization.go │ │ │ ├── api_op_CreateOrganizationalUnit.go │ │ │ ├── api_op_CreatePolicy.go │ │ │ ├── api_op_DeclineHandshake.go │ │ │ ├── api_op_DeleteOrganization.go │ │ │ ├── api_op_DeleteOrganizationalUnit.go │ │ │ ├── api_op_DeletePolicy.go │ │ │ ├── api_op_DeleteResourcePolicy.go │ │ │ ├── api_op_DeregisterDelegatedAdministrator.go │ │ │ ├── api_op_DescribeAccount.go │ │ │ ├── api_op_DescribeCreateAccountStatus.go │ │ │ ├── api_op_DescribeEffectivePolicy.go │ │ │ ├── api_op_DescribeHandshake.go │ │ │ ├── api_op_DescribeOrganization.go │ │ │ ├── api_op_DescribeOrganizationalUnit.go │ │ │ ├── api_op_DescribePolicy.go │ │ │ ├── api_op_DescribeResourcePolicy.go │ │ │ ├── api_op_DetachPolicy.go │ │ │ ├── api_op_DisableAWSServiceAccess.go │ │ │ ├── api_op_DisablePolicyType.go │ │ │ ├── api_op_EnableAWSServiceAccess.go │ │ │ ├── api_op_EnableAllFeatures.go │ │ │ ├── api_op_EnablePolicyType.go │ │ │ ├── api_op_InviteAccountToOrganization.go │ │ │ ├── api_op_LeaveOrganization.go │ │ │ ├── api_op_ListAWSServiceAccessForOrganization.go │ │ │ ├── api_op_ListAccounts.go │ │ │ ├── api_op_ListAccountsForParent.go │ │ │ ├── api_op_ListChildren.go │ │ │ ├── api_op_ListCreateAccountStatus.go │ │ │ ├── api_op_ListDelegatedAdministrators.go │ │ │ ├── api_op_ListDelegatedServicesForAccount.go │ │ │ ├── api_op_ListHandshakesForAccount.go │ │ │ ├── api_op_ListHandshakesForOrganization.go │ │ │ ├── api_op_ListOrganizationalUnitsForParent.go │ │ │ ├── api_op_ListParents.go │ │ │ ├── api_op_ListPolicies.go │ │ │ ├── api_op_ListPoliciesForTarget.go │ │ │ ├── api_op_ListRoots.go │ │ │ ├── api_op_ListTagsForResource.go │ │ │ ├── api_op_ListTargetsForPolicy.go │ │ │ ├── api_op_MoveAccount.go │ │ │ ├── api_op_PutResourcePolicy.go │ │ │ ├── api_op_RegisterDelegatedAdministrator.go │ │ │ ├── api_op_RemoveAccountFromOrganization.go │ │ │ ├── api_op_TagResource.go │ │ │ ├── api_op_UntagResource.go │ │ │ ├── api_op_UpdateOrganizationalUnit.go │ │ │ ├── api_op_UpdatePolicy.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 │ │ │ ├── servicequotas │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AssociateServiceQuotaTemplate.go │ │ │ ├── api_op_CreateSupportCase.go │ │ │ ├── api_op_DeleteServiceQuotaIncreaseRequestFromTemplate.go │ │ │ ├── api_op_DisassociateServiceQuotaTemplate.go │ │ │ ├── api_op_GetAWSDefaultServiceQuota.go │ │ │ ├── api_op_GetAssociationForServiceQuotaTemplate.go │ │ │ ├── api_op_GetRequestedServiceQuotaChange.go │ │ │ ├── api_op_GetServiceQuota.go │ │ │ ├── api_op_GetServiceQuotaIncreaseRequestFromTemplate.go │ │ │ ├── api_op_ListAWSDefaultServiceQuotas.go │ │ │ ├── api_op_ListRequestedServiceQuotaChangeHistory.go │ │ │ ├── api_op_ListRequestedServiceQuotaChangeHistoryByQuota.go │ │ │ ├── api_op_ListServiceQuotaIncreaseRequestsInTemplate.go │ │ │ ├── api_op_ListServiceQuotas.go │ │ │ ├── api_op_ListServices.go │ │ │ ├── api_op_ListTagsForResource.go │ │ │ ├── api_op_PutServiceQuotaIncreaseRequestIntoTemplate.go │ │ │ ├── api_op_RequestServiceQuotaIncrease.go │ │ │ ├── api_op_TagResource.go │ │ │ ├── api_op_UntagResource.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 │ │ │ ├── ssm │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AddTagsToResource.go │ │ │ ├── api_op_AssociateOpsItemRelatedItem.go │ │ │ ├── api_op_CancelCommand.go │ │ │ ├── api_op_CancelMaintenanceWindowExecution.go │ │ │ ├── api_op_CreateActivation.go │ │ │ ├── api_op_CreateAssociation.go │ │ │ ├── api_op_CreateAssociationBatch.go │ │ │ ├── api_op_CreateDocument.go │ │ │ ├── api_op_CreateMaintenanceWindow.go │ │ │ ├── api_op_CreateOpsItem.go │ │ │ ├── api_op_CreateOpsMetadata.go │ │ │ ├── api_op_CreatePatchBaseline.go │ │ │ ├── api_op_CreateResourceDataSync.go │ │ │ ├── api_op_DeleteActivation.go │ │ │ ├── api_op_DeleteAssociation.go │ │ │ ├── api_op_DeleteDocument.go │ │ │ ├── api_op_DeleteInventory.go │ │ │ ├── api_op_DeleteMaintenanceWindow.go │ │ │ ├── api_op_DeleteOpsItem.go │ │ │ ├── api_op_DeleteOpsMetadata.go │ │ │ ├── api_op_DeleteParameter.go │ │ │ ├── api_op_DeleteParameters.go │ │ │ ├── api_op_DeletePatchBaseline.go │ │ │ ├── api_op_DeleteResourceDataSync.go │ │ │ ├── api_op_DeleteResourcePolicy.go │ │ │ ├── api_op_DeregisterManagedInstance.go │ │ │ ├── api_op_DeregisterPatchBaselineForPatchGroup.go │ │ │ ├── api_op_DeregisterTargetFromMaintenanceWindow.go │ │ │ ├── api_op_DeregisterTaskFromMaintenanceWindow.go │ │ │ ├── api_op_DescribeActivations.go │ │ │ ├── api_op_DescribeAssociation.go │ │ │ ├── api_op_DescribeAssociationExecutionTargets.go │ │ │ ├── api_op_DescribeAssociationExecutions.go │ │ │ ├── api_op_DescribeAutomationExecutions.go │ │ │ ├── api_op_DescribeAutomationStepExecutions.go │ │ │ ├── api_op_DescribeAvailablePatches.go │ │ │ ├── api_op_DescribeDocument.go │ │ │ ├── api_op_DescribeDocumentPermission.go │ │ │ ├── api_op_DescribeEffectiveInstanceAssociations.go │ │ │ ├── api_op_DescribeEffectivePatchesForPatchBaseline.go │ │ │ ├── api_op_DescribeInstanceAssociationsStatus.go │ │ │ ├── api_op_DescribeInstanceInformation.go │ │ │ ├── api_op_DescribeInstancePatchStates.go │ │ │ ├── api_op_DescribeInstancePatchStatesForPatchGroup.go │ │ │ ├── api_op_DescribeInstancePatches.go │ │ │ ├── api_op_DescribeInstanceProperties.go │ │ │ ├── api_op_DescribeInventoryDeletions.go │ │ │ ├── api_op_DescribeMaintenanceWindowExecutionTaskInvocations.go │ │ │ ├── api_op_DescribeMaintenanceWindowExecutionTasks.go │ │ │ ├── api_op_DescribeMaintenanceWindowExecutions.go │ │ │ ├── api_op_DescribeMaintenanceWindowSchedule.go │ │ │ ├── api_op_DescribeMaintenanceWindowTargets.go │ │ │ ├── api_op_DescribeMaintenanceWindowTasks.go │ │ │ ├── api_op_DescribeMaintenanceWindows.go │ │ │ ├── api_op_DescribeMaintenanceWindowsForTarget.go │ │ │ ├── api_op_DescribeOpsItems.go │ │ │ ├── api_op_DescribeParameters.go │ │ │ ├── api_op_DescribePatchBaselines.go │ │ │ ├── api_op_DescribePatchGroupState.go │ │ │ ├── api_op_DescribePatchGroups.go │ │ │ ├── api_op_DescribePatchProperties.go │ │ │ ├── api_op_DescribeSessions.go │ │ │ ├── api_op_DisassociateOpsItemRelatedItem.go │ │ │ ├── api_op_GetAccessToken.go │ │ │ ├── api_op_GetAutomationExecution.go │ │ │ ├── api_op_GetCalendarState.go │ │ │ ├── api_op_GetCommandInvocation.go │ │ │ ├── api_op_GetConnectionStatus.go │ │ │ ├── api_op_GetDefaultPatchBaseline.go │ │ │ ├── api_op_GetDeployablePatchSnapshotForInstance.go │ │ │ ├── api_op_GetDocument.go │ │ │ ├── api_op_GetExecutionPreview.go │ │ │ ├── api_op_GetInventory.go │ │ │ ├── api_op_GetInventorySchema.go │ │ │ ├── api_op_GetMaintenanceWindow.go │ │ │ ├── api_op_GetMaintenanceWindowExecution.go │ │ │ ├── api_op_GetMaintenanceWindowExecutionTask.go │ │ │ ├── api_op_GetMaintenanceWindowExecutionTaskInvocation.go │ │ │ ├── api_op_GetMaintenanceWindowTask.go │ │ │ ├── api_op_GetOpsItem.go │ │ │ ├── api_op_GetOpsMetadata.go │ │ │ ├── api_op_GetOpsSummary.go │ │ │ ├── api_op_GetParameter.go │ │ │ ├── api_op_GetParameterHistory.go │ │ │ ├── api_op_GetParameters.go │ │ │ ├── api_op_GetParametersByPath.go │ │ │ ├── api_op_GetPatchBaseline.go │ │ │ ├── api_op_GetPatchBaselineForPatchGroup.go │ │ │ ├── api_op_GetResourcePolicies.go │ │ │ ├── api_op_GetServiceSetting.go │ │ │ ├── api_op_LabelParameterVersion.go │ │ │ ├── api_op_ListAssociationVersions.go │ │ │ ├── api_op_ListAssociations.go │ │ │ ├── api_op_ListCommandInvocations.go │ │ │ ├── api_op_ListCommands.go │ │ │ ├── api_op_ListComplianceItems.go │ │ │ ├── api_op_ListComplianceSummaries.go │ │ │ ├── api_op_ListDocumentMetadataHistory.go │ │ │ ├── api_op_ListDocumentVersions.go │ │ │ ├── api_op_ListDocuments.go │ │ │ ├── api_op_ListInventoryEntries.go │ │ │ ├── api_op_ListNodes.go │ │ │ ├── api_op_ListNodesSummary.go │ │ │ ├── api_op_ListOpsItemEvents.go │ │ │ ├── api_op_ListOpsItemRelatedItems.go │ │ │ ├── api_op_ListOpsMetadata.go │ │ │ ├── api_op_ListResourceComplianceSummaries.go │ │ │ ├── api_op_ListResourceDataSync.go │ │ │ ├── api_op_ListTagsForResource.go │ │ │ ├── api_op_ModifyDocumentPermission.go │ │ │ ├── api_op_PutComplianceItems.go │ │ │ ├── api_op_PutInventory.go │ │ │ ├── api_op_PutParameter.go │ │ │ ├── api_op_PutResourcePolicy.go │ │ │ ├── api_op_RegisterDefaultPatchBaseline.go │ │ │ ├── api_op_RegisterPatchBaselineForPatchGroup.go │ │ │ ├── api_op_RegisterTargetWithMaintenanceWindow.go │ │ │ ├── api_op_RegisterTaskWithMaintenanceWindow.go │ │ │ ├── api_op_RemoveTagsFromResource.go │ │ │ ├── api_op_ResetServiceSetting.go │ │ │ ├── api_op_ResumeSession.go │ │ │ ├── api_op_SendAutomationSignal.go │ │ │ ├── api_op_SendCommand.go │ │ │ ├── api_op_StartAccessRequest.go │ │ │ ├── api_op_StartAssociationsOnce.go │ │ │ ├── api_op_StartAutomationExecution.go │ │ │ ├── api_op_StartChangeRequestExecution.go │ │ │ ├── api_op_StartExecutionPreview.go │ │ │ ├── api_op_StartSession.go │ │ │ ├── api_op_StopAutomationExecution.go │ │ │ ├── api_op_TerminateSession.go │ │ │ ├── api_op_UnlabelParameterVersion.go │ │ │ ├── api_op_UpdateAssociation.go │ │ │ ├── api_op_UpdateAssociationStatus.go │ │ │ ├── api_op_UpdateDocument.go │ │ │ ├── api_op_UpdateDocumentDefaultVersion.go │ │ │ ├── api_op_UpdateDocumentMetadata.go │ │ │ ├── api_op_UpdateMaintenanceWindow.go │ │ │ ├── api_op_UpdateMaintenanceWindowTarget.go │ │ │ ├── api_op_UpdateMaintenanceWindowTask.go │ │ │ ├── api_op_UpdateManagedInstanceRole.go │ │ │ ├── api_op_UpdateOpsItem.go │ │ │ ├── api_op_UpdateOpsMetadata.go │ │ │ ├── api_op_UpdatePatchBaseline.go │ │ │ ├── api_op_UpdateResourceDataSync.go │ │ │ ├── api_op_UpdateServiceSetting.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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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 ├── briandowns │ └── spinner │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── character_sets.go │ │ └── spinner.go ├── cenkalti │ └── backoff │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── context.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ ├── timer.go │ │ └── tries.go ├── cloudflare │ └── circl │ │ ├── LICENSE │ │ ├── dh │ │ ├── x25519 │ │ │ ├── curve.go │ │ │ ├── curve_amd64.go │ │ │ ├── curve_amd64.h │ │ │ ├── curve_amd64.s │ │ │ ├── curve_generic.go │ │ │ ├── curve_noasm.go │ │ │ ├── doc.go │ │ │ ├── key.go │ │ │ └── table.go │ │ └── x448 │ │ │ ├── curve.go │ │ │ ├── curve_amd64.go │ │ │ ├── curve_amd64.h │ │ │ ├── curve_amd64.s │ │ │ ├── curve_generic.go │ │ │ ├── curve_noasm.go │ │ │ ├── doc.go │ │ │ ├── key.go │ │ │ └── table.go │ │ ├── ecc │ │ └── goldilocks │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── isogeny.go │ │ │ ├── point.go │ │ │ ├── scalar.go │ │ │ ├── twist.go │ │ │ ├── twistPoint.go │ │ │ ├── twistTables.go │ │ │ └── twist_basemult.go │ │ ├── internal │ │ ├── conv │ │ │ └── conv.go │ │ └── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── rc.go │ │ │ ├── sha3.go │ │ │ ├── sha3_s390x.s │ │ │ ├── shake.go │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── math │ │ ├── fp25519 │ │ │ ├── fp.go │ │ │ ├── fp_amd64.go │ │ │ ├── fp_amd64.h │ │ │ ├── fp_amd64.s │ │ │ ├── fp_generic.go │ │ │ └── fp_noasm.go │ │ ├── fp448 │ │ │ ├── fp.go │ │ │ ├── fp_amd64.go │ │ │ ├── fp_amd64.h │ │ │ ├── fp_amd64.s │ │ │ ├── fp_generic.go │ │ │ ├── fp_noasm.go │ │ │ └── fuzzer.go │ │ ├── mlsbset │ │ │ ├── mlsbset.go │ │ │ └── power.go │ │ ├── primes.go │ │ └── wnaf.go │ │ └── sign │ │ ├── ed25519 │ │ ├── ed25519.go │ │ ├── modular.go │ │ ├── mult.go │ │ ├── point.go │ │ ├── pubkey.go │ │ ├── pubkey112.go │ │ ├── signapi.go │ │ └── tables.go │ │ ├── ed448 │ │ ├── ed448.go │ │ └── signapi.go │ │ └── sign.go ├── cpuguy83 │ └── go-md2man │ │ └── v2 │ │ ├── LICENSE.md │ │ └── md2man │ │ ├── md2man.go │ │ └── roff.go ├── cyphar │ └── filepath-securejoin │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── join.go │ │ └── vfs.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── emirpasic │ └── gods │ │ ├── LICENSE │ │ ├── containers │ │ ├── containers.go │ │ ├── enumerable.go │ │ ├── iterator.go │ │ └── serialization.go │ │ ├── lists │ │ ├── arraylist │ │ │ ├── arraylist.go │ │ │ ├── enumerable.go │ │ │ ├── iterator.go │ │ │ └── serialization.go │ │ └── lists.go │ │ ├── trees │ │ ├── binaryheap │ │ │ ├── binaryheap.go │ │ │ ├── iterator.go │ │ │ └── serialization.go │ │ └── trees.go │ │ └── utils │ │ ├── comparator.go │ │ ├── sort.go │ │ └── utils.go ├── fatih │ ├── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ └── doc.go │ └── structs │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── field.go │ │ ├── structs.go │ │ └── tags.go ├── 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 ├── fsnotify │ └── fsnotify │ │ ├── .cirrus.yml │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── internal │ │ ├── darwin.go │ │ ├── debug_darwin.go │ │ ├── debug_dragonfly.go │ │ ├── debug_freebsd.go │ │ ├── debug_kqueue.go │ │ ├── debug_linux.go │ │ ├── debug_netbsd.go │ │ ├── debug_openbsd.go │ │ ├── debug_solaris.go │ │ ├── debug_windows.go │ │ ├── freebsd.go │ │ ├── internal.go │ │ ├── unix.go │ │ ├── unix2.go │ │ └── windows.go │ │ ├── system_bsd.go │ │ └── system_darwin.go ├── gabriel-vasile │ └── mimetype │ │ ├── .gitattributes │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ ├── charset │ │ │ └── charset.go │ │ ├── json │ │ │ └── json.go │ │ └── magic │ │ │ ├── archive.go │ │ │ ├── audio.go │ │ │ ├── binary.go │ │ │ ├── database.go │ │ │ ├── document.go │ │ │ ├── font.go │ │ │ ├── ftyp.go │ │ │ ├── geo.go │ │ │ ├── image.go │ │ │ ├── magic.go │ │ │ ├── ms_office.go │ │ │ ├── ogg.go │ │ │ ├── text.go │ │ │ ├── text_csv.go │ │ │ ├── video.go │ │ │ └── zip.go │ │ ├── mime.go │ │ ├── mimetype.go │ │ ├── supported_mimes.md │ │ └── tree.go ├── gammazero │ ├── deque │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── deque.go │ │ └── doc.go │ └── workerpool │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ └── workerpool.go ├── go-git │ ├── gcfg │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── doc.go │ │ ├── errors.go │ │ ├── read.go │ │ ├── scanner │ │ │ ├── errors.go │ │ │ └── scanner.go │ │ ├── set.go │ │ ├── token │ │ │ ├── position.go │ │ │ ├── serialize.go │ │ │ └── token.go │ │ └── types │ │ │ ├── bool.go │ │ │ ├── doc.go │ │ │ ├── enum.go │ │ │ ├── int.go │ │ │ └── scan.go │ ├── go-billy │ │ └── v5 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── fs.go │ │ │ ├── helper │ │ │ ├── chroot │ │ │ │ └── chroot.go │ │ │ └── polyfill │ │ │ │ └── polyfill.go │ │ │ ├── memfs │ │ │ ├── memory.go │ │ │ └── storage.go │ │ │ ├── osfs │ │ │ ├── os.go │ │ │ ├── os_bound.go │ │ │ ├── os_chroot.go │ │ │ ├── os_js.go │ │ │ ├── os_options.go │ │ │ ├── os_plan9.go │ │ │ ├── os_posix.go │ │ │ ├── os_wasip1.go │ │ │ └── os_windows.go │ │ │ └── util │ │ │ ├── glob.go │ │ │ ├── util.go │ │ │ └── walk.go │ └── go-git │ │ └── v5 │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── COMPATIBILITY.md │ │ ├── CONTRIBUTING.md │ │ ├── EXTENDING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── blame.go │ │ ├── common.go │ │ ├── config │ │ ├── branch.go │ │ ├── config.go │ │ ├── modules.go │ │ ├── refspec.go │ │ └── url.go │ │ ├── doc.go │ │ ├── internal │ │ ├── path_util │ │ │ └── path_util.go │ │ ├── revision │ │ │ ├── parser.go │ │ │ ├── scanner.go │ │ │ └── token.go │ │ └── url │ │ │ └── url.go │ │ ├── object_walker.go │ │ ├── options.go │ │ ├── oss-fuzz.sh │ │ ├── plumbing │ │ ├── cache │ │ │ ├── buffer_lru.go │ │ │ ├── common.go │ │ │ └── object_lru.go │ │ ├── color │ │ │ └── color.go │ │ ├── error.go │ │ ├── filemode │ │ │ └── filemode.go │ │ ├── format │ │ │ ├── config │ │ │ │ ├── common.go │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── format.go │ │ │ │ ├── option.go │ │ │ │ └── section.go │ │ │ ├── diff │ │ │ │ ├── colorconfig.go │ │ │ │ ├── patch.go │ │ │ │ └── unified_encoder.go │ │ │ ├── gitignore │ │ │ │ ├── dir.go │ │ │ │ ├── doc.go │ │ │ │ ├── matcher.go │ │ │ │ └── pattern.go │ │ │ ├── idxfile │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── idxfile.go │ │ │ │ └── writer.go │ │ │ ├── index │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── index.go │ │ │ │ └── match.go │ │ │ ├── objfile │ │ │ │ ├── doc.go │ │ │ │ ├── reader.go │ │ │ │ └── writer.go │ │ │ ├── packfile │ │ │ │ ├── common.go │ │ │ │ ├── delta_index.go │ │ │ │ ├── delta_selector.go │ │ │ │ ├── diff_delta.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── error.go │ │ │ │ ├── fsobject.go │ │ │ │ ├── object_pack.go │ │ │ │ ├── packfile.go │ │ │ │ ├── parser.go │ │ │ │ ├── patch_delta.go │ │ │ │ └── scanner.go │ │ │ └── pktline │ │ │ │ ├── encoder.go │ │ │ │ ├── error.go │ │ │ │ └── scanner.go │ │ ├── hash.go │ │ ├── hash │ │ │ ├── hash.go │ │ │ ├── hash_sha1.go │ │ │ └── hash_sha256.go │ │ ├── memory.go │ │ ├── object.go │ │ ├── object │ │ │ ├── blob.go │ │ │ ├── change.go │ │ │ ├── change_adaptor.go │ │ │ ├── commit.go │ │ │ ├── commit_walker.go │ │ │ ├── commit_walker_bfs.go │ │ │ ├── commit_walker_bfs_filtered.go │ │ │ ├── commit_walker_ctime.go │ │ │ ├── commit_walker_limit.go │ │ │ ├── commit_walker_path.go │ │ │ ├── difftree.go │ │ │ ├── file.go │ │ │ ├── merge_base.go │ │ │ ├── object.go │ │ │ ├── patch.go │ │ │ ├── rename.go │ │ │ ├── signature.go │ │ │ ├── tag.go │ │ │ ├── tree.go │ │ │ └── treenoder.go │ │ ├── protocol │ │ │ └── packp │ │ │ │ ├── advrefs.go │ │ │ │ ├── advrefs_decode.go │ │ │ │ ├── advrefs_encode.go │ │ │ │ ├── capability │ │ │ │ ├── capability.go │ │ │ │ └── list.go │ │ │ │ ├── common.go │ │ │ │ ├── doc.go │ │ │ │ ├── filter.go │ │ │ │ ├── gitproto.go │ │ │ │ ├── report_status.go │ │ │ │ ├── shallowupd.go │ │ │ │ ├── sideband │ │ │ │ ├── common.go │ │ │ │ ├── demux.go │ │ │ │ ├── doc.go │ │ │ │ └── muxer.go │ │ │ │ ├── srvresp.go │ │ │ │ ├── ulreq.go │ │ │ │ ├── ulreq_decode.go │ │ │ │ ├── ulreq_encode.go │ │ │ │ ├── updreq.go │ │ │ │ ├── updreq_decode.go │ │ │ │ ├── updreq_encode.go │ │ │ │ ├── uppackreq.go │ │ │ │ └── uppackresp.go │ │ ├── reference.go │ │ ├── revision.go │ │ ├── revlist │ │ │ └── revlist.go │ │ ├── storer │ │ │ ├── doc.go │ │ │ ├── index.go │ │ │ ├── object.go │ │ │ ├── reference.go │ │ │ ├── shallow.go │ │ │ └── storer.go │ │ └── transport │ │ │ ├── client │ │ │ └── client.go │ │ │ ├── common.go │ │ │ ├── file │ │ │ ├── client.go │ │ │ └── server.go │ │ │ ├── git │ │ │ └── common.go │ │ │ ├── http │ │ │ ├── common.go │ │ │ ├── receive_pack.go │ │ │ ├── transport.go │ │ │ └── upload_pack.go │ │ │ ├── internal │ │ │ └── common │ │ │ │ ├── common.go │ │ │ │ ├── mocks.go │ │ │ │ └── server.go │ │ │ ├── server │ │ │ ├── loader.go │ │ │ └── server.go │ │ │ └── ssh │ │ │ ├── auth_method.go │ │ │ └── common.go │ │ ├── prune.go │ │ ├── remote.go │ │ ├── repository.go │ │ ├── signer.go │ │ ├── status.go │ │ ├── storage │ │ ├── filesystem │ │ │ ├── config.go │ │ │ ├── deltaobject.go │ │ │ ├── dotgit │ │ │ │ ├── dotgit.go │ │ │ │ ├── dotgit_rewrite_packed_refs.go │ │ │ │ ├── dotgit_setref.go │ │ │ │ ├── reader.go │ │ │ │ ├── repository_filesystem.go │ │ │ │ └── writers.go │ │ │ ├── index.go │ │ │ ├── module.go │ │ │ ├── object.go │ │ │ ├── reference.go │ │ │ ├── shallow.go │ │ │ └── storage.go │ │ ├── memory │ │ │ └── storage.go │ │ └── storer.go │ │ ├── submodule.go │ │ ├── utils │ │ ├── binary │ │ │ ├── read.go │ │ │ └── write.go │ │ ├── diff │ │ │ └── diff.go │ │ ├── ioutil │ │ │ └── common.go │ │ ├── merkletrie │ │ │ ├── change.go │ │ │ ├── difftree.go │ │ │ ├── doc.go │ │ │ ├── doubleiter.go │ │ │ ├── filesystem │ │ │ │ └── node.go │ │ │ ├── index │ │ │ │ └── node.go │ │ │ ├── internal │ │ │ │ └── frame │ │ │ │ │ └── frame.go │ │ │ ├── iter.go │ │ │ └── noder │ │ │ │ ├── noder.go │ │ │ │ └── path.go │ │ ├── sync │ │ │ ├── bufio.go │ │ │ ├── bytes.go │ │ │ └── zlib.go │ │ └── trace │ │ │ └── trace.go │ │ ├── worktree.go │ │ ├── worktree_bsd.go │ │ ├── worktree_commit.go │ │ ├── worktree_js.go │ │ ├── worktree_linux.go │ │ ├── worktree_plan9.go │ │ ├── worktree_status.go │ │ ├── worktree_unix_other.go │ │ └── worktree_windows.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-resty │ └── resty │ │ └── v2 │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── client.go │ │ ├── digest.go │ │ ├── middleware.go │ │ ├── redirect.go │ │ ├── request.go │ │ ├── response.go │ │ ├── resty.go │ │ ├── retry.go │ │ ├── trace.go │ │ ├── transport.go │ │ ├── transport112.go │ │ ├── transport_js.go │ │ ├── transport_other.go │ │ └── util.go ├── go-viper │ └── mapstructure │ │ └── v2 │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── internal │ │ └── errors │ │ │ ├── errors.go │ │ │ ├── join.go │ │ │ └── join_go1_19.go │ │ ├── mapstructure.go │ │ ├── reflect_go1_19.go │ │ └── reflect_go1_20.go ├── golang-jwt │ └── jwt │ │ └── 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 │ │ ├── errors_go1_20.go │ │ ├── errors_go_other.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 │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── ptypes │ │ └── timestamp │ │ └── timestamp.pb.go ├── google │ ├── btree │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_generic.go │ ├── 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 │ ├── 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 ├── hashicorp │ ├── consul │ │ └── sdk │ │ │ ├── LICENSE │ │ │ └── testutil │ │ │ └── retry │ │ │ └── retry.go │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ └── handlers.go │ ├── go-version │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constraint.go │ │ ├── version.go │ │ └── version_collection.go │ ├── hc-install │ │ ├── LICENSE │ │ ├── internal │ │ │ ├── build │ │ │ │ ├── get_go_version.go │ │ │ │ ├── go_build.go │ │ │ │ ├── go_is_installed.go │ │ │ │ └── install_go_version.go │ │ │ ├── httpclient │ │ │ │ └── httpclient.go │ │ │ ├── pubkey │ │ │ │ └── pubkey.go │ │ │ ├── releasesjson │ │ │ │ ├── checksum_downloader.go │ │ │ │ ├── downloader.go │ │ │ │ ├── product_version.go │ │ │ │ └── releases.go │ │ │ ├── src │ │ │ │ └── src.go │ │ │ ├── validators │ │ │ │ └── validators.go │ │ │ └── version │ │ │ │ └── version.go │ │ ├── product │ │ │ ├── consul.go │ │ │ ├── product.go │ │ │ ├── terraform.go │ │ │ └── vault.go │ │ ├── releases │ │ │ ├── exact_version.go │ │ │ ├── latest_version.go │ │ │ ├── releases.go │ │ │ └── versions.go │ │ └── src │ │ │ └── src.go │ ├── hcl │ │ └── v2 │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── diagnostic.go │ │ │ ├── diagnostic_text.go │ │ │ ├── diagnostic_typeparams.go │ │ │ ├── didyoumean.go │ │ │ ├── doc.go │ │ │ ├── eval_context.go │ │ │ ├── expr_call.go │ │ │ ├── expr_list.go │ │ │ ├── expr_map.go │ │ │ ├── expr_unwrap.go │ │ │ ├── ext │ │ │ └── customdecode │ │ │ │ ├── README.md │ │ │ │ ├── customdecode.go │ │ │ │ └── expression_type.go │ │ │ ├── hclsyntax │ │ │ ├── diagnostics.go │ │ │ ├── didyoumean.go │ │ │ ├── doc.go │ │ │ ├── expression.go │ │ │ ├── expression_ops.go │ │ │ ├── expression_template.go │ │ │ ├── expression_vars.go │ │ │ ├── file.go │ │ │ ├── generate.go │ │ │ ├── keywords.go │ │ │ ├── navigation.go │ │ │ ├── node.go │ │ │ ├── parser.go │ │ │ ├── parser_template.go │ │ │ ├── parser_traversal.go │ │ │ ├── peeker.go │ │ │ ├── public.go │ │ │ ├── scan_string_lit.go │ │ │ ├── scan_string_lit.rl │ │ │ ├── scan_tokens.go │ │ │ ├── scan_tokens.rl │ │ │ ├── spec.md │ │ │ ├── structure.go │ │ │ ├── structure_at_pos.go │ │ │ ├── token.go │ │ │ ├── token_type_string.go │ │ │ ├── unicode2ragel.rb │ │ │ ├── unicode_derived.rl │ │ │ ├── variables.go │ │ │ └── walk.go │ │ │ ├── hclwrite │ │ │ ├── ast.go │ │ │ ├── ast_attribute.go │ │ │ ├── ast_block.go │ │ │ ├── ast_body.go │ │ │ ├── ast_expression.go │ │ │ ├── doc.go │ │ │ ├── format.go │ │ │ ├── generate.go │ │ │ ├── native_node_sorter.go │ │ │ ├── node.go │ │ │ ├── parser.go │ │ │ ├── public.go │ │ │ └── tokens.go │ │ │ ├── merged.go │ │ │ ├── ops.go │ │ │ ├── pos.go │ │ │ ├── pos_scanner.go │ │ │ ├── schema.go │ │ │ ├── spec.md │ │ │ ├── static_expr.go │ │ │ ├── structure.go │ │ │ ├── structure_at_pos.go │ │ │ ├── traversal.go │ │ │ └── traversal_for_expr.go │ ├── terraform-exec │ │ ├── LICENSE │ │ ├── internal │ │ │ └── version │ │ │ │ └── version.go │ │ └── tfexec │ │ │ ├── apply.go │ │ │ ├── cmd.go │ │ │ ├── cmd_default.go │ │ │ ├── cmd_linux.go │ │ │ ├── destroy.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── exit_errors.go │ │ │ ├── fmt.go │ │ │ ├── force_unlock.go │ │ │ ├── get.go │ │ │ ├── graph.go │ │ │ ├── import.go │ │ │ ├── init.go │ │ │ ├── options.go │ │ │ ├── output.go │ │ │ ├── plan.go │ │ │ ├── providers_lock.go │ │ │ ├── providers_schema.go │ │ │ ├── refresh.go │ │ │ ├── show.go │ │ │ ├── state_mv.go │ │ │ ├── state_pull.go │ │ │ ├── state_push.go │ │ │ ├── state_rm.go │ │ │ ├── taint.go │ │ │ ├── terraform.go │ │ │ ├── untaint.go │ │ │ ├── upgrade012.go │ │ │ ├── upgrade013.go │ │ │ ├── validate.go │ │ │ ├── version.go │ │ │ ├── workspace_delete.go │ │ │ ├── workspace_list.go │ │ │ ├── workspace_new.go │ │ │ ├── workspace_select.go │ │ │ └── workspace_show.go │ └── terraform-json │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── action.go │ │ ├── config.go │ │ ├── expression.go │ │ ├── plan.go │ │ ├── schemas.go │ │ ├── state.go │ │ ├── tfjson.go │ │ ├── validate.go │ │ └── version.go ├── hinshun │ └── vt10x │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── color.go │ │ ├── csi.go │ │ ├── doc.go │ │ ├── expect.go │ │ ├── ioctl_other.go │ │ ├── ioctl_posix.go │ │ ├── parse.go │ │ ├── state.go │ │ ├── str.go │ │ ├── vt_other.go │ │ └── vt_posix.go ├── hokaccha │ └── go-prettyjson │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── prettyjson.go ├── imdario │ └── mergo │ │ ├── .deepsource.toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── jbenet │ └── go-context │ │ ├── LICENSE │ │ └── io │ │ └── ctxio.go ├── kballard │ └── go-shellquote │ │ ├── LICENSE │ │ ├── README │ │ ├── doc.go │ │ ├── quote.go │ │ └── unquote.go ├── kevinburke │ └── ssh_config │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── AUTHORS.txt │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── config.go │ │ ├── lexer.go │ │ ├── parser.go │ │ ├── position.go │ │ ├── token.go │ │ └── validators.go ├── kr │ └── pty │ │ ├── .gitignore │ │ ├── Dockerfile.riscv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── ioctl.go │ │ ├── ioctl_bsd.go │ │ ├── ioctl_solaris.go │ │ ├── mktypes.bash │ │ ├── pty_darwin.go │ │ ├── pty_dragonfly.go │ │ ├── pty_freebsd.go │ │ ├── pty_linux.go │ │ ├── pty_openbsd.go │ │ ├── pty_solaris.go │ │ ├── pty_unsupported.go │ │ ├── run.go │ │ ├── test_crosscompile.sh │ │ ├── util.go │ │ ├── util_solaris.go │ │ ├── ztypes_386.go │ │ ├── ztypes_amd64.go │ │ ├── ztypes_arm.go │ │ ├── ztypes_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_mipsx.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_ppc64.go │ │ ├── ztypes_ppc64le.go │ │ ├── ztypes_riscvx.go │ │ └── ztypes_s390x.go ├── kylelemons │ └── godebug │ │ ├── LICENSE │ │ ├── diff │ │ └── diff.go │ │ └── pretty │ │ ├── .gitignore │ │ ├── doc.go │ │ ├── public.go │ │ ├── reflect.go │ │ └── structure.go ├── kyokomi │ └── emoji │ │ └── v2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── emoji.go │ │ └── emoji_codemap.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── 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 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.test.sh │ │ ├── runewidth.go │ │ ├── runewidth_appengine.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ ├── runewidth_table.go │ │ └── runewidth_windows.go ├── mgutz │ └── ansi │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansi.go │ │ ├── doc.go │ │ └── print.go ├── mitchellh │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go │ ├── go-wordwrap │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── wordwrap.go │ ├── hashstructure │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── hashstructure.go │ │ │ └── include.go │ └── mapstructure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.go ├── olekukonko │ └── tablewriter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── csv.go │ │ ├── table.go │ │ ├── table_with_color.go │ │ ├── util.go │ │ └── wrap.go ├── otiai10 │ └── copy │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── copy.go │ │ ├── copy_namedpipes.go │ │ ├── copy_namedpipes_x.go │ │ ├── fileinfo_go1.15.go │ │ ├── fileinfo_go1.16.go │ │ ├── options.go │ │ ├── permission_control.go │ │ ├── preserve_ltimes.go │ │ ├── preserve_ltimes_x.go │ │ ├── preserve_owner.go │ │ ├── preserve_owner_x.go │ │ ├── preserve_times.go │ │ ├── stat_times.go │ │ ├── stat_times_darwin.go │ │ ├── stat_times_freebsd.go │ │ ├── stat_times_js.go │ │ ├── stat_times_windows.go │ │ ├── stat_times_x.go │ │ ├── test_setup.go │ │ └── test_setup_x.go ├── pelletier │ └── go-toml │ │ └── v2 │ │ ├── .dockerignore │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.toml │ │ ├── .goreleaser.yaml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── ci.sh │ │ ├── decode.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── internal │ │ ├── characters │ │ │ ├── ascii.go │ │ │ └── utf8.go │ │ ├── danger │ │ │ ├── danger.go │ │ │ └── typeid.go │ │ └── tracker │ │ │ ├── key.go │ │ │ ├── seen.go │ │ │ └── tracker.go │ │ ├── localtime.go │ │ ├── marshaler.go │ │ ├── strict.go │ │ ├── toml.abnf │ │ ├── types.go │ │ ├── unmarshaler.go │ │ └── unstable │ │ ├── ast.go │ │ ├── builder.go │ │ ├── doc.go │ │ ├── kind.go │ │ ├── parser.go │ │ ├── scanner.go │ │ └── unmarshaler.go ├── peterbourgon │ └── diskv │ │ └── v3 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compression.go │ │ ├── diskv.go │ │ └── index.go ├── pjbgf │ └── sha1cd │ │ ├── Dockerfile.arm │ │ ├── Dockerfile.arm64 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── detection.go │ │ ├── internal │ │ └── const.go │ │ ├── sha1cd.go │ │ ├── sha1cdblock_amd64.go │ │ ├── sha1cdblock_amd64.s │ │ ├── sha1cdblock_generic.go │ │ ├── sha1cdblock_noasm.go │ │ └── ubc │ │ ├── check.go │ │ ├── const.go │ │ └── doc.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 ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── russross │ └── blackfriday │ │ └── v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── entities.go │ │ ├── esc.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── markdown.go │ │ ├── node.go │ │ └── smartypants.go ├── sagikazarmark │ └── locafero │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── file_type.go │ │ ├── finder.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── glob.go │ │ ├── glob_windows.go │ │ ├── helpers.go │ │ └── justfile ├── sergi │ └── go-diff │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── diffmatchpatch │ │ ├── diff.go │ │ ├── diffmatchpatch.go │ │ ├── match.go │ │ ├── mathutil.go │ │ ├── operation_string.go │ │ ├── patch.go │ │ └── stringutil.go ├── skeema │ └── knownhosts │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ └── knownhosts.go ├── sourcegraph │ └── conc │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ └── multierror │ │ │ ├── multierror_go119.go │ │ │ └── multierror_go120.go │ │ ├── iter │ │ ├── iter.go │ │ └── map.go │ │ ├── panics │ │ ├── panics.go │ │ └── try.go │ │ └── waitgroup.go ├── spf13 │ ├── afero │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── internal │ │ │ └── common │ │ │ │ └── adapters.go │ │ ├── iofs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── symlink.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ ├── caste.go │ │ └── timeformattype_string.go │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── active_help.go │ │ ├── active_help.md │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completions.md │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── doc │ │ │ ├── README.md │ │ │ ├── man_docs.go │ │ │ ├── man_docs.md │ │ │ ├── md_docs.go │ │ │ ├── md_docs.md │ │ │ ├── rest_docs.go │ │ │ ├── rest_docs.md │ │ │ ├── util.go │ │ │ ├── yaml_docs.go │ │ │ └── yaml_docs.md │ │ ├── fish_completions.go │ │ ├── fish_completions.md │ │ ├── flag_groups.go │ │ ├── powershell_completions.go │ │ ├── powershell_completions.md │ │ ├── projects_using_cobra.md │ │ ├── shell_completions.go │ │ ├── shell_completions.md │ │ ├── user_guide.md │ │ ├── zsh_completions.go │ │ └── zsh_completions.md │ ├── pflag │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── ipnet_slice.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ └── viper │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .yamlignore │ │ ├── .yamllint.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── UPDATES.md │ │ ├── encoding.go │ │ ├── experimental.go │ │ ├── file.go │ │ ├── finder.go │ │ ├── flags.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── internal │ │ ├── encoding │ │ │ ├── dotenv │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ ├── json │ │ │ │ └── codec.go │ │ │ ├── toml │ │ │ │ └── codec.go │ │ │ └── yaml │ │ │ │ └── codec.go │ │ └── features │ │ │ ├── bind_struct.go │ │ │ ├── bind_struct_default.go │ │ │ ├── finder.go │ │ │ └── finder_default.go │ │ ├── logger.go │ │ ├── remote.go │ │ ├── util.go │ │ └── viper.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 ├── subosito │ └── gotenv │ │ ├── .env │ │ ├── .env.invalid │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── gotenv.go ├── xanzy │ └── ssh-agent │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pageant_windows.go │ │ ├── sshagent.go │ │ └── sshagent_windows.go └── zclconf │ └── go-cty │ ├── LICENSE │ └── cty │ ├── capsule.go │ ├── capsule_ops.go │ ├── collection.go │ ├── convert │ ├── compare_types.go │ ├── conversion.go │ ├── conversion_capsule.go │ ├── conversion_collection.go │ ├── conversion_dynamic.go │ ├── conversion_object.go │ ├── conversion_primitive.go │ ├── conversion_tuple.go │ ├── doc.go │ ├── mismatch_msg.go │ ├── public.go │ ├── sort_types.go │ └── unify.go │ ├── doc.go │ ├── element_iterator.go │ ├── error.go │ ├── function │ ├── argument.go │ ├── doc.go │ ├── error.go │ ├── function.go │ ├── stdlib │ │ ├── bool.go │ │ ├── bytes.go │ │ ├── collection.go │ │ ├── conversion.go │ │ ├── csv.go │ │ ├── datetime.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── format_fsm.go │ │ ├── format_fsm.rl │ │ ├── general.go │ │ ├── json.go │ │ ├── number.go │ │ ├── regexp.go │ │ ├── sequence.go │ │ ├── set.go │ │ ├── string.go │ │ └── string_replace.go │ └── unpredictable.go │ ├── gocty │ ├── doc.go │ ├── helpers.go │ ├── in.go │ ├── out.go │ └── type_implied.go │ ├── helper.go │ ├── json.go │ ├── json │ ├── doc.go │ ├── marshal.go │ ├── simple.go │ ├── type.go │ ├── type_implied.go │ ├── unmarshal.go │ └── value.go │ ├── list_type.go │ ├── map_type.go │ ├── marks.go │ ├── null.go │ ├── object_type.go │ ├── path.go │ ├── path_set.go │ ├── primitive_type.go │ ├── set │ ├── iterator.go │ ├── ops.go │ ├── rules.go │ └── set.go │ ├── set_helper.go │ ├── set_internals.go │ ├── set_type.go │ ├── tuple_type.go │ ├── type.go │ ├── type_conform.go │ ├── unknown.go │ ├── unknown_as_null.go │ ├── value.go │ ├── value_init.go │ ├── value_ops.go │ └── walk.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 │ └── instrumentation │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── interceptor.go │ │ │ ├── interceptorinfo.go │ │ │ ├── internal │ │ │ └── parse.go │ │ │ ├── metadata_supplier.go │ │ │ ├── semconv.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 │ ├── iterator.go │ ├── key.go │ ├── kv.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 │ ├── get_main_pkgs.sh │ ├── handler.go │ ├── internal │ ├── attribute │ │ └── attribute.go │ ├── baggage │ │ ├── baggage.go │ │ └── context.go │ ├── gen.go │ ├── global │ │ ├── handler.go │ │ ├── instruments.go │ │ ├── internal_logging.go │ │ ├── meter.go │ │ ├── propagator.go │ │ ├── state.go │ │ └── trace.go │ └── rawhelpers.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 │ ├── semconv │ ├── v1.17.0 │ │ ├── README.md │ │ ├── doc.go │ │ ├── event.go │ │ ├── exception.go │ │ ├── http.go │ │ ├── resource.go │ │ ├── schema.go │ │ └── trace.go │ ├── v1.20.0 │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── exception.go │ │ ├── http.go │ │ ├── resource.go │ │ ├── schema.go │ │ └── trace.go │ └── v1.26.0 │ │ ├── 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_readmes.sh │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml ├── go.uber.org ├── atomic │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── bool.go │ ├── bool_ext.go │ ├── doc.go │ ├── duration.go │ ├── duration_ext.go │ ├── error.go │ ├── error_ext.go │ ├── float64.go │ ├── float64_ext.go │ ├── gen.go │ ├── int32.go │ ├── int64.go │ ├── nocmp.go │ ├── string.go │ ├── string_ext.go │ ├── time.go │ ├── time_ext.go │ ├── uint32.go │ ├── uint64.go │ ├── uintptr.go │ ├── unsafe_pointer.go │ └── value.go ├── multierr │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── error.go │ └── glide.yaml └── zap │ ├── .codecov.yml │ ├── .gitignore │ ├── .readme.tmpl │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── array.go │ ├── array_go118.go │ ├── buffer │ ├── buffer.go │ └── pool.go │ ├── checklicense.sh │ ├── config.go │ ├── doc.go │ ├── encoder.go │ ├── error.go │ ├── field.go │ ├── flag.go │ ├── glide.yaml │ ├── global.go │ ├── http_handler.go │ ├── internal │ ├── bufferpool │ │ └── bufferpool.go │ ├── color │ │ └── color.go │ ├── exit │ │ └── exit.go │ └── level_enabler.go │ ├── level.go │ ├── logger.go │ ├── options.go │ ├── sink.go │ ├── stacktrace.go │ ├── sugar.go │ ├── time.go │ ├── writer.go │ └── zapcore │ ├── buffered_write_syncer.go │ ├── clock.go │ ├── console_encoder.go │ ├── core.go │ ├── doc.go │ ├── encoder.go │ ├── entry.go │ ├── error.go │ ├── field.go │ ├── hook.go │ ├── increase_level.go │ ├── json_encoder.go │ ├── level.go │ ├── level_strings.go │ ├── marshaler.go │ ├── memory_encoder.go │ ├── reflected_encoder.go │ ├── sampler.go │ ├── tee.go │ └── write_syncer.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── argon2 │ │ ├── argon2.go │ │ ├── blake2b.go │ │ ├── blamka_amd64.go │ │ ├── blamka_amd64.s │ │ ├── blamka_generic.go │ │ └── blamka_ref.go │ ├── blake2b │ │ ├── blake2b.go │ │ ├── blake2bAVX2_amd64.go │ │ ├── blake2bAVX2_amd64.s │ │ ├── blake2b_amd64.s │ │ ├── blake2b_generic.go │ │ ├── blake2b_ref.go │ │ ├── blake2x.go │ │ └── register.go │ ├── blowfish │ │ ├── block.go │ │ ├── cipher.go │ │ └── const.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 │ ├── curve25519 │ │ └── curve25519.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 │ ├── 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 │ ├── 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 │ └── ssh │ │ ├── agent │ │ ├── client.go │ │ ├── forward.go │ │ ├── keyring.go │ │ └── server.go │ │ ├── buffer.go │ │ ├── certs.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── handshake.go │ │ ├── internal │ │ └── bcrypt_pbkdf │ │ │ └── bcrypt_pbkdf.go │ │ ├── kex.go │ │ ├── keys.go │ │ ├── knownhosts │ │ └── knownhosts.go │ │ ├── mac.go │ │ ├── messages.go │ │ ├── mlkem.go │ │ ├── mux.go │ │ ├── server.go │ │ ├── session.go │ │ ├── ssh_gss.go │ │ ├── streamlocal.go │ │ ├── tcpip.go │ │ └── transport.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ ├── constraints │ │ └── constraints.go │ └── slices │ │ ├── cmp.go │ │ ├── slices.go │ │ ├── sort.go │ │ ├── zsortanyfunc.go │ │ └── zsortordered.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ └── context.go │ ├── 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 │ │ ├── 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 │ │ ├── socks │ │ │ ├── client.go │ │ │ └── socks.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ ├── publicsuffix │ │ ├── data │ │ │ ├── children │ │ │ ├── nodes │ │ │ └── text │ │ ├── list.go │ │ └── table.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 │ ├── encoding │ │ ├── encoding.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.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 │ │ └── utf8internal │ │ │ └── utf8internal.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 │ ├── 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 │ ├── cmd │ └── stringer │ │ └── stringer.go │ ├── go │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ └── importer.go │ ├── packages │ │ ├── doc.go │ │ ├── external.go │ │ ├── golist.go │ │ ├── golist_overlay.go │ │ ├── loadmode_string.go │ │ ├── packages.go │ │ └── visit.go │ └── types │ │ └── objectpath │ │ └── objectpath.go │ └── internal │ ├── aliases │ ├── aliases.go │ ├── aliases_go121.go │ └── aliases_go122.go │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── gcimporter │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── iexport.go │ ├── iimport.go │ ├── newInterface10.go │ ├── newInterface11.go │ ├── support_go118.go │ ├── unified_no.go │ ├── unified_yes.go │ └── ureader_yes.go │ ├── gocommand │ ├── invoke.go │ ├── vendor.go │ └── version.go │ ├── packagesinternal │ └── packages.go │ ├── pkgbits │ ├── codes.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── flags.go │ ├── frames_go1.go │ ├── frames_go17.go │ ├── reloc.go │ ├── support.go │ ├── sync.go │ └── syncmarker_string.go │ ├── stdlib │ ├── manifest.go │ └── stdlib.go │ ├── tokeninternal │ └── tokeninternal.go │ ├── typesinternal │ ├── errorcode.go │ ├── errorcode_string.go │ ├── recv.go │ ├── toonew.go │ └── types.go │ └── versions │ ├── features.go │ ├── gover.go │ ├── toolchain.go │ ├── toolchain_go119.go │ ├── toolchain_go120.go │ ├── toolchain_go121.go │ ├── types.go │ ├── types_go121.go │ ├── types_go122.go │ └── versions.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── cloudresourcemanager │ │ ├── v1 │ │ │ ├── cloudresourcemanager-api.json │ │ │ └── cloudresourcemanager-gen.go │ │ └── v3 │ │ │ ├── cloudresourcemanager-api.json │ │ │ └── cloudresourcemanager-gen.go │ ├── cloudscheduler │ │ └── v1 │ │ │ ├── cloudscheduler-api.json │ │ │ └── cloudscheduler-gen.go │ ├── googleapi │ │ ├── googleapi.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── iam │ │ └── v1 │ │ │ ├── iam-api.json │ │ │ └── iam-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 │ ├── oauth2 │ │ └── v2 │ │ │ ├── oauth2-api.json │ │ │ └── oauth2-gen.go │ ├── option │ │ ├── internaloption │ │ │ └── internaloption.go │ │ └── option.go │ └── transport │ │ ├── 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 │ │ └── launch_stage.pb.go │ │ ├── cloud │ │ └── extendedops │ │ │ └── extended_operations.pb.go │ │ ├── rpc │ │ ├── LICENSE │ │ ├── code │ │ │ └── code.pb.go │ │ ├── errdetails │ │ │ └── error_details.pb.go │ │ └── status │ │ │ └── status.pb.go │ │ └── type │ │ └── expr │ │ └── expr.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 │ ├── 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 │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ └── subconn.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 │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_v2.go │ │ └── proto │ │ │ └── proto.go │ ├── experimental │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── interceptor.go │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ └── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.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 │ │ │ ├── syscallconn.go │ │ │ └── util.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 │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── proxyattributes │ │ │ └── proxyattributes.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── delegatingresolver │ │ │ │ └── delegatingresolver.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.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 │ │ └── xds │ │ │ └── xds.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ └── version.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ ├── emptypb │ └── empty.pb.go │ ├── fieldmaskpb │ └── field_mask.pb.go │ └── timestamppb │ └── timestamp.pb.go ├── gopkg.in ├── warnings.v0 │ ├── LICENSE │ ├── README │ └── warnings.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 /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/commit-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/workflows/commit-lint.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/workflows/nightly-build.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/workflows/prepare-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/workflows/test-build.yml -------------------------------------------------------------------------------- /.github/workflows/update-cli-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/workflows/update-cli-docs.yml -------------------------------------------------------------------------------- /.github/workflows/verify-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.github/workflows/verify-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.gitlint -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.24.0 2 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPER_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/DEVELOPER_GUIDELINES.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.8.5-dev -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/README.md -------------------------------------------------------------------------------- /api/_examples/alert-profiles/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/alert-profiles/main.go -------------------------------------------------------------------------------- /api/_examples/alert-rules/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/alert-rules/main.go -------------------------------------------------------------------------------- /api/_examples/components/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/components/main.go -------------------------------------------------------------------------------- /api/_examples/feature-flags/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/feature-flags/main.go -------------------------------------------------------------------------------- /api/_examples/pagination/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/pagination/main.go -------------------------------------------------------------------------------- /api/_examples/policy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/policy/main.go -------------------------------------------------------------------------------- /api/_examples/report-rules/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/report-rules/main.go -------------------------------------------------------------------------------- /api/_examples/reports/aws/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/reports/aws/main.go -------------------------------------------------------------------------------- /api/_examples/reports/azure/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/reports/azure/main.go -------------------------------------------------------------------------------- /api/_examples/reports/gcp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/reports/gcp/main.go -------------------------------------------------------------------------------- /api/_examples/resource-groups/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/resource-groups/main.go -------------------------------------------------------------------------------- /api/_examples/team-members-org/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/team-members-org/main.go -------------------------------------------------------------------------------- /api/_examples/team-members/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/team-members/main.go -------------------------------------------------------------------------------- /api/_examples/token-generation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/_examples/token-generation/main.go -------------------------------------------------------------------------------- /api/agent_access_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/agent_access_tokens.go -------------------------------------------------------------------------------- /api/agent_access_tokens_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/agent_access_tokens_test.go -------------------------------------------------------------------------------- /api/agent_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/agent_info.go -------------------------------------------------------------------------------- /api/agent_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/agent_info_test.go -------------------------------------------------------------------------------- /api/alert_channel_datadog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channel_datadog.go -------------------------------------------------------------------------------- /api/alert_channel_datadog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channel_datadog_test.go -------------------------------------------------------------------------------- /api/alert_channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels.go -------------------------------------------------------------------------------- /api/alert_channels_aws_cloudwatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_aws_cloudwatch.go -------------------------------------------------------------------------------- /api/alert_channels_aws_s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_aws_s3.go -------------------------------------------------------------------------------- /api/alert_channels_aws_s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_aws_s3_test.go -------------------------------------------------------------------------------- /api/alert_channels_email_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_email_user.go -------------------------------------------------------------------------------- /api/alert_channels_email_user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_email_user_test.go -------------------------------------------------------------------------------- /api/alert_channels_gcp_pub_sub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_gcp_pub_sub.go -------------------------------------------------------------------------------- /api/alert_channels_gcp_pub_sub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_gcp_pub_sub_test.go -------------------------------------------------------------------------------- /api/alert_channels_ibm_qradar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_ibm_qradar.go -------------------------------------------------------------------------------- /api/alert_channels_ibm_qradar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_ibm_qradar_test.go -------------------------------------------------------------------------------- /api/alert_channels_microsoft_teams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_microsoft_teams.go -------------------------------------------------------------------------------- /api/alert_channels_new_relic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_new_relic.go -------------------------------------------------------------------------------- /api/alert_channels_new_relic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_new_relic_test.go -------------------------------------------------------------------------------- /api/alert_channels_pager_duty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_pager_duty.go -------------------------------------------------------------------------------- /api/alert_channels_pager_duty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_pager_duty_test.go -------------------------------------------------------------------------------- /api/alert_channels_service_now_rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_service_now_rest.go -------------------------------------------------------------------------------- /api/alert_channels_slack_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_slack_channel.go -------------------------------------------------------------------------------- /api/alert_channels_splunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_splunk.go -------------------------------------------------------------------------------- /api/alert_channels_splunk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_splunk_test.go -------------------------------------------------------------------------------- /api/alert_channels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_test.go -------------------------------------------------------------------------------- /api/alert_channels_victorops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_victorops.go -------------------------------------------------------------------------------- /api/alert_channels_victorops_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_victorops_test.go -------------------------------------------------------------------------------- /api/alert_channels_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_webhook.go -------------------------------------------------------------------------------- /api/alert_channels_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_channels_webhook_test.go -------------------------------------------------------------------------------- /api/alert_profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_profiles.go -------------------------------------------------------------------------------- /api/alert_profiles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_profiles_test.go -------------------------------------------------------------------------------- /api/alert_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_rules.go -------------------------------------------------------------------------------- /api/alert_rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_rules_test.go -------------------------------------------------------------------------------- /api/alert_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alert_templates.go -------------------------------------------------------------------------------- /api/alerts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts.go -------------------------------------------------------------------------------- /api/alerts_close.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_close.go -------------------------------------------------------------------------------- /api/alerts_close_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_close_test.go -------------------------------------------------------------------------------- /api/alerts_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_comment.go -------------------------------------------------------------------------------- /api/alerts_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_comment_test.go -------------------------------------------------------------------------------- /api/alerts_details.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_details.go -------------------------------------------------------------------------------- /api/alerts_details_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_details_events.go -------------------------------------------------------------------------------- /api/alerts_details_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_details_events_test.go -------------------------------------------------------------------------------- /api/alerts_details_integrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_details_integrations.go -------------------------------------------------------------------------------- /api/alerts_details_investigation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_details_investigation.go -------------------------------------------------------------------------------- /api/alerts_details_related.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_details_related.go -------------------------------------------------------------------------------- /api/alerts_details_related_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_details_related_test.go -------------------------------------------------------------------------------- /api/alerts_details_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_details_test.go -------------------------------------------------------------------------------- /api/alerts_details_timeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_details_timeline.go -------------------------------------------------------------------------------- /api/alerts_details_timeline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_details_timeline_test.go -------------------------------------------------------------------------------- /api/alerts_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_search.go -------------------------------------------------------------------------------- /api/alerts_search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_search_test.go -------------------------------------------------------------------------------- /api/alerts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/alerts_test.go -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/api.go -------------------------------------------------------------------------------- /api/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/auth.go -------------------------------------------------------------------------------- /api/auth_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/auth_internal_test.go -------------------------------------------------------------------------------- /api/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/auth_test.go -------------------------------------------------------------------------------- /api/callbacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/callbacks.go -------------------------------------------------------------------------------- /api/callbacks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/callbacks_test.go -------------------------------------------------------------------------------- /api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/client.go -------------------------------------------------------------------------------- /api/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/client_test.go -------------------------------------------------------------------------------- /api/cloud_accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_cfg.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_cfg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_cfg_test.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_ct_sqs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_ct_sqs.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_ct_sqs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_ct_sqs_test.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_eks_audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_eks_audit.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_gov_cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_gov_cfg.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_gov_cfg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_gov_cfg_test.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_gov_ct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_gov_ct.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_gov_ct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_gov_ct_test.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_sidekick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_sidekick.go -------------------------------------------------------------------------------- /api/cloud_accounts_aws_sidekick_org.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_aws_sidekick_org.go -------------------------------------------------------------------------------- /api/cloud_accounts_az_al.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_az_al.go -------------------------------------------------------------------------------- /api/cloud_accounts_az_al_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_az_al_test.go -------------------------------------------------------------------------------- /api/cloud_accounts_az_cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_az_cfg.go -------------------------------------------------------------------------------- /api/cloud_accounts_az_cfg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_az_cfg_test.go -------------------------------------------------------------------------------- /api/cloud_accounts_azure_ad_al.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_azure_ad_al.go -------------------------------------------------------------------------------- /api/cloud_accounts_azure_ad_al_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_azure_ad_al_test.go -------------------------------------------------------------------------------- /api/cloud_accounts_azure_sidekick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_azure_sidekick.go -------------------------------------------------------------------------------- /api/cloud_accounts_gcp_al_pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_gcp_al_pubsub.go -------------------------------------------------------------------------------- /api/cloud_accounts_gcp_at.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_gcp_at.go -------------------------------------------------------------------------------- /api/cloud_accounts_gcp_at_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_gcp_at_test.go -------------------------------------------------------------------------------- /api/cloud_accounts_gcp_cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_gcp_cfg.go -------------------------------------------------------------------------------- /api/cloud_accounts_gcp_cfg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_gcp_cfg_test.go -------------------------------------------------------------------------------- /api/cloud_accounts_gcp_gke_audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_gcp_gke_audit.go -------------------------------------------------------------------------------- /api/cloud_accounts_gcp_sidekick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_gcp_sidekick.go -------------------------------------------------------------------------------- /api/cloud_accounts_oci_cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_oci_cfg.go -------------------------------------------------------------------------------- /api/cloud_accounts_oci_cfg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_oci_cfg_test.go -------------------------------------------------------------------------------- /api/cloud_accounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/cloud_accounts_test.go -------------------------------------------------------------------------------- /api/compliance_evaluations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/compliance_evaluations.go -------------------------------------------------------------------------------- /api/compliance_evaluations_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/compliance_evaluations_aws.go -------------------------------------------------------------------------------- /api/component_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/component_data.go -------------------------------------------------------------------------------- /api/component_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/component_data_test.go -------------------------------------------------------------------------------- /api/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/components.go -------------------------------------------------------------------------------- /api/components_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/components_test.go -------------------------------------------------------------------------------- /api/container_registries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/container_registries.go -------------------------------------------------------------------------------- /api/container_registries_dockerhub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/container_registries_dockerhub.go -------------------------------------------------------------------------------- /api/container_registries_gcp_gar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/container_registries_gcp_gar.go -------------------------------------------------------------------------------- /api/container_registries_gcp_gcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/container_registries_gcp_gcr.go -------------------------------------------------------------------------------- /api/container_registries_ghcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/container_registries_ghcr.go -------------------------------------------------------------------------------- /api/container_registries_ghcr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/container_registries_ghcr_test.go -------------------------------------------------------------------------------- /api/container_registries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/container_registries_test.go -------------------------------------------------------------------------------- /api/data_export_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/data_export_rules.go -------------------------------------------------------------------------------- /api/datasources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/datasources.go -------------------------------------------------------------------------------- /api/datasources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/datasources_test.go -------------------------------------------------------------------------------- /api/entities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/entities.go -------------------------------------------------------------------------------- /api/entities_containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/entities_containers.go -------------------------------------------------------------------------------- /api/entities_images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/entities_images.go -------------------------------------------------------------------------------- /api/entities_images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/entities_images_test.go -------------------------------------------------------------------------------- /api/entities_machine_details.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/entities_machine_details.go -------------------------------------------------------------------------------- /api/entities_machine_details_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/entities_machine_details_test.go -------------------------------------------------------------------------------- /api/entities_machines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/entities_machines.go -------------------------------------------------------------------------------- /api/entities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/entities_test.go -------------------------------------------------------------------------------- /api/entities_users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/entities_users.go -------------------------------------------------------------------------------- /api/entities_users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/entities_users_test.go -------------------------------------------------------------------------------- /api/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/errors.go -------------------------------------------------------------------------------- /api/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/errors_test.go -------------------------------------------------------------------------------- /api/feature_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/feature_flags.go -------------------------------------------------------------------------------- /api/feature_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/feature_flags_test.go -------------------------------------------------------------------------------- /api/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/http.go -------------------------------------------------------------------------------- /api/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/http_test.go -------------------------------------------------------------------------------- /api/inventory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/inventory.go -------------------------------------------------------------------------------- /api/inventory_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/inventory_aws.go -------------------------------------------------------------------------------- /api/inventory_aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/inventory_aws_test.go -------------------------------------------------------------------------------- /api/inventory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/inventory_test.go -------------------------------------------------------------------------------- /api/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/logging.go -------------------------------------------------------------------------------- /api/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/logging_test.go -------------------------------------------------------------------------------- /api/lql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/lql.go -------------------------------------------------------------------------------- /api/lql_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/lql_delete.go -------------------------------------------------------------------------------- /api/lql_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/lql_delete_test.go -------------------------------------------------------------------------------- /api/lql_execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/lql_execute.go -------------------------------------------------------------------------------- /api/lql_execute_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/lql_execute_internal_test.go -------------------------------------------------------------------------------- /api/lql_execute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/lql_execute_test.go -------------------------------------------------------------------------------- /api/lql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/lql_test.go -------------------------------------------------------------------------------- /api/lql_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/lql_update_test.go -------------------------------------------------------------------------------- /api/lql_validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/lql_validate.go -------------------------------------------------------------------------------- /api/lql_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/lql_validate_test.go -------------------------------------------------------------------------------- /api/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/metrics.go -------------------------------------------------------------------------------- /api/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/metrics_test.go -------------------------------------------------------------------------------- /api/organization_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/organization_info.go -------------------------------------------------------------------------------- /api/organization_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/organization_info_test.go -------------------------------------------------------------------------------- /api/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/policy.go -------------------------------------------------------------------------------- /api/policy_exceptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/policy_exceptions.go -------------------------------------------------------------------------------- /api/policy_exceptions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/policy_exceptions_test.go -------------------------------------------------------------------------------- /api/policy_parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/policy_parse_test.go -------------------------------------------------------------------------------- /api/policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/policy_test.go -------------------------------------------------------------------------------- /api/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/reader.go -------------------------------------------------------------------------------- /api/reader_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/reader_internal_test.go -------------------------------------------------------------------------------- /api/report_definitions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/report_definitions_test.go -------------------------------------------------------------------------------- /api/report_distributions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/report_distributions_test.go -------------------------------------------------------------------------------- /api/report_rule_notification_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/report_rule_notification_types.go -------------------------------------------------------------------------------- /api/report_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/report_rules.go -------------------------------------------------------------------------------- /api/report_rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/report_rules_test.go -------------------------------------------------------------------------------- /api/reports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/reports.go -------------------------------------------------------------------------------- /api/reports_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/reports_aws.go -------------------------------------------------------------------------------- /api/reports_azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/reports_azure.go -------------------------------------------------------------------------------- /api/reports_definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/reports_definitions.go -------------------------------------------------------------------------------- /api/reports_distributions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/reports_distributions.go -------------------------------------------------------------------------------- /api/reports_gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/reports_gcp.go -------------------------------------------------------------------------------- /api/reports_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/reports_test.go -------------------------------------------------------------------------------- /api/resource_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/resource_groups.go -------------------------------------------------------------------------------- /api/resource_groups_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/resource_groups_test.go -------------------------------------------------------------------------------- /api/schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/schemas.go -------------------------------------------------------------------------------- /api/team_members.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/team_members.go -------------------------------------------------------------------------------- /api/team_members_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/team_members_test.go -------------------------------------------------------------------------------- /api/user_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/user_profile.go -------------------------------------------------------------------------------- /api/user_profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/user_profile_test.go -------------------------------------------------------------------------------- /api/v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2.go -------------------------------------------------------------------------------- /api/v2_configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_configs.go -------------------------------------------------------------------------------- /api/v2_configs_azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_configs_azure.go -------------------------------------------------------------------------------- /api/v2_configs_gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_configs_gcp.go -------------------------------------------------------------------------------- /api/v2_recommendations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_recommendations.go -------------------------------------------------------------------------------- /api/v2_recommendations_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_recommendations_aws.go -------------------------------------------------------------------------------- /api/v2_recommendations_aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_recommendations_aws_test.go -------------------------------------------------------------------------------- /api/v2_recommendations_azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_recommendations_azure.go -------------------------------------------------------------------------------- /api/v2_recommendations_azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_recommendations_azure_test.go -------------------------------------------------------------------------------- /api/v2_recommendations_gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_recommendations_gcp.go -------------------------------------------------------------------------------- /api/v2_recommendations_gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_recommendations_gcp_test.go -------------------------------------------------------------------------------- /api/v2_recommendations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_recommendations_test.go -------------------------------------------------------------------------------- /api/v2_search_filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_search_filters.go -------------------------------------------------------------------------------- /api/v2_search_filters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_search_filters_test.go -------------------------------------------------------------------------------- /api/v2_suppressions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_suppressions.go -------------------------------------------------------------------------------- /api/v2_suppressions_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_suppressions_aws.go -------------------------------------------------------------------------------- /api/v2_suppressions_azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_suppressions_azure.go -------------------------------------------------------------------------------- /api/v2_suppressions_gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_suppressions_gcp.go -------------------------------------------------------------------------------- /api/v2_suppressions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_suppressions_test.go -------------------------------------------------------------------------------- /api/v2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_test.go -------------------------------------------------------------------------------- /api/v2_vulnerabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_vulnerabilities.go -------------------------------------------------------------------------------- /api/v2_vulnerabilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_vulnerabilities_test.go -------------------------------------------------------------------------------- /api/v2_vulnerability_observations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/v2_vulnerability_observations.go -------------------------------------------------------------------------------- /api/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/version.go -------------------------------------------------------------------------------- /api/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/version_test.go -------------------------------------------------------------------------------- /api/vulnerability_exceptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/vulnerability_exceptions.go -------------------------------------------------------------------------------- /api/vulnerability_exceptions_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/vulnerability_exceptions_host.go -------------------------------------------------------------------------------- /api/vulnerability_exceptions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/api/vulnerability_exceptions_test.go -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/cdk/client/go/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cdk/client/go/client.go -------------------------------------------------------------------------------- /cli/cdk/go/proto/v1/cdk.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cdk/go/proto/v1/cdk.pb.go -------------------------------------------------------------------------------- /cli/cdk/go/proto/v1/cdk_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cdk/go/proto/v1/cdk_grpc.pb.go -------------------------------------------------------------------------------- /cli/cdk/python/proto/v1/cdk_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cdk/python/proto/v1/cdk_pb2.py -------------------------------------------------------------------------------- /cli/cmd/access_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/access_token.go -------------------------------------------------------------------------------- /cli/cmd/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/account.go -------------------------------------------------------------------------------- /cli/cmd/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/agent.go -------------------------------------------------------------------------------- /cli/cmd/agent_aws-install_ec2ic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/agent_aws-install_ec2ic.go -------------------------------------------------------------------------------- /cli/cmd/agent_aws-install_ec2ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/agent_aws-install_ec2ssh.go -------------------------------------------------------------------------------- /cli/cmd/agent_aws-install_ec2ssm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/agent_aws-install_ec2ssm.go -------------------------------------------------------------------------------- /cli/cmd/agent_gcp-install-osl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/agent_gcp-install-osl.go -------------------------------------------------------------------------------- /cli/cmd/agent_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/agent_install.go -------------------------------------------------------------------------------- /cli/cmd/agent_install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/agent_install_test.go -------------------------------------------------------------------------------- /cli/cmd/agent_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/agent_list.go -------------------------------------------------------------------------------- /cli/cmd/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert.go -------------------------------------------------------------------------------- /cli/cmd/alert_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_channel.go -------------------------------------------------------------------------------- /cli/cmd/alert_close.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_close.go -------------------------------------------------------------------------------- /cli/cmd/alert_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_comment.go -------------------------------------------------------------------------------- /cli/cmd/alert_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_list.go -------------------------------------------------------------------------------- /cli/cmd/alert_list_fixable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_list_fixable.go -------------------------------------------------------------------------------- /cli/cmd/alert_profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_profiles.go -------------------------------------------------------------------------------- /cli/cmd/alert_profiles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_profiles_test.go -------------------------------------------------------------------------------- /cli/cmd/alert_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_rules.go -------------------------------------------------------------------------------- /cli/cmd/alert_show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_show.go -------------------------------------------------------------------------------- /cli/cmd/alert_show_details.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_show_details.go -------------------------------------------------------------------------------- /cli/cmd/alert_show_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_show_events.go -------------------------------------------------------------------------------- /cli/cmd/alert_show_integrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_show_integrations.go -------------------------------------------------------------------------------- /cli/cmd/alert_show_investigation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_show_investigation.go -------------------------------------------------------------------------------- /cli/cmd/alert_show_related.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_show_related.go -------------------------------------------------------------------------------- /cli/cmd/alert_show_timeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_show_timeline.go -------------------------------------------------------------------------------- /cli/cmd/alert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/alert_test.go -------------------------------------------------------------------------------- /cli/cmd/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/api.go -------------------------------------------------------------------------------- /cli/cmd/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/api_test.go -------------------------------------------------------------------------------- /cli/cmd/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/aws.go -------------------------------------------------------------------------------- /cli/cmd/awsiam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/awsiam.go -------------------------------------------------------------------------------- /cli/cmd/awsiam_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/awsiam_test.go -------------------------------------------------------------------------------- /cli/cmd/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cache.go -------------------------------------------------------------------------------- /cli/cmd/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cache_test.go -------------------------------------------------------------------------------- /cli/cmd/cdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cdk.go -------------------------------------------------------------------------------- /cli/cmd/cdk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cdk_test.go -------------------------------------------------------------------------------- /cli/cmd/cli_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cli_state.go -------------------------------------------------------------------------------- /cli/cmd/cli_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cli_unix.go -------------------------------------------------------------------------------- /cli/cmd/cli_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cli_unix_test.go -------------------------------------------------------------------------------- /cli/cmd/cli_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cli_windows.go -------------------------------------------------------------------------------- /cli/cmd/cli_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cli_windows_test.go -------------------------------------------------------------------------------- /cli/cmd/cloud_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cloud_account.go -------------------------------------------------------------------------------- /cli/cmd/cloud_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/cloud_account_test.go -------------------------------------------------------------------------------- /cli/cmd/compliance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/compliance.go -------------------------------------------------------------------------------- /cli/cmd/compliance_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/compliance_aws.go -------------------------------------------------------------------------------- /cli/cmd/compliance_aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/compliance_aws_test.go -------------------------------------------------------------------------------- /cli/cmd/compliance_azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/compliance_azure.go -------------------------------------------------------------------------------- /cli/cmd/compliance_azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/compliance_azure_test.go -------------------------------------------------------------------------------- /cli/cmd/compliance_gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/compliance_gcp.go -------------------------------------------------------------------------------- /cli/cmd/compliance_gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/compliance_gcp_test.go -------------------------------------------------------------------------------- /cli/cmd/compliance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/compliance_test.go -------------------------------------------------------------------------------- /cli/cmd/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/component.go -------------------------------------------------------------------------------- /cli/cmd/component_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/component_args.go -------------------------------------------------------------------------------- /cli/cmd/component_args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/component_args_test.go -------------------------------------------------------------------------------- /cli/cmd/component_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/component_dev.go -------------------------------------------------------------------------------- /cli/cmd/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/configure.go -------------------------------------------------------------------------------- /cli/cmd/configure_switch_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/configure_switch_profile.go -------------------------------------------------------------------------------- /cli/cmd/container_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/container_registry.go -------------------------------------------------------------------------------- /cli/cmd/container_registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/container_registry_test.go -------------------------------------------------------------------------------- /cli/cmd/content_library.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/content_library.go -------------------------------------------------------------------------------- /cli/cmd/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/docs.go -------------------------------------------------------------------------------- /cli/cmd/emoji.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/emoji.go -------------------------------------------------------------------------------- /cli/cmd/emoji_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/emoji_unix.go -------------------------------------------------------------------------------- /cli/cmd/emoji_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/emoji_windows.go -------------------------------------------------------------------------------- /cli/cmd/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/errors.go -------------------------------------------------------------------------------- /cli/cmd/errors_lql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/errors_lql.go -------------------------------------------------------------------------------- /cli/cmd/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/errors_test.go -------------------------------------------------------------------------------- /cli/cmd/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/flags.go -------------------------------------------------------------------------------- /cli/cmd/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/flags_test.go -------------------------------------------------------------------------------- /cli/cmd/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/gcp.go -------------------------------------------------------------------------------- /cli/cmd/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate.go -------------------------------------------------------------------------------- /cli/cmd/generate_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_aws.go -------------------------------------------------------------------------------- /cli/cmd/generate_aws_controltower.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_aws_controltower.go -------------------------------------------------------------------------------- /cli/cmd/generate_aws_eks_audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_aws_eks_audit.go -------------------------------------------------------------------------------- /cli/cmd/generate_aws_eks_audit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_aws_eks_audit_test.go -------------------------------------------------------------------------------- /cli/cmd/generate_aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_aws_test.go -------------------------------------------------------------------------------- /cli/cmd/generate_azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_azure.go -------------------------------------------------------------------------------- /cli/cmd/generate_azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_azure_test.go -------------------------------------------------------------------------------- /cli/cmd/generate_cloud_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_cloud_account.go -------------------------------------------------------------------------------- /cli/cmd/generate_execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_execute.go -------------------------------------------------------------------------------- /cli/cmd/generate_execute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_execute_test.go -------------------------------------------------------------------------------- /cli/cmd/generate_gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_gcp.go -------------------------------------------------------------------------------- /cli/cmd/generate_gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_gcp_test.go -------------------------------------------------------------------------------- /cli/cmd/generate_gke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_gke.go -------------------------------------------------------------------------------- /cli/cmd/generate_gke_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_gke_test.go -------------------------------------------------------------------------------- /cli/cmd/generate_k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_k8s.go -------------------------------------------------------------------------------- /cli/cmd/generate_oci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_oci.go -------------------------------------------------------------------------------- /cli/cmd/generate_oci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_oci_test.go -------------------------------------------------------------------------------- /cli/cmd/generate_terraform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_terraform_test.go -------------------------------------------------------------------------------- /cli/cmd/generate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/generate_test.go -------------------------------------------------------------------------------- /cli/cmd/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/grpc.go -------------------------------------------------------------------------------- /cli/cmd/integration_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_aws.go -------------------------------------------------------------------------------- /cli/cmd/integration_aws_cloudwatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_aws_cloudwatch.go -------------------------------------------------------------------------------- /cli/cmd/integration_aws_govcloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_aws_govcloud.go -------------------------------------------------------------------------------- /cli/cmd/integration_aws_s3_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_aws_s3_channel.go -------------------------------------------------------------------------------- /cli/cmd/integration_azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_azure.go -------------------------------------------------------------------------------- /cli/cmd/integration_cisco_webex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_cisco_webex.go -------------------------------------------------------------------------------- /cli/cmd/integration_ctr_reg_limits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_ctr_reg_limits.go -------------------------------------------------------------------------------- /cli/cmd/integration_datadog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_datadog.go -------------------------------------------------------------------------------- /cli/cmd/integration_docker_hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_docker_hub.go -------------------------------------------------------------------------------- /cli/cmd/integration_docker_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_docker_v2.go -------------------------------------------------------------------------------- /cli/cmd/integration_ecr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_ecr.go -------------------------------------------------------------------------------- /cli/cmd/integration_email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_email.go -------------------------------------------------------------------------------- /cli/cmd/integration_gar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_gar.go -------------------------------------------------------------------------------- /cli/cmd/integration_gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_gcp.go -------------------------------------------------------------------------------- /cli/cmd/integration_gcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_gcr.go -------------------------------------------------------------------------------- /cli/cmd/integration_ghcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_ghcr.go -------------------------------------------------------------------------------- /cli/cmd/integration_inline_scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_inline_scanner.go -------------------------------------------------------------------------------- /cli/cmd/integration_jira.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_jira.go -------------------------------------------------------------------------------- /cli/cmd/integration_microsoft_teams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_microsoft_teams.go -------------------------------------------------------------------------------- /cli/cmd/integration_oci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_oci.go -------------------------------------------------------------------------------- /cli/cmd/integration_pagerduty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_pagerduty.go -------------------------------------------------------------------------------- /cli/cmd/integration_proxy_scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_proxy_scanner.go -------------------------------------------------------------------------------- /cli/cmd/integration_slack_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_slack_channel.go -------------------------------------------------------------------------------- /cli/cmd/integration_splunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_splunk.go -------------------------------------------------------------------------------- /cli/cmd/integration_victorops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_victorops.go -------------------------------------------------------------------------------- /cli/cmd/integration_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/integration_webhook.go -------------------------------------------------------------------------------- /cli/cmd/lql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql.go -------------------------------------------------------------------------------- /cli/cmd/lql_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_create.go -------------------------------------------------------------------------------- /cli/cmd/lql_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_delete.go -------------------------------------------------------------------------------- /cli/cmd/lql_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_internal_test.go -------------------------------------------------------------------------------- /cli/cmd/lql_library.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_library.go -------------------------------------------------------------------------------- /cli/cmd/lql_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_list.go -------------------------------------------------------------------------------- /cli/cmd/lql_list_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_list_internal_test.go -------------------------------------------------------------------------------- /cli/cmd/lql_preview.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_preview.go -------------------------------------------------------------------------------- /cli/cmd/lql_show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_show.go -------------------------------------------------------------------------------- /cli/cmd/lql_sources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_sources.go -------------------------------------------------------------------------------- /cli/cmd/lql_sources_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_sources_internal_test.go -------------------------------------------------------------------------------- /cli/cmd/lql_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_update.go -------------------------------------------------------------------------------- /cli/cmd/lql_validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/lql_validate.go -------------------------------------------------------------------------------- /cli/cmd/metricevent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/metricevent.go -------------------------------------------------------------------------------- /cli/cmd/metricevent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/metricevent_test.go -------------------------------------------------------------------------------- /cli/cmd/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/migration.go -------------------------------------------------------------------------------- /cli/cmd/outputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/outputs.go -------------------------------------------------------------------------------- /cli/cmd/outputs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/outputs_test.go -------------------------------------------------------------------------------- /cli/cmd/package_manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/package_manifest.go -------------------------------------------------------------------------------- /cli/cmd/package_manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/package_manifest_test.go -------------------------------------------------------------------------------- /cli/cmd/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/policy.go -------------------------------------------------------------------------------- /cli/cmd/policy_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/policy_create.go -------------------------------------------------------------------------------- /cli/cmd/policy_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/policy_delete.go -------------------------------------------------------------------------------- /cli/cmd/policy_disable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/policy_disable.go -------------------------------------------------------------------------------- /cli/cmd/policy_enable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/policy_enable.go -------------------------------------------------------------------------------- /cli/cmd/policy_exceptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/policy_exceptions.go -------------------------------------------------------------------------------- /cli/cmd/policy_exceptions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/policy_exceptions_test.go -------------------------------------------------------------------------------- /cli/cmd/policy_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/policy_internal_test.go -------------------------------------------------------------------------------- /cli/cmd/policy_library.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/policy_library.go -------------------------------------------------------------------------------- /cli/cmd/policy_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/policy_update.go -------------------------------------------------------------------------------- /cli/cmd/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/prompt.go -------------------------------------------------------------------------------- /cli/cmd/report_definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/report_definitions.go -------------------------------------------------------------------------------- /cli/cmd/report_definitions_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/report_definitions_create.go -------------------------------------------------------------------------------- /cli/cmd/report_definitions_diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/report_definitions_diff.go -------------------------------------------------------------------------------- /cli/cmd/report_definitions_revert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/report_definitions_revert.go -------------------------------------------------------------------------------- /cli/cmd/report_definitions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/report_definitions_test.go -------------------------------------------------------------------------------- /cli/cmd/report_definitions_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/report_definitions_update.go -------------------------------------------------------------------------------- /cli/cmd/report_distributions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/report_distributions.go -------------------------------------------------------------------------------- /cli/cmd/report_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/report_rules.go -------------------------------------------------------------------------------- /cli/cmd/report_rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/report_rules_test.go -------------------------------------------------------------------------------- /cli/cmd/resource_group_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/resource_group_v2.go -------------------------------------------------------------------------------- /cli/cmd/resource_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/resource_groups.go -------------------------------------------------------------------------------- /cli/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/root.go -------------------------------------------------------------------------------- /cli/cmd/suppressions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/suppressions.go -------------------------------------------------------------------------------- /cli/cmd/suppressions_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/suppressions_aws.go -------------------------------------------------------------------------------- /cli/cmd/suppressions_aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/suppressions_aws_test.go -------------------------------------------------------------------------------- /cli/cmd/suppressions_azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/suppressions_azure.go -------------------------------------------------------------------------------- /cli/cmd/suppressions_azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/suppressions_azure_test.go -------------------------------------------------------------------------------- /cli/cmd/suppressions_gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/suppressions_gcp.go -------------------------------------------------------------------------------- /cli/cmd/suppressions_gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/suppressions_gcp_test.go -------------------------------------------------------------------------------- /cli/cmd/table_render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/table_render.go -------------------------------------------------------------------------------- /cli/cmd/table_render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/table_render_test.go -------------------------------------------------------------------------------- /cli/cmd/team_members.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/team_members.go -------------------------------------------------------------------------------- /cli/cmd/team_members_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/team_members_test.go -------------------------------------------------------------------------------- /cli/cmd/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/telemetry.go -------------------------------------------------------------------------------- /cli/cmd/telemetry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/telemetry_test.go -------------------------------------------------------------------------------- /cli/cmd/test_resources/content-library/.version: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /cli/cmd/test_resources/content-library/content-library-nonzero.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exit 1 3 | -------------------------------------------------------------------------------- /cli/cmd/test_resources/content-library/content-library-noparse.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Hello World!" 3 | -------------------------------------------------------------------------------- /cli/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/version.go -------------------------------------------------------------------------------- /cli/cmd/vuln_container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vuln_container.go -------------------------------------------------------------------------------- /cli/cmd/vuln_container_scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vuln_container_scan.go -------------------------------------------------------------------------------- /cli/cmd/vuln_container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vuln_container_test.go -------------------------------------------------------------------------------- /cli/cmd/vuln_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vuln_host.go -------------------------------------------------------------------------------- /cli/cmd/vuln_host_list_cves.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vuln_host_list_cves.go -------------------------------------------------------------------------------- /cli/cmd/vuln_host_list_hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vuln_host_list_hosts.go -------------------------------------------------------------------------------- /cli/cmd/vuln_host_show_assessment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vuln_host_show_assessment.go -------------------------------------------------------------------------------- /cli/cmd/vuln_host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vuln_host_test.go -------------------------------------------------------------------------------- /cli/cmd/vuln_html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vuln_html.go -------------------------------------------------------------------------------- /cli/cmd/vuln_html_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vuln_html_test.go -------------------------------------------------------------------------------- /cli/cmd/vulnerability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vulnerability.go -------------------------------------------------------------------------------- /cli/cmd/vulnerability_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vulnerability_test.go -------------------------------------------------------------------------------- /cli/cmd/vulnerabilty_exceptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/cmd/vulnerabilty_exceptions.go -------------------------------------------------------------------------------- /cli/docs/lacework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework.md -------------------------------------------------------------------------------- /cli/docs/lacework_access-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_access-token.md -------------------------------------------------------------------------------- /cli/docs/lacework_account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_account.md -------------------------------------------------------------------------------- /cli/docs/lacework_account_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_account_list.md -------------------------------------------------------------------------------- /cli/docs/lacework_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_agent.md -------------------------------------------------------------------------------- /cli/docs/lacework_agent_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_agent_install.md -------------------------------------------------------------------------------- /cli/docs/lacework_agent_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_agent_list.md -------------------------------------------------------------------------------- /cli/docs/lacework_agent_token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_agent_token.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert-channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert-channel.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert-profile.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert-rule.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert-rule_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert-rule_list.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert-rule_show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert-rule_show.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert_close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert_close.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert_comment.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert_list.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert_open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert_open.md -------------------------------------------------------------------------------- /cli/docs/lacework_alert_show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_alert_show.md -------------------------------------------------------------------------------- /cli/docs/lacework_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_api.md -------------------------------------------------------------------------------- /cli/docs/lacework_cloud-account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_cloud-account.md -------------------------------------------------------------------------------- /cli/docs/lacework_compliance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_compliance.md -------------------------------------------------------------------------------- /cli/docs/lacework_compliance_aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_compliance_aws.md -------------------------------------------------------------------------------- /cli/docs/lacework_configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_configure.md -------------------------------------------------------------------------------- /cli/docs/lacework_configure_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_configure_list.md -------------------------------------------------------------------------------- /cli/docs/lacework_configure_show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_configure_show.md -------------------------------------------------------------------------------- /cli/docs/lacework_generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_generate.md -------------------------------------------------------------------------------- /cli/docs/lacework_generate_k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_generate_k8s.md -------------------------------------------------------------------------------- /cli/docs/lacework_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_policy.md -------------------------------------------------------------------------------- /cli/docs/lacework_policy_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_policy_create.md -------------------------------------------------------------------------------- /cli/docs/lacework_policy_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_policy_delete.md -------------------------------------------------------------------------------- /cli/docs/lacework_policy_disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_policy_disable.md -------------------------------------------------------------------------------- /cli/docs/lacework_policy_enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_policy_enable.md -------------------------------------------------------------------------------- /cli/docs/lacework_policy_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_policy_list.md -------------------------------------------------------------------------------- /cli/docs/lacework_policy_show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_policy_show.md -------------------------------------------------------------------------------- /cli/docs/lacework_policy_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_policy_update.md -------------------------------------------------------------------------------- /cli/docs/lacework_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_query.md -------------------------------------------------------------------------------- /cli/docs/lacework_query_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_query_create.md -------------------------------------------------------------------------------- /cli/docs/lacework_query_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_query_delete.md -------------------------------------------------------------------------------- /cli/docs/lacework_query_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_query_list.md -------------------------------------------------------------------------------- /cli/docs/lacework_query_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_query_run.md -------------------------------------------------------------------------------- /cli/docs/lacework_query_show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_query_show.md -------------------------------------------------------------------------------- /cli/docs/lacework_query_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_query_update.md -------------------------------------------------------------------------------- /cli/docs/lacework_query_validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_query_validate.md -------------------------------------------------------------------------------- /cli/docs/lacework_report-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_report-rule.md -------------------------------------------------------------------------------- /cli/docs/lacework_resource-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_resource-group.md -------------------------------------------------------------------------------- /cli/docs/lacework_team-member.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_team-member.md -------------------------------------------------------------------------------- /cli/docs/lacework_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_version.md -------------------------------------------------------------------------------- /cli/docs/lacework_vulnerability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/docs/lacework_vulnerability.md -------------------------------------------------------------------------------- /cli/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/install.ps1 -------------------------------------------------------------------------------- /cli/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/install.sh -------------------------------------------------------------------------------- /cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/main.go -------------------------------------------------------------------------------- /cli/vagrant/centos-6.10/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/vagrant/centos-6.10/Vagrantfile -------------------------------------------------------------------------------- /cli/vagrant/macos-sierra/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/vagrant/macos-sierra/Vagrantfile -------------------------------------------------------------------------------- /cli/vagrant/ubuntu-1804/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/vagrant/ubuntu-1804/Vagrantfile -------------------------------------------------------------------------------- /cli/vagrant/windows-10/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/vagrant/windows-10/Vagrantfile -------------------------------------------------------------------------------- /cli/vagrant/windows-10/provision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/cli/vagrant/windows-10/provision.ps1 -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/docs/index.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/go.sum -------------------------------------------------------------------------------- /integration/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/account_test.go -------------------------------------------------------------------------------- /integration/agent_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/agent_list_test.go -------------------------------------------------------------------------------- /integration/agent_token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/agent_token_test.go -------------------------------------------------------------------------------- /integration/alert_channel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/alert_channel_test.go -------------------------------------------------------------------------------- /integration/alert_close_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/alert_close_test.go -------------------------------------------------------------------------------- /integration/alert_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/alert_comment_test.go -------------------------------------------------------------------------------- /integration/alert_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/alert_list_test.go -------------------------------------------------------------------------------- /integration/alert_profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/alert_profile_test.go -------------------------------------------------------------------------------- /integration/alert_rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/alert_rules_test.go -------------------------------------------------------------------------------- /integration/alert_show_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/alert_show_test.go -------------------------------------------------------------------------------- /integration/alert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/alert_test.go -------------------------------------------------------------------------------- /integration/aws_generation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/aws_generation_test.go -------------------------------------------------------------------------------- /integration/azure_generation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/azure_generation_test.go -------------------------------------------------------------------------------- /integration/cloud_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/cloud_account_test.go -------------------------------------------------------------------------------- /integration/completion_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/completion_unix_test.go -------------------------------------------------------------------------------- /integration/compliance_aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/compliance_aws_test.go -------------------------------------------------------------------------------- /integration/compliance_azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/compliance_azure_test.go -------------------------------------------------------------------------------- /integration/compliance_gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/compliance_gcp_test.go -------------------------------------------------------------------------------- /integration/component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/component_test.go -------------------------------------------------------------------------------- /integration/configure_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/configure_list_test.go -------------------------------------------------------------------------------- /integration/configure_show_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/configure_show_test.go -------------------------------------------------------------------------------- /integration/configure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/configure_test.go -------------------------------------------------------------------------------- /integration/configure_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/configure_unix_test.go -------------------------------------------------------------------------------- /integration/context/ctx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/context/ctx.toml -------------------------------------------------------------------------------- /integration/context/ctx_cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/context/ctx_cfg.go -------------------------------------------------------------------------------- /integration/framework_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/framework_test.go -------------------------------------------------------------------------------- /integration/gcp_generation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/gcp_generation_test.go -------------------------------------------------------------------------------- /integration/generate_oci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/generate_oci_test.go -------------------------------------------------------------------------------- /integration/gke_generation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/gke_generation_test.go -------------------------------------------------------------------------------- /integration/global_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/global_flags_test.go -------------------------------------------------------------------------------- /integration/help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/help_test.go -------------------------------------------------------------------------------- /integration/lql_constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_constants.go -------------------------------------------------------------------------------- /integration/lql_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_create_test.go -------------------------------------------------------------------------------- /integration/lql_create_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_create_unix_test.go -------------------------------------------------------------------------------- /integration/lql_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_delete_test.go -------------------------------------------------------------------------------- /integration/lql_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_list_test.go -------------------------------------------------------------------------------- /integration/lql_preview_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_preview_test.go -------------------------------------------------------------------------------- /integration/lql_show_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_show_test.go -------------------------------------------------------------------------------- /integration/lql_sources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_sources_test.go -------------------------------------------------------------------------------- /integration/lql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_test.go -------------------------------------------------------------------------------- /integration/lql_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_update_test.go -------------------------------------------------------------------------------- /integration/lql_update_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_update_unix_test.go -------------------------------------------------------------------------------- /integration/lql_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lql_validate_test.go -------------------------------------------------------------------------------- /integration/lwupdater_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/lwupdater_test.go -------------------------------------------------------------------------------- /integration/policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/policy_test.go -------------------------------------------------------------------------------- /integration/preflight_aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/preflight_aws_test.go -------------------------------------------------------------------------------- /integration/preflight_azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/preflight_azure_test.go -------------------------------------------------------------------------------- /integration/preflight_gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/preflight_gcp_test.go -------------------------------------------------------------------------------- /integration/resource_groups_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/resource_groups_test.go -------------------------------------------------------------------------------- /integration/team_members_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/team_members_test.go -------------------------------------------------------------------------------- /integration/test_resources/help/api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/test_resources/help/api -------------------------------------------------------------------------------- /integration/test_resources/help/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/test_resources/help/help -------------------------------------------------------------------------------- /integration/test_resources/vuln_scan/dirty.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:15.2.0 -------------------------------------------------------------------------------- /integration/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/version_test.go -------------------------------------------------------------------------------- /integration/vulnerability_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/integration/vulnerability_test.go -------------------------------------------------------------------------------- /internal/archive/detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/archive/detect.go -------------------------------------------------------------------------------- /internal/archive/detect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/archive/detect_test.go -------------------------------------------------------------------------------- /internal/archive/gz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/archive/gz.go -------------------------------------------------------------------------------- /internal/archive/gz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/archive/gz_test.go -------------------------------------------------------------------------------- /internal/archive/tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/archive/tar.go -------------------------------------------------------------------------------- /internal/archive/tar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/archive/tar_test.go -------------------------------------------------------------------------------- /internal/array/contains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/array/contains.go -------------------------------------------------------------------------------- /internal/array/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/array/join.go -------------------------------------------------------------------------------- /internal/array/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/array/sort.go -------------------------------------------------------------------------------- /internal/array/sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/array/sort_test.go -------------------------------------------------------------------------------- /internal/array/unique.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/array/unique.go -------------------------------------------------------------------------------- /internal/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/cache/cache.go -------------------------------------------------------------------------------- /internal/capturer/capture_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/capturer/capture_output.go -------------------------------------------------------------------------------- /internal/databox/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/databox/blob.go -------------------------------------------------------------------------------- /internal/databox/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/databox/box.go -------------------------------------------------------------------------------- /internal/databox/generator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/databox/generator/main.go -------------------------------------------------------------------------------- /internal/databox/static/scaffoldings/golang/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1-dev 2 | -------------------------------------------------------------------------------- /internal/databox/static/scaffoldings/golang/bin/.gitkeeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/databox/static/scaffoldings/golang/cmd/README.md: -------------------------------------------------------------------------------- 1 | # `/cmd` 2 | 3 | Main applications for this project. -------------------------------------------------------------------------------- /internal/databox/static/scaffoldings/python/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/databox/static/scaffoldings/python/src/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/failon/count_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/failon/count_operation.go -------------------------------------------------------------------------------- /internal/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/file/file.go -------------------------------------------------------------------------------- /internal/file/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/file/file_test.go -------------------------------------------------------------------------------- /internal/format/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/format/secret.go -------------------------------------------------------------------------------- /internal/format/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/format/secret_test.go -------------------------------------------------------------------------------- /internal/format/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/format/strings.go -------------------------------------------------------------------------------- /internal/format/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/format/strings_test.go -------------------------------------------------------------------------------- /internal/intgguid/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/intgguid/rand.go -------------------------------------------------------------------------------- /internal/lacework/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/lacework/server.go -------------------------------------------------------------------------------- /internal/pointer/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/pointer/bool.go -------------------------------------------------------------------------------- /internal/pointer/bool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/pointer/bool_test.go -------------------------------------------------------------------------------- /internal/unique/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/unique/strings.go -------------------------------------------------------------------------------- /internal/unique/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/unique/strings_test.go -------------------------------------------------------------------------------- /internal/validate/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/validate/email.go -------------------------------------------------------------------------------- /internal/validate/email_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/internal/validate/email_test.go -------------------------------------------------------------------------------- /lwcloud/gcp/helpers/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcloud/gcp/helpers/helper.go -------------------------------------------------------------------------------- /lwcomponent/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/DESIGN.md -------------------------------------------------------------------------------- /lwcomponent/api_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/api_info.go -------------------------------------------------------------------------------- /lwcomponent/api_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/api_info_test.go -------------------------------------------------------------------------------- /lwcomponent/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/catalog.go -------------------------------------------------------------------------------- /lwcomponent/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/catalog_test.go -------------------------------------------------------------------------------- /lwcomponent/cdk_component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/cdk_component.go -------------------------------------------------------------------------------- /lwcomponent/cdk_component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/cdk_component_test.go -------------------------------------------------------------------------------- /lwcomponent/cdk_executable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/cdk_executable.go -------------------------------------------------------------------------------- /lwcomponent/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/component.go -------------------------------------------------------------------------------- /lwcomponent/component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/component_test.go -------------------------------------------------------------------------------- /lwcomponent/dev_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/dev_info.go -------------------------------------------------------------------------------- /lwcomponent/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/error.go -------------------------------------------------------------------------------- /lwcomponent/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/error_test.go -------------------------------------------------------------------------------- /lwcomponent/executable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/executable.go -------------------------------------------------------------------------------- /lwcomponent/host_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/host_info.go -------------------------------------------------------------------------------- /lwcomponent/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/http.go -------------------------------------------------------------------------------- /lwcomponent/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/http_test.go -------------------------------------------------------------------------------- /lwcomponent/keys/lwcomponent-root.pub: -------------------------------------------------------------------------------- 1 | RWTcmYcv9P0yMqHghe1Fu4gg65yoBuZCY7r02rD0N7o2XSK5Jq9h1Quk -------------------------------------------------------------------------------- /lwcomponent/library.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/library.go -------------------------------------------------------------------------------- /lwcomponent/minisign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/minisign.go -------------------------------------------------------------------------------- /lwcomponent/staging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/staging.go -------------------------------------------------------------------------------- /lwcomponent/staging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/staging_test.go -------------------------------------------------------------------------------- /lwcomponent/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/status.go -------------------------------------------------------------------------------- /lwcomponent/test_resources/env-vars.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Hello ${LW_TEST}!" 3 | -------------------------------------------------------------------------------- /lwcomponent/test_resources/hello-world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Hello World!" 3 | -------------------------------------------------------------------------------- /lwcomponent/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwcomponent/types.go -------------------------------------------------------------------------------- /lwconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwconfig/README.md -------------------------------------------------------------------------------- /lwconfig/_examples/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwconfig/_examples/main.go -------------------------------------------------------------------------------- /lwconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwconfig/config.go -------------------------------------------------------------------------------- /lwconfig/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwconfig/config_test.go -------------------------------------------------------------------------------- /lwdomain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwdomain/README.md -------------------------------------------------------------------------------- /lwdomain/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwdomain/domain.go -------------------------------------------------------------------------------- /lwdomain/domain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwdomain/domain_test.go -------------------------------------------------------------------------------- /lwgenerate/_examples/aws/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/_examples/aws/main.go -------------------------------------------------------------------------------- /lwgenerate/_examples/azure/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/_examples/azure/main.go -------------------------------------------------------------------------------- /lwgenerate/_examples/gcp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/_examples/gcp/main.go -------------------------------------------------------------------------------- /lwgenerate/_examples/hcl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/_examples/hcl/main.go -------------------------------------------------------------------------------- /lwgenerate/aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/aws/aws.go -------------------------------------------------------------------------------- /lwgenerate/aws/aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/aws/aws_test.go -------------------------------------------------------------------------------- /lwgenerate/azure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/azure/azure.go -------------------------------------------------------------------------------- /lwgenerate/azure/azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/azure/azure_test.go -------------------------------------------------------------------------------- /lwgenerate/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/constants.go -------------------------------------------------------------------------------- /lwgenerate/gcp/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/gcp/gcp.go -------------------------------------------------------------------------------- /lwgenerate/gcp/gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/gcp/gcp_test.go -------------------------------------------------------------------------------- /lwgenerate/gcp/gke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/gcp/gke.go -------------------------------------------------------------------------------- /lwgenerate/gcp/gke_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/gcp/gke_test.go -------------------------------------------------------------------------------- /lwgenerate/gcp/service_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/gcp/service_account.go -------------------------------------------------------------------------------- /lwgenerate/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/hcl.go -------------------------------------------------------------------------------- /lwgenerate/hcl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/hcl_test.go -------------------------------------------------------------------------------- /lwgenerate/oci/oci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/oci/oci.go -------------------------------------------------------------------------------- /lwgenerate/oci/oci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwgenerate/oci/oci_test.go -------------------------------------------------------------------------------- /lwlogger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwlogger/README.md -------------------------------------------------------------------------------- /lwlogger/_examples/io-writer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwlogger/_examples/io-writer/main.go -------------------------------------------------------------------------------- /lwlogger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwlogger/logger.go -------------------------------------------------------------------------------- /lwlogger/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwlogger/logger_test.go -------------------------------------------------------------------------------- /lwpreflight/aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/aws/aws.go -------------------------------------------------------------------------------- /lwpreflight/aws/caller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/aws/caller.go -------------------------------------------------------------------------------- /lwpreflight/aws/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/aws/constants.go -------------------------------------------------------------------------------- /lwpreflight/aws/constraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/aws/constraint.go -------------------------------------------------------------------------------- /lwpreflight/aws/detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/aws/detail.go -------------------------------------------------------------------------------- /lwpreflight/aws/permission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/aws/permission.go -------------------------------------------------------------------------------- /lwpreflight/aws/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/aws/policy.go -------------------------------------------------------------------------------- /lwpreflight/aws/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/aws/util.go -------------------------------------------------------------------------------- /lwpreflight/aws/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/aws/util_test.go -------------------------------------------------------------------------------- /lwpreflight/azure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/azure/azure.go -------------------------------------------------------------------------------- /lwpreflight/azure/caller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/azure/caller.go -------------------------------------------------------------------------------- /lwpreflight/azure/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/azure/constants.go -------------------------------------------------------------------------------- /lwpreflight/azure/constraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/azure/constraint.go -------------------------------------------------------------------------------- /lwpreflight/azure/detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/azure/detail.go -------------------------------------------------------------------------------- /lwpreflight/azure/permission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/azure/permission.go -------------------------------------------------------------------------------- /lwpreflight/azure/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/azure/policy.go -------------------------------------------------------------------------------- /lwpreflight/gcp/caller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/gcp/caller.go -------------------------------------------------------------------------------- /lwpreflight/gcp/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/gcp/constants.go -------------------------------------------------------------------------------- /lwpreflight/gcp/constraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/gcp/constraint.go -------------------------------------------------------------------------------- /lwpreflight/gcp/detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/gcp/detail.go -------------------------------------------------------------------------------- /lwpreflight/gcp/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/gcp/gcp.go -------------------------------------------------------------------------------- /lwpreflight/gcp/permission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/gcp/permission.go -------------------------------------------------------------------------------- /lwpreflight/gcp/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/gcp/policy.go -------------------------------------------------------------------------------- /lwpreflight/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwpreflight/logger/logger.go -------------------------------------------------------------------------------- /lwrunner/awsrunner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwrunner/awsrunner.go -------------------------------------------------------------------------------- /lwrunner/awsrunner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwrunner/awsrunner_test.go -------------------------------------------------------------------------------- /lwrunner/gcprunner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwrunner/gcprunner.go -------------------------------------------------------------------------------- /lwrunner/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwrunner/runner.go -------------------------------------------------------------------------------- /lwrunner/runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwrunner/runner_test.go -------------------------------------------------------------------------------- /lwrunner/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwrunner/ssh.go -------------------------------------------------------------------------------- /lwseverity/severity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwseverity/severity.go -------------------------------------------------------------------------------- /lwseverity/severity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwseverity/severity_test.go -------------------------------------------------------------------------------- /lwtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/README.md -------------------------------------------------------------------------------- /lwtime/epoch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/epoch.go -------------------------------------------------------------------------------- /lwtime/epoch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/epoch_test.go -------------------------------------------------------------------------------- /lwtime/epochstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/epochstring.go -------------------------------------------------------------------------------- /lwtime/epochstring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/epochstring_test.go -------------------------------------------------------------------------------- /lwtime/nanotime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/nanotime.go -------------------------------------------------------------------------------- /lwtime/nattime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/nattime.go -------------------------------------------------------------------------------- /lwtime/nattime_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/nattime_internal_test.go -------------------------------------------------------------------------------- /lwtime/nattime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/nattime_test.go -------------------------------------------------------------------------------- /lwtime/reltime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/reltime.go -------------------------------------------------------------------------------- /lwtime/reltime_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/reltime_internal_test.go -------------------------------------------------------------------------------- /lwtime/reltime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/reltime_test.go -------------------------------------------------------------------------------- /lwtime/rfc1123z.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/rfc1123z.go -------------------------------------------------------------------------------- /lwtime/rfc1123z_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwtime/rfc1123z_test.go -------------------------------------------------------------------------------- /lwtime/rfc3339.go: -------------------------------------------------------------------------------- 1 | package lwtime 2 | 3 | const ( 4 | RFC3339Milli = "2006-01-02T15:04:05.000Z" 5 | ) 6 | -------------------------------------------------------------------------------- /lwupdater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwupdater/README.md -------------------------------------------------------------------------------- /lwupdater/_examples/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwupdater/_examples/main.go -------------------------------------------------------------------------------- /lwupdater/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwupdater/updater.go -------------------------------------------------------------------------------- /lwupdater/updater_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/lwupdater/updater_test.go -------------------------------------------------------------------------------- /proto/v1/cdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/proto/v1/cdk.proto -------------------------------------------------------------------------------- /scripts/chocolatey/lacework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/chocolatey/lacework.png -------------------------------------------------------------------------------- /scripts/chocolatey/package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/chocolatey/package.ps1 -------------------------------------------------------------------------------- /scripts/codefresh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/codefresh.ps1 -------------------------------------------------------------------------------- /scripts/docs/doc_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/docs/doc_gen.go -------------------------------------------------------------------------------- /scripts/git_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/git_env.sh -------------------------------------------------------------------------------- /scripts/githooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/githooks/commit-msg -------------------------------------------------------------------------------- /scripts/integration_test_ctx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/integration_test_ctx.sh -------------------------------------------------------------------------------- /scripts/prepare_test_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/prepare_test_resources.sh -------------------------------------------------------------------------------- /scripts/project.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/release_containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/release_containers.sh -------------------------------------------------------------------------------- /scripts/version_updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/scripts/version_updater.sh -------------------------------------------------------------------------------- /vendor/aead.dev/minisign/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/aead.dev/minisign/.gitignore -------------------------------------------------------------------------------- /vendor/aead.dev/minisign/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/aead.dev/minisign/LICENSE -------------------------------------------------------------------------------- /vendor/aead.dev/minisign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/aead.dev/minisign/README.md -------------------------------------------------------------------------------- /vendor/aead.dev/minisign/minisign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/aead.dev/minisign/minisign.go -------------------------------------------------------------------------------- /vendor/aead.dev/minisign/private.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/aead.dev/minisign/private.go -------------------------------------------------------------------------------- /vendor/aead.dev/minisign/public.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/aead.dev/minisign/public.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.120.0" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/cloud.google.com/go/README.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/cloud.google.com/go/debug.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/cloud.google.com/go/doc.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/cloud.google.com/go/go.work -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/dario.cat/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/dario.cat/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/dario.cat/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/dario.cat/mergo/README.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/dario.cat/mergo/SECURITY.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/dario.cat/mergo/doc.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/dario.cat/mergo/map.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/dario.cat/mergo/merge.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/dario.cat/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/AlecAivazis/survey/v2/filter.go: -------------------------------------------------------------------------------- 1 | package survey 2 | -------------------------------------------------------------------------------- /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/Netflix/go-expect/OSSMETADATA: -------------------------------------------------------------------------------- 1 | osslifecycle=active 2 | -------------------------------------------------------------------------------- /vendor/github.com/agext/levenshtein/.gitignore: -------------------------------------------------------------------------------- 1 | README.html 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.5 2 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/gabriel-vasile/mimetype/.gitattributes: -------------------------------------------------------------------------------- 1 | testdata/* linguist-vendored 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/go-git/gcfg/README -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/go-git/gcfg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/go-git/gcfg/set.go -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.14.2" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hc-install/internal/src/src.go: -------------------------------------------------------------------------------- 1 | package src 2 | 3 | type InstallSrcSigil struct{} 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/terraform-json/.go-version: -------------------------------------------------------------------------------- 1 | 1.16 2 | -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/.gitattributes: -------------------------------------------------------------------------------- 1 | testdata/dos-lines eol=crlf 2 | -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/kr/pty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/kr/pty/README.md -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/kr/pty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/kr/pty/ioctl.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/kr/pty/run.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/kr/pty/util.go -------------------------------------------------------------------------------- /vendor/github.com/kyokomi/emoji/v2/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | emoji.iml 3 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/mgutz/ansi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/mgutz/ansi/ansi.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/mgutz/ansi/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/v2/internal/tracker/tracker.go: -------------------------------------------------------------------------------- 1 | package tracker 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/github.com/spf13/viper/.envrc -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.yamlignore: -------------------------------------------------------------------------------- 1 | # TODO: FIXME 2 | /.github/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env: -------------------------------------------------------------------------------- 1 | HELLO=world 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env.invalid: -------------------------------------------------------------------------------- 1 | lol$wut 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | annotate.json 4 | profile.cov 5 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/bool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/float64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/gen.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/int32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/int64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/nocmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/nocmp.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/uint32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/uint64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uintptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/uintptr.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/atomic/value.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/stacktrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/stacktrace.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/net/html/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/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/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/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/lacework/go-sdk/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/warnings.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/warnings.v0/README -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework/go-sdk/HEAD/vendor/modules.txt --------------------------------------------------------------------------------