├── .github └── workflows │ ├── lint-unitest.yaml │ └── publish-on-tagging.yaml ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── charts ├── core │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── admission-webhook-service.yaml │ │ ├── bootstrap-secret.yaml │ │ ├── cert-manager-secret.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding-least.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── controller-deployment.yaml │ │ ├── controller-ingress.yaml │ │ ├── controller-lease.yaml │ │ ├── controller-route.yaml │ │ ├── controller-secret.yaml │ │ ├── controller-service.yaml │ │ ├── crd-role-least.yaml │ │ ├── crd-role.yaml │ │ ├── crd-webhook-service.yaml │ │ ├── crd.yaml │ │ ├── csp-clusterrole.yaml │ │ ├── csp-clusterrolebinding.yaml │ │ ├── csp-crd.yaml │ │ ├── csp-deployment.yaml │ │ ├── csp-role.yaml │ │ ├── csp-rolebinding.yaml │ │ ├── csp-serviceaccount.yaml │ │ ├── enforcer-daemonset.yaml │ │ ├── init-configmap.yaml │ │ ├── init-secret.yaml │ │ ├── manager-deployment.yaml │ │ ├── manager-ingress.yaml │ │ ├── manager-route.yaml │ │ ├── manager-secret.yaml │ │ ├── manager-service.yaml │ │ ├── psp.yaml │ │ ├── pvc.yaml │ │ ├── registry-adapter-ingress.yaml │ │ ├── registry-adapter-secret.yaml │ │ ├── registry-adapter.yaml │ │ ├── role-least.yaml │ │ ├── role.yaml │ │ ├── rolebinding-least.yaml │ │ ├── rolebinding.yaml │ │ ├── scanner-deployment.yaml │ │ ├── serviceaccount-least.yaml │ │ ├── serviceaccount.yaml │ │ ├── updater-cronjob.yaml │ │ ├── upgrader-cronjob.yaml │ │ └── upgrader-lease.yaml │ ├── values.schema.json │ └── values.yaml ├── crd │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── crd.yaml │ │ └── csp-crd.yaml │ └── values.yaml └── monitor │ ├── Chart.yaml │ ├── README.md │ ├── dashboards │ └── nv_dashboard.json │ ├── templates │ ├── _helpers.tpl │ ├── dashboard.yaml │ ├── exporter-deployment.yaml │ ├── exporter-service.yaml │ ├── exporter-servicemonitor.yaml │ └── secret.yaml │ └── values.yaml ├── ct.yaml ├── docs └── Automatic_runtime_Engine_Detection.md ├── go.mod ├── go.sum ├── scripts └── bump_version.sh └── test ├── .gitignore ├── crd_test.go ├── daemonset_test.go ├── deployment_test.go ├── exporter_test.go ├── go.mod ├── go.sum ├── helm_test.go ├── ingress_test.go ├── pvc_test.go ├── registry_adapter_test.go ├── role_test.go ├── route_test.go ├── sa_test.go ├── scanner_test.go ├── service_test.go ├── updater_test.go ├── vendor ├── filippo.io │ └── edwards25519 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── edwards25519.go │ │ ├── extra.go │ │ ├── field │ │ ├── fe.go │ │ ├── fe_amd64.go │ │ ├── fe_amd64.s │ │ ├── fe_amd64_noasm.go │ │ ├── fe_arm64.go │ │ ├── fe_arm64.s │ │ ├── fe_arm64_noasm.go │ │ ├── fe_extra.go │ │ └── fe_generic.go │ │ ├── scalar.go │ │ ├── scalar_fiat.go │ │ ├── scalarmult.go │ │ └── tables.go ├── github.com │ ├── BurntSushi │ │ └── toml │ │ │ ├── .gitignore │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── error.go │ │ │ ├── internal │ │ │ └── tz.go │ │ │ ├── lex.go │ │ │ ├── meta.go │ │ │ ├── parse.go │ │ │ ├── type_fields.go │ │ │ └── type_toml.go │ ├── aws │ │ ├── aws-sdk-go-v2 │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── aws │ │ │ │ ├── accountid_endpoint_mode.go │ │ │ │ ├── arn │ │ │ │ │ └── arn.go │ │ │ │ ├── config.go │ │ │ │ ├── context.go │ │ │ │ ├── credential_cache.go │ │ │ │ ├── credentials.go │ │ │ │ ├── defaults │ │ │ │ │ ├── auto.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ └── doc.go │ │ │ │ ├── defaultsmode.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── errors.go │ │ │ │ ├── from_ptr.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── logging.go │ │ │ │ ├── logging_generate.go │ │ │ │ ├── middleware │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── osname.go │ │ │ │ │ ├── osname_go115.go │ │ │ │ │ ├── recursion_detection.go │ │ │ │ │ ├── request_id.go │ │ │ │ │ ├── request_id_retriever.go │ │ │ │ │ └── user_agent.go │ │ │ │ ├── protocol │ │ │ │ │ ├── ec2query │ │ │ │ │ │ └── error_utils.go │ │ │ │ │ ├── eventstream │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── debug.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── eventstreamapi │ │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ │ └── transport_go117.go │ │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ │ ├── header.go │ │ │ │ │ │ ├── header_value.go │ │ │ │ │ │ └── message.go │ │ │ │ │ ├── query │ │ │ │ │ │ ├── array.go │ │ │ │ │ │ ├── encoder.go │ │ │ │ │ │ ├── map.go │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ ├── object.go │ │ │ │ │ │ └── value.go │ │ │ │ │ ├── restjson │ │ │ │ │ │ └── decoder_util.go │ │ │ │ │ └── xml │ │ │ │ │ │ └── error_utils.go │ │ │ │ ├── ratelimit │ │ │ │ │ ├── none.go │ │ │ │ │ ├── token_bucket.go │ │ │ │ │ └── token_rate_limit.go │ │ │ │ ├── request.go │ │ │ │ ├── retry │ │ │ │ │ ├── adaptive.go │ │ │ │ │ ├── adaptive_ratelimit.go │ │ │ │ │ ├── adaptive_token_bucket.go │ │ │ │ │ ├── attempt_metrics.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── jitter_backoff.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── retry.go │ │ │ │ │ ├── retryable_error.go │ │ │ │ │ ├── standard.go │ │ │ │ │ ├── throttle_error.go │ │ │ │ │ └── timeout_error.go │ │ │ │ ├── retryer.go │ │ │ │ ├── runtime.go │ │ │ │ ├── signer │ │ │ │ │ ├── internal │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ │ ├── stream.go │ │ │ │ │ │ └── v4.go │ │ │ │ ├── to_ptr.go │ │ │ │ ├── transport │ │ │ │ │ └── http │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── content_type.go │ │ │ │ │ │ ├── response_error.go │ │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ │ └── timeout_read_closer.go │ │ │ │ ├── types.go │ │ │ │ └── version.go │ │ │ ├── config │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.go │ │ │ │ ├── defaultsmode.go │ │ │ │ ├── doc.go │ │ │ │ ├── env_config.go │ │ │ │ ├── generate.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── load_options.go │ │ │ │ ├── local.go │ │ │ │ ├── provider.go │ │ │ │ ├── resolve.go │ │ │ │ ├── resolve_bearer_token.go │ │ │ │ ├── resolve_credentials.go │ │ │ │ └── shared_config.go │ │ │ ├── credentials │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── doc.go │ │ │ │ ├── ec2rolecreds │ │ │ │ │ ├── doc.go │ │ │ │ │ └── provider.go │ │ │ │ ├── endpointcreds │ │ │ │ │ ├── internal │ │ │ │ │ │ └── client │ │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ │ └── middleware.go │ │ │ │ │ └── provider.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── processcreds │ │ │ │ │ ├── doc.go │ │ │ │ │ └── provider.go │ │ │ │ ├── ssocreds │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── sso_cached_token.go │ │ │ │ │ ├── sso_credentials_provider.go │ │ │ │ │ └── sso_token_provider.go │ │ │ │ ├── static_provider.go │ │ │ │ └── stscreds │ │ │ │ │ ├── assume_role_provider.go │ │ │ │ │ └── web_identity_provider.go │ │ │ ├── feature │ │ │ │ ├── ec2 │ │ │ │ │ └── imds │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── api_client.go │ │ │ │ │ │ ├── api_op_GetDynamicData.go │ │ │ │ │ │ ├── api_op_GetIAMInfo.go │ │ │ │ │ │ ├── api_op_GetInstanceIdentityDocument.go │ │ │ │ │ │ ├── api_op_GetMetadata.go │ │ │ │ │ │ ├── api_op_GetRegion.go │ │ │ │ │ │ ├── api_op_GetToken.go │ │ │ │ │ │ ├── api_op_GetUserData.go │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── resolvers.go │ │ │ │ │ │ ├── request_middleware.go │ │ │ │ │ │ └── token_provider.go │ │ │ │ └── s3 │ │ │ │ │ └── manager │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── api.go │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── bucket_region.go │ │ │ │ │ ├── buffered_read_seeker.go │ │ │ │ │ ├── default_read_seeker_write_to.go │ │ │ │ │ ├── default_read_seeker_write_to_windows.go │ │ │ │ │ ├── default_writer_read_from.go │ │ │ │ │ ├── default_writer_read_from_windows.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── download.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── pool.go │ │ │ │ │ ├── read_seeker_write_to.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── upload.go │ │ │ │ │ └── writer_read_from.go │ │ │ ├── internal │ │ │ │ ├── auth │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── scheme.go │ │ │ │ │ └── smithy │ │ │ │ │ │ ├── bearer_token_adapter.go │ │ │ │ │ │ ├── bearer_token_signer_adapter.go │ │ │ │ │ │ ├── credentials_adapter.go │ │ │ │ │ │ ├── smithy.go │ │ │ │ │ │ └── v4signer_adapter.go │ │ │ │ ├── awsutil │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── prettify.go │ │ │ │ │ └── string_value.go │ │ │ │ ├── configsources │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── config.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── go_module_metadata.go │ │ │ │ ├── context │ │ │ │ │ └── context.go │ │ │ │ ├── endpoints │ │ │ │ │ ├── awsrulesfn │ │ │ │ │ │ ├── arn.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generate.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── partition.go │ │ │ │ │ │ ├── partitions.go │ │ │ │ │ │ └── partitions.json │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ └── go_module_metadata.go │ │ │ │ ├── ini │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── ini.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── sections.go │ │ │ │ │ ├── strings.go │ │ │ │ │ ├── token.go │ │ │ │ │ ├── tokenize.go │ │ │ │ │ └── value.go │ │ │ │ ├── middleware │ │ │ │ │ └── middleware.go │ │ │ │ ├── rand │ │ │ │ │ └── rand.go │ │ │ │ ├── sdk │ │ │ │ │ ├── interfaces.go │ │ │ │ │ └── time.go │ │ │ │ ├── sdkio │ │ │ │ │ └── byte.go │ │ │ │ ├── shareddefaults │ │ │ │ │ └── shared_config.go │ │ │ │ ├── strings │ │ │ │ │ └── strings.go │ │ │ │ ├── sync │ │ │ │ │ └── singleflight │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── docs.go │ │ │ │ │ │ └── singleflight.go │ │ │ │ ├── timeconv │ │ │ │ │ └── duration.go │ │ │ │ └── v4a │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── compare.go │ │ │ │ │ │ └── ecc.go │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ ├── smithy.go │ │ │ │ │ └── v4a.go │ │ │ └── service │ │ │ │ ├── acm │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AddTagsToCertificate.go │ │ │ │ ├── api_op_DeleteCertificate.go │ │ │ │ ├── api_op_DescribeCertificate.go │ │ │ │ ├── api_op_ExportCertificate.go │ │ │ │ ├── api_op_GetAccountConfiguration.go │ │ │ │ ├── api_op_GetCertificate.go │ │ │ │ ├── api_op_ImportCertificate.go │ │ │ │ ├── api_op_ListCertificates.go │ │ │ │ ├── api_op_ListTagsForCertificate.go │ │ │ │ ├── api_op_PutAccountConfiguration.go │ │ │ │ ├── api_op_RemoveTagsFromCertificate.go │ │ │ │ ├── api_op_RenewCertificate.go │ │ │ │ ├── api_op_RequestCertificate.go │ │ │ │ ├── api_op_ResendValidationEmail.go │ │ │ │ ├── api_op_UpdateCertificateOptions.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 │ │ │ │ ├── autoscaling │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AttachInstances.go │ │ │ │ ├── api_op_AttachLoadBalancerTargetGroups.go │ │ │ │ ├── api_op_AttachLoadBalancers.go │ │ │ │ ├── api_op_AttachTrafficSources.go │ │ │ │ ├── api_op_BatchDeleteScheduledAction.go │ │ │ │ ├── api_op_BatchPutScheduledUpdateGroupAction.go │ │ │ │ ├── api_op_CancelInstanceRefresh.go │ │ │ │ ├── api_op_CompleteLifecycleAction.go │ │ │ │ ├── api_op_CreateAutoScalingGroup.go │ │ │ │ ├── api_op_CreateLaunchConfiguration.go │ │ │ │ ├── api_op_CreateOrUpdateTags.go │ │ │ │ ├── api_op_DeleteAutoScalingGroup.go │ │ │ │ ├── api_op_DeleteLaunchConfiguration.go │ │ │ │ ├── api_op_DeleteLifecycleHook.go │ │ │ │ ├── api_op_DeleteNotificationConfiguration.go │ │ │ │ ├── api_op_DeletePolicy.go │ │ │ │ ├── api_op_DeleteScheduledAction.go │ │ │ │ ├── api_op_DeleteTags.go │ │ │ │ ├── api_op_DeleteWarmPool.go │ │ │ │ ├── api_op_DescribeAccountLimits.go │ │ │ │ ├── api_op_DescribeAdjustmentTypes.go │ │ │ │ ├── api_op_DescribeAutoScalingGroups.go │ │ │ │ ├── api_op_DescribeAutoScalingInstances.go │ │ │ │ ├── api_op_DescribeAutoScalingNotificationTypes.go │ │ │ │ ├── api_op_DescribeInstanceRefreshes.go │ │ │ │ ├── api_op_DescribeLaunchConfigurations.go │ │ │ │ ├── api_op_DescribeLifecycleHookTypes.go │ │ │ │ ├── api_op_DescribeLifecycleHooks.go │ │ │ │ ├── api_op_DescribeLoadBalancerTargetGroups.go │ │ │ │ ├── api_op_DescribeLoadBalancers.go │ │ │ │ ├── api_op_DescribeMetricCollectionTypes.go │ │ │ │ ├── api_op_DescribeNotificationConfigurations.go │ │ │ │ ├── api_op_DescribePolicies.go │ │ │ │ ├── api_op_DescribeScalingActivities.go │ │ │ │ ├── api_op_DescribeScalingProcessTypes.go │ │ │ │ ├── api_op_DescribeScheduledActions.go │ │ │ │ ├── api_op_DescribeTags.go │ │ │ │ ├── api_op_DescribeTerminationPolicyTypes.go │ │ │ │ ├── api_op_DescribeTrafficSources.go │ │ │ │ ├── api_op_DescribeWarmPool.go │ │ │ │ ├── api_op_DetachInstances.go │ │ │ │ ├── api_op_DetachLoadBalancerTargetGroups.go │ │ │ │ ├── api_op_DetachLoadBalancers.go │ │ │ │ ├── api_op_DetachTrafficSources.go │ │ │ │ ├── api_op_DisableMetricsCollection.go │ │ │ │ ├── api_op_EnableMetricsCollection.go │ │ │ │ ├── api_op_EnterStandby.go │ │ │ │ ├── api_op_ExecutePolicy.go │ │ │ │ ├── api_op_ExitStandby.go │ │ │ │ ├── api_op_GetPredictiveScalingForecast.go │ │ │ │ ├── api_op_PutLifecycleHook.go │ │ │ │ ├── api_op_PutNotificationConfiguration.go │ │ │ │ ├── api_op_PutScalingPolicy.go │ │ │ │ ├── api_op_PutScheduledUpdateGroupAction.go │ │ │ │ ├── api_op_PutWarmPool.go │ │ │ │ ├── api_op_RecordLifecycleActionHeartbeat.go │ │ │ │ ├── api_op_ResumeProcesses.go │ │ │ │ ├── api_op_RollbackInstanceRefresh.go │ │ │ │ ├── api_op_SetDesiredCapacity.go │ │ │ │ ├── api_op_SetInstanceHealth.go │ │ │ │ ├── api_op_SetInstanceProtection.go │ │ │ │ ├── api_op_StartInstanceRefresh.go │ │ │ │ ├── api_op_SuspendProcesses.go │ │ │ │ ├── api_op_TerminateInstanceInAutoScalingGroup.go │ │ │ │ ├── api_op_UpdateAutoScalingGroup.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ │ └── endpoints │ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ │ ├── cloudwatchlogs │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AssociateKmsKey.go │ │ │ │ ├── api_op_CancelExportTask.go │ │ │ │ ├── api_op_CreateDelivery.go │ │ │ │ ├── api_op_CreateExportTask.go │ │ │ │ ├── api_op_CreateLogAnomalyDetector.go │ │ │ │ ├── api_op_CreateLogGroup.go │ │ │ │ ├── api_op_CreateLogStream.go │ │ │ │ ├── api_op_DeleteAccountPolicy.go │ │ │ │ ├── api_op_DeleteDataProtectionPolicy.go │ │ │ │ ├── api_op_DeleteDelivery.go │ │ │ │ ├── api_op_DeleteDeliveryDestination.go │ │ │ │ ├── api_op_DeleteDeliveryDestinationPolicy.go │ │ │ │ ├── api_op_DeleteDeliverySource.go │ │ │ │ ├── api_op_DeleteDestination.go │ │ │ │ ├── api_op_DeleteIndexPolicy.go │ │ │ │ ├── api_op_DeleteIntegration.go │ │ │ │ ├── api_op_DeleteLogAnomalyDetector.go │ │ │ │ ├── api_op_DeleteLogGroup.go │ │ │ │ ├── api_op_DeleteLogStream.go │ │ │ │ ├── api_op_DeleteMetricFilter.go │ │ │ │ ├── api_op_DeleteQueryDefinition.go │ │ │ │ ├── api_op_DeleteResourcePolicy.go │ │ │ │ ├── api_op_DeleteRetentionPolicy.go │ │ │ │ ├── api_op_DeleteSubscriptionFilter.go │ │ │ │ ├── api_op_DeleteTransformer.go │ │ │ │ ├── api_op_DescribeAccountPolicies.go │ │ │ │ ├── api_op_DescribeConfigurationTemplates.go │ │ │ │ ├── api_op_DescribeDeliveries.go │ │ │ │ ├── api_op_DescribeDeliveryDestinations.go │ │ │ │ ├── api_op_DescribeDeliverySources.go │ │ │ │ ├── api_op_DescribeDestinations.go │ │ │ │ ├── api_op_DescribeExportTasks.go │ │ │ │ ├── api_op_DescribeFieldIndexes.go │ │ │ │ ├── api_op_DescribeIndexPolicies.go │ │ │ │ ├── api_op_DescribeLogGroups.go │ │ │ │ ├── api_op_DescribeLogStreams.go │ │ │ │ ├── api_op_DescribeMetricFilters.go │ │ │ │ ├── api_op_DescribeQueries.go │ │ │ │ ├── api_op_DescribeQueryDefinitions.go │ │ │ │ ├── api_op_DescribeResourcePolicies.go │ │ │ │ ├── api_op_DescribeSubscriptionFilters.go │ │ │ │ ├── api_op_DisassociateKmsKey.go │ │ │ │ ├── api_op_FilterLogEvents.go │ │ │ │ ├── api_op_GetDataProtectionPolicy.go │ │ │ │ ├── api_op_GetDelivery.go │ │ │ │ ├── api_op_GetDeliveryDestination.go │ │ │ │ ├── api_op_GetDeliveryDestinationPolicy.go │ │ │ │ ├── api_op_GetDeliverySource.go │ │ │ │ ├── api_op_GetIntegration.go │ │ │ │ ├── api_op_GetLogAnomalyDetector.go │ │ │ │ ├── api_op_GetLogEvents.go │ │ │ │ ├── api_op_GetLogGroupFields.go │ │ │ │ ├── api_op_GetLogRecord.go │ │ │ │ ├── api_op_GetQueryResults.go │ │ │ │ ├── api_op_GetTransformer.go │ │ │ │ ├── api_op_ListAnomalies.go │ │ │ │ ├── api_op_ListIntegrations.go │ │ │ │ ├── api_op_ListLogAnomalyDetectors.go │ │ │ │ ├── api_op_ListLogGroupsForQuery.go │ │ │ │ ├── api_op_ListTagsForResource.go │ │ │ │ ├── api_op_ListTagsLogGroup.go │ │ │ │ ├── api_op_PutAccountPolicy.go │ │ │ │ ├── api_op_PutDataProtectionPolicy.go │ │ │ │ ├── api_op_PutDeliveryDestination.go │ │ │ │ ├── api_op_PutDeliveryDestinationPolicy.go │ │ │ │ ├── api_op_PutDeliverySource.go │ │ │ │ ├── api_op_PutDestination.go │ │ │ │ ├── api_op_PutDestinationPolicy.go │ │ │ │ ├── api_op_PutIndexPolicy.go │ │ │ │ ├── api_op_PutIntegration.go │ │ │ │ ├── api_op_PutLogEvents.go │ │ │ │ ├── api_op_PutMetricFilter.go │ │ │ │ ├── api_op_PutQueryDefinition.go │ │ │ │ ├── api_op_PutResourcePolicy.go │ │ │ │ ├── api_op_PutRetentionPolicy.go │ │ │ │ ├── api_op_PutSubscriptionFilter.go │ │ │ │ ├── api_op_PutTransformer.go │ │ │ │ ├── api_op_StartLiveTail.go │ │ │ │ ├── api_op_StartQuery.go │ │ │ │ ├── api_op_StopQuery.go │ │ │ │ ├── api_op_TagLogGroup.go │ │ │ │ ├── api_op_TagResource.go │ │ │ │ ├── api_op_TestMetricFilter.go │ │ │ │ ├── api_op_TestTransformer.go │ │ │ │ ├── api_op_UntagLogGroup.go │ │ │ │ ├── api_op_UntagResource.go │ │ │ │ ├── api_op_UpdateAnomaly.go │ │ │ │ ├── api_op_UpdateDeliveryConfiguration.go │ │ │ │ ├── api_op_UpdateLogAnomalyDetector.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── eventstream.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ │ └── endpoints │ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ │ ├── dynamodb │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_BatchExecuteStatement.go │ │ │ │ ├── api_op_BatchGetItem.go │ │ │ │ ├── api_op_BatchWriteItem.go │ │ │ │ ├── api_op_CreateBackup.go │ │ │ │ ├── api_op_CreateGlobalTable.go │ │ │ │ ├── api_op_CreateTable.go │ │ │ │ ├── api_op_DeleteBackup.go │ │ │ │ ├── api_op_DeleteItem.go │ │ │ │ ├── api_op_DeleteResourcePolicy.go │ │ │ │ ├── api_op_DeleteTable.go │ │ │ │ ├── api_op_DescribeBackup.go │ │ │ │ ├── api_op_DescribeContinuousBackups.go │ │ │ │ ├── api_op_DescribeContributorInsights.go │ │ │ │ ├── api_op_DescribeEndpoints.go │ │ │ │ ├── api_op_DescribeExport.go │ │ │ │ ├── api_op_DescribeGlobalTable.go │ │ │ │ ├── api_op_DescribeGlobalTableSettings.go │ │ │ │ ├── api_op_DescribeImport.go │ │ │ │ ├── api_op_DescribeKinesisStreamingDestination.go │ │ │ │ ├── api_op_DescribeLimits.go │ │ │ │ ├── api_op_DescribeTable.go │ │ │ │ ├── api_op_DescribeTableReplicaAutoScaling.go │ │ │ │ ├── api_op_DescribeTimeToLive.go │ │ │ │ ├── api_op_DisableKinesisStreamingDestination.go │ │ │ │ ├── api_op_EnableKinesisStreamingDestination.go │ │ │ │ ├── api_op_ExecuteStatement.go │ │ │ │ ├── api_op_ExecuteTransaction.go │ │ │ │ ├── api_op_ExportTableToPointInTime.go │ │ │ │ ├── api_op_GetItem.go │ │ │ │ ├── api_op_GetResourcePolicy.go │ │ │ │ ├── api_op_ImportTable.go │ │ │ │ ├── api_op_ListBackups.go │ │ │ │ ├── api_op_ListContributorInsights.go │ │ │ │ ├── api_op_ListExports.go │ │ │ │ ├── api_op_ListGlobalTables.go │ │ │ │ ├── api_op_ListImports.go │ │ │ │ ├── api_op_ListTables.go │ │ │ │ ├── api_op_ListTagsOfResource.go │ │ │ │ ├── api_op_PutItem.go │ │ │ │ ├── api_op_PutResourcePolicy.go │ │ │ │ ├── api_op_Query.go │ │ │ │ ├── api_op_RestoreTableFromBackup.go │ │ │ │ ├── api_op_RestoreTableToPointInTime.go │ │ │ │ ├── api_op_Scan.go │ │ │ │ ├── api_op_TagResource.go │ │ │ │ ├── api_op_TransactGetItems.go │ │ │ │ ├── api_op_TransactWriteItems.go │ │ │ │ ├── api_op_UntagResource.go │ │ │ │ ├── api_op_UpdateContinuousBackups.go │ │ │ │ ├── api_op_UpdateContributorInsights.go │ │ │ │ ├── api_op_UpdateGlobalTable.go │ │ │ │ ├── api_op_UpdateGlobalTableSettings.go │ │ │ │ ├── api_op_UpdateItem.go │ │ │ │ ├── api_op_UpdateKinesisStreamingDestination.go │ │ │ │ ├── api_op_UpdateTable.go │ │ │ │ ├── api_op_UpdateTableReplicaAutoScaling.go │ │ │ │ ├── api_op_UpdateTimeToLive.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── handwritten_paginators.go │ │ │ │ ├── internal │ │ │ │ │ ├── customizations │ │ │ │ │ │ ├── checksum.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ └── 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_ModifyReservedInstances.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 │ │ │ │ ├── ecr │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_BatchCheckLayerAvailability.go │ │ │ │ ├── api_op_BatchDeleteImage.go │ │ │ │ ├── api_op_BatchGetImage.go │ │ │ │ ├── api_op_BatchGetRepositoryScanningConfiguration.go │ │ │ │ ├── api_op_CompleteLayerUpload.go │ │ │ │ ├── api_op_CreatePullThroughCacheRule.go │ │ │ │ ├── api_op_CreateRepository.go │ │ │ │ ├── api_op_CreateRepositoryCreationTemplate.go │ │ │ │ ├── api_op_DeleteLifecyclePolicy.go │ │ │ │ ├── api_op_DeletePullThroughCacheRule.go │ │ │ │ ├── api_op_DeleteRegistryPolicy.go │ │ │ │ ├── api_op_DeleteRepository.go │ │ │ │ ├── api_op_DeleteRepositoryCreationTemplate.go │ │ │ │ ├── api_op_DeleteRepositoryPolicy.go │ │ │ │ ├── api_op_DescribeImageReplicationStatus.go │ │ │ │ ├── api_op_DescribeImageScanFindings.go │ │ │ │ ├── api_op_DescribeImages.go │ │ │ │ ├── api_op_DescribePullThroughCacheRules.go │ │ │ │ ├── api_op_DescribeRegistry.go │ │ │ │ ├── api_op_DescribeRepositories.go │ │ │ │ ├── api_op_DescribeRepositoryCreationTemplates.go │ │ │ │ ├── api_op_GetAccountSetting.go │ │ │ │ ├── api_op_GetAuthorizationToken.go │ │ │ │ ├── api_op_GetDownloadUrlForLayer.go │ │ │ │ ├── api_op_GetLifecyclePolicy.go │ │ │ │ ├── api_op_GetLifecyclePolicyPreview.go │ │ │ │ ├── api_op_GetRegistryPolicy.go │ │ │ │ ├── api_op_GetRegistryScanningConfiguration.go │ │ │ │ ├── api_op_GetRepositoryPolicy.go │ │ │ │ ├── api_op_InitiateLayerUpload.go │ │ │ │ ├── api_op_ListImages.go │ │ │ │ ├── api_op_ListTagsForResource.go │ │ │ │ ├── api_op_PutAccountSetting.go │ │ │ │ ├── api_op_PutImage.go │ │ │ │ ├── api_op_PutImageScanningConfiguration.go │ │ │ │ ├── api_op_PutImageTagMutability.go │ │ │ │ ├── api_op_PutLifecyclePolicy.go │ │ │ │ ├── api_op_PutRegistryPolicy.go │ │ │ │ ├── api_op_PutRegistryScanningConfiguration.go │ │ │ │ ├── api_op_PutReplicationConfiguration.go │ │ │ │ ├── api_op_SetRepositoryPolicy.go │ │ │ │ ├── api_op_StartImageScan.go │ │ │ │ ├── api_op_StartLifecyclePolicyPreview.go │ │ │ │ ├── api_op_TagResource.go │ │ │ │ ├── api_op_UntagResource.go │ │ │ │ ├── api_op_UpdatePullThroughCacheRule.go │ │ │ │ ├── api_op_UpdateRepositoryCreationTemplate.go │ │ │ │ ├── api_op_UploadLayerPart.go │ │ │ │ ├── api_op_ValidatePullThroughCacheRule.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 │ │ │ │ ├── ecs │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_CreateCapacityProvider.go │ │ │ │ ├── api_op_CreateCluster.go │ │ │ │ ├── api_op_CreateService.go │ │ │ │ ├── api_op_CreateTaskSet.go │ │ │ │ ├── api_op_DeleteAccountSetting.go │ │ │ │ ├── api_op_DeleteAttributes.go │ │ │ │ ├── api_op_DeleteCapacityProvider.go │ │ │ │ ├── api_op_DeleteCluster.go │ │ │ │ ├── api_op_DeleteService.go │ │ │ │ ├── api_op_DeleteTaskDefinitions.go │ │ │ │ ├── api_op_DeleteTaskSet.go │ │ │ │ ├── api_op_DeregisterContainerInstance.go │ │ │ │ ├── api_op_DeregisterTaskDefinition.go │ │ │ │ ├── api_op_DescribeCapacityProviders.go │ │ │ │ ├── api_op_DescribeClusters.go │ │ │ │ ├── api_op_DescribeContainerInstances.go │ │ │ │ ├── api_op_DescribeServiceDeployments.go │ │ │ │ ├── api_op_DescribeServiceRevisions.go │ │ │ │ ├── api_op_DescribeServices.go │ │ │ │ ├── api_op_DescribeTaskDefinition.go │ │ │ │ ├── api_op_DescribeTaskSets.go │ │ │ │ ├── api_op_DescribeTasks.go │ │ │ │ ├── api_op_DiscoverPollEndpoint.go │ │ │ │ ├── api_op_ExecuteCommand.go │ │ │ │ ├── api_op_GetTaskProtection.go │ │ │ │ ├── api_op_ListAccountSettings.go │ │ │ │ ├── api_op_ListAttributes.go │ │ │ │ ├── api_op_ListClusters.go │ │ │ │ ├── api_op_ListContainerInstances.go │ │ │ │ ├── api_op_ListServiceDeployments.go │ │ │ │ ├── api_op_ListServices.go │ │ │ │ ├── api_op_ListServicesByNamespace.go │ │ │ │ ├── api_op_ListTagsForResource.go │ │ │ │ ├── api_op_ListTaskDefinitionFamilies.go │ │ │ │ ├── api_op_ListTaskDefinitions.go │ │ │ │ ├── api_op_ListTasks.go │ │ │ │ ├── api_op_PutAccountSetting.go │ │ │ │ ├── api_op_PutAccountSettingDefault.go │ │ │ │ ├── api_op_PutAttributes.go │ │ │ │ ├── api_op_PutClusterCapacityProviders.go │ │ │ │ ├── api_op_RegisterContainerInstance.go │ │ │ │ ├── api_op_RegisterTaskDefinition.go │ │ │ │ ├── api_op_RunTask.go │ │ │ │ ├── api_op_StartTask.go │ │ │ │ ├── api_op_StopTask.go │ │ │ │ ├── api_op_SubmitAttachmentStateChanges.go │ │ │ │ ├── api_op_SubmitContainerStateChange.go │ │ │ │ ├── api_op_SubmitTaskStateChange.go │ │ │ │ ├── api_op_TagResource.go │ │ │ │ ├── api_op_UntagResource.go │ │ │ │ ├── api_op_UpdateCapacityProvider.go │ │ │ │ ├── api_op_UpdateCluster.go │ │ │ │ ├── api_op_UpdateClusterSettings.go │ │ │ │ ├── api_op_UpdateContainerAgent.go │ │ │ │ ├── api_op_UpdateContainerInstancesState.go │ │ │ │ ├── api_op_UpdateService.go │ │ │ │ ├── api_op_UpdateServicePrimaryTaskSet.go │ │ │ │ ├── api_op_UpdateTaskProtection.go │ │ │ │ ├── api_op_UpdateTaskSet.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 │ │ │ │ ├── checksum │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── algorithms.go │ │ │ │ │ ├── aws_chunked_encoding.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── middleware_add.go │ │ │ │ │ ├── middleware_compute_input_checksum.go │ │ │ │ │ ├── middleware_setup_context.go │ │ │ │ │ └── middleware_validate_output.go │ │ │ │ ├── endpoint-discovery │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ └── middleware.go │ │ │ │ ├── presigned-url │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ └── middleware.go │ │ │ │ └── s3shared │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── arn │ │ │ │ │ ├── accesspoint_arn.go │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── arn_member.go │ │ │ │ │ ├── outpost_arn.go │ │ │ │ │ └── s3_object_lambda_arn.go │ │ │ │ │ ├── arn_lookup.go │ │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ │ ├── endpoint_error.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── host_id.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── metadata_retriever.go │ │ │ │ │ ├── resource_request.go │ │ │ │ │ ├── response_error.go │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ ├── s3100continue.go │ │ │ │ │ ├── update_endpoint.go │ │ │ │ │ └── xml_utils.go │ │ │ │ ├── kms │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_CancelKeyDeletion.go │ │ │ │ ├── api_op_ConnectCustomKeyStore.go │ │ │ │ ├── api_op_CreateAlias.go │ │ │ │ ├── api_op_CreateCustomKeyStore.go │ │ │ │ ├── api_op_CreateGrant.go │ │ │ │ ├── api_op_CreateKey.go │ │ │ │ ├── api_op_Decrypt.go │ │ │ │ ├── api_op_DeleteAlias.go │ │ │ │ ├── api_op_DeleteCustomKeyStore.go │ │ │ │ ├── api_op_DeleteImportedKeyMaterial.go │ │ │ │ ├── api_op_DeriveSharedSecret.go │ │ │ │ ├── api_op_DescribeCustomKeyStores.go │ │ │ │ ├── api_op_DescribeKey.go │ │ │ │ ├── api_op_DisableKey.go │ │ │ │ ├── api_op_DisableKeyRotation.go │ │ │ │ ├── api_op_DisconnectCustomKeyStore.go │ │ │ │ ├── api_op_EnableKey.go │ │ │ │ ├── api_op_EnableKeyRotation.go │ │ │ │ ├── api_op_Encrypt.go │ │ │ │ ├── api_op_GenerateDataKey.go │ │ │ │ ├── api_op_GenerateDataKeyPair.go │ │ │ │ ├── api_op_GenerateDataKeyPairWithoutPlaintext.go │ │ │ │ ├── api_op_GenerateDataKeyWithoutPlaintext.go │ │ │ │ ├── api_op_GenerateMac.go │ │ │ │ ├── api_op_GenerateRandom.go │ │ │ │ ├── api_op_GetKeyPolicy.go │ │ │ │ ├── api_op_GetKeyRotationStatus.go │ │ │ │ ├── api_op_GetParametersForImport.go │ │ │ │ ├── api_op_GetPublicKey.go │ │ │ │ ├── api_op_ImportKeyMaterial.go │ │ │ │ ├── api_op_ListAliases.go │ │ │ │ ├── api_op_ListGrants.go │ │ │ │ ├── api_op_ListKeyPolicies.go │ │ │ │ ├── api_op_ListKeyRotations.go │ │ │ │ ├── api_op_ListKeys.go │ │ │ │ ├── api_op_ListResourceTags.go │ │ │ │ ├── api_op_ListRetirableGrants.go │ │ │ │ ├── api_op_PutKeyPolicy.go │ │ │ │ ├── api_op_ReEncrypt.go │ │ │ │ ├── api_op_ReplicateKey.go │ │ │ │ ├── api_op_RetireGrant.go │ │ │ │ ├── api_op_RevokeGrant.go │ │ │ │ ├── api_op_RotateKeyOnDemand.go │ │ │ │ ├── api_op_ScheduleKeyDeletion.go │ │ │ │ ├── api_op_Sign.go │ │ │ │ ├── api_op_TagResource.go │ │ │ │ ├── api_op_UntagResource.go │ │ │ │ ├── api_op_UpdateAlias.go │ │ │ │ ├── api_op_UpdateCustomKeyStore.go │ │ │ │ ├── api_op_UpdateKeyDescription.go │ │ │ │ ├── api_op_UpdatePrimaryRegion.go │ │ │ │ ├── api_op_Verify.go │ │ │ │ ├── api_op_VerifyMac.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 │ │ │ │ ├── lambda │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AddLayerVersionPermission.go │ │ │ │ ├── api_op_AddPermission.go │ │ │ │ ├── api_op_CreateAlias.go │ │ │ │ ├── api_op_CreateCodeSigningConfig.go │ │ │ │ ├── api_op_CreateEventSourceMapping.go │ │ │ │ ├── api_op_CreateFunction.go │ │ │ │ ├── api_op_CreateFunctionUrlConfig.go │ │ │ │ ├── api_op_DeleteAlias.go │ │ │ │ ├── api_op_DeleteCodeSigningConfig.go │ │ │ │ ├── api_op_DeleteEventSourceMapping.go │ │ │ │ ├── api_op_DeleteFunction.go │ │ │ │ ├── api_op_DeleteFunctionCodeSigningConfig.go │ │ │ │ ├── api_op_DeleteFunctionConcurrency.go │ │ │ │ ├── api_op_DeleteFunctionEventInvokeConfig.go │ │ │ │ ├── api_op_DeleteFunctionUrlConfig.go │ │ │ │ ├── api_op_DeleteLayerVersion.go │ │ │ │ ├── api_op_DeleteProvisionedConcurrencyConfig.go │ │ │ │ ├── api_op_GetAccountSettings.go │ │ │ │ ├── api_op_GetAlias.go │ │ │ │ ├── api_op_GetCodeSigningConfig.go │ │ │ │ ├── api_op_GetEventSourceMapping.go │ │ │ │ ├── api_op_GetFunction.go │ │ │ │ ├── api_op_GetFunctionCodeSigningConfig.go │ │ │ │ ├── api_op_GetFunctionConcurrency.go │ │ │ │ ├── api_op_GetFunctionConfiguration.go │ │ │ │ ├── api_op_GetFunctionEventInvokeConfig.go │ │ │ │ ├── api_op_GetFunctionRecursionConfig.go │ │ │ │ ├── api_op_GetFunctionUrlConfig.go │ │ │ │ ├── api_op_GetLayerVersion.go │ │ │ │ ├── api_op_GetLayerVersionByArn.go │ │ │ │ ├── api_op_GetLayerVersionPolicy.go │ │ │ │ ├── api_op_GetPolicy.go │ │ │ │ ├── api_op_GetProvisionedConcurrencyConfig.go │ │ │ │ ├── api_op_GetRuntimeManagementConfig.go │ │ │ │ ├── api_op_Invoke.go │ │ │ │ ├── api_op_InvokeAsync.go │ │ │ │ ├── api_op_InvokeWithResponseStream.go │ │ │ │ ├── api_op_ListAliases.go │ │ │ │ ├── api_op_ListCodeSigningConfigs.go │ │ │ │ ├── api_op_ListEventSourceMappings.go │ │ │ │ ├── api_op_ListFunctionEventInvokeConfigs.go │ │ │ │ ├── api_op_ListFunctionUrlConfigs.go │ │ │ │ ├── api_op_ListFunctions.go │ │ │ │ ├── api_op_ListFunctionsByCodeSigningConfig.go │ │ │ │ ├── api_op_ListLayerVersions.go │ │ │ │ ├── api_op_ListLayers.go │ │ │ │ ├── api_op_ListProvisionedConcurrencyConfigs.go │ │ │ │ ├── api_op_ListTags.go │ │ │ │ ├── api_op_ListVersionsByFunction.go │ │ │ │ ├── api_op_PublishLayerVersion.go │ │ │ │ ├── api_op_PublishVersion.go │ │ │ │ ├── api_op_PutFunctionCodeSigningConfig.go │ │ │ │ ├── api_op_PutFunctionConcurrency.go │ │ │ │ ├── api_op_PutFunctionEventInvokeConfig.go │ │ │ │ ├── api_op_PutFunctionRecursionConfig.go │ │ │ │ ├── api_op_PutProvisionedConcurrencyConfig.go │ │ │ │ ├── api_op_PutRuntimeManagementConfig.go │ │ │ │ ├── api_op_RemoveLayerVersionPermission.go │ │ │ │ ├── api_op_RemovePermission.go │ │ │ │ ├── api_op_TagResource.go │ │ │ │ ├── api_op_UntagResource.go │ │ │ │ ├── api_op_UpdateAlias.go │ │ │ │ ├── api_op_UpdateCodeSigningConfig.go │ │ │ │ ├── api_op_UpdateEventSourceMapping.go │ │ │ │ ├── api_op_UpdateFunctionCode.go │ │ │ │ ├── api_op_UpdateFunctionConfiguration.go │ │ │ │ ├── api_op_UpdateFunctionEventInvokeConfig.go │ │ │ │ ├── api_op_UpdateFunctionUrlConfig.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── eventstream.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ │ └── endpoints │ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ │ ├── rds │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AddRoleToDBCluster.go │ │ │ │ ├── api_op_AddRoleToDBInstance.go │ │ │ │ ├── api_op_AddSourceIdentifierToSubscription.go │ │ │ │ ├── api_op_AddTagsToResource.go │ │ │ │ ├── api_op_ApplyPendingMaintenanceAction.go │ │ │ │ ├── api_op_AuthorizeDBSecurityGroupIngress.go │ │ │ │ ├── api_op_BacktrackDBCluster.go │ │ │ │ ├── api_op_CancelExportTask.go │ │ │ │ ├── api_op_CopyDBClusterParameterGroup.go │ │ │ │ ├── api_op_CopyDBClusterSnapshot.go │ │ │ │ ├── api_op_CopyDBParameterGroup.go │ │ │ │ ├── api_op_CopyDBSnapshot.go │ │ │ │ ├── api_op_CopyOptionGroup.go │ │ │ │ ├── api_op_CreateBlueGreenDeployment.go │ │ │ │ ├── api_op_CreateCustomDBEngineVersion.go │ │ │ │ ├── api_op_CreateDBCluster.go │ │ │ │ ├── api_op_CreateDBClusterEndpoint.go │ │ │ │ ├── api_op_CreateDBClusterParameterGroup.go │ │ │ │ ├── api_op_CreateDBClusterSnapshot.go │ │ │ │ ├── api_op_CreateDBInstance.go │ │ │ │ ├── api_op_CreateDBInstanceReadReplica.go │ │ │ │ ├── api_op_CreateDBParameterGroup.go │ │ │ │ ├── api_op_CreateDBProxy.go │ │ │ │ ├── api_op_CreateDBProxyEndpoint.go │ │ │ │ ├── api_op_CreateDBSecurityGroup.go │ │ │ │ ├── api_op_CreateDBShardGroup.go │ │ │ │ ├── api_op_CreateDBSnapshot.go │ │ │ │ ├── api_op_CreateDBSubnetGroup.go │ │ │ │ ├── api_op_CreateEventSubscription.go │ │ │ │ ├── api_op_CreateGlobalCluster.go │ │ │ │ ├── api_op_CreateIntegration.go │ │ │ │ ├── api_op_CreateOptionGroup.go │ │ │ │ ├── api_op_CreateTenantDatabase.go │ │ │ │ ├── api_op_DeleteBlueGreenDeployment.go │ │ │ │ ├── api_op_DeleteCustomDBEngineVersion.go │ │ │ │ ├── api_op_DeleteDBCluster.go │ │ │ │ ├── api_op_DeleteDBClusterAutomatedBackup.go │ │ │ │ ├── api_op_DeleteDBClusterEndpoint.go │ │ │ │ ├── api_op_DeleteDBClusterParameterGroup.go │ │ │ │ ├── api_op_DeleteDBClusterSnapshot.go │ │ │ │ ├── api_op_DeleteDBInstance.go │ │ │ │ ├── api_op_DeleteDBInstanceAutomatedBackup.go │ │ │ │ ├── api_op_DeleteDBParameterGroup.go │ │ │ │ ├── api_op_DeleteDBProxy.go │ │ │ │ ├── api_op_DeleteDBProxyEndpoint.go │ │ │ │ ├── api_op_DeleteDBSecurityGroup.go │ │ │ │ ├── api_op_DeleteDBShardGroup.go │ │ │ │ ├── api_op_DeleteDBSnapshot.go │ │ │ │ ├── api_op_DeleteDBSubnetGroup.go │ │ │ │ ├── api_op_DeleteEventSubscription.go │ │ │ │ ├── api_op_DeleteGlobalCluster.go │ │ │ │ ├── api_op_DeleteIntegration.go │ │ │ │ ├── api_op_DeleteOptionGroup.go │ │ │ │ ├── api_op_DeleteTenantDatabase.go │ │ │ │ ├── api_op_DeregisterDBProxyTargets.go │ │ │ │ ├── api_op_DescribeAccountAttributes.go │ │ │ │ ├── api_op_DescribeBlueGreenDeployments.go │ │ │ │ ├── api_op_DescribeCertificates.go │ │ │ │ ├── api_op_DescribeDBClusterAutomatedBackups.go │ │ │ │ ├── api_op_DescribeDBClusterBacktracks.go │ │ │ │ ├── api_op_DescribeDBClusterEndpoints.go │ │ │ │ ├── api_op_DescribeDBClusterParameterGroups.go │ │ │ │ ├── api_op_DescribeDBClusterParameters.go │ │ │ │ ├── api_op_DescribeDBClusterSnapshotAttributes.go │ │ │ │ ├── api_op_DescribeDBClusterSnapshots.go │ │ │ │ ├── api_op_DescribeDBClusters.go │ │ │ │ ├── api_op_DescribeDBEngineVersions.go │ │ │ │ ├── api_op_DescribeDBInstanceAutomatedBackups.go │ │ │ │ ├── api_op_DescribeDBInstances.go │ │ │ │ ├── api_op_DescribeDBLogFiles.go │ │ │ │ ├── api_op_DescribeDBParameterGroups.go │ │ │ │ ├── api_op_DescribeDBParameters.go │ │ │ │ ├── api_op_DescribeDBProxies.go │ │ │ │ ├── api_op_DescribeDBProxyEndpoints.go │ │ │ │ ├── api_op_DescribeDBProxyTargetGroups.go │ │ │ │ ├── api_op_DescribeDBProxyTargets.go │ │ │ │ ├── api_op_DescribeDBRecommendations.go │ │ │ │ ├── api_op_DescribeDBSecurityGroups.go │ │ │ │ ├── api_op_DescribeDBShardGroups.go │ │ │ │ ├── api_op_DescribeDBSnapshotAttributes.go │ │ │ │ ├── api_op_DescribeDBSnapshotTenantDatabases.go │ │ │ │ ├── api_op_DescribeDBSnapshots.go │ │ │ │ ├── api_op_DescribeDBSubnetGroups.go │ │ │ │ ├── api_op_DescribeEngineDefaultClusterParameters.go │ │ │ │ ├── api_op_DescribeEngineDefaultParameters.go │ │ │ │ ├── api_op_DescribeEventCategories.go │ │ │ │ ├── api_op_DescribeEventSubscriptions.go │ │ │ │ ├── api_op_DescribeEvents.go │ │ │ │ ├── api_op_DescribeExportTasks.go │ │ │ │ ├── api_op_DescribeGlobalClusters.go │ │ │ │ ├── api_op_DescribeIntegrations.go │ │ │ │ ├── api_op_DescribeOptionGroupOptions.go │ │ │ │ ├── api_op_DescribeOptionGroups.go │ │ │ │ ├── api_op_DescribeOrderableDBInstanceOptions.go │ │ │ │ ├── api_op_DescribePendingMaintenanceActions.go │ │ │ │ ├── api_op_DescribeReservedDBInstances.go │ │ │ │ ├── api_op_DescribeReservedDBInstancesOfferings.go │ │ │ │ ├── api_op_DescribeSourceRegions.go │ │ │ │ ├── api_op_DescribeTenantDatabases.go │ │ │ │ ├── api_op_DescribeValidDBInstanceModifications.go │ │ │ │ ├── api_op_DisableHttpEndpoint.go │ │ │ │ ├── api_op_DownloadDBLogFilePortion.go │ │ │ │ ├── api_op_EnableHttpEndpoint.go │ │ │ │ ├── api_op_FailoverDBCluster.go │ │ │ │ ├── api_op_FailoverGlobalCluster.go │ │ │ │ ├── api_op_ListTagsForResource.go │ │ │ │ ├── api_op_ModifyActivityStream.go │ │ │ │ ├── api_op_ModifyCertificates.go │ │ │ │ ├── api_op_ModifyCurrentDBClusterCapacity.go │ │ │ │ ├── api_op_ModifyCustomDBEngineVersion.go │ │ │ │ ├── api_op_ModifyDBCluster.go │ │ │ │ ├── api_op_ModifyDBClusterEndpoint.go │ │ │ │ ├── api_op_ModifyDBClusterParameterGroup.go │ │ │ │ ├── api_op_ModifyDBClusterSnapshotAttribute.go │ │ │ │ ├── api_op_ModifyDBInstance.go │ │ │ │ ├── api_op_ModifyDBParameterGroup.go │ │ │ │ ├── api_op_ModifyDBProxy.go │ │ │ │ ├── api_op_ModifyDBProxyEndpoint.go │ │ │ │ ├── api_op_ModifyDBProxyTargetGroup.go │ │ │ │ ├── api_op_ModifyDBRecommendation.go │ │ │ │ ├── api_op_ModifyDBShardGroup.go │ │ │ │ ├── api_op_ModifyDBSnapshot.go │ │ │ │ ├── api_op_ModifyDBSnapshotAttribute.go │ │ │ │ ├── api_op_ModifyDBSubnetGroup.go │ │ │ │ ├── api_op_ModifyEventSubscription.go │ │ │ │ ├── api_op_ModifyGlobalCluster.go │ │ │ │ ├── api_op_ModifyIntegration.go │ │ │ │ ├── api_op_ModifyOptionGroup.go │ │ │ │ ├── api_op_ModifyTenantDatabase.go │ │ │ │ ├── api_op_PromoteReadReplica.go │ │ │ │ ├── api_op_PromoteReadReplicaDBCluster.go │ │ │ │ ├── api_op_PurchaseReservedDBInstancesOffering.go │ │ │ │ ├── api_op_RebootDBCluster.go │ │ │ │ ├── api_op_RebootDBInstance.go │ │ │ │ ├── api_op_RebootDBShardGroup.go │ │ │ │ ├── api_op_RegisterDBProxyTargets.go │ │ │ │ ├── api_op_RemoveFromGlobalCluster.go │ │ │ │ ├── api_op_RemoveRoleFromDBCluster.go │ │ │ │ ├── api_op_RemoveRoleFromDBInstance.go │ │ │ │ ├── api_op_RemoveSourceIdentifierFromSubscription.go │ │ │ │ ├── api_op_RemoveTagsFromResource.go │ │ │ │ ├── api_op_ResetDBClusterParameterGroup.go │ │ │ │ ├── api_op_ResetDBParameterGroup.go │ │ │ │ ├── api_op_RestoreDBClusterFromS3.go │ │ │ │ ├── api_op_RestoreDBClusterFromSnapshot.go │ │ │ │ ├── api_op_RestoreDBClusterToPointInTime.go │ │ │ │ ├── api_op_RestoreDBInstanceFromDBSnapshot.go │ │ │ │ ├── api_op_RestoreDBInstanceFromS3.go │ │ │ │ ├── api_op_RestoreDBInstanceToPointInTime.go │ │ │ │ ├── api_op_RevokeDBSecurityGroupIngress.go │ │ │ │ ├── api_op_StartActivityStream.go │ │ │ │ ├── api_op_StartDBCluster.go │ │ │ │ ├── api_op_StartDBInstance.go │ │ │ │ ├── api_op_StartDBInstanceAutomatedBackupsReplication.go │ │ │ │ ├── api_op_StartExportTask.go │ │ │ │ ├── api_op_StopActivityStream.go │ │ │ │ ├── api_op_StopDBCluster.go │ │ │ │ ├── api_op_StopDBInstance.go │ │ │ │ ├── api_op_StopDBInstanceAutomatedBackupsReplication.go │ │ │ │ ├── api_op_SwitchoverBlueGreenDeployment.go │ │ │ │ ├── api_op_SwitchoverGlobalCluster.go │ │ │ │ ├── api_op_SwitchoverReadReplica.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 │ │ │ │ ├── route53 │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_ActivateKeySigningKey.go │ │ │ │ ├── api_op_AssociateVPCWithHostedZone.go │ │ │ │ ├── api_op_ChangeCidrCollection.go │ │ │ │ ├── api_op_ChangeResourceRecordSets.go │ │ │ │ ├── api_op_ChangeTagsForResource.go │ │ │ │ ├── api_op_CreateCidrCollection.go │ │ │ │ ├── api_op_CreateHealthCheck.go │ │ │ │ ├── api_op_CreateHostedZone.go │ │ │ │ ├── api_op_CreateKeySigningKey.go │ │ │ │ ├── api_op_CreateQueryLoggingConfig.go │ │ │ │ ├── api_op_CreateReusableDelegationSet.go │ │ │ │ ├── api_op_CreateTrafficPolicy.go │ │ │ │ ├── api_op_CreateTrafficPolicyInstance.go │ │ │ │ ├── api_op_CreateTrafficPolicyVersion.go │ │ │ │ ├── api_op_CreateVPCAssociationAuthorization.go │ │ │ │ ├── api_op_DeactivateKeySigningKey.go │ │ │ │ ├── api_op_DeleteCidrCollection.go │ │ │ │ ├── api_op_DeleteHealthCheck.go │ │ │ │ ├── api_op_DeleteHostedZone.go │ │ │ │ ├── api_op_DeleteKeySigningKey.go │ │ │ │ ├── api_op_DeleteQueryLoggingConfig.go │ │ │ │ ├── api_op_DeleteReusableDelegationSet.go │ │ │ │ ├── api_op_DeleteTrafficPolicy.go │ │ │ │ ├── api_op_DeleteTrafficPolicyInstance.go │ │ │ │ ├── api_op_DeleteVPCAssociationAuthorization.go │ │ │ │ ├── api_op_DisableHostedZoneDNSSEC.go │ │ │ │ ├── api_op_DisassociateVPCFromHostedZone.go │ │ │ │ ├── api_op_EnableHostedZoneDNSSEC.go │ │ │ │ ├── api_op_GetAccountLimit.go │ │ │ │ ├── api_op_GetChange.go │ │ │ │ ├── api_op_GetCheckerIpRanges.go │ │ │ │ ├── api_op_GetDNSSEC.go │ │ │ │ ├── api_op_GetGeoLocation.go │ │ │ │ ├── api_op_GetHealthCheck.go │ │ │ │ ├── api_op_GetHealthCheckCount.go │ │ │ │ ├── api_op_GetHealthCheckLastFailureReason.go │ │ │ │ ├── api_op_GetHealthCheckStatus.go │ │ │ │ ├── api_op_GetHostedZone.go │ │ │ │ ├── api_op_GetHostedZoneCount.go │ │ │ │ ├── api_op_GetHostedZoneLimit.go │ │ │ │ ├── api_op_GetQueryLoggingConfig.go │ │ │ │ ├── api_op_GetReusableDelegationSet.go │ │ │ │ ├── api_op_GetReusableDelegationSetLimit.go │ │ │ │ ├── api_op_GetTrafficPolicy.go │ │ │ │ ├── api_op_GetTrafficPolicyInstance.go │ │ │ │ ├── api_op_GetTrafficPolicyInstanceCount.go │ │ │ │ ├── api_op_ListCidrBlocks.go │ │ │ │ ├── api_op_ListCidrCollections.go │ │ │ │ ├── api_op_ListCidrLocations.go │ │ │ │ ├── api_op_ListGeoLocations.go │ │ │ │ ├── api_op_ListHealthChecks.go │ │ │ │ ├── api_op_ListHostedZones.go │ │ │ │ ├── api_op_ListHostedZonesByName.go │ │ │ │ ├── api_op_ListHostedZonesByVPC.go │ │ │ │ ├── api_op_ListQueryLoggingConfigs.go │ │ │ │ ├── api_op_ListResourceRecordSets.go │ │ │ │ ├── api_op_ListReusableDelegationSets.go │ │ │ │ ├── api_op_ListTagsForResource.go │ │ │ │ ├── api_op_ListTagsForResources.go │ │ │ │ ├── api_op_ListTrafficPolicies.go │ │ │ │ ├── api_op_ListTrafficPolicyInstances.go │ │ │ │ ├── api_op_ListTrafficPolicyInstancesByHostedZone.go │ │ │ │ ├── api_op_ListTrafficPolicyInstancesByPolicy.go │ │ │ │ ├── api_op_ListTrafficPolicyVersions.go │ │ │ │ ├── api_op_ListVPCAssociationAuthorizations.go │ │ │ │ ├── api_op_TestDNSAnswer.go │ │ │ │ ├── api_op_UpdateHealthCheck.go │ │ │ │ ├── api_op_UpdateHostedZoneComment.go │ │ │ │ ├── api_op_UpdateTrafficPolicyComment.go │ │ │ │ ├── api_op_UpdateTrafficPolicyInstance.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── handwritten_paginators.go │ │ │ │ ├── internal │ │ │ │ │ ├── customizations │ │ │ │ │ │ ├── custom_error_deser.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── sanitizeurl.go │ │ │ │ │ └── endpoints │ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ │ ├── s3 │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AbortMultipartUpload.go │ │ │ │ ├── api_op_CompleteMultipartUpload.go │ │ │ │ ├── api_op_CopyObject.go │ │ │ │ ├── api_op_CreateBucket.go │ │ │ │ ├── api_op_CreateBucketMetadataTableConfiguration.go │ │ │ │ ├── api_op_CreateMultipartUpload.go │ │ │ │ ├── api_op_CreateSession.go │ │ │ │ ├── api_op_DeleteBucket.go │ │ │ │ ├── api_op_DeleteBucketAnalyticsConfiguration.go │ │ │ │ ├── api_op_DeleteBucketCors.go │ │ │ │ ├── api_op_DeleteBucketEncryption.go │ │ │ │ ├── api_op_DeleteBucketIntelligentTieringConfiguration.go │ │ │ │ ├── api_op_DeleteBucketInventoryConfiguration.go │ │ │ │ ├── api_op_DeleteBucketLifecycle.go │ │ │ │ ├── api_op_DeleteBucketMetadataTableConfiguration.go │ │ │ │ ├── api_op_DeleteBucketMetricsConfiguration.go │ │ │ │ ├── api_op_DeleteBucketOwnershipControls.go │ │ │ │ ├── api_op_DeleteBucketPolicy.go │ │ │ │ ├── api_op_DeleteBucketReplication.go │ │ │ │ ├── api_op_DeleteBucketTagging.go │ │ │ │ ├── api_op_DeleteBucketWebsite.go │ │ │ │ ├── api_op_DeleteObject.go │ │ │ │ ├── api_op_DeleteObjectTagging.go │ │ │ │ ├── api_op_DeleteObjects.go │ │ │ │ ├── api_op_DeletePublicAccessBlock.go │ │ │ │ ├── api_op_GetBucketAccelerateConfiguration.go │ │ │ │ ├── api_op_GetBucketAcl.go │ │ │ │ ├── api_op_GetBucketAnalyticsConfiguration.go │ │ │ │ ├── api_op_GetBucketCors.go │ │ │ │ ├── api_op_GetBucketEncryption.go │ │ │ │ ├── api_op_GetBucketIntelligentTieringConfiguration.go │ │ │ │ ├── api_op_GetBucketInventoryConfiguration.go │ │ │ │ ├── api_op_GetBucketLifecycleConfiguration.go │ │ │ │ ├── api_op_GetBucketLocation.go │ │ │ │ ├── api_op_GetBucketLogging.go │ │ │ │ ├── api_op_GetBucketMetadataTableConfiguration.go │ │ │ │ ├── api_op_GetBucketMetricsConfiguration.go │ │ │ │ ├── api_op_GetBucketNotificationConfiguration.go │ │ │ │ ├── api_op_GetBucketOwnershipControls.go │ │ │ │ ├── api_op_GetBucketPolicy.go │ │ │ │ ├── api_op_GetBucketPolicyStatus.go │ │ │ │ ├── api_op_GetBucketReplication.go │ │ │ │ ├── api_op_GetBucketRequestPayment.go │ │ │ │ ├── api_op_GetBucketTagging.go │ │ │ │ ├── api_op_GetBucketVersioning.go │ │ │ │ ├── api_op_GetBucketWebsite.go │ │ │ │ ├── api_op_GetObject.go │ │ │ │ ├── api_op_GetObjectAcl.go │ │ │ │ ├── api_op_GetObjectAttributes.go │ │ │ │ ├── api_op_GetObjectLegalHold.go │ │ │ │ ├── api_op_GetObjectLockConfiguration.go │ │ │ │ ├── api_op_GetObjectRetention.go │ │ │ │ ├── api_op_GetObjectTagging.go │ │ │ │ ├── api_op_GetObjectTorrent.go │ │ │ │ ├── api_op_GetPublicAccessBlock.go │ │ │ │ ├── api_op_HeadBucket.go │ │ │ │ ├── api_op_HeadObject.go │ │ │ │ ├── api_op_ListBucketAnalyticsConfigurations.go │ │ │ │ ├── api_op_ListBucketIntelligentTieringConfigurations.go │ │ │ │ ├── api_op_ListBucketInventoryConfigurations.go │ │ │ │ ├── api_op_ListBucketMetricsConfigurations.go │ │ │ │ ├── api_op_ListBuckets.go │ │ │ │ ├── api_op_ListDirectoryBuckets.go │ │ │ │ ├── api_op_ListMultipartUploads.go │ │ │ │ ├── api_op_ListObjectVersions.go │ │ │ │ ├── api_op_ListObjects.go │ │ │ │ ├── api_op_ListObjectsV2.go │ │ │ │ ├── api_op_ListParts.go │ │ │ │ ├── api_op_PutBucketAccelerateConfiguration.go │ │ │ │ ├── api_op_PutBucketAcl.go │ │ │ │ ├── api_op_PutBucketAnalyticsConfiguration.go │ │ │ │ ├── api_op_PutBucketCors.go │ │ │ │ ├── api_op_PutBucketEncryption.go │ │ │ │ ├── api_op_PutBucketIntelligentTieringConfiguration.go │ │ │ │ ├── api_op_PutBucketInventoryConfiguration.go │ │ │ │ ├── api_op_PutBucketLifecycleConfiguration.go │ │ │ │ ├── api_op_PutBucketLogging.go │ │ │ │ ├── api_op_PutBucketMetricsConfiguration.go │ │ │ │ ├── api_op_PutBucketNotificationConfiguration.go │ │ │ │ ├── api_op_PutBucketOwnershipControls.go │ │ │ │ ├── api_op_PutBucketPolicy.go │ │ │ │ ├── api_op_PutBucketReplication.go │ │ │ │ ├── api_op_PutBucketRequestPayment.go │ │ │ │ ├── api_op_PutBucketTagging.go │ │ │ │ ├── api_op_PutBucketVersioning.go │ │ │ │ ├── api_op_PutBucketWebsite.go │ │ │ │ ├── api_op_PutObject.go │ │ │ │ ├── api_op_PutObjectAcl.go │ │ │ │ ├── api_op_PutObjectLegalHold.go │ │ │ │ ├── api_op_PutObjectLockConfiguration.go │ │ │ │ ├── api_op_PutObjectRetention.go │ │ │ │ ├── api_op_PutObjectTagging.go │ │ │ │ ├── api_op_PutPublicAccessBlock.go │ │ │ │ ├── api_op_RestoreObject.go │ │ │ │ ├── api_op_SelectObjectContent.go │ │ │ │ ├── api_op_UploadPart.go │ │ │ │ ├── api_op_UploadPartCopy.go │ │ │ │ ├── api_op_WriteGetObjectResponse.go │ │ │ │ ├── auth.go │ │ │ │ ├── bucket_context.go │ │ │ │ ├── bucketer.go │ │ │ │ ├── create_mpu_checksum.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint_auth_resolver.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── eventstream.go │ │ │ │ ├── express.go │ │ │ │ ├── express_default.go │ │ │ │ ├── express_resolve.go │ │ │ │ ├── express_user_agent.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── handwritten_paginators.go │ │ │ │ ├── internal │ │ │ │ │ ├── arn │ │ │ │ │ │ └── arn_parser.go │ │ │ │ │ ├── customizations │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── express.go │ │ │ │ │ │ ├── express_config.go │ │ │ │ │ │ ├── express_default_checksum.go │ │ │ │ │ │ ├── express_properties.go │ │ │ │ │ │ ├── express_signer.go │ │ │ │ │ │ ├── express_signer_smithy.go │ │ │ │ │ │ ├── handle_200_error.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── presigned_expires.go │ │ │ │ │ │ ├── process_arn_resource.go │ │ │ │ │ │ ├── remove_bucket_middleware.go │ │ │ │ │ │ ├── s3_object_lambda.go │ │ │ │ │ │ ├── signer_wrapper.go │ │ │ │ │ │ └── update_endpoint.go │ │ │ │ │ └── endpoints │ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── presign_post.go │ │ │ │ ├── serialize_immutable_hostname_bucket.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ ├── uri_context.go │ │ │ │ └── validators.go │ │ │ │ ├── secretsmanager │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_BatchGetSecretValue.go │ │ │ │ ├── api_op_CancelRotateSecret.go │ │ │ │ ├── api_op_CreateSecret.go │ │ │ │ ├── api_op_DeleteResourcePolicy.go │ │ │ │ ├── api_op_DeleteSecret.go │ │ │ │ ├── api_op_DescribeSecret.go │ │ │ │ ├── api_op_GetRandomPassword.go │ │ │ │ ├── api_op_GetResourcePolicy.go │ │ │ │ ├── api_op_GetSecretValue.go │ │ │ │ ├── api_op_ListSecretVersionIds.go │ │ │ │ ├── api_op_ListSecrets.go │ │ │ │ ├── api_op_PutResourcePolicy.go │ │ │ │ ├── api_op_PutSecretValue.go │ │ │ │ ├── api_op_RemoveRegionsFromReplication.go │ │ │ │ ├── api_op_ReplicateSecretToRegions.go │ │ │ │ ├── api_op_RestoreSecret.go │ │ │ │ ├── api_op_RotateSecret.go │ │ │ │ ├── api_op_StopReplicationToReplica.go │ │ │ │ ├── api_op_TagResource.go │ │ │ │ ├── api_op_UntagResource.go │ │ │ │ ├── api_op_UpdateSecret.go │ │ │ │ ├── api_op_UpdateSecretVersionStage.go │ │ │ │ ├── api_op_ValidateResourcePolicy.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 │ │ │ │ ├── sns │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AddPermission.go │ │ │ │ ├── api_op_CheckIfPhoneNumberIsOptedOut.go │ │ │ │ ├── api_op_ConfirmSubscription.go │ │ │ │ ├── api_op_CreatePlatformApplication.go │ │ │ │ ├── api_op_CreatePlatformEndpoint.go │ │ │ │ ├── api_op_CreateSMSSandboxPhoneNumber.go │ │ │ │ ├── api_op_CreateTopic.go │ │ │ │ ├── api_op_DeleteEndpoint.go │ │ │ │ ├── api_op_DeletePlatformApplication.go │ │ │ │ ├── api_op_DeleteSMSSandboxPhoneNumber.go │ │ │ │ ├── api_op_DeleteTopic.go │ │ │ │ ├── api_op_GetDataProtectionPolicy.go │ │ │ │ ├── api_op_GetEndpointAttributes.go │ │ │ │ ├── api_op_GetPlatformApplicationAttributes.go │ │ │ │ ├── api_op_GetSMSAttributes.go │ │ │ │ ├── api_op_GetSMSSandboxAccountStatus.go │ │ │ │ ├── api_op_GetSubscriptionAttributes.go │ │ │ │ ├── api_op_GetTopicAttributes.go │ │ │ │ ├── api_op_ListEndpointsByPlatformApplication.go │ │ │ │ ├── api_op_ListOriginationNumbers.go │ │ │ │ ├── api_op_ListPhoneNumbersOptedOut.go │ │ │ │ ├── api_op_ListPlatformApplications.go │ │ │ │ ├── api_op_ListSMSSandboxPhoneNumbers.go │ │ │ │ ├── api_op_ListSubscriptions.go │ │ │ │ ├── api_op_ListSubscriptionsByTopic.go │ │ │ │ ├── api_op_ListTagsForResource.go │ │ │ │ ├── api_op_ListTopics.go │ │ │ │ ├── api_op_OptInPhoneNumber.go │ │ │ │ ├── api_op_Publish.go │ │ │ │ ├── api_op_PublishBatch.go │ │ │ │ ├── api_op_PutDataProtectionPolicy.go │ │ │ │ ├── api_op_RemovePermission.go │ │ │ │ ├── api_op_SetEndpointAttributes.go │ │ │ │ ├── api_op_SetPlatformApplicationAttributes.go │ │ │ │ ├── api_op_SetSMSAttributes.go │ │ │ │ ├── api_op_SetSubscriptionAttributes.go │ │ │ │ ├── api_op_SetTopicAttributes.go │ │ │ │ ├── api_op_Subscribe.go │ │ │ │ ├── api_op_TagResource.go │ │ │ │ ├── api_op_Unsubscribe.go │ │ │ │ ├── api_op_UntagResource.go │ │ │ │ ├── api_op_VerifySMSSandboxPhoneNumber.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 │ │ │ │ ├── sqs │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AddPermission.go │ │ │ │ ├── api_op_CancelMessageMoveTask.go │ │ │ │ ├── api_op_ChangeMessageVisibility.go │ │ │ │ ├── api_op_ChangeMessageVisibilityBatch.go │ │ │ │ ├── api_op_CreateQueue.go │ │ │ │ ├── api_op_DeleteMessage.go │ │ │ │ ├── api_op_DeleteMessageBatch.go │ │ │ │ ├── api_op_DeleteQueue.go │ │ │ │ ├── api_op_GetQueueAttributes.go │ │ │ │ ├── api_op_GetQueueUrl.go │ │ │ │ ├── api_op_ListDeadLetterSourceQueues.go │ │ │ │ ├── api_op_ListMessageMoveTasks.go │ │ │ │ ├── api_op_ListQueueTags.go │ │ │ │ ├── api_op_ListQueues.go │ │ │ │ ├── api_op_PurgeQueue.go │ │ │ │ ├── api_op_ReceiveMessage.go │ │ │ │ ├── api_op_RemovePermission.go │ │ │ │ ├── api_op_SendMessage.go │ │ │ │ ├── api_op_SendMessageBatch.go │ │ │ │ ├── api_op_SetQueueAttributes.go │ │ │ │ ├── api_op_StartMessageMoveTask.go │ │ │ │ ├── api_op_TagQueue.go │ │ │ │ ├── api_op_UntagQueue.go │ │ │ │ ├── auth.go │ │ │ │ ├── cust_checksum_validation.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_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_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 │ │ │ ├── container │ │ │ └── private │ │ │ │ └── cache │ │ │ │ ├── cache.go │ │ │ │ └── lru │ │ │ │ └── lru.go │ │ │ ├── context │ │ │ └── suppress_expired.go │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── document │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ └── errors.go │ │ │ ├── encoding │ │ │ ├── doc.go │ │ │ ├── encoding.go │ │ │ ├── httpbinding │ │ │ │ ├── encode.go │ │ │ │ ├── header.go │ │ │ │ ├── path_replace.go │ │ │ │ ├── query.go │ │ │ │ └── uri.go │ │ │ ├── json │ │ │ │ ├── array.go │ │ │ │ ├── constants.go │ │ │ │ ├── decoder_util.go │ │ │ │ ├── encoder.go │ │ │ │ ├── escape.go │ │ │ │ ├── object.go │ │ │ │ └── value.go │ │ │ └── xml │ │ │ │ ├── array.go │ │ │ │ ├── constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── element.go │ │ │ │ ├── encoder.go │ │ │ │ ├── error_utils.go │ │ │ │ ├── escape.go │ │ │ │ ├── map.go │ │ │ │ ├── value.go │ │ │ │ └── xml_decoder.go │ │ │ ├── endpoints │ │ │ ├── endpoint.go │ │ │ └── private │ │ │ │ └── rulesfn │ │ │ │ ├── doc.go │ │ │ │ ├── strings.go │ │ │ │ └── uri.go │ │ │ ├── errors.go │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ └── sync │ │ │ │ └── singleflight │ │ │ │ ├── LICENSE │ │ │ │ ├── docs.go │ │ │ │ └── singleflight.go │ │ │ ├── io │ │ │ ├── byte.go │ │ │ ├── doc.go │ │ │ ├── reader.go │ │ │ └── ringbuffer.go │ │ │ ├── local-mod-replace.sh │ │ │ ├── logging │ │ │ └── logger.go │ │ │ ├── metrics │ │ │ ├── metrics.go │ │ │ └── nop.go │ │ │ ├── middleware │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── logging.go │ │ │ ├── metadata.go │ │ │ ├── middleware.go │ │ │ ├── ordered_group.go │ │ │ ├── stack.go │ │ │ ├── stack_values.go │ │ │ ├── step_build.go │ │ │ ├── step_deserialize.go │ │ │ ├── step_finalize.go │ │ │ ├── step_initialize.go │ │ │ └── step_serialize.go │ │ │ ├── modman.toml │ │ │ ├── private │ │ │ └── requestcompression │ │ │ │ ├── gzip.go │ │ │ │ ├── middleware_capture_request_compression.go │ │ │ │ └── request_compression.go │ │ │ ├── properties.go │ │ │ ├── ptr │ │ │ ├── doc.go │ │ │ ├── from_ptr.go │ │ │ ├── gen_scalars.go │ │ │ └── to_ptr.go │ │ │ ├── rand │ │ │ ├── doc.go │ │ │ ├── rand.go │ │ │ └── uuid.go │ │ │ ├── sync │ │ │ └── error.go │ │ │ ├── time │ │ │ └── time.go │ │ │ ├── tracing │ │ │ ├── context.go │ │ │ ├── nop.go │ │ │ └── tracing.go │ │ │ ├── transport │ │ │ └── http │ │ │ │ ├── auth.go │ │ │ │ ├── auth_schemes.go │ │ │ │ ├── checksum_middleware.go │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── headerlist.go │ │ │ │ ├── host.go │ │ │ │ ├── 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 │ ├── boombuler │ │ └── barcode │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── barcode.go │ │ │ ├── qr │ │ │ ├── alphanumeric.go │ │ │ ├── automatic.go │ │ │ ├── blocks.go │ │ │ ├── encoder.go │ │ │ ├── errorcorrection.go │ │ │ ├── numeric.go │ │ │ ├── qrcode.go │ │ │ ├── unicode.go │ │ │ └── versioninfo.go │ │ │ ├── scaledbarcode.go │ │ │ └── utils │ │ │ ├── base1dcode.go │ │ │ ├── bitlist.go │ │ │ ├── galoisfield.go │ │ │ ├── gfpoly.go │ │ │ ├── reedsolomon.go │ │ │ └── runeint.go │ ├── cpuguy83 │ │ └── go-md2man │ │ │ └── v2 │ │ │ ├── LICENSE.md │ │ │ └── md2man │ │ │ ├── debug.go │ │ │ ├── md2man.go │ │ │ └── roff.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── emicklei │ │ └── go-restful │ │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .goconvey │ │ │ ├── .travis.yml │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── Srcfile │ │ │ ├── bench_test.sh │ │ │ ├── compress.go │ │ │ ├── compressor_cache.go │ │ │ ├── compressor_pools.go │ │ │ ├── compressors.go │ │ │ ├── constants.go │ │ │ ├── container.go │ │ │ ├── cors_filter.go │ │ │ ├── coverage.sh │ │ │ ├── curly.go │ │ │ ├── curly_route.go │ │ │ ├── custom_verb.go │ │ │ ├── doc.go │ │ │ ├── entity_accessors.go │ │ │ ├── extensions.go │ │ │ ├── filter.go │ │ │ ├── filter_adapter.go │ │ │ ├── jsr311.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── logger.go │ │ │ ├── mime.go │ │ │ ├── options_filter.go │ │ │ ├── parameter.go │ │ │ ├── path_expression.go │ │ │ ├── path_processor.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── route.go │ │ │ ├── route_builder.go │ │ │ ├── route_reader.go │ │ │ ├── router.go │ │ │ ├── service_error.go │ │ │ ├── web_service.go │ │ │ └── web_service_container.go │ ├── fxamacker │ │ └── cbor │ │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── bytestring.go │ │ │ ├── cache.go │ │ │ ├── common.go │ │ │ ├── decode.go │ │ │ ├── diagnose.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_map.go │ │ │ ├── encode_map_go117.go │ │ │ ├── simplevalue.go │ │ │ ├── stream.go │ │ │ ├── structfields.go │ │ │ ├── tag.go │ │ │ └── valid.go │ ├── ghodss │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ └── yaml.go │ ├── go-errors │ │ └── errors │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.MIT │ │ │ ├── README.md │ │ │ ├── error.go │ │ │ ├── error_1_13.go │ │ │ ├── error_backward.go │ │ │ ├── join_unwrap_1_20.go │ │ │ ├── join_unwrap_backward.go │ │ │ ├── parse_panic.go │ │ │ └── stackframe.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 │ │ │ ├── logr.go │ │ │ ├── sloghandler.go │ │ │ ├── slogr.go │ │ │ └── slogsink.go │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pointer.go │ │ ├── jsonreference │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── internal │ │ │ │ └── normalize_url.go │ │ │ └── reference.go │ │ └── swag │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── BENCHMARK.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── doc.go │ │ │ ├── file.go │ │ │ ├── initialism_index.go │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── name_lexem.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ ├── split.go │ │ │ ├── string_bytes.go │ │ │ ├── util.go │ │ │ └── yaml.go │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── atomic_bool.go │ │ │ ├── atomic_bool_go118.go │ │ │ ├── auth.go │ │ │ ├── buffer.go │ │ │ ├── collations.go │ │ │ ├── conncheck.go │ │ │ ├── conncheck_dummy.go │ │ │ ├── connection.go │ │ │ ├── connector.go │ │ │ ├── const.go │ │ │ ├── driver.go │ │ │ ├── dsn.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── infile.go │ │ │ ├── nulltime.go │ │ │ ├── packets.go │ │ │ ├── result.go │ │ │ ├── rows.go │ │ │ ├── statement.go │ │ │ ├── transaction.go │ │ │ └── utils.go │ ├── gogo │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── custom_gogo.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── table_marshal.go │ │ │ ├── table_marshal_gogo.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── table_unmarshal_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gogo.go │ │ │ └── sortkeys │ │ │ └── sortkeys.go │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── proto │ │ │ ├── buffer.go │ │ │ ├── defaults.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── extensions.go │ │ │ ├── properties.go │ │ │ ├── proto.go │ │ │ ├── registry.go │ │ │ ├── text_decode.go │ │ │ ├── text_encode.go │ │ │ ├── wire.go │ │ │ └── wrappers.go │ ├── gonvenience │ │ ├── bunt │ │ │ ├── .gitignore │ │ │ ├── .grenrc.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bunt.go │ │ │ ├── colors.go │ │ │ ├── convenience.go │ │ │ ├── error.go │ │ │ ├── model.go │ │ │ ├── parse.go │ │ │ ├── print.go │ │ │ └── render.go │ │ ├── neat │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── box.go │ │ │ ├── errors.go │ │ │ ├── neat.go │ │ │ ├── output.go │ │ │ ├── output_json.go │ │ │ ├── output_yaml.go │ │ │ ├── table.go │ │ │ └── table_error.go │ │ ├── term │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── term.go │ │ ├── text │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── text.go │ │ ├── wrap │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── error.go │ │ │ └── wrap.go │ │ └── ytbx │ │ │ ├── .gitignore │ │ │ ├── .grenrc.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── common.go │ │ │ ├── convert.go │ │ │ ├── delete.go │ │ │ ├── errors.go │ │ │ ├── getting.go │ │ │ ├── input.go │ │ │ ├── list_functions.go │ │ │ ├── map_functions.go │ │ │ ├── path.go │ │ │ └── restructure.go │ ├── google │ │ ├── gnostic-models │ │ │ ├── LICENSE │ │ │ ├── compiler │ │ │ │ ├── README.md │ │ │ │ ├── context.go │ │ │ │ ├── error.go │ │ │ │ ├── extensions.go │ │ │ │ ├── helpers.go │ │ │ │ ├── main.go │ │ │ │ └── reader.go │ │ │ ├── extensions │ │ │ │ ├── README.md │ │ │ │ ├── extension.pb.go │ │ │ │ ├── extension.proto │ │ │ │ └── extensions.go │ │ │ ├── jsonschema │ │ │ │ ├── README.md │ │ │ │ ├── base.go │ │ │ │ ├── display.go │ │ │ │ ├── models.go │ │ │ │ ├── operations.go │ │ │ │ ├── reader.go │ │ │ │ ├── schema.json │ │ │ │ └── writer.go │ │ │ ├── openapiv2 │ │ │ │ ├── OpenAPIv2.go │ │ │ │ ├── OpenAPIv2.pb.go │ │ │ │ ├── OpenAPIv2.proto │ │ │ │ ├── README.md │ │ │ │ ├── document.go │ │ │ │ └── openapi-2.0.json │ │ │ └── openapiv3 │ │ │ │ ├── OpenAPIv3.go │ │ │ │ ├── OpenAPIv3.pb.go │ │ │ │ ├── OpenAPIv3.proto │ │ │ │ ├── README.md │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── annotations.proto │ │ │ │ └── document.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 │ │ ├── gofuzz │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bytesource │ │ │ │ └── bytesource.go │ │ │ ├── doc.go │ │ │ └── fuzz.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 │ ├── gorilla │ │ └── websocket │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── compression.go │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── join.go │ │ │ ├── json.go │ │ │ ├── mask.go │ │ │ ├── mask_safe.go │ │ │ ├── prepared.go │ │ │ ├── proxy.go │ │ │ ├── server.go │ │ │ ├── tls_handshake.go │ │ │ ├── tls_handshake_116.go │ │ │ ├── util.go │ │ │ └── x_net_proxy.go │ ├── gruntwork-io │ │ ├── go-commons │ │ │ ├── LICENSE.txt │ │ │ ├── collections │ │ │ │ ├── doc.go │ │ │ │ ├── lists.go │ │ │ │ └── maps.go │ │ │ └── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ └── terratest │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── modules │ │ │ ├── aws │ │ │ ├── account.go │ │ │ ├── acm.go │ │ │ ├── ami.go │ │ │ ├── asg.go │ │ │ ├── auth.go │ │ │ ├── aws.go │ │ │ ├── cloudwatch.go │ │ │ ├── dynamodb.go │ │ │ ├── ebs.go │ │ │ ├── ec2-files.go │ │ │ ├── ec2-syslog.go │ │ │ ├── ec2.go │ │ │ ├── ecr.go │ │ │ ├── ecs.go │ │ │ ├── errors.go │ │ │ ├── iam.go │ │ │ ├── keypair.go │ │ │ ├── kms.go │ │ │ ├── lambda.go │ │ │ ├── rds.go │ │ │ ├── region.go │ │ │ ├── route53.go │ │ │ ├── s3.go │ │ │ ├── secretsmanager.go │ │ │ ├── sns.go │ │ │ ├── sqs.go │ │ │ ├── ssm.go │ │ │ └── vpc.go │ │ │ ├── collections │ │ │ ├── collections.go │ │ │ ├── errors.go │ │ │ ├── lists.go │ │ │ └── stringslicevalue.go │ │ │ ├── environment │ │ │ ├── environment.go │ │ │ └── envvar.go │ │ │ ├── files │ │ │ ├── errors.go │ │ │ └── files.go │ │ │ ├── helm │ │ │ ├── cmd.go │ │ │ ├── delete.go │ │ │ ├── errors.go │ │ │ ├── format.go │ │ │ ├── helm.go │ │ │ ├── install.go │ │ │ ├── options.go │ │ │ ├── repo.go │ │ │ ├── rollback.go │ │ │ ├── template.go │ │ │ └── upgrade.go │ │ │ ├── k8s │ │ │ ├── client.go │ │ │ ├── cluster_role.go │ │ │ ├── config.go │ │ │ ├── configmap.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── errors.go │ │ │ ├── event.go │ │ │ ├── ingress.go │ │ │ ├── job.go │ │ │ ├── jsonpath.go │ │ │ ├── k8s.go │ │ │ ├── kubectl.go │ │ │ ├── kubectl_options.go │ │ │ ├── minikube.go │ │ │ ├── namespace.go │ │ │ ├── networkpolicy.go │ │ │ ├── node.go │ │ │ ├── persistent_volume.go │ │ │ ├── persistent_volume_claim.go │ │ │ ├── pod.go │ │ │ ├── replicaset.go │ │ │ ├── role.go │ │ │ ├── secret.go │ │ │ ├── self_subject_access_review.go │ │ │ ├── service.go │ │ │ ├── service_account.go │ │ │ ├── tunnel.go │ │ │ └── version.go │ │ │ ├── logger │ │ │ └── logger.go │ │ │ ├── random │ │ │ └── random.go │ │ │ ├── retry │ │ │ └── retry.go │ │ │ ├── shell │ │ │ ├── command.go │ │ │ ├── output.go │ │ │ └── shell.go │ │ │ ├── ssh │ │ │ ├── agent.go │ │ │ ├── key_pair.go │ │ │ ├── session.go │ │ │ └── ssh.go │ │ │ └── testing │ │ │ └── types.go │ ├── hashicorp │ │ ├── errwrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── errwrap.go │ │ └── go-multierror │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── append.go │ │ │ ├── flatten.go │ │ │ ├── format.go │ │ │ ├── group.go │ │ │ ├── multierror.go │ │ │ ├── prefix.go │ │ │ └── sort.go │ ├── homeport │ │ └── dyff │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── dyff │ │ │ ├── colors.go │ │ │ ├── core.go │ │ │ ├── core_identifier.go │ │ │ ├── models.go │ │ │ ├── output.go │ │ │ ├── output_brief.go │ │ │ ├── output_diff_syntax.go │ │ │ ├── output_human.go │ │ │ └── reports.go │ ├── jackc │ │ ├── pgpassfile │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pgpass.go │ │ ├── pgservicefile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pgservicefile.go │ │ ├── pgx │ │ │ └── v5 │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Rakefile │ │ │ │ ├── batch.go │ │ │ │ ├── conn.go │ │ │ │ ├── copy_from.go │ │ │ │ ├── derived_types.go │ │ │ │ ├── doc.go │ │ │ │ ├── extended_query_builder.go │ │ │ │ ├── internal │ │ │ │ ├── iobufpool │ │ │ │ │ └── iobufpool.go │ │ │ │ ├── pgio │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ └── write.go │ │ │ │ ├── sanitize │ │ │ │ │ └── sanitize.go │ │ │ │ └── stmtcache │ │ │ │ │ ├── lru_cache.go │ │ │ │ │ ├── stmtcache.go │ │ │ │ │ └── unlimited_cache.go │ │ │ │ ├── large_objects.go │ │ │ │ ├── named_args.go │ │ │ │ ├── pgconn │ │ │ │ ├── README.md │ │ │ │ ├── auth_scram.go │ │ │ │ ├── config.go │ │ │ │ ├── ctxwatch │ │ │ │ │ └── context_watcher.go │ │ │ │ ├── defaults.go │ │ │ │ ├── defaults_windows.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── internal │ │ │ │ │ └── bgreader │ │ │ │ │ │ └── bgreader.go │ │ │ │ ├── krb5.go │ │ │ │ └── pgconn.go │ │ │ │ ├── pgproto3 │ │ │ │ ├── README.md │ │ │ │ ├── authentication_cleartext_password.go │ │ │ │ ├── authentication_gss.go │ │ │ │ ├── authentication_gss_continue.go │ │ │ │ ├── authentication_md5_password.go │ │ │ │ ├── authentication_ok.go │ │ │ │ ├── authentication_sasl.go │ │ │ │ ├── authentication_sasl_continue.go │ │ │ │ ├── authentication_sasl_final.go │ │ │ │ ├── backend.go │ │ │ │ ├── backend_key_data.go │ │ │ │ ├── big_endian.go │ │ │ │ ├── bind.go │ │ │ │ ├── bind_complete.go │ │ │ │ ├── cancel_request.go │ │ │ │ ├── chunkreader.go │ │ │ │ ├── close.go │ │ │ │ ├── close_complete.go │ │ │ │ ├── command_complete.go │ │ │ │ ├── copy_both_response.go │ │ │ │ ├── copy_data.go │ │ │ │ ├── copy_done.go │ │ │ │ ├── copy_fail.go │ │ │ │ ├── copy_in_response.go │ │ │ │ ├── copy_out_response.go │ │ │ │ ├── data_row.go │ │ │ │ ├── describe.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty_query_response.go │ │ │ │ ├── error_response.go │ │ │ │ ├── execute.go │ │ │ │ ├── flush.go │ │ │ │ ├── frontend.go │ │ │ │ ├── function_call.go │ │ │ │ ├── function_call_response.go │ │ │ │ ├── gss_enc_request.go │ │ │ │ ├── gss_response.go │ │ │ │ ├── no_data.go │ │ │ │ ├── notice_response.go │ │ │ │ ├── notification_response.go │ │ │ │ ├── parameter_description.go │ │ │ │ ├── parameter_status.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_complete.go │ │ │ │ ├── password_message.go │ │ │ │ ├── pgproto3.go │ │ │ │ ├── portal_suspended.go │ │ │ │ ├── query.go │ │ │ │ ├── ready_for_query.go │ │ │ │ ├── row_description.go │ │ │ │ ├── sasl_initial_response.go │ │ │ │ ├── sasl_response.go │ │ │ │ ├── ssl_request.go │ │ │ │ ├── startup_message.go │ │ │ │ ├── sync.go │ │ │ │ ├── terminate.go │ │ │ │ └── trace.go │ │ │ │ ├── pgtype │ │ │ │ ├── array.go │ │ │ │ ├── array_codec.go │ │ │ │ ├── bits.go │ │ │ │ ├── bool.go │ │ │ │ ├── box.go │ │ │ │ ├── builtin_wrappers.go │ │ │ │ ├── bytea.go │ │ │ │ ├── circle.go │ │ │ │ ├── composite.go │ │ │ │ ├── convert.go │ │ │ │ ├── date.go │ │ │ │ ├── doc.go │ │ │ │ ├── enum_codec.go │ │ │ │ ├── float4.go │ │ │ │ ├── float8.go │ │ │ │ ├── hstore.go │ │ │ │ ├── inet.go │ │ │ │ ├── int.go │ │ │ │ ├── int.go.erb │ │ │ │ ├── int_test.go.erb │ │ │ │ ├── integration_benchmark_test.go.erb │ │ │ │ ├── integration_benchmark_test_gen.sh │ │ │ │ ├── interval.go │ │ │ │ ├── json.go │ │ │ │ ├── jsonb.go │ │ │ │ ├── line.go │ │ │ │ ├── lseg.go │ │ │ │ ├── ltree.go │ │ │ │ ├── macaddr.go │ │ │ │ ├── multirange.go │ │ │ │ ├── numeric.go │ │ │ │ ├── path.go │ │ │ │ ├── pgtype.go │ │ │ │ ├── pgtype_default.go │ │ │ │ ├── point.go │ │ │ │ ├── polygon.go │ │ │ │ ├── qchar.go │ │ │ │ ├── range.go │ │ │ │ ├── range_codec.go │ │ │ │ ├── record_codec.go │ │ │ │ ├── register_default_pg_types.go │ │ │ │ ├── register_default_pg_types_disabled.go │ │ │ │ ├── text.go │ │ │ │ ├── text_format_only_codec.go │ │ │ │ ├── tid.go │ │ │ │ ├── time.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamptz.go │ │ │ │ ├── uint32.go │ │ │ │ ├── uuid.go │ │ │ │ └── xml.go │ │ │ │ ├── pgxpool │ │ │ │ ├── batch_results.go │ │ │ │ ├── conn.go │ │ │ │ ├── doc.go │ │ │ │ ├── pool.go │ │ │ │ ├── rows.go │ │ │ │ ├── stat.go │ │ │ │ ├── tracer.go │ │ │ │ └── tx.go │ │ │ │ ├── rows.go │ │ │ │ ├── stdlib │ │ │ │ └── sql.go │ │ │ │ ├── tracer.go │ │ │ │ ├── tx.go │ │ │ │ └── values.go │ │ └── puddle │ │ │ └── v2 │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ └── genstack │ │ │ │ ├── gen_stack.go │ │ │ │ └── stack.go │ │ │ ├── log.go │ │ │ ├── nanotime.go │ │ │ ├── pool.go │ │ │ └── resource_list.go │ ├── jmespath │ │ └── go-jmespath │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── astnodetype_string.go │ │ │ ├── functions.go │ │ │ ├── interpreter.go │ │ │ ├── lexer.go │ │ │ ├── parser.go │ │ │ ├── toktype_string.go │ │ │ └── util.go │ ├── josharian │ │ └── intern │ │ │ ├── README.md │ │ │ ├── intern.go │ │ │ └── license.md │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── lucasb-eyer │ │ └── go-colorful │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorgens.go │ │ │ ├── colors.go │ │ │ ├── happy_palettegen.go │ │ │ ├── hexcolor.go │ │ │ ├── hsluv-snapshot-rev4.json │ │ │ ├── hsluv.go │ │ │ ├── soft_palettegen.go │ │ │ └── warm_palettegen.go │ ├── mailru │ │ └── easyjson │ │ │ ├── LICENSE │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ └── jwriter │ │ │ └── writer.go │ ├── mattn │ │ ├── go-ciede2000 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── ciede2000.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-zglob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fastwalk │ │ │ ├── fastwalk.go │ │ │ ├── fastwalk_dirent_fileno.go │ │ │ ├── fastwalk_dirent_ino.go │ │ │ ├── fastwalk_portable.go │ │ │ └── fastwalk_unix.go │ │ │ └── zglob.go │ ├── mitchellh │ │ ├── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── homedir.go │ │ ├── go-ps │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── Vagrantfile │ │ │ ├── process.go │ │ │ ├── process_darwin.go │ │ │ ├── process_freebsd.go │ │ │ ├── process_linux.go │ │ │ ├── process_solaris.go │ │ │ ├── process_unix.go │ │ │ └── process_windows.go │ │ └── hashstructure │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── hashstructure.go │ │ │ └── include.go │ ├── moby │ │ └── spdystream │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── connection.go │ │ │ ├── handlers.go │ │ │ ├── priority.go │ │ │ ├── spdy │ │ │ ├── dictionary.go │ │ │ ├── read.go │ │ │ ├── types.go │ │ │ └── write.go │ │ │ ├── stream.go │ │ │ └── utils.go │ ├── modern-go │ │ ├── concurrent │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── executor.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_19.go │ │ │ ├── log.go │ │ │ ├── test.sh │ │ │ └── unbounded_executor.go │ │ └── reflect2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go_above_118.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_118.go │ │ │ ├── reflect2.go │ │ │ ├── reflect2_amd64.s │ │ │ ├── reflect2_kind.go │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── safe_field.go │ │ │ ├── safe_map.go │ │ │ ├── safe_slice.go │ │ │ ├── safe_struct.go │ │ │ ├── safe_type.go │ │ │ ├── type_map.go │ │ │ ├── unsafe_array.go │ │ │ ├── unsafe_eface.go │ │ │ ├── unsafe_field.go │ │ │ ├── unsafe_iface.go │ │ │ ├── unsafe_link.go │ │ │ ├── unsafe_map.go │ │ │ ├── unsafe_ptr.go │ │ │ ├── unsafe_slice.go │ │ │ ├── unsafe_struct.go │ │ │ └── unsafe_type.go │ ├── munnerz │ │ └── goautoneg │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ └── autoneg.go │ ├── mxk │ │ └── go-flowrate │ │ │ ├── LICENSE │ │ │ └── flowrate │ │ │ ├── flowrate.go │ │ │ ├── io.go │ │ │ └── util.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ ├── go113.go │ │ │ └── stack.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── pquerna │ │ └── otp │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── hotp │ │ │ └── hotp.go │ │ │ ├── internal │ │ │ └── encode.go │ │ │ ├── otp.go │ │ │ └── totp │ │ │ └── totp.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 │ ├── sergi │ │ └── go-diff │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── diffmatchpatch │ │ │ ├── diff.go │ │ │ ├── diffmatchpatch.go │ │ │ ├── match.go │ │ │ ├── mathutil.go │ │ │ ├── operation_string.go │ │ │ ├── patch.go │ │ │ └── stringutil.go │ ├── spf13 │ │ └── pflag │ │ │ ├── .gitignore │ │ │ ├── .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 │ │ │ ├── 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 │ ├── stretchr │ │ └── testify │ │ │ ├── LICENSE │ │ │ ├── assert │ │ │ ├── assertion_compare.go │ │ │ ├── assertion_format.go │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertion_order.go │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── http_assertions.go │ │ │ └── yaml │ │ │ │ ├── yaml_custom.go │ │ │ │ ├── yaml_default.go │ │ │ │ └── yaml_fail.go │ │ │ └── require │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── require.go │ │ │ ├── require.go.tmpl │ │ │ ├── require_forward.go │ │ │ ├── require_forward.go.tmpl │ │ │ └── requirements.go │ ├── texttheater │ │ └── golang-levenshtein │ │ │ ├── LICENSE │ │ │ └── levenshtein │ │ │ └── levenshtein.go │ ├── urfave │ │ └── cli │ │ │ └── v2 │ │ │ ├── .flake8 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── args.go │ │ │ ├── category.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── context.go │ │ │ ├── docs.go │ │ │ ├── errors.go │ │ │ ├── fish.go │ │ │ ├── flag-spec.yaml │ │ │ ├── flag.go │ │ │ ├── flag_bool.go │ │ │ ├── flag_duration.go │ │ │ ├── flag_ext.go │ │ │ ├── flag_float64.go │ │ │ ├── flag_float64_slice.go │ │ │ ├── flag_generic.go │ │ │ ├── flag_int.go │ │ │ ├── flag_int64.go │ │ │ ├── flag_int64_slice.go │ │ │ ├── flag_int_slice.go │ │ │ ├── flag_path.go │ │ │ ├── flag_string.go │ │ │ ├── flag_string_slice.go │ │ │ ├── flag_timestamp.go │ │ │ ├── flag_uint.go │ │ │ ├── flag_uint64.go │ │ │ ├── flag_uint64_slice.go │ │ │ ├── flag_uint_slice.go │ │ │ ├── funcs.go │ │ │ ├── godoc-current.txt │ │ │ ├── help.go │ │ │ ├── mkdocs-reqs.txt │ │ │ ├── mkdocs.yml │ │ │ ├── parse.go │ │ │ ├── sliceflag.go │ │ │ ├── sort.go │ │ │ ├── suggestions.go │ │ │ ├── template.go │ │ │ └── zz_generated.flags.go │ ├── virtuald │ │ └── go-ordered-json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fold.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ ├── tables.go │ │ │ └── tags.go │ ├── x448 │ │ └── float16 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── float16.go │ └── xrash │ │ └── smetrics │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── hamming.go │ │ ├── jaro-winkler.go │ │ ├── jaro.go │ │ ├── soundex.go │ │ ├── ukkonen.go │ │ └── wagner-fischer.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.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 │ │ ├── curve25519 │ │ │ └── curve25519.go │ │ ├── internal │ │ │ ├── alias │ │ │ │ ├── alias.go │ │ │ │ └── alias_purego.go │ │ │ └── poly1305 │ │ │ │ ├── mac_noasm.go │ │ │ │ ├── poly1305.go │ │ │ │ ├── sum_amd64.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_generic.go │ │ │ │ ├── sum_ppc64x.go │ │ │ │ ├── sum_ppc64x.s │ │ │ │ ├── sum_s390x.go │ │ │ │ └── sum_s390x.s │ │ ├── pbkdf2 │ │ │ └── pbkdf2.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 │ │ │ ├── mac.go │ │ │ ├── messages.go │ │ │ ├── mux.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── ssh_gss.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ └── transport.go │ │ ├── exp │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── constraints │ │ │ └── constraints.go │ │ └── maps │ │ │ └── maps.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 │ │ ├── proxy │ │ │ ├── dial.go │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── proxy.go │ │ │ └── socks5.go │ │ └── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── hybi.go │ │ │ ├── server.go │ │ │ └── websocket.go │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── deviceauth.go │ │ ├── internal │ │ │ ├── doc.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ ├── oauth2.go │ │ ├── pkce.go │ │ ├── token.go │ │ └── transport.go │ │ ├── sync │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── semaphore │ │ │ └── semaphore.go │ │ └── syncmap │ │ │ └── map.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_mips64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_linux_ppc64x.go │ │ │ ├── cpu_linux_riscv64.go │ │ │ ├── cpu_linux_s390x.go │ │ │ ├── cpu_loong64.go │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── setupapi_windows.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ ├── types_windows_arm64.go │ │ │ ├── zerrors_windows.go │ │ │ ├── zknownfolderids_windows.go │ │ │ └── zsyscall_windows.go │ │ ├── term │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── term.go │ │ ├── term_plan9.go │ │ ├── term_unix.go │ │ ├── term_unix_bsd.go │ │ ├── term_unix_other.go │ │ ├── term_unsupported.go │ │ ├── term_windows.go │ │ └── terminal.go │ │ ├── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cases │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── fold.go │ │ │ ├── icu.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── internal.go │ │ │ ├── language │ │ │ │ ├── common.go │ │ │ │ ├── compact.go │ │ │ │ ├── compact │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── parents.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── compose.go │ │ │ │ ├── coverage.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── match.go │ │ │ └── tag │ │ │ │ └── tag.go │ │ ├── language │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ └── runes.go │ │ ├── secure │ │ │ ├── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ │ └── precis │ │ │ │ ├── class.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── nickname.go │ │ │ │ ├── options.go │ │ │ │ ├── profile.go │ │ │ │ ├── profiles.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transformer.go │ │ │ │ └── trieval.go │ │ ├── transform │ │ │ └── transform.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ └── width │ │ │ ├── kind_string.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ └── time │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── rate │ │ ├── rate.go │ │ └── sometimes.go ├── google.golang.org │ └── protobuf │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ ├── prototext │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire │ │ │ └── wire.go │ │ ├── internal │ │ ├── descfmt │ │ │ └── stringer.go │ │ ├── descopts │ │ │ └── options.go │ │ ├── detrand │ │ │ └── rand.go │ │ ├── editiondefaults │ │ │ ├── defaults.go │ │ │ └── editions_defaults.binpb │ │ ├── editionssupport │ │ │ └── editions.go │ │ ├── encoding │ │ │ ├── defval │ │ │ │ └── default.go │ │ │ ├── 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 │ │ │ ├── is_go112.go │ │ │ └── is_go113.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 │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl │ │ │ ├── api_export.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_map_go111.go │ │ │ ├── codec_map_go112.go │ │ │ ├── codec_message.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 │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── validate.go │ │ │ └── weak.go │ │ ├── order │ │ │ ├── order.go │ │ │ └── range.go │ │ ├── pragma │ │ │ └── pragma.go │ │ ├── set │ │ │ └── ints.go │ │ ├── strs │ │ │ ├── strings.go │ │ │ ├── strings_unsafe_go120.go │ │ │ └── strings_unsafe_go121.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 │ │ └── wrappers.go │ │ ├── reflect │ │ ├── protodesc │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_resolve.go │ │ │ ├── desc_validate.go │ │ │ ├── editions.go │ │ │ └── proto.go │ │ ├── protoreflect │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── source_gen.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_equal.go │ │ │ ├── value_union.go │ │ │ ├── value_unsafe_go120.go │ │ │ └── value_unsafe_go121.go │ │ └── protoregistry │ │ │ └── registry.go │ │ ├── runtime │ │ ├── protoiface │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl │ │ │ ├── impl.go │ │ │ └── version.go │ │ └── types │ │ ├── descriptorpb │ │ └── descriptor.pb.go │ │ ├── gofeaturespb │ │ └── go_features.pb.go │ │ └── known │ │ └── anypb │ │ └── any.pb.go ├── gopkg.in │ ├── evanphx │ │ └── json-patch.v4 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── merge.go │ │ │ └── patch.go │ ├── inf.v0 │ │ ├── LICENSE │ │ ├── dec.go │ │ └── rounder.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 ├── k8s.io │ ├── api │ │ ├── LICENSE │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── apidiscovery │ │ │ ├── v2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v2beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v2beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v2beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1alpha2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── annotation_key_constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── lifecycle.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── register.go │ │ │ │ ├── resource.go │ │ │ │ ├── taint.go │ │ │ │ ├── toleration.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── well_known_taints.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta3 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_annotations.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_annotations.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── resource │ │ │ ├── v1alpha3 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apimachinery │ │ ├── LICENSE │ │ ├── pkg │ │ │ ├── api │ │ │ │ ├── equality │ │ │ │ │ └── semantic.go │ │ │ │ ├── errors │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── meta │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── conditions.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ │ ├── help.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── lazy.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── multirestmapper.go │ │ │ │ │ ├── priority.go │ │ │ │ │ ├── restmapper.go │ │ │ │ │ └── testrestmapper │ │ │ │ │ │ └── test_restmapper.go │ │ │ │ ├── resource │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── amount.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── math.go │ │ │ │ │ ├── quantity.go │ │ │ │ │ ├── quantity_proto.go │ │ │ │ │ ├── scale_int.go │ │ │ │ │ ├── suffix.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── validation │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generic.go │ │ │ │ │ └── objectmeta.go │ │ │ ├── apis │ │ │ │ └── meta │ │ │ │ │ ├── internalversion │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── validation │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── micro_time.go │ │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_fuzz.go │ │ │ │ │ ├── time_proto.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── unstructured │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── validation │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── watch.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ ├── conversion │ │ │ │ ├── converter.go │ │ │ │ ├── deep_equal.go │ │ │ │ ├── doc.go │ │ │ │ ├── helper.go │ │ │ │ └── queryparams │ │ │ │ │ ├── convert.go │ │ │ │ │ └── doc.go │ │ │ ├── fields │ │ │ │ ├── doc.go │ │ │ │ ├── fields.go │ │ │ │ ├── requirements.go │ │ │ │ └── selector.go │ │ │ ├── labels │ │ │ │ ├── doc.go │ │ │ │ ├── labels.go │ │ │ │ ├── selector.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── runtime │ │ │ │ ├── allocator.go │ │ │ │ ├── codec.go │ │ │ │ ├── codec_check.go │ │ │ │ ├── conversion.go │ │ │ │ ├── converter.go │ │ │ │ ├── doc.go │ │ │ │ ├── embedded.go │ │ │ │ ├── error.go │ │ │ │ ├── extension.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── helper.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── mapper.go │ │ │ │ ├── negotiate.go │ │ │ │ ├── register.go │ │ │ │ ├── schema │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ └── interfaces.go │ │ │ │ ├── scheme.go │ │ │ │ ├── scheme_builder.go │ │ │ │ ├── serializer │ │ │ │ │ ├── cbor │ │ │ │ │ │ ├── cbor.go │ │ │ │ │ │ ├── direct │ │ │ │ │ │ │ └── direct.go │ │ │ │ │ │ ├── framer.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── modes │ │ │ │ │ │ │ │ ├── buffers.go │ │ │ │ │ │ │ │ ├── custom.go │ │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ │ │ └── encode.go │ │ │ │ │ │ └── raw.go │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ ├── json │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ └── meta.go │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── protobuf.go │ │ │ │ │ ├── recognizer │ │ │ │ │ │ └── recognizer.go │ │ │ │ │ ├── streaming │ │ │ │ │ │ └── streaming.go │ │ │ │ │ └── versioning │ │ │ │ │ │ └── versioning.go │ │ │ │ ├── splice.go │ │ │ │ ├── swagger_doc_generator.go │ │ │ │ ├── types.go │ │ │ │ ├── types_proto.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── selection │ │ │ │ └── operator.go │ │ │ ├── types │ │ │ │ ├── doc.go │ │ │ │ ├── namespacedname.go │ │ │ │ ├── nodename.go │ │ │ │ ├── patch.go │ │ │ │ └── uid.go │ │ │ ├── util │ │ │ │ ├── dump │ │ │ │ │ └── dump.go │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── framer │ │ │ │ │ └── framer.go │ │ │ │ ├── httpstream │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── httpstream.go │ │ │ │ │ ├── spdy │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ │ └── upgrade.go │ │ │ │ │ └── wsstream │ │ │ │ │ │ ├── conn.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── stream.go │ │ │ │ ├── intstr │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── instr_fuzz.go │ │ │ │ │ └── intstr.go │ │ │ │ ├── json │ │ │ │ │ └── json.go │ │ │ │ ├── managedfields │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── extract.go │ │ │ │ │ ├── fieldmanager.go │ │ │ │ │ ├── gvkparser.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── atmostevery.go │ │ │ │ │ │ ├── buildmanagerinfo.go │ │ │ │ │ │ ├── capmanagers.go │ │ │ │ │ │ ├── conflict.go │ │ │ │ │ │ ├── fieldmanager.go │ │ │ │ │ │ ├── fields.go │ │ │ │ │ │ ├── lastapplied.go │ │ │ │ │ │ ├── lastappliedmanager.go │ │ │ │ │ │ ├── lastappliedupdater.go │ │ │ │ │ │ ├── managedfields.go │ │ │ │ │ │ ├── managedfieldsupdater.go │ │ │ │ │ │ ├── manager.go │ │ │ │ │ │ ├── pathelement.go │ │ │ │ │ │ ├── skipnonapplied.go │ │ │ │ │ │ ├── stripmeta.go │ │ │ │ │ │ ├── structuredmerge.go │ │ │ │ │ │ ├── typeconverter.go │ │ │ │ │ │ ├── versioncheck.go │ │ │ │ │ │ └── versionconverter.go │ │ │ │ │ ├── node.yaml │ │ │ │ │ ├── pod.yaml │ │ │ │ │ ├── scalehandler.go │ │ │ │ │ └── typeconverter.go │ │ │ │ ├── mergepatch │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ └── util.go │ │ │ │ ├── naming │ │ │ │ │ └── from_stack.go │ │ │ │ ├── net │ │ │ │ │ ├── http.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── port_range.go │ │ │ │ │ ├── port_split.go │ │ │ │ │ └── util.go │ │ │ │ ├── portforward │ │ │ │ │ └── constants.go │ │ │ │ ├── proxy │ │ │ │ │ ├── dial.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── transport.go │ │ │ │ │ └── upgradeaware.go │ │ │ │ ├── remotecommand │ │ │ │ │ └── constants.go │ │ │ │ ├── runtime │ │ │ │ │ └── runtime.go │ │ │ │ ├── sets │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int32.go │ │ │ │ │ ├── int64.go │ │ │ │ │ ├── set.go │ │ │ │ │ └── string.go │ │ │ │ ├── strategicpatch │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── patch.go │ │ │ │ │ └── types.go │ │ │ │ ├── validation │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── field │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── path.go │ │ │ │ │ └── validation.go │ │ │ │ ├── wait │ │ │ │ │ ├── backoff.go │ │ │ │ │ ├── delay.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── loop.go │ │ │ │ │ ├── poll.go │ │ │ │ │ ├── timer.go │ │ │ │ │ └── wait.go │ │ │ │ └── yaml │ │ │ │ │ └── decoder.go │ │ │ ├── version │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ │ └── watch │ │ │ │ ├── doc.go │ │ │ │ ├── filter.go │ │ │ │ ├── mux.go │ │ │ │ ├── streamwatcher.go │ │ │ │ ├── watch.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── json │ │ │ ├── OWNERS │ │ │ └── fields.go │ │ │ ├── netutil │ │ │ └── addr.go │ │ │ └── reflect │ │ │ └── deep_equal.go │ ├── client-go │ │ ├── LICENSE │ │ ├── applyconfigurations │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ ├── auditannotation.go │ │ │ │ │ ├── expressionwarning.go │ │ │ │ │ ├── matchcondition.go │ │ │ │ │ ├── matchresources.go │ │ │ │ │ ├── mutatingwebhook.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ │ ├── paramkind.go │ │ │ │ │ ├── paramref.go │ │ │ │ │ ├── rule.go │ │ │ │ │ ├── rulewithoperations.go │ │ │ │ │ ├── servicereference.go │ │ │ │ │ ├── typechecking.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ │ ├── validatingwebhook.go │ │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ │ ├── validation.go │ │ │ │ │ ├── variable.go │ │ │ │ │ └── webhookclientconfig.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── applyconfiguration.go │ │ │ │ │ ├── auditannotation.go │ │ │ │ │ ├── expressionwarning.go │ │ │ │ │ ├── jsonpatch.go │ │ │ │ │ ├── matchcondition.go │ │ │ │ │ ├── matchresources.go │ │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ │ ├── mutation.go │ │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ │ ├── paramkind.go │ │ │ │ │ ├── paramref.go │ │ │ │ │ ├── typechecking.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── variable.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── auditannotation.go │ │ │ │ │ ├── expressionwarning.go │ │ │ │ │ ├── matchcondition.go │ │ │ │ │ ├── matchresources.go │ │ │ │ │ ├── mutatingwebhook.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ │ ├── paramkind.go │ │ │ │ │ ├── paramref.go │ │ │ │ │ ├── servicereference.go │ │ │ │ │ ├── typechecking.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ │ ├── validatingwebhook.go │ │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ │ ├── validation.go │ │ │ │ │ ├── variable.go │ │ │ │ │ └── webhookclientconfig.go │ │ │ ├── apiserverinternal │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── serverstorageversion.go │ │ │ │ │ ├── storageversion.go │ │ │ │ │ ├── storageversioncondition.go │ │ │ │ │ └── storageversionstatus.go │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonsetcondition.go │ │ │ │ │ ├── daemonsetspec.go │ │ │ │ │ ├── daemonsetstatus.go │ │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicasetcondition.go │ │ │ │ │ ├── replicasetspec.go │ │ │ │ │ ├── replicasetstatus.go │ │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ ├── statefulsetcondition.go │ │ │ │ │ ├── statefulsetordinals.go │ │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ │ ├── statefulsetspec.go │ │ │ │ │ ├── statefulsetstatus.go │ │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── rollbackconfig.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ ├── statefulsetcondition.go │ │ │ │ │ ├── statefulsetordinals.go │ │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ │ ├── statefulsetspec.go │ │ │ │ │ ├── statefulsetstatus.go │ │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonsetcondition.go │ │ │ │ │ ├── daemonsetspec.go │ │ │ │ │ ├── daemonsetstatus.go │ │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicasetcondition.go │ │ │ │ │ ├── replicasetspec.go │ │ │ │ │ ├── replicasetstatus.go │ │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ ├── statefulsetcondition.go │ │ │ │ │ ├── statefulsetordinals.go │ │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ │ ├── statefulsetspec.go │ │ │ │ │ ├── statefulsetstatus.go │ │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── scalespec.go │ │ │ │ │ └── scalestatus.go │ │ │ │ ├── v2 │ │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── externalmetricsource.go │ │ │ │ │ ├── externalmetricstatus.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ │ ├── hpascalingrules.go │ │ │ │ │ ├── metricidentifier.go │ │ │ │ │ ├── metricspec.go │ │ │ │ │ ├── metricstatus.go │ │ │ │ │ ├── metrictarget.go │ │ │ │ │ ├── metricvaluestatus.go │ │ │ │ │ ├── objectmetricsource.go │ │ │ │ │ ├── objectmetricstatus.go │ │ │ │ │ ├── podsmetricsource.go │ │ │ │ │ ├── podsmetricstatus.go │ │ │ │ │ ├── resourcemetricsource.go │ │ │ │ │ └── resourcemetricstatus.go │ │ │ │ ├── v2beta1 │ │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── externalmetricsource.go │ │ │ │ │ ├── externalmetricstatus.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ │ ├── metricspec.go │ │ │ │ │ ├── metricstatus.go │ │ │ │ │ ├── objectmetricsource.go │ │ │ │ │ ├── objectmetricstatus.go │ │ │ │ │ ├── podsmetricsource.go │ │ │ │ │ ├── podsmetricstatus.go │ │ │ │ │ ├── resourcemetricsource.go │ │ │ │ │ └── resourcemetricstatus.go │ │ │ │ └── v2beta2 │ │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── externalmetricsource.go │ │ │ │ │ ├── externalmetricstatus.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ │ ├── hpascalingrules.go │ │ │ │ │ ├── metricidentifier.go │ │ │ │ │ ├── metricspec.go │ │ │ │ │ ├── metricstatus.go │ │ │ │ │ ├── metrictarget.go │ │ │ │ │ ├── metricvaluestatus.go │ │ │ │ │ ├── objectmetricsource.go │ │ │ │ │ ├── objectmetricstatus.go │ │ │ │ │ ├── podsmetricsource.go │ │ │ │ │ ├── podsmetricstatus.go │ │ │ │ │ ├── resourcemetricsource.go │ │ │ │ │ └── resourcemetricstatus.go │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── cronjobspec.go │ │ │ │ │ ├── cronjobstatus.go │ │ │ │ │ ├── job.go │ │ │ │ │ ├── jobcondition.go │ │ │ │ │ ├── jobspec.go │ │ │ │ │ ├── jobstatus.go │ │ │ │ │ ├── jobtemplatespec.go │ │ │ │ │ ├── podfailurepolicy.go │ │ │ │ │ ├── podfailurepolicyonexitcodesrequirement.go │ │ │ │ │ ├── podfailurepolicyonpodconditionspattern.go │ │ │ │ │ ├── podfailurepolicyrule.go │ │ │ │ │ ├── successpolicy.go │ │ │ │ │ ├── successpolicyrule.go │ │ │ │ │ └── uncountedterminatedpods.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── cronjobspec.go │ │ │ │ │ ├── cronjobstatus.go │ │ │ │ │ └── jobtemplatespec.go │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── clustertrustbundle.go │ │ │ │ │ └── clustertrustbundlespec.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── lease.go │ │ │ │ │ └── leasespec.go │ │ │ │ ├── v1alpha2 │ │ │ │ │ ├── leasecandidate.go │ │ │ │ │ └── leasecandidatespec.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── lease.go │ │ │ │ │ └── leasespec.go │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── affinity.go │ │ │ │ │ ├── apparmorprofile.go │ │ │ │ │ ├── attachedvolume.go │ │ │ │ │ ├── awselasticblockstorevolumesource.go │ │ │ │ │ ├── azurediskvolumesource.go │ │ │ │ │ ├── azurefilepersistentvolumesource.go │ │ │ │ │ ├── azurefilevolumesource.go │ │ │ │ │ ├── capabilities.go │ │ │ │ │ ├── cephfspersistentvolumesource.go │ │ │ │ │ ├── cephfsvolumesource.go │ │ │ │ │ ├── cinderpersistentvolumesource.go │ │ │ │ │ ├── cindervolumesource.go │ │ │ │ │ ├── clientipconfig.go │ │ │ │ │ ├── clustertrustbundleprojection.go │ │ │ │ │ ├── componentcondition.go │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── configmapenvsource.go │ │ │ │ │ ├── configmapkeyselector.go │ │ │ │ │ ├── configmapnodeconfigsource.go │ │ │ │ │ ├── configmapprojection.go │ │ │ │ │ ├── configmapvolumesource.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── containerimage.go │ │ │ │ │ ├── containerport.go │ │ │ │ │ ├── containerresizepolicy.go │ │ │ │ │ ├── containerstate.go │ │ │ │ │ ├── containerstaterunning.go │ │ │ │ │ ├── containerstateterminated.go │ │ │ │ │ ├── containerstatewaiting.go │ │ │ │ │ ├── containerstatus.go │ │ │ │ │ ├── containeruser.go │ │ │ │ │ ├── csipersistentvolumesource.go │ │ │ │ │ ├── csivolumesource.go │ │ │ │ │ ├── daemonendpoint.go │ │ │ │ │ ├── downwardapiprojection.go │ │ │ │ │ ├── downwardapivolumefile.go │ │ │ │ │ ├── downwardapivolumesource.go │ │ │ │ │ ├── emptydirvolumesource.go │ │ │ │ │ ├── endpointaddress.go │ │ │ │ │ ├── endpointport.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── endpointsubset.go │ │ │ │ │ ├── envfromsource.go │ │ │ │ │ ├── envvar.go │ │ │ │ │ ├── envvarsource.go │ │ │ │ │ ├── ephemeralcontainer.go │ │ │ │ │ ├── ephemeralcontainercommon.go │ │ │ │ │ ├── ephemeralvolumesource.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── eventseries.go │ │ │ │ │ ├── eventsource.go │ │ │ │ │ ├── execaction.go │ │ │ │ │ ├── fcvolumesource.go │ │ │ │ │ ├── flexpersistentvolumesource.go │ │ │ │ │ ├── flexvolumesource.go │ │ │ │ │ ├── flockervolumesource.go │ │ │ │ │ ├── gcepersistentdiskvolumesource.go │ │ │ │ │ ├── gitrepovolumesource.go │ │ │ │ │ ├── glusterfspersistentvolumesource.go │ │ │ │ │ ├── glusterfsvolumesource.go │ │ │ │ │ ├── grpcaction.go │ │ │ │ │ ├── hostalias.go │ │ │ │ │ ├── hostip.go │ │ │ │ │ ├── hostpathvolumesource.go │ │ │ │ │ ├── httpgetaction.go │ │ │ │ │ ├── httpheader.go │ │ │ │ │ ├── imagevolumesource.go │ │ │ │ │ ├── iscsipersistentvolumesource.go │ │ │ │ │ ├── iscsivolumesource.go │ │ │ │ │ ├── keytopath.go │ │ │ │ │ ├── lifecycle.go │ │ │ │ │ ├── lifecyclehandler.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── limitrangeitem.go │ │ │ │ │ ├── limitrangespec.go │ │ │ │ │ ├── linuxcontaineruser.go │ │ │ │ │ ├── loadbalanceringress.go │ │ │ │ │ ├── loadbalancerstatus.go │ │ │ │ │ ├── localobjectreference.go │ │ │ │ │ ├── localvolumesource.go │ │ │ │ │ ├── modifyvolumestatus.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── namespacecondition.go │ │ │ │ │ ├── namespacespec.go │ │ │ │ │ ├── namespacestatus.go │ │ │ │ │ ├── nfsvolumesource.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── nodeaddress.go │ │ │ │ │ ├── nodeaffinity.go │ │ │ │ │ ├── nodecondition.go │ │ │ │ │ ├── nodeconfigsource.go │ │ │ │ │ ├── nodeconfigstatus.go │ │ │ │ │ ├── nodedaemonendpoints.go │ │ │ │ │ ├── nodefeatures.go │ │ │ │ │ ├── noderuntimehandler.go │ │ │ │ │ ├── noderuntimehandlerfeatures.go │ │ │ │ │ ├── nodeselector.go │ │ │ │ │ ├── nodeselectorrequirement.go │ │ │ │ │ ├── nodeselectorterm.go │ │ │ │ │ ├── nodespec.go │ │ │ │ │ ├── nodestatus.go │ │ │ │ │ ├── nodesysteminfo.go │ │ │ │ │ ├── objectfieldselector.go │ │ │ │ │ ├── objectreference.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── persistentvolumeclaimcondition.go │ │ │ │ │ ├── persistentvolumeclaimspec.go │ │ │ │ │ ├── persistentvolumeclaimstatus.go │ │ │ │ │ ├── persistentvolumeclaimtemplate.go │ │ │ │ │ ├── persistentvolumeclaimvolumesource.go │ │ │ │ │ ├── persistentvolumesource.go │ │ │ │ │ ├── persistentvolumespec.go │ │ │ │ │ ├── persistentvolumestatus.go │ │ │ │ │ ├── photonpersistentdiskvolumesource.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── podaffinity.go │ │ │ │ │ ├── podaffinityterm.go │ │ │ │ │ ├── podantiaffinity.go │ │ │ │ │ ├── podcondition.go │ │ │ │ │ ├── poddnsconfig.go │ │ │ │ │ ├── poddnsconfigoption.go │ │ │ │ │ ├── podip.go │ │ │ │ │ ├── podos.go │ │ │ │ │ ├── podreadinessgate.go │ │ │ │ │ ├── podresourceclaim.go │ │ │ │ │ ├── podresourceclaimstatus.go │ │ │ │ │ ├── podschedulinggate.go │ │ │ │ │ ├── podsecuritycontext.go │ │ │ │ │ ├── podspec.go │ │ │ │ │ ├── podstatus.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── podtemplatespec.go │ │ │ │ │ ├── portstatus.go │ │ │ │ │ ├── portworxvolumesource.go │ │ │ │ │ ├── preferredschedulingterm.go │ │ │ │ │ ├── probe.go │ │ │ │ │ ├── probehandler.go │ │ │ │ │ ├── projectedvolumesource.go │ │ │ │ │ ├── quobytevolumesource.go │ │ │ │ │ ├── rbdpersistentvolumesource.go │ │ │ │ │ ├── rbdvolumesource.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── replicationcontrollercondition.go │ │ │ │ │ ├── replicationcontrollerspec.go │ │ │ │ │ ├── replicationcontrollerstatus.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourcefieldselector.go │ │ │ │ │ ├── resourcehealth.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── resourcequotaspec.go │ │ │ │ │ ├── resourcequotastatus.go │ │ │ │ │ ├── resourcerequirements.go │ │ │ │ │ ├── resourcestatus.go │ │ │ │ │ ├── scaleiopersistentvolumesource.go │ │ │ │ │ ├── scaleiovolumesource.go │ │ │ │ │ ├── scopedresourceselectorrequirement.go │ │ │ │ │ ├── scopeselector.go │ │ │ │ │ ├── seccompprofile.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── secretenvsource.go │ │ │ │ │ ├── secretkeyselector.go │ │ │ │ │ ├── secretprojection.go │ │ │ │ │ ├── secretreference.go │ │ │ │ │ ├── secretvolumesource.go │ │ │ │ │ ├── securitycontext.go │ │ │ │ │ ├── selinuxoptions.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── serviceaccount.go │ │ │ │ │ ├── serviceaccounttokenprojection.go │ │ │ │ │ ├── serviceport.go │ │ │ │ │ ├── servicespec.go │ │ │ │ │ ├── servicestatus.go │ │ │ │ │ ├── sessionaffinityconfig.go │ │ │ │ │ ├── sleepaction.go │ │ │ │ │ ├── storageospersistentvolumesource.go │ │ │ │ │ ├── storageosvolumesource.go │ │ │ │ │ ├── sysctl.go │ │ │ │ │ ├── taint.go │ │ │ │ │ ├── tcpsocketaction.go │ │ │ │ │ ├── toleration.go │ │ │ │ │ ├── topologyselectorlabelrequirement.go │ │ │ │ │ ├── topologyselectorterm.go │ │ │ │ │ ├── topologyspreadconstraint.go │ │ │ │ │ ├── typedlocalobjectreference.go │ │ │ │ │ ├── typedobjectreference.go │ │ │ │ │ ├── volume.go │ │ │ │ │ ├── volumedevice.go │ │ │ │ │ ├── volumemount.go │ │ │ │ │ ├── volumemountstatus.go │ │ │ │ │ ├── volumenodeaffinity.go │ │ │ │ │ ├── volumeprojection.go │ │ │ │ │ ├── volumeresourcerequirements.go │ │ │ │ │ ├── volumesource.go │ │ │ │ │ ├── vspherevirtualdiskvolumesource.go │ │ │ │ │ ├── weightedpodaffinityterm.go │ │ │ │ │ └── windowssecuritycontextoptions.go │ │ │ ├── discovery │ │ │ │ ├── v1 │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── endpointconditions.go │ │ │ │ │ ├── endpointhints.go │ │ │ │ │ ├── endpointport.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── forzone.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── endpointconditions.go │ │ │ │ │ ├── endpointhints.go │ │ │ │ │ ├── endpointport.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── forzone.go │ │ │ ├── events │ │ │ │ ├── v1 │ │ │ │ │ ├── event.go │ │ │ │ │ └── eventseries.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── event.go │ │ │ │ │ └── eventseries.go │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonsetcondition.go │ │ │ │ │ ├── daemonsetspec.go │ │ │ │ │ ├── daemonsetstatus.go │ │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ │ ├── ingressportstatus.go │ │ │ │ │ ├── ingressrule.go │ │ │ │ │ ├── ingressrulevalue.go │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ ├── ingresstls.go │ │ │ │ │ ├── ipblock.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ │ ├── networkpolicypeer.go │ │ │ │ │ ├── networkpolicyport.go │ │ │ │ │ ├── networkpolicyspec.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicasetcondition.go │ │ │ │ │ ├── replicasetspec.go │ │ │ │ │ ├── replicasetstatus.go │ │ │ │ │ ├── rollbackconfig.go │ │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ └── scale.go │ │ │ ├── flowcontrol │ │ │ │ ├── v1 │ │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── flowschemacondition.go │ │ │ │ │ ├── flowschemaspec.go │ │ │ │ │ ├── flowschemastatus.go │ │ │ │ │ ├── groupsubject.go │ │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ │ ├── limitresponse.go │ │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ │ ├── queuingconfiguration.go │ │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ │ ├── subject.go │ │ │ │ │ └── usersubject.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── flowschemacondition.go │ │ │ │ │ ├── flowschemaspec.go │ │ │ │ │ ├── flowschemastatus.go │ │ │ │ │ ├── groupsubject.go │ │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ │ ├── limitresponse.go │ │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ │ ├── queuingconfiguration.go │ │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ │ ├── subject.go │ │ │ │ │ └── usersubject.go │ │ │ │ ├── v1beta2 │ │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── flowschemacondition.go │ │ │ │ │ ├── flowschemaspec.go │ │ │ │ │ ├── flowschemastatus.go │ │ │ │ │ ├── groupsubject.go │ │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ │ ├── limitresponse.go │ │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ │ ├── queuingconfiguration.go │ │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ │ ├── subject.go │ │ │ │ │ └── usersubject.go │ │ │ │ └── v1beta3 │ │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── flowschemacondition.go │ │ │ │ │ ├── flowschemaspec.go │ │ │ │ │ ├── flowschemastatus.go │ │ │ │ │ ├── groupsubject.go │ │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ │ ├── limitresponse.go │ │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ │ ├── queuingconfiguration.go │ │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ │ ├── subject.go │ │ │ │ │ └── usersubject.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── meta │ │ │ │ └── v1 │ │ │ │ │ ├── condition.go │ │ │ │ │ ├── deleteoptions.go │ │ │ │ │ ├── labelselector.go │ │ │ │ │ ├── labelselectorrequirement.go │ │ │ │ │ ├── managedfieldsentry.go │ │ │ │ │ ├── objectmeta.go │ │ │ │ │ ├── ownerreference.go │ │ │ │ │ ├── preconditions.go │ │ │ │ │ ├── typemeta.go │ │ │ │ │ └── unstructured.go │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ │ ├── ingressclassspec.go │ │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ │ ├── ingressportstatus.go │ │ │ │ │ ├── ingressrule.go │ │ │ │ │ ├── ingressrulevalue.go │ │ │ │ │ ├── ingressservicebackend.go │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ ├── ingresstls.go │ │ │ │ │ ├── ipblock.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ │ ├── networkpolicypeer.go │ │ │ │ │ ├── networkpolicyport.go │ │ │ │ │ ├── networkpolicyspec.go │ │ │ │ │ └── servicebackendport.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── ipaddress.go │ │ │ │ │ ├── ipaddressspec.go │ │ │ │ │ ├── parentreference.go │ │ │ │ │ ├── servicecidr.go │ │ │ │ │ ├── servicecidrspec.go │ │ │ │ │ └── servicecidrstatus.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ │ ├── ingressclassspec.go │ │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ │ ├── ingressportstatus.go │ │ │ │ │ ├── ingressrule.go │ │ │ │ │ ├── ingressrulevalue.go │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ ├── ingresstls.go │ │ │ │ │ ├── ipaddress.go │ │ │ │ │ ├── ipaddressspec.go │ │ │ │ │ ├── parentreference.go │ │ │ │ │ ├── servicecidr.go │ │ │ │ │ ├── servicecidrspec.go │ │ │ │ │ └── servicecidrstatus.go │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ ├── overhead.go │ │ │ │ │ ├── runtimeclass.go │ │ │ │ │ └── scheduling.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── overhead.go │ │ │ │ │ ├── runtimeclass.go │ │ │ │ │ ├── runtimeclassspec.go │ │ │ │ │ └── scheduling.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── overhead.go │ │ │ │ │ ├── runtimeclass.go │ │ │ │ │ └── scheduling.go │ │ │ ├── policy │ │ │ │ ├── v1 │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ │ └── poddisruptionbudgetstatus.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ │ └── poddisruptionbudgetstatus.go │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── aggregationrule.go │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── policyrule.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ ├── roleref.go │ │ │ │ │ └── subject.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── aggregationrule.go │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── policyrule.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ ├── roleref.go │ │ │ │ │ └── subject.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── aggregationrule.go │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── policyrule.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ ├── roleref.go │ │ │ │ │ └── subject.go │ │ │ ├── resource │ │ │ │ ├── v1alpha3 │ │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ │ ├── allocationresult.go │ │ │ │ │ ├── basicdevice.go │ │ │ │ │ ├── celdeviceselector.go │ │ │ │ │ ├── device.go │ │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ │ ├── deviceallocationresult.go │ │ │ │ │ ├── deviceattribute.go │ │ │ │ │ ├── deviceclaim.go │ │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ │ ├── deviceclass.go │ │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ │ ├── deviceclassspec.go │ │ │ │ │ ├── deviceconfiguration.go │ │ │ │ │ ├── deviceconstraint.go │ │ │ │ │ ├── devicerequest.go │ │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ │ ├── deviceselector.go │ │ │ │ │ ├── networkdevicedata.go │ │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ │ ├── resourceclaimspec.go │ │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ │ ├── resourcepool.go │ │ │ │ │ ├── resourceslice.go │ │ │ │ │ └── resourceslicespec.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ │ ├── allocationresult.go │ │ │ │ │ ├── basicdevice.go │ │ │ │ │ ├── celdeviceselector.go │ │ │ │ │ ├── device.go │ │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ │ ├── deviceallocationresult.go │ │ │ │ │ ├── deviceattribute.go │ │ │ │ │ ├── devicecapacity.go │ │ │ │ │ ├── deviceclaim.go │ │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ │ ├── deviceclass.go │ │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ │ ├── deviceclassspec.go │ │ │ │ │ ├── deviceconfiguration.go │ │ │ │ │ ├── deviceconstraint.go │ │ │ │ │ ├── devicerequest.go │ │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ │ ├── deviceselector.go │ │ │ │ │ ├── networkdevicedata.go │ │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ │ ├── resourceclaimspec.go │ │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ │ ├── resourcepool.go │ │ │ │ │ ├── resourceslice.go │ │ │ │ │ └── resourceslicespec.go │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ └── priorityclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── priorityclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ └── priorityclass.go │ │ │ ├── storage │ │ │ │ ├── v1 │ │ │ │ │ ├── csidriver.go │ │ │ │ │ ├── csidriverspec.go │ │ │ │ │ ├── csinode.go │ │ │ │ │ ├── csinodedriver.go │ │ │ │ │ ├── csinodespec.go │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── storageclass.go │ │ │ │ │ ├── tokenrequest.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ │ ├── volumeerror.go │ │ │ │ │ └── volumenoderesources.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ │ ├── volumeattributesclass.go │ │ │ │ │ └── volumeerror.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── csidriver.go │ │ │ │ │ ├── csidriverspec.go │ │ │ │ │ ├── csinode.go │ │ │ │ │ ├── csinodedriver.go │ │ │ │ │ ├── csinodespec.go │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── storageclass.go │ │ │ │ │ ├── tokenrequest.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ │ ├── volumeattributesclass.go │ │ │ │ │ ├── volumeerror.go │ │ │ │ │ └── volumenoderesources.go │ │ │ └── storagemigration │ │ │ │ └── v1alpha1 │ │ │ │ ├── groupversionresource.go │ │ │ │ ├── migrationcondition.go │ │ │ │ ├── storageversionmigration.go │ │ │ │ ├── storageversionmigrationspec.go │ │ │ │ └── storageversionmigrationstatus.go │ │ ├── discovery │ │ │ ├── aggregated_discovery.go │ │ │ ├── discovery_client.go │ │ │ ├── doc.go │ │ │ └── helper.go │ │ ├── features │ │ │ ├── envvar.go │ │ │ ├── features.go │ │ │ └── known_features.go │ │ ├── gentype │ │ │ ├── fake.go │ │ │ └── type.go │ │ ├── kubernetes │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── import.go │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed │ │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── apiserverinternal │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── storageversion.go │ │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── selfsubjectreview.go │ │ │ │ │ └── tokenreview.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── selfsubjectreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── selfsubjectreview.go │ │ │ │ │ └── tokenreview.go │ │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2beta1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta2 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── job.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── clustertrustbundle.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ ├── v1alpha2 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── leasecandidate.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── core_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── namespace_expansion.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_expansion.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── pod_expansion.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ └── serviceaccount.go │ │ │ │ ├── discovery │ │ │ │ ├── v1 │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── events │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ └── replicaset.go │ │ │ │ ├── flowcontrol │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── v1beta2 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── v1beta3 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ └── networkpolicy.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ipaddress.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ └── servicecidr.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ipaddress.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ └── servicecidr.go │ │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── policy │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── policy_client.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── policy_client.go │ │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── resource │ │ │ │ ├── v1alpha3 │ │ │ │ │ ├── deviceclass.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── resource_client.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ └── resourceslice.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── deviceclass.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── resource_client.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ └── resourceslice.go │ │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ ├── storage │ │ │ │ ├── v1 │ │ │ │ │ ├── csidriver.go │ │ │ │ │ ├── csinode.go │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── storage_client.go │ │ │ │ │ ├── storageclass.go │ │ │ │ │ └── volumeattachment.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── storage_client.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ └── volumeattributesclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── csidriver.go │ │ │ │ │ ├── csinode.go │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── storage_client.go │ │ │ │ │ ├── storageclass.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ └── volumeattributesclass.go │ │ │ │ └── storagemigration │ │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storagemigration_client.go │ │ │ │ └── storageversionmigration.go │ │ ├── openapi │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ ├── groupversion.go │ │ │ └── typeconverter.go │ │ ├── pkg │ │ │ ├── apis │ │ │ │ └── clientauthentication │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── version │ │ │ │ ├── base.go │ │ │ │ ├── doc.go │ │ │ │ └── version.go │ │ ├── plugin │ │ │ └── pkg │ │ │ │ └── client │ │ │ │ └── auth │ │ │ │ ├── exec │ │ │ │ ├── exec.go │ │ │ │ └── metrics.go │ │ │ │ └── gcp │ │ │ │ └── gcp_stub.go │ │ ├── rest │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── exec.go │ │ │ ├── plugin.go │ │ │ ├── request.go │ │ │ ├── transport.go │ │ │ ├── url_utils.go │ │ │ ├── urlbackoff.go │ │ │ ├── warnings.go │ │ │ ├── watch │ │ │ │ ├── decoder.go │ │ │ │ └── encoder.go │ │ │ ├── with_retry.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── testing │ │ │ ├── actions.go │ │ │ ├── fake.go │ │ │ ├── fixture.go │ │ │ └── interface.go │ │ ├── third_party │ │ │ └── forked │ │ │ │ └── golang │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ └── template │ │ │ │ ├── exec.go │ │ │ │ └── funcs.go │ │ ├── tools │ │ │ ├── auth │ │ │ │ ├── OWNERS │ │ │ │ └── clientauth.go │ │ │ ├── clientcmd │ │ │ │ ├── api │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── latest │ │ │ │ │ │ └── latest.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── defaults.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── auth_loaders.go │ │ │ │ ├── client_config.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── flag.go │ │ │ │ ├── helpers.go │ │ │ │ ├── loader.go │ │ │ │ ├── merge.go │ │ │ │ ├── merged_client_builder.go │ │ │ │ ├── overrides.go │ │ │ │ └── validation.go │ │ │ ├── metrics │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ │ ├── portforward │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── fallback_dialer.go │ │ │ │ ├── portforward.go │ │ │ │ ├── tunneling_connection.go │ │ │ │ └── tunneling_dialer.go │ │ │ └── reference │ │ │ │ └── ref.go │ │ ├── transport │ │ │ ├── OWNERS │ │ │ ├── cache.go │ │ │ ├── cache_go118.go │ │ │ ├── cert_rotation.go │ │ │ ├── config.go │ │ │ ├── round_trippers.go │ │ │ ├── spdy │ │ │ │ └── spdy.go │ │ │ ├── token_source.go │ │ │ ├── transport.go │ │ │ └── websocket │ │ │ │ └── roundtripper.go │ │ └── util │ │ │ ├── apply │ │ │ └── apply.go │ │ │ ├── cert │ │ │ ├── OWNERS │ │ │ ├── cert.go │ │ │ ├── csr.go │ │ │ ├── io.go │ │ │ ├── pem.go │ │ │ └── server_inspection.go │ │ │ ├── connrotation │ │ │ └── connrotation.go │ │ │ ├── consistencydetector │ │ │ ├── data_consistency_detector.go │ │ │ ├── list_data_consistency_detector.go │ │ │ └── watch_list_data_consistency_detector.go │ │ │ ├── flowcontrol │ │ │ ├── backoff.go │ │ │ └── throttle.go │ │ │ ├── homedir │ │ │ └── homedir.go │ │ │ ├── jsonpath │ │ │ ├── doc.go │ │ │ ├── jsonpath.go │ │ │ ├── node.go │ │ │ └── parser.go │ │ │ ├── keyutil │ │ │ ├── OWNERS │ │ │ └── key.go │ │ │ ├── watchlist │ │ │ └── watch_list.go │ │ │ └── workqueue │ │ │ ├── default_rate_limiters.go │ │ │ ├── delaying_queue.go │ │ │ ├── doc.go │ │ │ ├── metrics.go │ │ │ ├── parallelizer.go │ │ │ ├── queue.go │ │ │ └── rate_limiting_queue.go │ ├── klog │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── RELEASE.md │ │ │ ├── SECURITY.md │ │ │ ├── SECURITY_CONTACTS │ │ │ ├── code-of-conduct.md │ │ │ ├── contextual.go │ │ │ ├── contextual_slog.go │ │ │ ├── exit.go │ │ │ ├── format.go │ │ │ ├── imports.go │ │ │ ├── internal │ │ │ ├── buffer │ │ │ │ └── buffer.go │ │ │ ├── clock │ │ │ │ ├── README.md │ │ │ │ └── clock.go │ │ │ ├── dbg │ │ │ │ └── dbg.go │ │ │ ├── serialize │ │ │ │ ├── keyvalues.go │ │ │ │ ├── keyvalues_no_slog.go │ │ │ │ └── keyvalues_slog.go │ │ │ ├── severity │ │ │ │ └── severity.go │ │ │ └── sloghandler │ │ │ │ └── sloghandler_slog.go │ │ │ ├── k8s_references.go │ │ │ ├── k8s_references_slog.go │ │ │ ├── klog.go │ │ │ ├── klog_file.go │ │ │ ├── klog_file_others.go │ │ │ ├── klog_file_windows.go │ │ │ ├── klogr.go │ │ │ ├── klogr_slog.go │ │ │ └── safeptr.go │ ├── kube-openapi │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── cached │ │ │ └── cache.go │ │ │ ├── common │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ └── interfaces.go │ │ │ ├── handler3 │ │ │ └── handler.go │ │ │ ├── internal │ │ │ ├── flags.go │ │ │ ├── serialization.go │ │ │ └── third_party │ │ │ │ └── go-json-experiment │ │ │ │ └── json │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── arshal.go │ │ │ │ ├── arshal_any.go │ │ │ │ ├── arshal_default.go │ │ │ │ ├── arshal_funcs.go │ │ │ │ ├── arshal_inlined.go │ │ │ │ ├── arshal_methods.go │ │ │ │ ├── arshal_time.go │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ ├── errors.go │ │ │ │ ├── fields.go │ │ │ │ ├── fold.go │ │ │ │ ├── intern.go │ │ │ │ ├── pools.go │ │ │ │ ├── state.go │ │ │ │ ├── token.go │ │ │ │ └── value.go │ │ │ ├── schemaconv │ │ │ ├── openapi.go │ │ │ ├── proto_models.go │ │ │ └── smd.go │ │ │ ├── spec3 │ │ │ ├── component.go │ │ │ ├── encoding.go │ │ │ ├── example.go │ │ │ ├── external_documentation.go │ │ │ ├── fuzz.go │ │ │ ├── header.go │ │ │ ├── media_type.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path.go │ │ │ ├── request_body.go │ │ │ ├── response.go │ │ │ ├── security_scheme.go │ │ │ ├── server.go │ │ │ └── spec.go │ │ │ ├── util │ │ │ └── proto │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── document.go │ │ │ │ ├── document_v3.go │ │ │ │ └── openapi.go │ │ │ └── validation │ │ │ └── spec │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── contact_info.go │ │ │ ├── external_docs.go │ │ │ ├── gnostic.go │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── security_scheme.go │ │ │ ├── swagger.go │ │ │ └── tag.go │ └── utils │ │ ├── LICENSE │ │ ├── clock │ │ ├── README.md │ │ ├── clock.go │ │ └── testing │ │ │ ├── fake_clock.go │ │ │ └── simple_interval_clock.go │ │ ├── internal │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── net │ │ │ ├── ip.go │ │ │ └── parse.go │ │ ├── net │ │ ├── ipfamily.go │ │ ├── ipnet.go │ │ ├── multi_listen.go │ │ ├── net.go │ │ ├── parse.go │ │ └── port.go │ │ └── ptr │ │ ├── OWNERS │ │ ├── README.md │ │ └── ptr.go ├── modules.txt └── sigs.k8s.io │ ├── json │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── OWNERS │ ├── README.md │ ├── SECURITY.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── doc.go │ ├── internal │ │ └── golang │ │ │ └── encoding │ │ │ └── json │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fold.go │ │ │ ├── fuzz.go │ │ │ ├── indent.go │ │ │ ├── kubernetes_patch.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ ├── tables.go │ │ │ └── tags.go │ └── json.go │ ├── structured-merge-diff │ └── v4 │ │ ├── LICENSE │ │ ├── fieldpath │ │ ├── doc.go │ │ ├── element.go │ │ ├── fromvalue.go │ │ ├── managers.go │ │ ├── path.go │ │ ├── pathelementmap.go │ │ ├── serialize-pe.go │ │ ├── serialize.go │ │ └── set.go │ │ ├── merge │ │ ├── conflict.go │ │ └── update.go │ │ ├── schema │ │ ├── doc.go │ │ ├── elements.go │ │ ├── equals.go │ │ └── schemaschema.go │ │ ├── typed │ │ ├── compare.go │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── merge.go │ │ ├── parser.go │ │ ├── reconcile_schema.go │ │ ├── remove.go │ │ ├── tofieldset.go │ │ ├── typed.go │ │ └── validate.go │ │ └── value │ │ ├── allocator.go │ │ ├── doc.go │ │ ├── fields.go │ │ ├── jsontagutil.go │ │ ├── list.go │ │ ├── listreflect.go │ │ ├── listunstructured.go │ │ ├── map.go │ │ ├── mapreflect.go │ │ ├── mapunstructured.go │ │ ├── reflectcache.go │ │ ├── scalar.go │ │ ├── structreflect.go │ │ ├── value.go │ │ ├── valuereflect.go │ │ └── valueunstructured.go │ └── yaml │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── fields.go │ ├── goyaml.v2 │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── OWNERS │ ├── 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.go │ └── yaml_go110.go └── webhook_test.go /.github/workflows/lint-unitest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/.github/workflows/lint-unitest.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-on-tagging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/.github/workflows/publish-on-tagging.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/README.md -------------------------------------------------------------------------------- /charts/core/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/.helmignore -------------------------------------------------------------------------------- /charts/core/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/Chart.yaml -------------------------------------------------------------------------------- /charts/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/README.md -------------------------------------------------------------------------------- /charts/core/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/core/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/core/templates/bootstrap-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/bootstrap-secret.yaml -------------------------------------------------------------------------------- /charts/core/templates/cert-manager-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/cert-manager-secret.yaml -------------------------------------------------------------------------------- /charts/core/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/core/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/core/templates/controller-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/controller-deployment.yaml -------------------------------------------------------------------------------- /charts/core/templates/controller-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/controller-ingress.yaml -------------------------------------------------------------------------------- /charts/core/templates/controller-lease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/controller-lease.yaml -------------------------------------------------------------------------------- /charts/core/templates/controller-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/controller-route.yaml -------------------------------------------------------------------------------- /charts/core/templates/controller-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/controller-secret.yaml -------------------------------------------------------------------------------- /charts/core/templates/controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/controller-service.yaml -------------------------------------------------------------------------------- /charts/core/templates/crd-role-least.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/crd-role-least.yaml -------------------------------------------------------------------------------- /charts/core/templates/crd-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/crd-role.yaml -------------------------------------------------------------------------------- /charts/core/templates/crd-webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/crd-webhook-service.yaml -------------------------------------------------------------------------------- /charts/core/templates/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/crd.yaml -------------------------------------------------------------------------------- /charts/core/templates/csp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/csp-clusterrole.yaml -------------------------------------------------------------------------------- /charts/core/templates/csp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/csp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/core/templates/csp-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/csp-crd.yaml -------------------------------------------------------------------------------- /charts/core/templates/csp-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/csp-deployment.yaml -------------------------------------------------------------------------------- /charts/core/templates/csp-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/csp-role.yaml -------------------------------------------------------------------------------- /charts/core/templates/csp-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/csp-rolebinding.yaml -------------------------------------------------------------------------------- /charts/core/templates/csp-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/csp-serviceaccount.yaml -------------------------------------------------------------------------------- /charts/core/templates/enforcer-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/enforcer-daemonset.yaml -------------------------------------------------------------------------------- /charts/core/templates/init-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/init-configmap.yaml -------------------------------------------------------------------------------- /charts/core/templates/init-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/init-secret.yaml -------------------------------------------------------------------------------- /charts/core/templates/manager-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/manager-deployment.yaml -------------------------------------------------------------------------------- /charts/core/templates/manager-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/manager-ingress.yaml -------------------------------------------------------------------------------- /charts/core/templates/manager-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/manager-route.yaml -------------------------------------------------------------------------------- /charts/core/templates/manager-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/manager-secret.yaml -------------------------------------------------------------------------------- /charts/core/templates/manager-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/manager-service.yaml -------------------------------------------------------------------------------- /charts/core/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/psp.yaml -------------------------------------------------------------------------------- /charts/core/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/core/templates/registry-adapter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/registry-adapter.yaml -------------------------------------------------------------------------------- /charts/core/templates/role-least.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/role-least.yaml -------------------------------------------------------------------------------- /charts/core/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/role.yaml -------------------------------------------------------------------------------- /charts/core/templates/rolebinding-least.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/rolebinding-least.yaml -------------------------------------------------------------------------------- /charts/core/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/core/templates/scanner-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/scanner-deployment.yaml -------------------------------------------------------------------------------- /charts/core/templates/serviceaccount-least.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/serviceaccount-least.yaml -------------------------------------------------------------------------------- /charts/core/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/core/templates/updater-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/updater-cronjob.yaml -------------------------------------------------------------------------------- /charts/core/templates/upgrader-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/upgrader-cronjob.yaml -------------------------------------------------------------------------------- /charts/core/templates/upgrader-lease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/templates/upgrader-lease.yaml -------------------------------------------------------------------------------- /charts/core/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/values.schema.json -------------------------------------------------------------------------------- /charts/core/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/core/values.yaml -------------------------------------------------------------------------------- /charts/crd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/crd/Chart.yaml -------------------------------------------------------------------------------- /charts/crd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/crd/README.md -------------------------------------------------------------------------------- /charts/crd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/crd/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/crd/templates/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/crd/templates/crd.yaml -------------------------------------------------------------------------------- /charts/crd/templates/csp-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/crd/templates/csp-crd.yaml -------------------------------------------------------------------------------- /charts/crd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/crd/values.yaml -------------------------------------------------------------------------------- /charts/monitor/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/monitor/Chart.yaml -------------------------------------------------------------------------------- /charts/monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/monitor/README.md -------------------------------------------------------------------------------- /charts/monitor/dashboards/nv_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/monitor/dashboards/nv_dashboard.json -------------------------------------------------------------------------------- /charts/monitor/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/monitor/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/monitor/templates/dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/monitor/templates/dashboard.yaml -------------------------------------------------------------------------------- /charts/monitor/templates/exporter-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/monitor/templates/exporter-deployment.yaml -------------------------------------------------------------------------------- /charts/monitor/templates/exporter-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/monitor/templates/exporter-service.yaml -------------------------------------------------------------------------------- /charts/monitor/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/monitor/templates/secret.yaml -------------------------------------------------------------------------------- /charts/monitor/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/charts/monitor/values.yaml -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/ct.yaml -------------------------------------------------------------------------------- /docs/Automatic_runtime_Engine_Detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/docs/Automatic_runtime_Engine_Detection.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/bump_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/scripts/bump_version.sh -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/crd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/crd_test.go -------------------------------------------------------------------------------- /test/daemonset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/daemonset_test.go -------------------------------------------------------------------------------- /test/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/deployment_test.go -------------------------------------------------------------------------------- /test/exporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/exporter_test.go -------------------------------------------------------------------------------- /test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/go.mod -------------------------------------------------------------------------------- /test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/go.sum -------------------------------------------------------------------------------- /test/helm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/helm_test.go -------------------------------------------------------------------------------- /test/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/ingress_test.go -------------------------------------------------------------------------------- /test/pvc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/pvc_test.go -------------------------------------------------------------------------------- /test/registry_adapter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/registry_adapter_test.go -------------------------------------------------------------------------------- /test/role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/role_test.go -------------------------------------------------------------------------------- /test/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/route_test.go -------------------------------------------------------------------------------- /test/sa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/sa_test.go -------------------------------------------------------------------------------- /test/scanner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/scanner_test.go -------------------------------------------------------------------------------- /test/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/service_test.go -------------------------------------------------------------------------------- /test/updater_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/updater_test.go -------------------------------------------------------------------------------- /test/vendor/filippo.io/edwards25519/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/filippo.io/edwards25519/LICENSE -------------------------------------------------------------------------------- /test/vendor/filippo.io/edwards25519/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/filippo.io/edwards25519/README.md -------------------------------------------------------------------------------- /test/vendor/filippo.io/edwards25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/filippo.io/edwards25519/doc.go -------------------------------------------------------------------------------- /test/vendor/filippo.io/edwards25519/extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/filippo.io/edwards25519/extra.go -------------------------------------------------------------------------------- /test/vendor/filippo.io/edwards25519/field/fe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/filippo.io/edwards25519/field/fe.go -------------------------------------------------------------------------------- /test/vendor/filippo.io/edwards25519/scalar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/filippo.io/edwards25519/scalar.go -------------------------------------------------------------------------------- /test/vendor/filippo.io/edwards25519/scalarmult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/filippo.io/edwards25519/scalarmult.go -------------------------------------------------------------------------------- /test/vendor/filippo.io/edwards25519/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/filippo.io/edwards25519/tables.go -------------------------------------------------------------------------------- /test/vendor/github.com/BurntSushi/toml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/BurntSushi/toml/.gitignore -------------------------------------------------------------------------------- /test/vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /test/vendor/github.com/BurntSushi/toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/BurntSushi/toml/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/BurntSushi/toml/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/BurntSushi/toml/decode.go -------------------------------------------------------------------------------- /test/vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/BurntSushi/toml/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/BurntSushi/toml/encode.go -------------------------------------------------------------------------------- /test/vendor/github.com/BurntSushi/toml/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/BurntSushi/toml/error.go -------------------------------------------------------------------------------- /test/vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /test/vendor/github.com/BurntSushi/toml/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/BurntSushi/toml/meta.go -------------------------------------------------------------------------------- /test/vendor/github.com/BurntSushi/toml/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/BurntSushi/toml/parse.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/.gitignore -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/.travis.yml -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/CHANGELOG.md -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/Makefile -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/auth/auth.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/document.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/errors.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/io/byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/io/byte.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/io/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/io/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/io/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/io/reader.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/modman.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/modman.toml -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/ptr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/ptr/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/rand/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/rand/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/rand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/rand/rand.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/rand/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/rand/uuid.go -------------------------------------------------------------------------------- /test/vendor/github.com/aws/smithy-go/time/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/aws/smithy-go/time/time.go -------------------------------------------------------------------------------- /test/vendor/github.com/boombuler/barcode/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/boombuler/barcode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/boombuler/barcode/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /test/vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/fxamacker/cbor/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/fxamacker/cbor/v2/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/fxamacker/cbor/v2/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/fxamacker/cbor/v2/cache.go -------------------------------------------------------------------------------- /test/vendor/github.com/fxamacker/cbor/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/fxamacker/cbor/v2/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/fxamacker/cbor/v2/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/fxamacker/cbor/v2/tag.go -------------------------------------------------------------------------------- /test/vendor/github.com/fxamacker/cbor/v2/valid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/fxamacker/cbor/v2/valid.go -------------------------------------------------------------------------------- /test/vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /test/vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/ghodss/yaml/.travis.yml -------------------------------------------------------------------------------- /test/vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /test/vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-errors/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-errors/errors/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/go-errors/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-errors/errors/error.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-logr/logr/CHANGELOG.md -------------------------------------------------------------------------------- /test/vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /test/vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-logr/logr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-logr/logr/slogsink.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/convert.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/file.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/loading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/loading.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/split.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-openapi/swag/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-openapi/swag/yaml.go -------------------------------------------------------------------------------- /test/vendor/github.com/go-sql-driver/mysql/dsn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/go-sql-driver/mysql/dsn.go -------------------------------------------------------------------------------- /test/vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /test/vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /test/vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /test/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /test/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/bunt/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/bunt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/bunt/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/bunt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/bunt/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/bunt/bunt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/bunt/bunt.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/bunt/colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/bunt/colors.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/bunt/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/bunt/error.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/bunt/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/bunt/model.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/bunt/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/bunt/parse.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/bunt/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/bunt/print.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/bunt/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/bunt/render.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/neat/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/neat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/neat/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/neat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/neat/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/neat/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/neat/box.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/neat/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/neat/errors.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/neat/neat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/neat/neat.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/neat/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/neat/output.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/neat/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/neat/table.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/term/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/term/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/term/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/term/term.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/text/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/text/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/text/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/text/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/text/text.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/wrap/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/wrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/wrap/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/wrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/wrap/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/wrap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/wrap/error.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/wrap/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/wrap/wrap.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/ytbx/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/ytbx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/ytbx/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/ytbx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/ytbx/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/ytbx/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/ytbx/common.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/ytbx/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/ytbx/delete.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/ytbx/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/ytbx/errors.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/ytbx/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/ytbx/input.go -------------------------------------------------------------------------------- /test/vendor/github.com/gonvenience/ytbx/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gonvenience/ytbx/path.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/google/go-cmp/cmp/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/go-cmp/cmp/path.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/gofuzz/.travis.yml -------------------------------------------------------------------------------- /test/vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/CHANGELOG.md -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/version6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/version6.go -------------------------------------------------------------------------------- /test/vendor/github.com/google/uuid/version7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/google/uuid/version7.go -------------------------------------------------------------------------------- /test/vendor/github.com/gorilla/websocket/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gorilla/websocket/AUTHORS -------------------------------------------------------------------------------- /test/vendor/github.com/gorilla/websocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gorilla/websocket/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/gorilla/websocket/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gorilla/websocket/conn.go -------------------------------------------------------------------------------- /test/vendor/github.com/gorilla/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gorilla/websocket/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/gorilla/websocket/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gorilla/websocket/join.go -------------------------------------------------------------------------------- /test/vendor/github.com/gorilla/websocket/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gorilla/websocket/json.go -------------------------------------------------------------------------------- /test/vendor/github.com/gorilla/websocket/mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gorilla/websocket/mask.go -------------------------------------------------------------------------------- /test/vendor/github.com/gorilla/websocket/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gorilla/websocket/proxy.go -------------------------------------------------------------------------------- /test/vendor/github.com/gorilla/websocket/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/gorilla/websocket/util.go -------------------------------------------------------------------------------- /test/vendor/github.com/hashicorp/errwrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/hashicorp/errwrap/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/homeport/dyff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/homeport/dyff/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgpassfile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgpassfile/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgpassfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgpassfile/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgpassfile/pgpass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgpassfile/pgpass.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/.gitignore -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/CHANGELOG.md -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/Rakefile -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/batch.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/conn.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/copy_from.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/copy_from.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/named_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/named_args.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/pgconn/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/pgconn/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/pgtype/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/pgtype/box.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/pgtype/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/pgtype/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/pgtype/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/pgtype/int.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/pgtype/tid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/pgtype/tid.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/pgtype/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/pgtype/xml.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/pgxpool/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/pgxpool/tx.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/rows.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/stdlib/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/stdlib/sql.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/tracer.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/tx.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/pgx/v5/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/pgx/v5/values.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/puddle/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/puddle/v2/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/puddle/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/puddle/v2/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/puddle/v2/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/puddle/v2/context.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/puddle/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/puddle/v2/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/puddle/v2/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/puddle/v2/log.go -------------------------------------------------------------------------------- /test/vendor/github.com/jackc/puddle/v2/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/jackc/puddle/v2/pool.go -------------------------------------------------------------------------------- /test/vendor/github.com/josharian/intern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/josharian/intern/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/josharian/intern/intern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/josharian/intern/intern.go -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/json-iterator/go/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/json-iterator/go/build.sh -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/json-iterator/go/config.go -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/json-iterator/go/stream.go -------------------------------------------------------------------------------- /test/vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /test/vendor/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/mattn/go-ciede2000/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mattn/go-ciede2000/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/mattn/go-isatty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mattn/go-isatty/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/mattn/go-isatty/go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mattn/go-isatty/go.test.sh -------------------------------------------------------------------------------- /test/vendor/github.com/mattn/go-zglob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mattn/go-zglob/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/mattn/go-zglob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mattn/go-zglob/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/mattn/go-zglob/zglob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mattn/go-zglob/zglob.go -------------------------------------------------------------------------------- /test/vendor/github.com/mitchellh/go-ps/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/mitchellh/go-ps/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.2.1 5 | -------------------------------------------------------------------------------- /test/vendor/github.com/mitchellh/go-ps/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mitchellh/go-ps/LICENSE.md -------------------------------------------------------------------------------- /test/vendor/github.com/mitchellh/go-ps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mitchellh/go-ps/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/mitchellh/go-ps/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mitchellh/go-ps/process.go -------------------------------------------------------------------------------- /test/vendor/github.com/moby/spdystream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/moby/spdystream/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/moby/spdystream/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/moby/spdystream/NOTICE -------------------------------------------------------------------------------- /test/vendor/github.com/moby/spdystream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/moby/spdystream/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/moby/spdystream/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/moby/spdystream/stream.go -------------------------------------------------------------------------------- /test/vendor/github.com/moby/spdystream/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/moby/spdystream/utils.go -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vendor/github.com/munnerz/goautoneg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/munnerz/goautoneg/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/munnerz/goautoneg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/munnerz/goautoneg/Makefile -------------------------------------------------------------------------------- /test/vendor/github.com/mxk/go-flowrate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/mxk/go-flowrate/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /test/vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /test/vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /test/vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /test/vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /test/vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /test/vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /test/vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/pquerna/otp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pquerna/otp/.travis.yml -------------------------------------------------------------------------------- /test/vendor/github.com/pquerna/otp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pquerna/otp/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/pquerna/otp/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pquerna/otp/NOTICE -------------------------------------------------------------------------------- /test/vendor/github.com/pquerna/otp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pquerna/otp/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/pquerna/otp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pquerna/otp/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/pquerna/otp/hotp/hotp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pquerna/otp/hotp/hotp.go -------------------------------------------------------------------------------- /test/vendor/github.com/pquerna/otp/otp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pquerna/otp/otp.go -------------------------------------------------------------------------------- /test/vendor/github.com/pquerna/otp/totp/totp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/pquerna/otp/totp/totp.go -------------------------------------------------------------------------------- /test/vendor/github.com/sergi/go-diff/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/sergi/go-diff/AUTHORS -------------------------------------------------------------------------------- /test/vendor/github.com/sergi/go-diff/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/sergi/go-diff/CONTRIBUTORS -------------------------------------------------------------------------------- /test/vendor/github.com/sergi/go-diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/sergi/go-diff/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/int32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/int32_slice.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/int64_slice.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /test/vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /test/vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/.gitignore -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/Makefile -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/app.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/args.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/category.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/cli.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/command.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/context.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/docs.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/errors.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/fish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/fish.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/flag.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/flag_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/flag_bool.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/flag_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/flag_ext.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/flag_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/flag_int.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/flag_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/flag_path.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/flag_uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/flag_uint.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/funcs.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/help.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/mkdocs.yml -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/parse.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/sliceflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/sliceflag.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/sort.go -------------------------------------------------------------------------------- /test/vendor/github.com/urfave/cli/v2/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/urfave/cli/v2/template.go -------------------------------------------------------------------------------- /test/vendor/github.com/x448/float16/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/x448/float16/.travis.yml -------------------------------------------------------------------------------- /test/vendor/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/x448/float16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/x448/float16/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/x448/float16/float16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/x448/float16/float16.go -------------------------------------------------------------------------------- /test/vendor/github.com/xrash/smetrics/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/xrash/smetrics/.travis.yml -------------------------------------------------------------------------------- /test/vendor/github.com/xrash/smetrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/xrash/smetrics/LICENSE -------------------------------------------------------------------------------- /test/vendor/github.com/xrash/smetrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/xrash/smetrics/README.md -------------------------------------------------------------------------------- /test/vendor/github.com/xrash/smetrics/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/xrash/smetrics/doc.go -------------------------------------------------------------------------------- /test/vendor/github.com/xrash/smetrics/hamming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/xrash/smetrics/hamming.go -------------------------------------------------------------------------------- /test/vendor/github.com/xrash/smetrics/jaro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/xrash/smetrics/jaro.go -------------------------------------------------------------------------------- /test/vendor/github.com/xrash/smetrics/soundex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/xrash/smetrics/soundex.go -------------------------------------------------------------------------------- /test/vendor/github.com/xrash/smetrics/ukkonen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/github.com/xrash/smetrics/ukkonen.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/chacha20/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/chacha20/xor.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/ssh_gss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/ssh_gss.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /test/vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /test/vendor/golang.org/x/exp/maps/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/exp/maps/maps.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/iter.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/timer.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/idna/pre_go118.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /test/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /test/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /test/vendor/golang.org/x/oauth2/deviceauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/oauth2/deviceauth.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sync/syncmap/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sync/syncmap/map.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/byteorder.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_linux.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/endian_big.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/term/CONTRIBUTING.md -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/term_unix_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/term/term_unix_bsd.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/term/term_windows.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /test/vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /test/vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /test/vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /test/vendor/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /test/vendor/google.golang.org/protobuf/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/google.golang.org/protobuf/PATENTS -------------------------------------------------------------------------------- /test/vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /test/vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /test/vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/apidiscovery/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/apidiscovery/v2/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/apps/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/apps/v1/generated.pb.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/apps/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/apps/v1/generated.proto -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/authorization/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/authorization/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/autoscaling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/autoscaling/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/autoscaling/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/autoscaling/v2/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/autoscaling/v2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/autoscaling/v2/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/certificates/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/certificates/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/coordination/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/coordination/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/core/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/core/v1/generated.pb.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/core/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/core/v1/generated.proto -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/core/v1/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/core/v1/lifecycle.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/discovery/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/discovery/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/discovery/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/discovery/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/events/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/events/v1/register.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/events/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/events/v1beta1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/flowcontrol/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/flowcontrol/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/flowcontrol/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/flowcontrol/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/node/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/node/v1/generated.pb.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/node/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/node/v1/generated.proto -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/node/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/node/v1alpha1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/node/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/node/v1alpha1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/node/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/node/v1beta1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/policy/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/policy/v1/register.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/policy/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/policy/v1beta1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/rbac/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/rbac/v1/generated.pb.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/rbac/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/rbac/v1/generated.proto -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/resource/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/resource/v1beta1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/scheduling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/scheduling/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/scheduling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/scheduling/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/storage/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/storage/v1alpha1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/discovery/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/discovery/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/gentype/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/gentype/fake.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/gentype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/gentype/type.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/kubernetes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/kubernetes/doc.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/openapi/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/openapi/client.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/rest/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/rest/transport.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/rest/url_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/rest/url_utils.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/rest/warnings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/rest/warnings.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/testing/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/testing/fake.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/tools/auth/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/tools/auth/OWNERS -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/transport/OWNERS -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/util/cert/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/util/cert/OWNERS -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/util/cert/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/util/cert/cert.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/client-go/util/cert/pem.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/.golangci.yaml -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/SECURITY_CONTACTS -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/code-of-conduct.md -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/contextual_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/contextual_slog.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/internal/dbg/dbg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/internal/dbg/dbg.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/k8s_references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/k8s_references.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/klog_file_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/klog_file_others.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /test/vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /test/vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/net/multi_listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/net/multi_listen.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /test/vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /test/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/modules.txt -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/json/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/json/CONTRIBUTING.md -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/json/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/json/SECURITY_CONTACTS -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/CONTRIBUTING.md -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/SECURITY_CONTACTS -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/goyaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/goyaml.v2/LICENSE -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/goyaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/goyaml.v2/NOTICE -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/goyaml.v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/goyaml.v2/OWNERS -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/goyaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/goyaml.v2/apic.go -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/goyaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/goyaml.v2/yaml.go -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /test/vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/vendor/sigs.k8s.io/yaml/yaml_go110.go -------------------------------------------------------------------------------- /test/webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuvector/neuvector-helm/HEAD/test/webhook_test.go --------------------------------------------------------------------------------