gitextract_xi9jecjq/ ├── .ai/ │ └── README.md ├── .codecov.yml ├── .coderabbit.yaml ├── .gitignore ├── .snyk ├── .tekton/ │ ├── copyconfig.sh │ ├── hive-mce-210-pull-request.yaml │ ├── hive-mce-210-push.yaml │ ├── hive-mce-211-pull-request.yaml │ ├── hive-mce-211-push.yaml │ ├── hive-mce-217-pull-request.yaml │ ├── hive-mce-217-push.yaml │ ├── hive-mce-26-pull-request.yaml │ ├── hive-mce-26-push.yaml │ ├── hive-mce-27-pull-request.yaml │ ├── hive-mce-27-push.yaml │ ├── hive-mce-28-pull-request.yaml │ ├── hive-mce-28-push.yaml │ ├── hive-mce-29-pull-request.yaml │ ├── hive-mce-29-push.yaml │ ├── hive-mce-50-pull-request.yaml │ ├── hive-mce-50-push.yaml │ ├── hive-mce-51-pull-request.yaml │ ├── hive-mce-51-push.yaml │ ├── hive-pull-request.yaml │ └── hive-push.yaml ├── AGENTS.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.ote ├── LICENSE ├── Makefile ├── OWNERS ├── PROJECT ├── README.md ├── apis/ │ ├── addtoscheme_hive_v1.go │ ├── addtoscheme_hivecontracts_v1alpha1.go │ ├── addtoscheme_hiveinternal_v1alpha1.go │ ├── apis.go │ ├── go.mod │ ├── go.sum │ ├── helpers/ │ │ ├── namer.go │ │ └── namer_test.go │ ├── hive/ │ │ ├── group.go │ │ └── v1/ │ │ ├── agent/ │ │ │ ├── doc.go │ │ │ ├── platform.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── aws/ │ │ │ ├── doc.go │ │ │ ├── machinepool.go │ │ │ ├── metadata.go │ │ │ ├── platform.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── azure/ │ │ │ ├── disk.go │ │ │ ├── doc.go │ │ │ ├── machinepool.go │ │ │ ├── metadata.go │ │ │ ├── platform.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── baremetal/ │ │ │ ├── doc.go │ │ │ ├── platform.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── checkpoint_types.go │ │ ├── clusterclaim_types.go │ │ ├── clusterdeployment_types.go │ │ ├── clusterdeploymentcustomization_types.go │ │ ├── clusterdeprovision_types.go │ │ ├── clusterimageset_types.go │ │ ├── clusterinstall_conditions.go │ │ ├── clusterpool_types.go │ │ ├── clusterprovision_types.go │ │ ├── clusterrelocate_types.go │ │ ├── clusterstate_types.go │ │ ├── conditions.go │ │ ├── dnszone_types.go │ │ ├── doc.go │ │ ├── gcp/ │ │ │ ├── clouduid.go │ │ │ ├── doc.go │ │ │ ├── machinepools.go │ │ │ ├── metadata.go │ │ │ ├── platform.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── hiveconfig_types.go │ │ ├── ibmcloud/ │ │ │ ├── doc.go │ │ │ ├── machinepool.go │ │ │ ├── platform.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── machinepool_types.go │ │ ├── machinepoolnamelease_types.go │ │ ├── metaruntimeobject.go │ │ ├── metricsconfig/ │ │ │ ├── doc.go │ │ │ ├── duration_metrics.go │ │ │ ├── metrics_config.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── none/ │ │ │ ├── doc.go │ │ │ ├── platform.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── nutanix/ │ │ │ ├── doc.go │ │ │ ├── machinepools.go │ │ │ ├── platform.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── openstack/ │ │ │ ├── doc.go │ │ │ ├── machinepools.go │ │ │ ├── platform.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── register.go │ │ ├── syncidentityprovider_types.go │ │ ├── syncset_types.go │ │ ├── vsphere/ │ │ │ ├── doc.go │ │ │ ├── machinepools.go │ │ │ ├── platform.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.defaults.go │ ├── hivecontracts/ │ │ ├── group.go │ │ └── v1alpha1/ │ │ ├── clusterinstall_types.go │ │ ├── doc.go │ │ ├── register.go │ │ └── zz_generated.deepcopy.go │ ├── hiveinternal/ │ │ ├── group.go │ │ └── v1alpha1/ │ │ ├── clustersync_types.go │ │ ├── clustersynclease_types.go │ │ ├── doc.go │ │ ├── fakeclusterinstall_types.go │ │ ├── register.go │ │ └── zz_generated.deepcopy.go │ ├── scheme/ │ │ └── scheme.go │ └── vendor/ │ ├── github.com/ │ │ ├── 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 │ │ │ ├── omitzero_go124.go │ │ │ ├── omitzero_pre_go124.go │ │ │ ├── simplevalue.go │ │ │ ├── stream.go │ │ │ ├── structfields.go │ │ │ ├── tag.go │ │ │ └── valid.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 │ │ ├── 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 │ │ ├── json-iterator/ │ │ │ └── go/ │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── 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 │ │ ├── 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.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 │ │ ├── openshift/ │ │ │ └── api/ │ │ │ ├── LICENSE │ │ │ ├── config/ │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── stringsource.go │ │ │ │ ├── types.go │ │ │ │ ├── types_apiserver.go │ │ │ │ ├── types_authentication.go │ │ │ │ ├── types_build.go │ │ │ │ ├── types_cluster_image_policy.go │ │ │ │ ├── types_cluster_operator.go │ │ │ │ ├── types_cluster_version.go │ │ │ │ ├── types_console.go │ │ │ │ ├── types_dns.go │ │ │ │ ├── types_feature.go │ │ │ │ ├── types_image.go │ │ │ │ ├── types_image_content_policy.go │ │ │ │ ├── types_image_digest_mirror_set.go │ │ │ │ ├── types_image_policy.go │ │ │ │ ├── types_image_tag_mirror_set.go │ │ │ │ ├── types_infrastructure.go │ │ │ │ ├── types_ingress.go │ │ │ │ ├── types_insights.go │ │ │ │ ├── types_kmsencryption.go │ │ │ │ ├── types_network.go │ │ │ │ ├── types_node.go │ │ │ │ ├── types_oauth.go │ │ │ │ ├── types_operatorhub.go │ │ │ │ ├── types_project.go │ │ │ │ ├── types_proxy.go │ │ │ │ ├── types_scheduling.go │ │ │ │ ├── types_testreporting.go │ │ │ │ ├── types_tlssecurityprofile.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── machine/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── common.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types_alibabaprovider.go │ │ │ │ │ ├── types_aws.go │ │ │ │ │ ├── types_controlplanemachineset.go │ │ │ │ │ ├── types_nutanixprovider.go │ │ │ │ │ ├── types_powervsprovider.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_awsprovider.go │ │ │ │ ├── types_azureprovider.go │ │ │ │ ├── types_gcpprovider.go │ │ │ │ ├── types_machine.go │ │ │ │ ├── types_machinehealthcheck.go │ │ │ │ ├── types_machineset.go │ │ │ │ ├── types_provider.go │ │ │ │ ├── types_vsphereprovider.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── operator/ │ │ │ └── v1/ │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_authentication.go │ │ │ ├── types_cloudcredential.go │ │ │ ├── types_config.go │ │ │ ├── types_console.go │ │ │ ├── types_csi_cluster_driver.go │ │ │ ├── types_csi_snapshot.go │ │ │ ├── types_dns.go │ │ │ ├── types_etcd.go │ │ │ ├── types_ingress.go │ │ │ ├── types_insights.go │ │ │ ├── types_kubeapiserver.go │ │ │ ├── types_kubecontrollermanager.go │ │ │ ├── types_kubestorageversionmigrator.go │ │ │ ├── types_machineconfiguration.go │ │ │ ├── types_network.go │ │ │ ├── types_olm.go │ │ │ ├── types_openshiftapiserver.go │ │ │ ├── types_openshiftcontrollermanager.go │ │ │ ├── types_scheduler.go │ │ │ ├── types_serviceca.go │ │ │ ├── types_servicecatalogapiserver.go │ │ │ ├── types_servicecatalogcontrollermanager.go │ │ │ ├── types_storage.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ └── zz_generated.swagger_doc_generated.go │ │ └── x448/ │ │ └── float16/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── float16.go │ ├── go.yaml.in/ │ │ └── yaml/ │ │ └── v2/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ ├── golang.org/ │ │ └── x/ │ │ ├── net/ │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── http/ │ │ │ │ └── httpguts/ │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ │ ├── http2/ │ │ │ │ ├── .gitignore │ │ │ │ ├── ascii.go │ │ │ │ ├── ciphers.go │ │ │ │ ├── client_conn_pool.go │ │ │ │ ├── config.go │ │ │ │ ├── config_go125.go │ │ │ │ ├── config_go126.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 │ │ │ │ ├── transport.go │ │ │ │ ├── unencrypted.go │ │ │ │ ├── write.go │ │ │ │ ├── writesched.go │ │ │ │ ├── writesched_priority_rfc7540.go │ │ │ │ ├── writesched_priority_rfc9218.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 │ │ └── text/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── secure/ │ │ │ └── bidirule/ │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ │ ├── transform/ │ │ │ └── transform.go │ │ └── unicode/ │ │ ├── bidi/ │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── prop.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ └── norm/ │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ ├── gopkg.in/ │ │ └── inf.v0/ │ │ ├── LICENSE │ │ ├── dec.go │ │ └── rounder.go │ ├── k8s.io/ │ │ ├── api/ │ │ │ ├── LICENSE │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── 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 │ │ ├── apimachinery/ │ │ │ ├── LICENSE │ │ │ ├── pkg/ │ │ │ │ ├── api/ │ │ │ │ │ ├── operation/ │ │ │ │ │ │ └── operation.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 │ │ │ │ ├── apis/ │ │ │ │ │ └── meta/ │ │ │ │ │ └── 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 │ │ │ │ │ ├── watch.go │ │ │ │ │ ├── zz_generated.conversion.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/ │ │ │ │ │ │ ├── direct/ │ │ │ │ │ │ │ └── direct.go │ │ │ │ │ │ └── internal/ │ │ │ │ │ │ └── modes/ │ │ │ │ │ │ ├── buffers.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ └── transcoding.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/ │ │ │ │ │ ├── errors/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── errors.go │ │ │ │ │ ├── intstr/ │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── instr_fuzz.go │ │ │ │ │ │ └── intstr.go │ │ │ │ │ ├── json/ │ │ │ │ │ │ └── json.go │ │ │ │ │ ├── naming/ │ │ │ │ │ │ └── from_stack.go │ │ │ │ │ ├── net/ │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── port_range.go │ │ │ │ │ │ ├── port_split.go │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── runtime/ │ │ │ │ │ │ └── runtime.go │ │ │ │ │ ├── sets/ │ │ │ │ │ │ ├── byte.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── empty.go │ │ │ │ │ │ ├── int.go │ │ │ │ │ │ ├── int32.go │ │ │ │ │ │ ├── int64.go │ │ │ │ │ │ ├── set.go │ │ │ │ │ │ └── string.go │ │ │ │ │ └── validation/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── field/ │ │ │ │ │ │ ├── error_matcher.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── path.go │ │ │ │ │ ├── ip.go │ │ │ │ │ └── validation.go │ │ │ │ └── watch/ │ │ │ │ ├── doc.go │ │ │ │ ├── filter.go │ │ │ │ ├── mux.go │ │ │ │ ├── streamwatcher.go │ │ │ │ ├── watch.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── third_party/ │ │ │ └── forked/ │ │ │ └── golang/ │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── reflect/ │ │ │ └── deep_equal.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 │ │ └── utils/ │ │ ├── LICENSE │ │ ├── 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 │ ├── randfill/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── OWNERS │ │ ├── OWNERS_ALIASES │ │ ├── README.md │ │ ├── SECURITY_CONTACTS │ │ ├── bytesource/ │ │ │ └── bytesource.go │ │ ├── code-of-conduct.md │ │ └── randfill.go │ └── structured-merge-diff/ │ └── v6/ │ ├── LICENSE │ └── 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 ├── build/ │ └── verify-imports/ │ └── import-rules.yaml ├── cmd/ │ ├── hiveadmission/ │ │ └── main.go │ ├── manager/ │ │ └── main.go │ ├── operator/ │ │ └── main.go │ └── util/ │ └── leaderelection.go ├── config/ │ ├── buildconfig/ │ │ ├── hive-buildconfig.yaml │ │ ├── hive-imagestream.yaml │ │ └── imagestream-rbac.yaml │ ├── configmaps/ │ │ └── install-log-regexes-configmap.yaml │ ├── controllers/ │ │ ├── deployment.yaml │ │ ├── hive_controllers_role.yaml │ │ ├── hive_controllers_role_binding.yaml │ │ ├── hive_controllers_serviceaccount.yaml │ │ └── service.yaml │ ├── crds/ │ │ ├── hive.openshift.io_checkpoints.yaml │ │ ├── hive.openshift.io_clusterclaims.yaml │ │ ├── hive.openshift.io_clusterdeploymentcustomizations.yaml │ │ ├── hive.openshift.io_clusterdeployments.yaml │ │ ├── hive.openshift.io_clusterdeprovisions.yaml │ │ ├── hive.openshift.io_clusterimagesets.yaml │ │ ├── hive.openshift.io_clusterpools.yaml │ │ ├── hive.openshift.io_clusterprovisions.yaml │ │ ├── hive.openshift.io_clusterrelocates.yaml │ │ ├── hive.openshift.io_clusterstates.yaml │ │ ├── hive.openshift.io_dnszones.yaml │ │ ├── hive.openshift.io_hiveconfigs.yaml │ │ ├── hive.openshift.io_machinepoolnameleases.yaml │ │ ├── hive.openshift.io_machinepools.yaml │ │ ├── hive.openshift.io_selectorsyncidentityproviders.yaml │ │ ├── hive.openshift.io_selectorsyncsets.yaml │ │ ├── hive.openshift.io_syncidentityproviders.yaml │ │ ├── hive.openshift.io_syncsets.yaml │ │ ├── hiveinternal.openshift.io_clustersyncleases.yaml │ │ ├── hiveinternal.openshift.io_clustersyncs.yaml │ │ └── hiveinternal.openshift.io_fakeclusterinstalls.yaml │ ├── crdspatch/ │ │ ├── hive.openshift.io_clusterprovisions.yaml │ │ └── hiveinternal.openshift.io_fakeclusterinstalls.yaml │ ├── hiveadmission/ │ │ ├── apiservice.yaml │ │ ├── clusterdeployment-webhook.yaml │ │ ├── clusterdeploymentcustomization-webhook.yaml │ │ ├── clusterimageset-webhook.yaml │ │ ├── clusterpool-webhook.yaml │ │ ├── clusterprovision-webhook.yaml │ │ ├── deployment.yaml │ │ ├── dnszones-webhook.yaml │ │ ├── hiveadmission_rbac_role.yaml │ │ ├── hiveadmission_rbac_role_binding.yaml │ │ ├── machinepool-webhook.yaml │ │ ├── sa-token-secret.yaml │ │ ├── selectorsyncset-webhook.yaml │ │ ├── service-account.yaml │ │ ├── service.yaml │ │ └── syncset-webhook.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator/ │ │ ├── 01_clusterimageset_crd.yaml │ │ ├── operator_deployment.yaml │ │ ├── operator_role.yaml │ │ └── operator_role_binding.yaml │ ├── prometheus/ │ │ ├── prometheus-configmap.yaml │ │ ├── prometheus-deployment-with-pvc.yaml │ │ └── prometheus-deployment.yaml │ ├── rbac/ │ │ ├── hive_admin_role.yaml │ │ ├── hive_admin_role_binding.yaml │ │ ├── hive_clusterpool_admin.yaml │ │ ├── hive_frontend_role.yaml │ │ ├── hive_frontend_role_binding.yaml │ │ ├── hive_frontend_serviceaccount.yaml │ │ ├── hive_reader_role.yaml │ │ └── hive_reader_role_binding.yaml │ ├── samples/ │ │ ├── hive_v1_clusterdeployment.yaml │ │ ├── hive_v1_clusterdeprovision.yaml │ │ ├── hive_v1_clusterimageset.yaml │ │ ├── hive_v1_dnszone.yaml │ │ ├── hive_v1_machinepool.yaml │ │ ├── hive_v1_syncsetinstance.yaml │ │ └── manifests/ │ │ └── sample-manifest.yaml │ ├── sharded_controllers/ │ │ ├── service.yaml │ │ └── statefulset.yaml │ └── templates/ │ ├── cluster-deployment-customimageset.yaml │ ├── cluster-deployment.yaml │ ├── hive-csv-template.yaml │ └── hiveconfig.yaml ├── contrib/ │ ├── cmd/ │ │ ├── hiveutil/ │ │ │ └── main.go │ │ └── waitforjob/ │ │ └── main.go │ └── pkg/ │ ├── adm/ │ │ ├── adm.go │ │ └── managedns/ │ │ ├── enable.go │ │ └── managedns.go │ ├── awsprivatelink/ │ │ ├── awsprivatelink.go │ │ ├── common/ │ │ │ └── vars.go │ │ ├── disable.go │ │ ├── enable.go │ │ ├── endpointVPC.go │ │ └── endpointvpc/ │ │ ├── add.go │ │ ├── helpers.go │ │ └── remove.go │ ├── certificate/ │ │ ├── command.go │ │ ├── create.go │ │ └── hook.go │ ├── clusterpool/ │ │ ├── clusterclaim.go │ │ ├── clusterpool.go │ │ └── command.go │ ├── createcluster/ │ │ ├── create.go │ │ └── nutanix.go │ ├── deprovision/ │ │ ├── awstagdeprovision.go │ │ ├── azure.go │ │ ├── deprovision.go │ │ ├── gcp.go │ │ ├── ibmcloud.go │ │ ├── nutanix.go │ │ ├── openstack.go │ │ └── vsphere.go │ ├── report/ │ │ ├── deprovisioning.go │ │ ├── provisioning.go │ │ └── report.go │ ├── testresource/ │ │ └── command.go │ ├── utils/ │ │ ├── client.go │ │ └── generic.go │ ├── verification/ │ │ └── imports.go │ └── version/ │ └── version.go ├── docs/ │ ├── FAQs.md │ ├── annotations.md │ ├── apiserver.md │ ├── architecture.md │ ├── aws-sts-provisioning.md │ ├── awsassumerolecreds.md │ ├── awsprivatelink.md │ ├── buildconfig.md │ ├── cluster-relocation.md │ ├── clusterpools.md │ ├── developing.md │ ├── enhancements/ │ │ ├── aws-private-link.md │ │ ├── cluster-install-apis.md │ │ ├── cluster_pool_hot_spares.md │ │ ├── clusterpool-inventory.md │ │ ├── hivev2.md │ │ ├── install_logs.md │ │ ├── metricsConfig_redesign.md │ │ ├── patch-install-manifests.md │ │ ├── replace_broken_clusters.md │ │ └── scale-mode.md │ ├── hibernating-clusters.md │ ├── hive-architecture.drawio │ ├── hive_metrics.md │ ├── hiveutil.md │ ├── install.md │ ├── managed-dns.md │ ├── microsoft_entra_workload_id.md │ ├── monitoring.md │ ├── move_clusters.md │ ├── privatelink.md │ ├── quick_start.md │ ├── releaseimageverify.md │ ├── scaling-hive.md │ ├── syncidentityprovider.md │ ├── syncset.md │ ├── troubleshooting.md │ └── using-hive.md ├── go.mod ├── go.sum ├── golangci.yml ├── hack/ │ ├── app-sre/ │ │ ├── generate-saas-template.sh │ │ ├── kustomization.yaml │ │ ├── saas-template-stub.yaml │ │ └── saas-template.yaml │ ├── app_sre_build_deploy.sh │ ├── awsprivatelink/ │ │ └── vpc.cf.yaml │ ├── boilerplate.go.txt │ ├── bundle-gen.py │ ├── codecov.sh │ ├── create-kind-cluster.sh │ ├── create-service-account-secrets.sh │ ├── duplicate_cd.sh │ ├── e2e-common.sh │ ├── e2e-pool-test.sh │ ├── e2e-test.sh │ ├── fakeclusterinstall.yaml │ ├── gcpprivateserviceconnect/ │ │ └── linkvpc.py │ ├── get-kubeconfig.sh │ ├── github.py │ ├── grafana-dashboards/ │ │ ├── grafana-dashboard-hive-logs.configmap.yaml │ │ └── grafana-dashboard-hive-slo.configmap.yaml │ ├── hermetic/ │ │ ├── README.md │ │ ├── redhat.repo │ │ ├── rpms.in.yaml │ │ └── rpms.lock.yaml │ ├── hiveadmission-dev-cert.sh │ ├── local-e2e-test.sh │ ├── logextractor.sh │ ├── make │ ├── modcheck.go │ ├── refresh-clusterpool-creds.sh │ ├── regexes/ │ │ └── additional-hive-regexes.yaml │ ├── requirements.txt │ ├── run-hive-locally.sh │ ├── scaletest/ │ │ ├── README.md │ │ ├── setup-selectorsyncsets.sh │ │ ├── syncset-template.yaml │ │ └── test_setup.sh │ ├── set-additional-ca.sh │ ├── statuspatch │ ├── ubi-build-deps.sh │ ├── update-codegen.sh │ ├── verify-crd.sh │ └── version2.sh ├── overlays/ │ ├── .gitignore │ └── template/ │ └── kustomization.yaml ├── pkg/ │ ├── OWNERS │ ├── awsclient/ │ │ ├── client.go │ │ └── mock/ │ │ └── client_generated.go │ ├── azureclient/ │ │ ├── client.go │ │ └── mock/ │ │ └── client_generated.go │ ├── clusterresource/ │ │ ├── aws.go │ │ ├── azure.go │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── gcp.go │ │ ├── ibmcloud.go │ │ ├── installconfigtemplate.go │ │ ├── installconfigtemplate_test.go │ │ ├── nutanix.go │ │ ├── openstack.go │ │ └── vsphere.go │ ├── constants/ │ │ ├── constants.go │ │ ├── constants_test.go │ │ └── nutanix.go │ ├── controller/ │ │ ├── argocdregister/ │ │ │ ├── argocdregister_controller.go │ │ │ ├── argocdregister_controller_test.go │ │ │ └── argotypes.go │ │ ├── awsprivatelink/ │ │ │ ├── awsprivatelink_controller.go │ │ │ ├── awsprivatelink_controller_test.go │ │ │ ├── cleanup.go │ │ │ ├── cleanup_test.go │ │ │ └── vpcinventory.go │ │ ├── clusterclaim/ │ │ │ ├── clusterclaim_controller.go │ │ │ └── clusterclaim_controller_test.go │ │ ├── clusterdeployment/ │ │ │ ├── clusterdeployment_controller.go │ │ │ ├── clusterdeployment_controller_test.go │ │ │ ├── clusterinstalls.go │ │ │ ├── clusterprovisions.go │ │ │ ├── installconfigvalidation.go │ │ │ ├── installconfigvalidation_test.go │ │ │ └── metrics.go │ │ ├── clusterdeprovision/ │ │ │ ├── actuator.go │ │ │ ├── awsactuator.go │ │ │ ├── clusterdeprovision_controller.go │ │ │ ├── clusterdeprovision_controller_test.go │ │ │ └── helpers_test.go │ │ ├── clusterpool/ │ │ │ ├── clusterdeploymentexpectations.go │ │ │ ├── clusterpool_controller.go │ │ │ ├── clusterpool_controller_test.go │ │ │ ├── collections.go │ │ │ └── metrics.go │ │ ├── clusterpoolnamespace/ │ │ │ ├── clusterpoolnamespace_controller.go │ │ │ └── clusterpoolnamespace_controller_test.go │ │ ├── clusterprovision/ │ │ │ ├── clusterprovision_controller.go │ │ │ ├── clusterprovision_controller_test.go │ │ │ ├── installlogmonitor.go │ │ │ ├── installlogmonitor_test.go │ │ │ ├── installlogregex.go │ │ │ ├── jobexpectations.go │ │ │ └── metrics.go │ │ ├── clusterrelocate/ │ │ │ ├── clientwrapper_test.go │ │ │ ├── clusterrelocate_controller.go │ │ │ └── clusterrelocate_controller_test.go │ │ ├── clusterstate/ │ │ │ ├── clusterstate_controller.go │ │ │ └── clusterstate_controller_test.go │ │ ├── clustersync/ │ │ │ ├── clientwrapper_test.go │ │ │ ├── clustersync_controller.go │ │ │ ├── clustersync_controller_test.go │ │ │ ├── commonsyncset.go │ │ │ └── templates.go │ │ ├── clusterversion/ │ │ │ ├── clusterversion_controller.go │ │ │ └── clusterversion_controller_test.go │ │ ├── controlplanecerts/ │ │ │ ├── controlplanecerts_controller.go │ │ │ └── controlplanecerts_controller_test.go │ │ ├── dnsendpoint/ │ │ │ ├── dnsendpoint_controller.go │ │ │ ├── dnsendpoint_controller_test.go │ │ │ ├── nameserver/ │ │ │ │ ├── aws.go │ │ │ │ ├── aws_live_test.go │ │ │ │ ├── aws_test.go │ │ │ │ ├── azure.go │ │ │ │ ├── azure_live_test.go │ │ │ │ ├── azure_test.go │ │ │ │ ├── gcp.go │ │ │ │ ├── gcp_live_test.go │ │ │ │ ├── gcp_test.go │ │ │ │ ├── helpers_test.go │ │ │ │ ├── mock/ │ │ │ │ │ └── query_generated.go │ │ │ │ └── query.go │ │ │ ├── nameserverscraper.go │ │ │ └── nameserverscraper_test.go │ │ ├── dnszone/ │ │ │ ├── actuator.go │ │ │ ├── awsactuator.go │ │ │ ├── awsactuator_test.go │ │ │ ├── azureactuator.go │ │ │ ├── azureactuator_test.go │ │ │ ├── dnszone_controller.go │ │ │ ├── dnszone_controller_test.go │ │ │ ├── gcpactuator.go │ │ │ ├── gcpactuator_test.go │ │ │ └── test_helpers.go │ │ ├── fakeclusterinstall/ │ │ │ └── fakeclusterinstall_controller.go │ │ ├── hibernation/ │ │ │ ├── aws_actuator.go │ │ │ ├── aws_actuator_test.go │ │ │ ├── azure_actuator.go │ │ │ ├── azure_actuator_test.go │ │ │ ├── csr_helper.go │ │ │ ├── csr_utility.go │ │ │ ├── gcp_actuator.go │ │ │ ├── gcp_actuator_test.go │ │ │ ├── hibernation_actuator.go │ │ │ ├── hibernation_controller.go │ │ │ ├── hibernation_controller_test.go │ │ │ ├── ibmcloud_actuator.go │ │ │ ├── ibmcloud_actuator_test.go │ │ │ └── mock/ │ │ │ ├── csr_helper_generated.go │ │ │ └── hibernation_actuator_generated.go │ │ ├── images/ │ │ │ └── controller_images.go │ │ ├── machinepool/ │ │ │ ├── actuator.go │ │ │ ├── awsactuator.go │ │ │ ├── awsactuator_test.go │ │ │ ├── azureactuator.go │ │ │ ├── azureactuator_test.go │ │ │ ├── constants.go │ │ │ ├── gcpactuator.go │ │ │ ├── gcpactuator_test.go │ │ │ ├── ibmcloudactuator.go │ │ │ ├── ibmcloudactuator_test.go │ │ │ ├── leaseexceptions.go │ │ │ ├── machinepool_controller.go │ │ │ ├── machinepool_controller_test.go │ │ │ ├── mock/ │ │ │ │ └── actuator_generated.go │ │ │ ├── nutanixactuator.go │ │ │ ├── nutanixactuator_test.go │ │ │ ├── openstackactuator.go │ │ │ ├── openstackactuator_test.go │ │ │ ├── vsphereactuator.go │ │ │ └── vsphereactuator_test.go │ │ ├── metrics/ │ │ │ ├── custom_collectors.go │ │ │ ├── custom_collectors_test.go │ │ │ ├── metrics.go │ │ │ ├── metrics_test.go │ │ │ └── metrics_with_dynamic_labels.go │ │ ├── privatelink/ │ │ │ ├── actuator/ │ │ │ │ ├── actuator.go │ │ │ │ ├── awsactuator/ │ │ │ │ │ ├── awsactuator.go │ │ │ │ │ ├── awsclient.go │ │ │ │ │ ├── awshubactuator.go │ │ │ │ │ └── awshubactuator_test.go │ │ │ │ ├── gcpactuator/ │ │ │ │ │ ├── gcpactuator.go │ │ │ │ │ ├── gcpclient.go │ │ │ │ │ ├── gcplinkactuator.go │ │ │ │ │ └── gcplinkactuator_test.go │ │ │ │ └── mock/ │ │ │ │ └── actuator_generated.go │ │ │ ├── conditions/ │ │ │ │ ├── conditions.go │ │ │ │ └── conditions_test.go │ │ │ ├── privatelink.go │ │ │ ├── privatelink_controller.go │ │ │ └── privatelink_test.go │ │ ├── remoteingress/ │ │ │ ├── remoteingress_controller.go │ │ │ └── remoteingress_controller_test.go │ │ ├── syncidentityprovider/ │ │ │ ├── syncidentityprovider_controller.go │ │ │ └── syncidentityprovider_controller_test.go │ │ ├── unreachable/ │ │ │ ├── unreachable_controller.go │ │ │ └── unreachable_controller_test.go │ │ ├── utils/ │ │ │ ├── cacrt.go │ │ │ ├── clientwrapper.go │ │ │ ├── clientwrapper_test.go │ │ │ ├── clusterdeployment.go │ │ │ ├── clusterdeployment_test.go │ │ │ ├── clusterpool.go │ │ │ ├── conditions.go │ │ │ ├── conditions_test.go │ │ │ ├── credentials.go │ │ │ ├── delayingreconciler.go │ │ │ ├── dnszone.go │ │ │ ├── dnszone_test.go │ │ │ ├── domain.go │ │ │ ├── duck_types.go │ │ │ ├── errorscrub.go │ │ │ ├── errorscrub_test.go │ │ │ ├── expectations.go │ │ │ ├── expectations_test.go │ │ │ ├── jobs.go │ │ │ ├── logtagger.go │ │ │ ├── logtagger_test.go │ │ │ ├── nutanixutils/ │ │ │ │ ├── nutanix.go │ │ │ │ └── nutanixutils_test.go │ │ │ ├── ownership.go │ │ │ ├── ownership_test.go │ │ │ ├── podconfig.go │ │ │ ├── ratelimitedeventhandler.go │ │ │ ├── ratelimitedeventhandler_test.go │ │ │ ├── sa.go │ │ │ ├── sa_test.go │ │ │ ├── secrets.go │ │ │ ├── statefulset.go │ │ │ ├── statefulset_test.go │ │ │ ├── taints.go │ │ │ ├── utils.go │ │ │ ├── utils_test.go │ │ │ └── watcher_inject.go │ │ └── velerobackup/ │ │ ├── helpers_test.go │ │ ├── velerobackup_controller.go │ │ └── velerobackup_controller_test.go │ ├── creds/ │ │ ├── aws/ │ │ │ └── aws.go │ │ ├── azure/ │ │ │ └── azure.go │ │ ├── creds.go │ │ ├── gcp/ │ │ │ └── gcp.go │ │ ├── ibmcloud/ │ │ │ └── ibmcloud.go │ │ ├── nutanix/ │ │ │ └── nutanix.go │ │ ├── openstack/ │ │ │ └── openstack.go │ │ └── vsphere/ │ │ └── vsphere.go │ ├── dependencymagnet/ │ │ └── doc.go │ ├── gcpclient/ │ │ ├── client.go │ │ └── mock/ │ │ └── client_generated.go │ ├── ibmclient/ │ │ ├── client.go │ │ └── mock/ │ │ └── client_generated.go │ ├── imageset/ │ │ ├── generate.go │ │ ├── generate_test.go │ │ ├── updateinstaller.go │ │ └── updateinstaller_test.go │ ├── install/ │ │ ├── generate.go │ │ └── generate_test.go │ ├── installmanager/ │ │ ├── dnscleanup.go │ │ ├── fake.go │ │ ├── helper_test.go │ │ ├── ibm_metadata_test.go │ │ ├── installmanager.go │ │ ├── installmanager_test.go │ │ ├── loguploaderactuator.go │ │ ├── s3loguploaderactuator.go │ │ ├── s3loguploaderactuator_test.go │ │ └── testdata/ │ │ ├── install-config-with-existing-pull-secret.yaml │ │ ├── install-config-with-pull-secret.yaml │ │ ├── install-config.yaml │ │ ├── nutanix-install-config-with-credentials.yaml │ │ ├── nutanix-install-config.yaml │ │ └── pull-secret.json │ ├── manageddns/ │ │ └── manageddns.go │ ├── operator/ │ │ ├── add_hive.go │ │ ├── assets/ │ │ │ └── bindata.go │ │ ├── controller.go │ │ ├── hive/ │ │ │ ├── apply.go │ │ │ ├── conditions.go │ │ │ ├── configmap.go │ │ │ ├── dynamicclient.go │ │ │ ├── hive.go │ │ │ ├── hive_controller.go │ │ │ ├── hiveadmission.go │ │ │ ├── operatorutils.go │ │ │ └── sharded_controllers.go │ │ └── metrics/ │ │ └── metrics.go │ ├── remoteclient/ │ │ ├── dialer.go │ │ ├── dialer_test.go │ │ ├── fake.go │ │ ├── kubeconfig.go │ │ ├── mock/ │ │ │ └── remoteclient_generated.go │ │ ├── remoteclient.go │ │ ├── remoteclient_test.go │ │ └── testdata/ │ │ └── kubeconfig.sample │ ├── resource/ │ │ ├── apply.go │ │ ├── client.go │ │ ├── delete.go │ │ ├── factory_discovery.go │ │ ├── fake.go │ │ ├── helper.go │ │ ├── info.go │ │ ├── kubeconfig_factory.go │ │ ├── mock/ │ │ │ └── helper_generated.go │ │ ├── patch.go │ │ ├── patch_test.go │ │ ├── restconfig_factory.go │ │ └── serializer.go │ ├── test/ │ │ ├── assert/ │ │ │ └── assertions.go │ │ ├── checkpoint/ │ │ │ └── checkpoint.go │ │ ├── clusterclaim/ │ │ │ └── clusterclaim.go │ │ ├── clusterdeployment/ │ │ │ └── clusterdeployment.go │ │ ├── clusterdeploymentcustomization/ │ │ │ └── clusterdeploymentcustomization.go │ │ ├── clusterdeprovision/ │ │ │ └── clusterdeprovision.go │ │ ├── clusterpool/ │ │ │ └── clusterpool.go │ │ ├── clusterprovision/ │ │ │ └── clusterprovision.go │ │ ├── clusterrelocate/ │ │ │ └── clusterrelocate.go │ │ ├── clustersync/ │ │ │ └── clustersync.go │ │ ├── configmap/ │ │ │ └── configmap.go │ │ ├── dnszone/ │ │ │ └── dnszone.go │ │ ├── fake/ │ │ │ ├── fake.go │ │ │ └── overrideable_client.go │ │ ├── generic/ │ │ │ └── generic.go │ │ ├── job/ │ │ │ └── job.go │ │ ├── logger/ │ │ │ └── logger.go │ │ ├── machinepool/ │ │ │ └── machinepool.go │ │ ├── manager/ │ │ │ ├── manager.go │ │ │ └── mock/ │ │ │ └── manager_generated.go │ │ ├── namespace/ │ │ │ └── namespace.go │ │ ├── secret/ │ │ │ └── secret.go │ │ ├── selectorsyncset/ │ │ │ └── selectorsyncset.go │ │ ├── statefulset/ │ │ │ └── statefulset.go │ │ ├── syncidentityprovider/ │ │ │ └── syncidentityprovider.go │ │ └── syncset/ │ │ └── syncset.go │ ├── util/ │ │ ├── contracts/ │ │ │ ├── contracts.go │ │ │ └── contracts_test.go │ │ ├── labels/ │ │ │ └── labels.go │ │ ├── logrus/ │ │ │ ├── eventrecorder.go │ │ │ ├── logr.go │ │ │ └── logr_test.go │ │ ├── scheme/ │ │ │ └── scheme.go │ │ └── yaml/ │ │ └── yaml.go │ ├── validating-webhooks/ │ │ └── hive/ │ │ └── v1/ │ │ ├── clusterdeployment_validating_admission_hook.go │ │ ├── clusterdeployment_validating_admission_hook_test.go │ │ ├── clusterdeploymentcustomization_validating_admission_hook.go │ │ ├── clusterimageset_validating_admission_hook.go │ │ ├── clusterimageset_validating_admission_hook_test.go │ │ ├── clusterpool_validating_admission_hook.go │ │ ├── clusterpool_validating_admission_hook_test.go │ │ ├── clusterprovision_validating_admission_hook.go │ │ ├── clusterprovision_validating_admission_hook_test.go │ │ ├── decoder_test.go │ │ ├── dnszone_validating_admission_hook.go │ │ ├── dnszone_validating_admission_hook_test.go │ │ ├── feature_gates.go │ │ ├── feature_gates_test.go │ │ ├── machinepool_validating_admission_hook.go │ │ ├── machinepool_validating_admission_hook_test.go │ │ ├── selector_syncset_validating_admission_hook.go │ │ ├── selector_syncset_validating_admission_hook_test.go │ │ ├── syncset_validating_admission_hook.go │ │ └── syncset_validating_admission_hook_test.go │ └── version/ │ └── version.go ├── renovate.json ├── test/ │ ├── e2e/ │ │ ├── common/ │ │ │ ├── apiservice.go │ │ │ ├── client.go │ │ │ ├── clusterdeployment.go │ │ │ ├── deployment.go │ │ │ ├── diff.go │ │ │ ├── machine.go │ │ │ ├── machinepool.go │ │ │ ├── machineset.go │ │ │ ├── node.go │ │ │ ├── service.go │ │ │ └── utils.go │ │ ├── destroycluster/ │ │ │ └── destroy_test.go │ │ ├── postdeploy/ │ │ │ ├── admission/ │ │ │ │ ├── admission_test.go │ │ │ │ └── testdata/ │ │ │ │ ├── hiveadmission-review-failure.json │ │ │ │ ├── hiveadmission-review-success.json │ │ │ │ └── hiveadmission-review-update-failure.json │ │ │ ├── hivecontroller/ │ │ │ │ └── manager_test.go │ │ │ └── operator/ │ │ │ └── operator_test.go │ │ ├── postinstall/ │ │ │ ├── machinesets/ │ │ │ │ └── infra_test.go │ │ │ └── syncsets/ │ │ │ └── syncsets_suite_test.go │ │ └── uninstallhive/ │ │ └── uninstallhive_test.go │ └── ote/ │ ├── Makefile │ ├── bindata.mk │ ├── cmd/ │ │ └── extension/ │ │ └── main.go │ ├── go.mod │ ├── go.sum │ └── hive/ │ ├── fixtures.go │ ├── hive.go │ ├── hive_aws.go │ ├── hive_azure.go │ ├── hive_gcp.go │ ├── hive_util.go │ ├── hive_vsphere.go │ └── testdata/ │ ├── aws-install-config-privatelink.yaml │ ├── aws-install-config.yaml │ ├── azure-install-config.yaml │ ├── cloudformation-endpointvpc-temp.yaml │ ├── cluster-monitoring-config.yaml │ ├── clusterclaim.yaml │ ├── clusterdeployment-adopt.yaml │ ├── clusterdeployment-aws-assumerole.yaml │ ├── clusterdeployment-aws-privatelink.yaml │ ├── clusterdeployment-azure.yaml │ ├── clusterdeployment-gcp-psc.yaml │ ├── clusterdeployment-gcp.yaml │ ├── clusterdeployment-vsphere.yaml │ ├── clusterdeployment.yaml │ ├── clusterdeploymentcustomizations.yaml │ ├── clusterimageset.yaml │ ├── clusterpool-azure.yaml │ ├── clusterpool-cdc.yaml │ ├── clusterpool-gcp.yaml │ ├── clusterpool.yaml │ ├── gcp-install-config-psc.yaml │ ├── gcp-install-config-sharedvpc.yaml │ ├── gcp-install-config.yaml │ ├── hive-clustersync-servicemonitor.yaml │ ├── hive-controllers-servicemonitor.yaml │ ├── hive-operator-podmonitor.yaml │ ├── hiveconfig.yaml │ ├── linkvpc.py │ ├── machinepool-infra-aws.yaml │ ├── machinepool-infra-azure.yaml │ ├── machinepool-infra-gcp-sharedvpc.yaml │ ├── machinepool-infra-gcp.yaml │ ├── machinepool-worker-aws.yaml │ ├── machinepool-worker-azure.yaml │ ├── machinepool-worker-gcp.yaml │ ├── machinepool-worker-vsphere.yaml │ ├── namespace.yaml │ ├── operatorgroup.yaml │ ├── subscription.yaml │ ├── syncset-patch.yaml │ ├── syncset-resource.yaml │ ├── syncset-secret.yaml │ ├── vsphere-install-config.yaml │ └── workload.yaml └── vendor/ ├── 4d63.com/ │ ├── gocheckcompilerdirectives/ │ │ ├── LICENSE │ │ └── checkcompilerdirectives/ │ │ └── checkcompilerdirectives.go │ └── gochecknoglobals/ │ ├── LICENSE │ └── checknoglobals/ │ └── check_no_globals.go ├── cel.dev/ │ └── expr/ │ ├── .bazelversion │ ├── .gitattributes │ ├── .gitignore │ ├── BUILD.bazel │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── MODULE.bazel │ ├── README.md │ ├── WORKSPACE │ ├── WORKSPACE.bzlmod │ ├── checked.pb.go │ ├── cloudbuild.yaml │ ├── eval.pb.go │ ├── explain.pb.go │ ├── regen_go_proto.sh │ ├── regen_go_proto_canonical_protos.sh │ ├── syntax.pb.go │ └── value.pb.go ├── cloud.google.com/ │ └── go/ │ ├── .gitignore │ ├── .release-please-manifest-individual.json │ ├── .release-please-manifest-submodules.json │ ├── .release-please-manifest.json │ ├── CHANGES.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── RELEASING.md │ ├── SECURITY.md │ ├── auth/ │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth.go │ │ ├── credentials/ │ │ │ ├── compute.go │ │ │ ├── detect.go │ │ │ ├── doc.go │ │ │ ├── filetypes.go │ │ │ ├── internal/ │ │ │ │ ├── externalaccount/ │ │ │ │ │ ├── aws_provider.go │ │ │ │ │ ├── executable_provider.go │ │ │ │ │ ├── externalaccount.go │ │ │ │ │ ├── file_provider.go │ │ │ │ │ ├── info.go │ │ │ │ │ ├── programmatic_provider.go │ │ │ │ │ ├── url_provider.go │ │ │ │ │ └── x509_provider.go │ │ │ │ ├── externalaccountuser/ │ │ │ │ │ └── externalaccountuser.go │ │ │ │ ├── gdch/ │ │ │ │ │ └── gdch.go │ │ │ │ ├── impersonate/ │ │ │ │ │ ├── idtoken.go │ │ │ │ │ └── impersonate.go │ │ │ │ └── stsexchange/ │ │ │ │ └── sts_exchange.go │ │ │ └── selfsignedjwt.go │ │ ├── grpctransport/ │ │ │ ├── dial_socketopt.go │ │ │ ├── directpath.go │ │ │ ├── grpctransport.go │ │ │ └── pool.go │ │ ├── httptransport/ │ │ │ ├── httptransport.go │ │ │ └── transport.go │ │ ├── internal/ │ │ │ ├── compute/ │ │ │ │ ├── compute.go │ │ │ │ ├── manufacturer.go │ │ │ │ ├── manufacturer_linux.go │ │ │ │ └── manufacturer_windows.go │ │ │ ├── credsfile/ │ │ │ │ ├── credsfile.go │ │ │ │ ├── filetype.go │ │ │ │ └── parse.go │ │ │ ├── internal.go │ │ │ ├── jwt/ │ │ │ │ └── jwt.go │ │ │ ├── retry/ │ │ │ │ └── retry.go │ │ │ ├── transport/ │ │ │ │ ├── cba.go │ │ │ │ ├── cert/ │ │ │ │ │ ├── default_cert.go │ │ │ │ │ ├── enterprise_cert.go │ │ │ │ │ ├── secureconnect_cert.go │ │ │ │ │ └── workload_cert.go │ │ │ │ ├── headers/ │ │ │ │ │ └── headers.go │ │ │ │ ├── s2a.go │ │ │ │ └── transport.go │ │ │ ├── trustboundary/ │ │ │ │ ├── external_accounts_config_providers.go │ │ │ │ └── trust_boundary.go │ │ │ └── version.go │ │ ├── oauth2adapt/ │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ └── oauth2adapt.go │ │ └── threelegged.go │ ├── compute/ │ │ └── metadata/ │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── log.go │ │ ├── metadata.go │ │ ├── retry.go │ │ ├── retry_linux.go │ │ ├── syscheck.go │ │ ├── syscheck_linux.go │ │ └── syscheck_windows.go │ ├── debug.md │ ├── doc.go │ ├── go.work │ ├── go.work.sum │ ├── iam/ │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── apiv1/ │ │ │ └── iampb/ │ │ │ ├── iam_policy.pb.go │ │ │ ├── iam_policy_grpc.pb.go │ │ │ ├── options.pb.go │ │ │ ├── policy.pb.go │ │ │ └── resource_policy_member.pb.go │ │ └── iam.go │ ├── internal/ │ │ ├── .repo-metadata-full.json │ │ ├── README.md │ │ ├── annotate.go │ │ ├── gen_info.sh │ │ ├── optional/ │ │ │ └── optional.go │ │ ├── retry.go │ │ ├── trace/ │ │ │ └── trace.go │ │ └── version/ │ │ ├── update_version.sh │ │ └── version.go │ ├── kms/ │ │ ├── LICENSE │ │ ├── apiv1/ │ │ │ ├── autokey_admin_client.go │ │ │ ├── autokey_client.go │ │ │ ├── auxiliary.go │ │ │ ├── auxiliary_go123.go │ │ │ ├── doc.go │ │ │ ├── ekm_client.go │ │ │ ├── gapic_metadata.json │ │ │ ├── helpers.go │ │ │ ├── iam.go │ │ │ ├── key_management_client.go │ │ │ ├── kmspb/ │ │ │ │ ├── autokey.pb.go │ │ │ │ ├── autokey_admin.pb.go │ │ │ │ ├── ekm_service.pb.go │ │ │ │ ├── resources.pb.go │ │ │ │ └── service.pb.go │ │ │ └── version.go │ │ └── internal/ │ │ └── version.go │ ├── longrunning/ │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── autogen/ │ │ │ ├── auxiliary.go │ │ │ ├── auxiliary_go123.go │ │ │ ├── doc.go │ │ │ ├── from_conn.go │ │ │ ├── gapic_metadata.json │ │ │ ├── helpers.go │ │ │ ├── info.go │ │ │ ├── longrunningpb/ │ │ │ │ └── operations.pb.go │ │ │ └── operations_client.go │ │ ├── longrunning.go │ │ └── tidyfix.go │ ├── migration.md │ ├── monitoring/ │ │ ├── LICENSE │ │ ├── apiv3/ │ │ │ └── v2/ │ │ │ ├── alert_policy_client.go │ │ │ ├── auxiliary.go │ │ │ ├── auxiliary_go123.go │ │ │ ├── doc.go │ │ │ ├── gapic_metadata.json │ │ │ ├── group_client.go │ │ │ ├── helpers.go │ │ │ ├── metric_client.go │ │ │ ├── monitoringpb/ │ │ │ │ ├── alert.pb.go │ │ │ │ ├── alert_service.pb.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── dropped_labels.pb.go │ │ │ │ ├── group.pb.go │ │ │ │ ├── group_service.pb.go │ │ │ │ ├── metric.pb.go │ │ │ │ ├── metric_service.pb.go │ │ │ │ ├── mutation_record.pb.go │ │ │ │ ├── notification.pb.go │ │ │ │ ├── notification_service.pb.go │ │ │ │ ├── query_service.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── service_service.pb.go │ │ │ │ ├── snooze.pb.go │ │ │ │ ├── snooze_service.pb.go │ │ │ │ ├── span_context.pb.go │ │ │ │ ├── uptime.pb.go │ │ │ │ └── uptime_service.pb.go │ │ │ ├── notification_channel_client.go │ │ │ ├── query_client.go │ │ │ ├── service_monitoring_client.go │ │ │ ├── snooze_client.go │ │ │ ├── uptime_check_client.go │ │ │ └── version.go │ │ └── internal/ │ │ └── version.go │ ├── release-please-config-individual.json │ ├── release-please-config-yoshi-submodules.json │ ├── release-please-config.json │ ├── storage/ │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TESTING.md │ │ ├── acl.go │ │ ├── bucket.go │ │ ├── client.go │ │ ├── copy.go │ │ ├── doc.go │ │ ├── dynamic_delay.go │ │ ├── emulator_test.sh │ │ ├── experimental/ │ │ │ └── experimental.go │ │ ├── grpc_client.go │ │ ├── grpc_dp.go │ │ ├── grpc_metrics.go │ │ ├── grpc_reader.go │ │ ├── grpc_reader_multi_range.go │ │ ├── grpc_writer.go │ │ ├── hmac.go │ │ ├── http_client.go │ │ ├── iam.go │ │ ├── internal/ │ │ │ ├── apiv2/ │ │ │ │ ├── auxiliary.go │ │ │ │ ├── auxiliary_go123.go │ │ │ │ ├── doc.go │ │ │ │ ├── gapic_metadata.json │ │ │ │ ├── helpers.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storagepb/ │ │ │ │ │ └── storage.pb.go │ │ │ │ └── version.go │ │ │ ├── experimental.go │ │ │ └── version.go │ │ ├── invoke.go │ │ ├── notifications.go │ │ ├── option.go │ │ ├── post_policy_v4.go │ │ ├── reader.go │ │ ├── storage.go │ │ ├── storage.replay │ │ ├── trace.go │ │ └── writer.go │ └── testing.md ├── github.com/ │ ├── 4meepo/ │ │ └── tagalign/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── options.go │ │ └── tagalign.go │ ├── Abirdcfly/ │ │ └── dupword/ │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dupword.go │ │ └── version.go │ ├── AlecAivazis/ │ │ └── survey/ │ │ └── v2/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── confirm.go │ │ ├── core/ │ │ │ ├── template.go │ │ │ └── write.go │ │ ├── editor.go │ │ ├── filter.go │ │ ├── input.go │ │ ├── multiline.go │ │ ├── multiselect.go │ │ ├── password.go │ │ ├── renderer.go │ │ ├── select.go │ │ ├── survey.go │ │ ├── terminal/ │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── buffered_reader.go │ │ │ ├── cursor.go │ │ │ ├── cursor_windows.go │ │ │ ├── display.go │ │ │ ├── display_posix.go │ │ │ ├── display_windows.go │ │ │ ├── error.go │ │ │ ├── output.go │ │ │ ├── output_windows.go │ │ │ ├── runereader.go │ │ │ ├── runereader_bsd.go │ │ │ ├── runereader_linux.go │ │ │ ├── runereader_posix.go │ │ │ ├── runereader_ppc64le.go │ │ │ ├── runereader_windows.go │ │ │ ├── sequences.go │ │ │ ├── stdio.go │ │ │ ├── syscall_windows.go │ │ │ └── terminal.go │ │ ├── transform.go │ │ └── validate.go │ ├── Antonboom/ │ │ ├── errname/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ └── analyzer/ │ │ │ ├── analyzer.go │ │ │ └── facts.go │ │ ├── nilnil/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ └── analyzer/ │ │ │ ├── analyzer.go │ │ │ ├── config.go │ │ │ └── func_type_stack.go │ │ └── testifylint/ │ │ ├── LICENSE │ │ ├── analyzer/ │ │ │ ├── analyzer.go │ │ │ └── checkers_factory.go │ │ └── internal/ │ │ ├── analysisutil/ │ │ │ ├── doc.go │ │ │ ├── encoded.go │ │ │ ├── file.go │ │ │ ├── format.go │ │ │ ├── object.go │ │ │ └── pkg.go │ │ ├── checkers/ │ │ │ ├── blank_import.go │ │ │ ├── bool_compare.go │ │ │ ├── call_meta.go │ │ │ ├── checker.go │ │ │ ├── checkers_registry.go │ │ │ ├── compares.go │ │ │ ├── contains.go │ │ │ ├── empty.go │ │ │ ├── encoded_compare.go │ │ │ ├── error_is_as.go │ │ │ ├── error_nil.go │ │ │ ├── expected_actual.go │ │ │ ├── float_compare.go │ │ │ ├── formatter.go │ │ │ ├── go_require.go │ │ │ ├── helpers.go │ │ │ ├── helpers_basic_type.go │ │ │ ├── helpers_bool.go │ │ │ ├── helpers_comparison.go │ │ │ ├── helpers_context.go │ │ │ ├── helpers_diagnostic.go │ │ │ ├── helpers_encoded.go │ │ │ ├── helpers_error.go │ │ │ ├── helpers_format.go │ │ │ ├── helpers_http.go │ │ │ ├── helpers_interface.go │ │ │ ├── helpers_len.go │ │ │ ├── helpers_naming.go │ │ │ ├── helpers_nil.go │ │ │ ├── helpers_pkg_func.go │ │ │ ├── helpers_suite.go │ │ │ ├── helpers_testing.go │ │ │ ├── len.go │ │ │ ├── negative_positive.go │ │ │ ├── nil_compare.go │ │ │ ├── printf/ │ │ │ │ ├── LICENSE │ │ │ │ ├── doc.go │ │ │ │ └── printf.go │ │ │ ├── regexp.go │ │ │ ├── require_error.go │ │ │ ├── suite_broken_parallel.go │ │ │ ├── suite_dont_use_pkg.go │ │ │ ├── suite_extra_assert_call.go │ │ │ ├── suite_subtest_run.go │ │ │ ├── suite_thelper.go │ │ │ └── useless_assert.go │ │ ├── config/ │ │ │ ├── config.go │ │ │ └── flag_value_types.go │ │ └── testify/ │ │ └── const.go │ ├── Azure/ │ │ ├── azure-sdk-for-go/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── profiles/ │ │ │ │ ├── 2018-03-01/ │ │ │ │ │ ├── dns/ │ │ │ │ │ │ └── mgmt/ │ │ │ │ │ │ └── dns/ │ │ │ │ │ │ └── models.go │ │ │ │ │ └── resources/ │ │ │ │ │ └── mgmt/ │ │ │ │ │ ├── resources/ │ │ │ │ │ │ └── models.go │ │ │ │ │ └── subscriptions/ │ │ │ │ │ └── models.go │ │ │ │ ├── 2020-09-01/ │ │ │ │ │ └── network/ │ │ │ │ │ └── mgmt/ │ │ │ │ │ └── network/ │ │ │ │ │ └── models.go │ │ │ │ └── latest/ │ │ │ │ ├── compute/ │ │ │ │ │ └── mgmt/ │ │ │ │ │ └── compute/ │ │ │ │ │ └── models.go │ │ │ │ └── marketplaceordering/ │ │ │ │ └── mgmt/ │ │ │ │ └── marketplaceordering/ │ │ │ │ └── models.go │ │ │ ├── sdk/ │ │ │ │ ├── azcore/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── arm/ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── internal/ │ │ │ │ │ │ │ └── resource/ │ │ │ │ │ │ │ ├── resource_identifier.go │ │ │ │ │ │ │ └── resource_type.go │ │ │ │ │ │ ├── policy/ │ │ │ │ │ │ │ └── policy.go │ │ │ │ │ │ ├── resource_identifier.go │ │ │ │ │ │ ├── resource_type.go │ │ │ │ │ │ └── runtime/ │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── policy_bearer_token.go │ │ │ │ │ │ ├── policy_register_rp.go │ │ │ │ │ │ ├── policy_trace_namespace.go │ │ │ │ │ │ └── runtime.go │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── cloud/ │ │ │ │ │ │ ├── cloud.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── core.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── etag.go │ │ │ │ │ ├── internal/ │ │ │ │ │ │ ├── exported/ │ │ │ │ │ │ │ ├── exported.go │ │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ │ ├── request.go │ │ │ │ │ │ │ └── response_error.go │ │ │ │ │ │ ├── log/ │ │ │ │ │ │ │ └── log.go │ │ │ │ │ │ ├── pollers/ │ │ │ │ │ │ │ ├── async/ │ │ │ │ │ │ │ │ └── async.go │ │ │ │ │ │ │ ├── body/ │ │ │ │ │ │ │ │ └── body.go │ │ │ │ │ │ │ ├── fake/ │ │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ │ ├── loc/ │ │ │ │ │ │ │ │ └── loc.go │ │ │ │ │ │ │ ├── op/ │ │ │ │ │ │ │ │ └── op.go │ │ │ │ │ │ │ ├── poller.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ └── shared.go │ │ │ │ │ ├── log/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── log.go │ │ │ │ │ ├── policy/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── policy.go │ │ │ │ │ ├── runtime/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── pager.go │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── policy_api_version.go │ │ │ │ │ │ ├── policy_bearer_token.go │ │ │ │ │ │ ├── policy_body_download.go │ │ │ │ │ │ ├── policy_http_header.go │ │ │ │ │ │ ├── policy_http_trace.go │ │ │ │ │ │ ├── policy_include_response.go │ │ │ │ │ │ ├── policy_key_credential.go │ │ │ │ │ │ ├── policy_logging.go │ │ │ │ │ │ ├── policy_request_id.go │ │ │ │ │ │ ├── policy_retry.go │ │ │ │ │ │ ├── policy_sas_credential.go │ │ │ │ │ │ ├── policy_telemetry.go │ │ │ │ │ │ ├── poller.go │ │ │ │ │ │ ├── request.go │ │ │ │ │ │ ├── response.go │ │ │ │ │ │ ├── transport_default_dialer_other.go │ │ │ │ │ │ ├── transport_default_dialer_wasm.go │ │ │ │ │ │ └── transport_default_http_client.go │ │ │ │ │ ├── streaming/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── progress.go │ │ │ │ │ ├── to/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── to.go │ │ │ │ │ └── tracing/ │ │ │ │ │ ├── constants.go │ │ │ │ │ └── tracing.go │ │ │ │ ├── azidentity/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── BREAKING_CHANGES.md │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── MIGRATION.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── TOKEN_CACHING.MD │ │ │ │ │ ├── TROUBLESHOOTING.md │ │ │ │ │ ├── assets.json │ │ │ │ │ ├── authentication_record.go │ │ │ │ │ ├── azidentity.go │ │ │ │ │ ├── azure_cli_credential.go │ │ │ │ │ ├── azure_developer_cli_credential.go │ │ │ │ │ ├── azure_pipelines_credential.go │ │ │ │ │ ├── azure_powershell_credential.go │ │ │ │ │ ├── chained_token_credential.go │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── client_assertion_credential.go │ │ │ │ │ ├── client_certificate_credential.go │ │ │ │ │ ├── client_secret_credential.go │ │ │ │ │ ├── confidential_client.go │ │ │ │ │ ├── default_azure_credential.go │ │ │ │ │ ├── developer_credential_util.go │ │ │ │ │ ├── device_code_credential.go │ │ │ │ │ ├── environment_credential.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── go.work │ │ │ │ │ ├── interactive_browser_credential.go │ │ │ │ │ ├── internal/ │ │ │ │ │ │ └── cache.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── managed-identity-matrix.json │ │ │ │ │ ├── managed_identity_client.go │ │ │ │ │ ├── managed_identity_credential.go │ │ │ │ │ ├── on_behalf_of_credential.go │ │ │ │ │ ├── public_client.go │ │ │ │ │ ├── test-resources-post.ps1 │ │ │ │ │ ├── test-resources-pre.ps1 │ │ │ │ │ ├── test-resources.bicep │ │ │ │ │ ├── username_password_credential.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── workload_identity.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── diag/ │ │ │ │ │ │ ├── diag.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── errorinfo/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── errorinfo.go │ │ │ │ │ ├── exported/ │ │ │ │ │ │ └── exported.go │ │ │ │ │ ├── log/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── log.go │ │ │ │ │ ├── poller/ │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── temporal/ │ │ │ │ │ │ └── resource.go │ │ │ │ │ └── uuid/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── uuid.go │ │ │ │ └── resourcemanager/ │ │ │ │ ├── compute/ │ │ │ │ │ └── armcompute/ │ │ │ │ │ └── v5/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets.json │ │ │ │ │ ├── autorest.md │ │ │ │ │ ├── availabilitysets_client.go │ │ │ │ │ ├── build.go │ │ │ │ │ ├── capacityreservationgroups_client.go │ │ │ │ │ ├── capacityreservations_client.go │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── client_factory.go │ │ │ │ │ ├── cloudserviceoperatingsystems_client.go │ │ │ │ │ ├── cloudserviceroleinstances_client.go │ │ │ │ │ ├── cloudserviceroles_client.go │ │ │ │ │ ├── cloudservices_client.go │ │ │ │ │ ├── cloudservicesupdatedomain_client.go │ │ │ │ │ ├── communitygalleries_client.go │ │ │ │ │ ├── communitygalleryimages_client.go │ │ │ │ │ ├── communitygalleryimageversions_client.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── dedicatedhostgroups_client.go │ │ │ │ │ ├── dedicatedhosts_client.go │ │ │ │ │ ├── diskaccesses_client.go │ │ │ │ │ ├── diskencryptionsets_client.go │ │ │ │ │ ├── diskrestorepoint_client.go │ │ │ │ │ ├── disks_client.go │ │ │ │ │ ├── galleries_client.go │ │ │ │ │ ├── galleryapplications_client.go │ │ │ │ │ ├── galleryapplicationversions_client.go │ │ │ │ │ ├── galleryimages_client.go │ │ │ │ │ ├── galleryimageversions_client.go │ │ │ │ │ ├── gallerysharingprofile_client.go │ │ │ │ │ ├── images_client.go │ │ │ │ │ ├── loganalytics_client.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── models_serde.go │ │ │ │ │ ├── operations_client.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── proximityplacementgroups_client.go │ │ │ │ │ ├── resourceskus_client.go │ │ │ │ │ ├── responses.go │ │ │ │ │ ├── restorepointcollections_client.go │ │ │ │ │ ├── restorepoints_client.go │ │ │ │ │ ├── sharedgalleries_client.go │ │ │ │ │ ├── sharedgalleryimages_client.go │ │ │ │ │ ├── sharedgalleryimageversions_client.go │ │ │ │ │ ├── snapshots_client.go │ │ │ │ │ ├── sshpublickeys_client.go │ │ │ │ │ ├── time_rfc3339.go │ │ │ │ │ ├── usage_client.go │ │ │ │ │ ├── virtualmachineextensionimages_client.go │ │ │ │ │ ├── virtualmachineextensions_client.go │ │ │ │ │ ├── virtualmachineimages_client.go │ │ │ │ │ ├── virtualmachineimagesedgezone_client.go │ │ │ │ │ ├── virtualmachineruncommands_client.go │ │ │ │ │ ├── virtualmachines_client.go │ │ │ │ │ ├── virtualmachinescalesetextensions_client.go │ │ │ │ │ ├── virtualmachinescalesetrollingupgrades_client.go │ │ │ │ │ ├── virtualmachinescalesets_client.go │ │ │ │ │ ├── virtualmachinescalesetvmextensions_client.go │ │ │ │ │ ├── virtualmachinescalesetvmruncommands_client.go │ │ │ │ │ ├── virtualmachinescalesetvms_client.go │ │ │ │ │ └── virtualmachinesizes_client.go │ │ │ │ ├── network/ │ │ │ │ │ └── armnetwork/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── adminrulecollections_client.go │ │ │ │ │ ├── adminrules_client.go │ │ │ │ │ ├── applicationgatewayprivateendpointconnections_client.go │ │ │ │ │ ├── applicationgatewayprivatelinkresources_client.go │ │ │ │ │ ├── applicationgateways_client.go │ │ │ │ │ ├── applicationsecuritygroups_client.go │ │ │ │ │ ├── autorest.md │ │ │ │ │ ├── availabledelegations_client.go │ │ │ │ │ ├── availableendpointservices_client.go │ │ │ │ │ ├── availableprivateendpointtypes_client.go │ │ │ │ │ ├── availableresourcegroupdelegations_client.go │ │ │ │ │ ├── availableservicealiases_client.go │ │ │ │ │ ├── azurefirewallfqdntags_client.go │ │ │ │ │ ├── azurefirewalls_client.go │ │ │ │ │ ├── bastionhosts_client.go │ │ │ │ │ ├── bgpservicecommunities_client.go │ │ │ │ │ ├── build.go │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── configurationpolicygroups_client.go │ │ │ │ │ ├── connectionmonitors_client.go │ │ │ │ │ ├── connectivityconfigurations_client.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── customipprefixes_client.go │ │ │ │ │ ├── ddoscustompolicies_client.go │ │ │ │ │ ├── ddosprotectionplans_client.go │ │ │ │ │ ├── defaultsecurityrules_client.go │ │ │ │ │ ├── dscpconfiguration_client.go │ │ │ │ │ ├── expressroutecircuitauthorizations_client.go │ │ │ │ │ ├── expressroutecircuitconnections_client.go │ │ │ │ │ ├── expressroutecircuitpeerings_client.go │ │ │ │ │ ├── expressroutecircuits_client.go │ │ │ │ │ ├── expressrouteconnections_client.go │ │ │ │ │ ├── expressroutecrossconnectionpeerings_client.go │ │ │ │ │ ├── expressroutecrossconnections_client.go │ │ │ │ │ ├── expressroutegateways_client.go │ │ │ │ │ ├── expressroutelinks_client.go │ │ │ │ │ ├── expressrouteportauthorizations_client.go │ │ │ │ │ ├── expressrouteports_client.go │ │ │ │ │ ├── expressrouteportslocations_client.go │ │ │ │ │ ├── expressrouteproviderportslocation_client.go │ │ │ │ │ ├── expressrouteserviceproviders_client.go │ │ │ │ │ ├── firewallpolicies_client.go │ │ │ │ │ ├── firewallpolicyidpssignatures_client.go │ │ │ │ │ ├── firewallpolicyidpssignaturesfiltervalues_client.go │ │ │ │ │ ├── firewallpolicyidpssignaturesoverrides_client.go │ │ │ │ │ ├── firewallpolicyrulecollectiongroups_client.go │ │ │ │ │ ├── flowlogs_client.go │ │ │ │ │ ├── groups_client.go │ │ │ │ │ ├── hubroutetables_client.go │ │ │ │ │ ├── hubvirtualnetworkconnections_client.go │ │ │ │ │ ├── inboundnatrules_client.go │ │ │ │ │ ├── inboundsecurityrule_client.go │ │ │ │ │ ├── interfaceipconfigurations_client.go │ │ │ │ │ ├── interfaceloadbalancers_client.go │ │ │ │ │ ├── interfaces_client.go │ │ │ │ │ ├── interfacetapconfigurations_client.go │ │ │ │ │ ├── ipallocations_client.go │ │ │ │ │ ├── ipgroups_client.go │ │ │ │ │ ├── loadbalancerbackendaddresspools_client.go │ │ │ │ │ ├── loadbalancerfrontendipconfigurations_client.go │ │ │ │ │ ├── loadbalancerloadbalancingrules_client.go │ │ │ │ │ ├── loadbalancernetworkinterfaces_client.go │ │ │ │ │ ├── loadbalanceroutboundrules_client.go │ │ │ │ │ ├── loadbalancerprobes_client.go │ │ │ │ │ ├── loadbalancers_client.go │ │ │ │ │ ├── localnetworkgateways_client.go │ │ │ │ │ ├── management_client.go │ │ │ │ │ ├── managementgroupnetworkmanagerconnections_client.go │ │ │ │ │ ├── managercommits_client.go │ │ │ │ │ ├── managerdeploymentstatus_client.go │ │ │ │ │ ├── managers_client.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── models_serde.go │ │ │ │ │ ├── natgateways_client.go │ │ │ │ │ ├── natrules_client.go │ │ │ │ │ ├── operations_client.go │ │ │ │ │ ├── p2svpngateways_client.go │ │ │ │ │ ├── packetcaptures_client.go │ │ │ │ │ ├── peerexpressroutecircuitconnections_client.go │ │ │ │ │ ├── polymorphic_helpers.go │ │ │ │ │ ├── privatednszonegroups_client.go │ │ │ │ │ ├── privateendpoints_client.go │ │ │ │ │ ├── privatelinkservices_client.go │ │ │ │ │ ├── profiles_client.go │ │ │ │ │ ├── publicipaddresses_client.go │ │ │ │ │ ├── publicipprefixes_client.go │ │ │ │ │ ├── resourcenavigationlinks_client.go │ │ │ │ │ ├── response_types.go │ │ │ │ │ ├── routefilterrules_client.go │ │ │ │ │ ├── routefilters_client.go │ │ │ │ │ ├── routes_client.go │ │ │ │ │ ├── routetables_client.go │ │ │ │ │ ├── routingintent_client.go │ │ │ │ │ ├── scopeconnections_client.go │ │ │ │ │ ├── securityadminconfigurations_client.go │ │ │ │ │ ├── securitygroups_client.go │ │ │ │ │ ├── securitypartnerproviders_client.go │ │ │ │ │ ├── securityrules_client.go │ │ │ │ │ ├── serviceassociationlinks_client.go │ │ │ │ │ ├── serviceendpointpolicies_client.go │ │ │ │ │ ├── serviceendpointpolicydefinitions_client.go │ │ │ │ │ ├── servicetaginformation_client.go │ │ │ │ │ ├── servicetags_client.go │ │ │ │ │ ├── staticmembers_client.go │ │ │ │ │ ├── subnets_client.go │ │ │ │ │ ├── subscriptionnetworkmanagerconnections_client.go │ │ │ │ │ ├── time_rfc3339.go │ │ │ │ │ ├── usages_client.go │ │ │ │ │ ├── v2/ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── adminrulecollections_client.go │ │ │ │ │ │ ├── adminrules_client.go │ │ │ │ │ │ ├── applicationgatewayprivateendpointconnections_client.go │ │ │ │ │ │ ├── applicationgatewayprivatelinkresources_client.go │ │ │ │ │ │ ├── applicationgateways_client.go │ │ │ │ │ │ ├── applicationgatewaywafdynamicmanifests_client.go │ │ │ │ │ │ ├── applicationgatewaywafdynamicmanifestsdefault_client.go │ │ │ │ │ │ ├── applicationsecuritygroups_client.go │ │ │ │ │ │ ├── assets.json │ │ │ │ │ │ ├── autorest.md │ │ │ │ │ │ ├── availabledelegations_client.go │ │ │ │ │ │ ├── availableendpointservices_client.go │ │ │ │ │ │ ├── availableprivateendpointtypes_client.go │ │ │ │ │ │ ├── availableresourcegroupdelegations_client.go │ │ │ │ │ │ ├── availableservicealiases_client.go │ │ │ │ │ │ ├── azurefirewallfqdntags_client.go │ │ │ │ │ │ ├── azurefirewalls_client.go │ │ │ │ │ │ ├── bastionhosts_client.go │ │ │ │ │ │ ├── bgpservicecommunities_client.go │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── ci.yml │ │ │ │ │ │ ├── client_factory.go │ │ │ │ │ │ ├── configurationpolicygroups_client.go │ │ │ │ │ │ ├── connectionmonitors_client.go │ │ │ │ │ │ ├── connectivityconfigurations_client.go │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── customipprefixes_client.go │ │ │ │ │ │ ├── ddoscustompolicies_client.go │ │ │ │ │ │ ├── ddosprotectionplans_client.go │ │ │ │ │ │ ├── defaultsecurityrules_client.go │ │ │ │ │ │ ├── dscpconfiguration_client.go │ │ │ │ │ │ ├── expressroutecircuitauthorizations_client.go │ │ │ │ │ │ ├── expressroutecircuitconnections_client.go │ │ │ │ │ │ ├── expressroutecircuitpeerings_client.go │ │ │ │ │ │ ├── expressroutecircuits_client.go │ │ │ │ │ │ ├── expressrouteconnections_client.go │ │ │ │ │ │ ├── expressroutecrossconnectionpeerings_client.go │ │ │ │ │ │ ├── expressroutecrossconnections_client.go │ │ │ │ │ │ ├── expressroutegateways_client.go │ │ │ │ │ │ ├── expressroutelinks_client.go │ │ │ │ │ │ ├── expressrouteportauthorizations_client.go │ │ │ │ │ │ ├── expressrouteports_client.go │ │ │ │ │ │ ├── expressrouteportslocations_client.go │ │ │ │ │ │ ├── expressrouteproviderportslocation_client.go │ │ │ │ │ │ ├── expressrouteserviceproviders_client.go │ │ │ │ │ │ ├── firewallpolicies_client.go │ │ │ │ │ │ ├── firewallpolicyidpssignatures_client.go │ │ │ │ │ │ ├── firewallpolicyidpssignaturesfiltervalues_client.go │ │ │ │ │ │ ├── firewallpolicyidpssignaturesoverrides_client.go │ │ │ │ │ │ ├── firewallpolicyrulecollectiongroups_client.go │ │ │ │ │ │ ├── flowlogs_client.go │ │ │ │ │ │ ├── groups_client.go │ │ │ │ │ │ ├── hubroutetables_client.go │ │ │ │ │ │ ├── hubvirtualnetworkconnections_client.go │ │ │ │ │ │ ├── inboundnatrules_client.go │ │ │ │ │ │ ├── inboundsecurityrule_client.go │ │ │ │ │ │ ├── interfaceipconfigurations_client.go │ │ │ │ │ │ ├── interfaceloadbalancers_client.go │ │ │ │ │ │ ├── interfaces_client.go │ │ │ │ │ │ ├── interfacetapconfigurations_client.go │ │ │ │ │ │ ├── ipallocations_client.go │ │ │ │ │ │ ├── ipgroups_client.go │ │ │ │ │ │ ├── loadbalancerbackendaddresspools_client.go │ │ │ │ │ │ ├── loadbalancerfrontendipconfigurations_client.go │ │ │ │ │ │ ├── loadbalancerloadbalancingrules_client.go │ │ │ │ │ │ ├── loadbalancernetworkinterfaces_client.go │ │ │ │ │ │ ├── loadbalanceroutboundrules_client.go │ │ │ │ │ │ ├── loadbalancerprobes_client.go │ │ │ │ │ │ ├── loadbalancers_client.go │ │ │ │ │ │ ├── localnetworkgateways_client.go │ │ │ │ │ │ ├── management_client.go │ │ │ │ │ │ ├── managementgroupnetworkmanagerconnections_client.go │ │ │ │ │ │ ├── managercommits_client.go │ │ │ │ │ │ ├── managerdeploymentstatus_client.go │ │ │ │ │ │ ├── managers_client.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── models_serde.go │ │ │ │ │ │ ├── natgateways_client.go │ │ │ │ │ │ ├── natrules_client.go │ │ │ │ │ │ ├── operations_client.go │ │ │ │ │ │ ├── p2svpngateways_client.go │ │ │ │ │ │ ├── packetcaptures_client.go │ │ │ │ │ │ ├── peerexpressroutecircuitconnections_client.go │ │ │ │ │ │ ├── polymorphic_helpers.go │ │ │ │ │ │ ├── privatednszonegroups_client.go │ │ │ │ │ │ ├── privateendpoints_client.go │ │ │ │ │ │ ├── privatelinkservices_client.go │ │ │ │ │ │ ├── profiles_client.go │ │ │ │ │ │ ├── publicipaddresses_client.go │ │ │ │ │ │ ├── publicipprefixes_client.go │ │ │ │ │ │ ├── resourcenavigationlinks_client.go │ │ │ │ │ │ ├── response_types.go │ │ │ │ │ │ ├── routefilterrules_client.go │ │ │ │ │ │ ├── routefilters_client.go │ │ │ │ │ │ ├── routemaps_client.go │ │ │ │ │ │ ├── routes_client.go │ │ │ │ │ │ ├── routetables_client.go │ │ │ │ │ │ ├── routingintent_client.go │ │ │ │ │ │ ├── scopeconnections_client.go │ │ │ │ │ │ ├── securityadminconfigurations_client.go │ │ │ │ │ │ ├── securitygroups_client.go │ │ │ │ │ │ ├── securitypartnerproviders_client.go │ │ │ │ │ │ ├── securityrules_client.go │ │ │ │ │ │ ├── serviceassociationlinks_client.go │ │ │ │ │ │ ├── serviceendpointpolicies_client.go │ │ │ │ │ │ ├── serviceendpointpolicydefinitions_client.go │ │ │ │ │ │ ├── servicetaginformation_client.go │ │ │ │ │ │ ├── servicetags_client.go │ │ │ │ │ │ ├── staticmembers_client.go │ │ │ │ │ │ ├── subnets_client.go │ │ │ │ │ │ ├── subscriptionnetworkmanagerconnections_client.go │ │ │ │ │ │ ├── time_rfc3339.go │ │ │ │ │ │ ├── usages_client.go │ │ │ │ │ │ ├── vipswap_client.go │ │ │ │ │ │ ├── virtualappliances_client.go │ │ │ │ │ │ ├── virtualappliancesites_client.go │ │ │ │ │ │ ├── virtualapplianceskus_client.go │ │ │ │ │ │ ├── virtualhubbgpconnection_client.go │ │ │ │ │ │ ├── virtualhubbgpconnections_client.go │ │ │ │ │ │ ├── virtualhubipconfiguration_client.go │ │ │ │ │ │ ├── virtualhubroutetablev2s_client.go │ │ │ │ │ │ ├── virtualhubs_client.go │ │ │ │ │ │ ├── virtualnetworkgatewayconnections_client.go │ │ │ │ │ │ ├── virtualnetworkgatewaynatrules_client.go │ │ │ │ │ │ ├── virtualnetworkgateways_client.go │ │ │ │ │ │ ├── virtualnetworkpeerings_client.go │ │ │ │ │ │ ├── virtualnetworks_client.go │ │ │ │ │ │ ├── virtualnetworktaps_client.go │ │ │ │ │ │ ├── virtualrouterpeerings_client.go │ │ │ │ │ │ ├── virtualrouters_client.go │ │ │ │ │ │ ├── virtualwans_client.go │ │ │ │ │ │ ├── vpnconnections_client.go │ │ │ │ │ │ ├── vpngateways_client.go │ │ │ │ │ │ ├── vpnlinkconnections_client.go │ │ │ │ │ │ ├── vpnserverconfigurations_client.go │ │ │ │ │ │ ├── vpnserverconfigurationsassociatedwithvirtualwan_client.go │ │ │ │ │ │ ├── vpnsitelinkconnections_client.go │ │ │ │ │ │ ├── vpnsitelinks_client.go │ │ │ │ │ │ ├── vpnsites_client.go │ │ │ │ │ │ ├── vpnsitesconfiguration_client.go │ │ │ │ │ │ ├── watchers_client.go │ │ │ │ │ │ ├── webapplicationfirewallpolicies_client.go │ │ │ │ │ │ └── webcategories_client.go │ │ │ │ │ ├── virtualappliances_client.go │ │ │ │ │ ├── virtualappliancesites_client.go │ │ │ │ │ ├── virtualapplianceskus_client.go │ │ │ │ │ ├── virtualhubbgpconnection_client.go │ │ │ │ │ ├── virtualhubbgpconnections_client.go │ │ │ │ │ ├── virtualhubipconfiguration_client.go │ │ │ │ │ ├── virtualhubroutetablev2s_client.go │ │ │ │ │ ├── virtualhubs_client.go │ │ │ │ │ ├── virtualnetworkgatewayconnections_client.go │ │ │ │ │ ├── virtualnetworkgatewaynatrules_client.go │ │ │ │ │ ├── virtualnetworkgateways_client.go │ │ │ │ │ ├── virtualnetworkpeerings_client.go │ │ │ │ │ ├── virtualnetworks_client.go │ │ │ │ │ ├── virtualnetworktaps_client.go │ │ │ │ │ ├── virtualrouterpeerings_client.go │ │ │ │ │ ├── virtualrouters_client.go │ │ │ │ │ ├── virtualwans_client.go │ │ │ │ │ ├── vpnconnections_client.go │ │ │ │ │ ├── vpngateways_client.go │ │ │ │ │ ├── vpnlinkconnections_client.go │ │ │ │ │ ├── vpnserverconfigurations_client.go │ │ │ │ │ ├── vpnserverconfigurationsassociatedwithvirtualwan_client.go │ │ │ │ │ ├── vpnsitelinkconnections_client.go │ │ │ │ │ ├── vpnsitelinks_client.go │ │ │ │ │ ├── vpnsites_client.go │ │ │ │ │ ├── vpnsitesconfiguration_client.go │ │ │ │ │ ├── watchers_client.go │ │ │ │ │ ├── webapplicationfirewallpolicies_client.go │ │ │ │ │ └── webcategories_client.go │ │ │ │ ├── resourcegraph/ │ │ │ │ │ └── armresourcegraph/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── autorest.md │ │ │ │ │ ├── build.go │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_factory.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── models_serde.go │ │ │ │ │ ├── operations_client.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── polymorphic_helpers.go │ │ │ │ │ ├── response_types.go │ │ │ │ │ └── time_rfc3339.go │ │ │ │ ├── resources/ │ │ │ │ │ └── armresources/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets.json │ │ │ │ │ ├── autorest.md │ │ │ │ │ ├── build.go │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_factory.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── deploymentoperations_client.go │ │ │ │ │ ├── deployments_client.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── models_serde.go │ │ │ │ │ ├── operations_client.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── providerresourcetypes_client.go │ │ │ │ │ ├── providers_client.go │ │ │ │ │ ├── resourcegroups_client.go │ │ │ │ │ ├── response_types.go │ │ │ │ │ ├── tags_client.go │ │ │ │ │ └── time_rfc3339.go │ │ │ │ └── storage/ │ │ │ │ └── armstorage/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── accounts_client.go │ │ │ │ ├── assets.json │ │ │ │ ├── autorest.md │ │ │ │ ├── blobcontainers_client.go │ │ │ │ ├── blobinventorypolicies_client.go │ │ │ │ ├── blobservices_client.go │ │ │ │ ├── build.go │ │ │ │ ├── ci.yml │ │ │ │ ├── client_factory.go │ │ │ │ ├── constants.go │ │ │ │ ├── deletedaccounts_client.go │ │ │ │ ├── encryptionscopes_client.go │ │ │ │ ├── fileservices_client.go │ │ │ │ ├── fileshares_client.go │ │ │ │ ├── localusers_client.go │ │ │ │ ├── managementpolicies_client.go │ │ │ │ ├── models.go │ │ │ │ ├── models_serde.go │ │ │ │ ├── networksecurityperimeterconfigurations_client.go │ │ │ │ ├── objectreplicationpolicies_client.go │ │ │ │ ├── operations_client.go │ │ │ │ ├── options.go │ │ │ │ ├── privateendpointconnections_client.go │ │ │ │ ├── privatelinkresources_client.go │ │ │ │ ├── queue_client.go │ │ │ │ ├── queueservices_client.go │ │ │ │ ├── responses.go │ │ │ │ ├── skus_client.go │ │ │ │ ├── table_client.go │ │ │ │ ├── tableservices_client.go │ │ │ │ ├── taskassignmentinstancesreport_client.go │ │ │ │ ├── taskassignments_client.go │ │ │ │ ├── taskassignmentsinstancesreport_client.go │ │ │ │ ├── time_rfc1123.go │ │ │ │ ├── time_rfc3339.go │ │ │ │ └── usages_client.go │ │ │ ├── services/ │ │ │ │ ├── compute/ │ │ │ │ │ └── mgmt/ │ │ │ │ │ ├── 2019-12-01/ │ │ │ │ │ │ └── compute/ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ ├── availabilitysets.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── containerservices.go │ │ │ │ │ │ ├── dedicatedhostgroups.go │ │ │ │ │ │ ├── dedicatedhosts.go │ │ │ │ │ │ ├── diskencryptionsets.go │ │ │ │ │ │ ├── disks.go │ │ │ │ │ │ ├── enums.go │ │ │ │ │ │ ├── galleries.go │ │ │ │ │ │ ├── galleryapplications.go │ │ │ │ │ │ ├── galleryapplicationversions.go │ │ │ │ │ │ ├── galleryimages.go │ │ │ │ │ │ ├── galleryimageversions.go │ │ │ │ │ │ ├── images.go │ │ │ │ │ │ ├── loganalytics.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── operations.go │ │ │ │ │ │ ├── proximityplacementgroups.go │ │ │ │ │ │ ├── resourceskus.go │ │ │ │ │ │ ├── snapshots.go │ │ │ │ │ │ ├── sshpublickeys.go │ │ │ │ │ │ ├── usage.go │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ ├── virtualmachineextensionimages.go │ │ │ │ │ │ ├── virtualmachineextensions.go │ │ │ │ │ │ ├── virtualmachineimages.go │ │ │ │ │ │ ├── virtualmachineruncommands.go │ │ │ │ │ │ ├── virtualmachines.go │ │ │ │ │ │ ├── virtualmachinescalesetextensions.go │ │ │ │ │ │ ├── virtualmachinescalesetrollingupgrades.go │ │ │ │ │ │ ├── virtualmachinescalesets.go │ │ │ │ │ │ ├── virtualmachinescalesetvmextensions.go │ │ │ │ │ │ ├── virtualmachinescalesetvms.go │ │ │ │ │ │ └── virtualmachinesizes.go │ │ │ │ │ └── 2022-08-01/ │ │ │ │ │ └── compute/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── availabilitysets.go │ │ │ │ │ ├── capacityreservationgroups.go │ │ │ │ │ ├── capacityreservations.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── cloudserviceoperatingsystems.go │ │ │ │ │ ├── cloudserviceroleinstances.go │ │ │ │ │ ├── cloudserviceroles.go │ │ │ │ │ ├── cloudservices.go │ │ │ │ │ ├── cloudservicesupdatedomain.go │ │ │ │ │ ├── communitygalleries.go │ │ │ │ │ ├── communitygalleryimages.go │ │ │ │ │ ├── communitygalleryimageversions.go │ │ │ │ │ ├── dedicatedhostgroups.go │ │ │ │ │ ├── dedicatedhosts.go │ │ │ │ │ ├── diskaccesses.go │ │ │ │ │ ├── diskencryptionsets.go │ │ │ │ │ ├── diskrestorepoint.go │ │ │ │ │ ├── disks.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── galleries.go │ │ │ │ │ ├── galleryapplications.go │ │ │ │ │ ├── galleryapplicationversions.go │ │ │ │ │ ├── galleryimages.go │ │ │ │ │ ├── galleryimageversions.go │ │ │ │ │ ├── gallerysharingprofile.go │ │ │ │ │ ├── images.go │ │ │ │ │ ├── loganalytics.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── operations.go │ │ │ │ │ ├── proximityplacementgroups.go │ │ │ │ │ ├── resourceskus.go │ │ │ │ │ ├── restorepointcollections.go │ │ │ │ │ ├── restorepoints.go │ │ │ │ │ ├── sharedgalleries.go │ │ │ │ │ ├── sharedgalleryimages.go │ │ │ │ │ ├── sharedgalleryimageversions.go │ │ │ │ │ ├── snapshots.go │ │ │ │ │ ├── sshpublickeys.go │ │ │ │ │ ├── usage.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── virtualmachineextensionimages.go │ │ │ │ │ ├── virtualmachineextensions.go │ │ │ │ │ ├── virtualmachineimages.go │ │ │ │ │ ├── virtualmachineimagesedgezone.go │ │ │ │ │ ├── virtualmachineruncommands.go │ │ │ │ │ ├── virtualmachines.go │ │ │ │ │ ├── virtualmachinescalesetextensions.go │ │ │ │ │ ├── virtualmachinescalesetrollingupgrades.go │ │ │ │ │ ├── virtualmachinescalesets.go │ │ │ │ │ ├── virtualmachinescalesetvmextensions.go │ │ │ │ │ ├── virtualmachinescalesetvmruncommands.go │ │ │ │ │ ├── virtualmachinescalesetvms.go │ │ │ │ │ └── virtualmachinesizes.go │ │ │ │ ├── dns/ │ │ │ │ │ └── mgmt/ │ │ │ │ │ ├── 2016-04-01/ │ │ │ │ │ │ └── dns/ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── enums.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── recordsets.go │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ └── zones.go │ │ │ │ │ └── 2018-05-01/ │ │ │ │ │ └── dns/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── client.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── recordsets.go │ │ │ │ │ ├── resourcereference.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── zones.go │ │ │ │ ├── marketplaceordering/ │ │ │ │ │ └── mgmt/ │ │ │ │ │ └── 2015-06-01/ │ │ │ │ │ └── marketplaceordering/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── client.go │ │ │ │ │ ├── marketplaceagreements.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── operations.go │ │ │ │ │ └── version.go │ │ │ │ ├── network/ │ │ │ │ │ └── mgmt/ │ │ │ │ │ └── 2018-11-01/ │ │ │ │ │ └── network/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── applicationgateways.go │ │ │ │ │ ├── applicationsecuritygroups.go │ │ │ │ │ ├── availabledelegations.go │ │ │ │ │ ├── availableendpointservices.go │ │ │ │ │ ├── availableresourcegroupdelegations.go │ │ │ │ │ ├── azurefirewallfqdntags.go │ │ │ │ │ ├── azurefirewalls.go │ │ │ │ │ ├── bgpservicecommunities.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── connectionmonitors.go │ │ │ │ │ ├── ddoscustompolicies.go │ │ │ │ │ ├── ddosprotectionplans.go │ │ │ │ │ ├── defaultsecurityrules.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── expressroutecircuitauthorizations.go │ │ │ │ │ ├── expressroutecircuitconnections.go │ │ │ │ │ ├── expressroutecircuitpeerings.go │ │ │ │ │ ├── expressroutecircuits.go │ │ │ │ │ ├── expressrouteconnections.go │ │ │ │ │ ├── expressroutecrossconnectionpeerings.go │ │ │ │ │ ├── expressroutecrossconnections.go │ │ │ │ │ ├── expressroutegateways.go │ │ │ │ │ ├── expressroutelinks.go │ │ │ │ │ ├── expressrouteports.go │ │ │ │ │ ├── expressrouteportslocations.go │ │ │ │ │ ├── expressrouteserviceproviders.go │ │ │ │ │ ├── hubvirtualnetworkconnections.go │ │ │ │ │ ├── inboundnatrules.go │ │ │ │ │ ├── interfaceendpoints.go │ │ │ │ │ ├── interfaceipconfigurations.go │ │ │ │ │ ├── interfaceloadbalancers.go │ │ │ │ │ ├── interfacesgroup.go │ │ │ │ │ ├── interfacetapconfigurations.go │ │ │ │ │ ├── loadbalancerbackendaddresspools.go │ │ │ │ │ ├── loadbalancerfrontendipconfigurations.go │ │ │ │ │ ├── loadbalancerloadbalancingrules.go │ │ │ │ │ ├── loadbalancernetworkinterfaces.go │ │ │ │ │ ├── loadbalanceroutboundrules.go │ │ │ │ │ ├── loadbalancerprobes.go │ │ │ │ │ ├── loadbalancers.go │ │ │ │ │ ├── localnetworkgateways.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── operations.go │ │ │ │ │ ├── p2svpngateways.go │ │ │ │ │ ├── p2svpnserverconfigurations.go │ │ │ │ │ ├── packetcaptures.go │ │ │ │ │ ├── profiles.go │ │ │ │ │ ├── publicipaddresses.go │ │ │ │ │ ├── publicipprefixes.go │ │ │ │ │ ├── routefilterrules.go │ │ │ │ │ ├── routefilters.go │ │ │ │ │ ├── routes.go │ │ │ │ │ ├── routetables.go │ │ │ │ │ ├── securitygroups.go │ │ │ │ │ ├── securityrules.go │ │ │ │ │ ├── serviceendpointpolicies.go │ │ │ │ │ ├── serviceendpointpolicydefinitions.go │ │ │ │ │ ├── subnets.go │ │ │ │ │ ├── usages.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── virtualhubs.go │ │ │ │ │ ├── virtualnetworkgatewayconnections.go │ │ │ │ │ ├── virtualnetworkgateways.go │ │ │ │ │ ├── virtualnetworkpeerings.go │ │ │ │ │ ├── virtualnetworks.go │ │ │ │ │ ├── virtualnetworktaps.go │ │ │ │ │ ├── virtualwans.go │ │ │ │ │ ├── vpnconnections.go │ │ │ │ │ ├── vpngateways.go │ │ │ │ │ ├── vpnsites.go │ │ │ │ │ ├── vpnsitesconfiguration.go │ │ │ │ │ └── watchers.go │ │ │ │ ├── preview/ │ │ │ │ │ └── dns/ │ │ │ │ │ └── mgmt/ │ │ │ │ │ └── 2018-03-01-preview/ │ │ │ │ │ └── dns/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── client.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── recordsets.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── zones.go │ │ │ │ ├── privatedns/ │ │ │ │ │ └── mgmt/ │ │ │ │ │ └── 2018-09-01/ │ │ │ │ │ └── privatedns/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── client.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── privatezones.go │ │ │ │ │ ├── recordsets.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── virtualnetworklinks.go │ │ │ │ └── resources/ │ │ │ │ └── mgmt/ │ │ │ │ ├── 2016-06-01/ │ │ │ │ │ └── subscriptions/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── client.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── operations.go │ │ │ │ │ ├── subscriptions.go │ │ │ │ │ ├── tenants.go │ │ │ │ │ └── version.go │ │ │ │ ├── 2018-02-01/ │ │ │ │ │ └── resources/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── client.go │ │ │ │ │ ├── deploymentoperations.go │ │ │ │ │ ├── deployments.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── groups.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── providers.go │ │ │ │ │ ├── resources.go │ │ │ │ │ ├── tags.go │ │ │ │ │ └── version.go │ │ │ │ └── 2018-05-01/ │ │ │ │ └── resources/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── _meta.json │ │ │ │ ├── client.go │ │ │ │ ├── deploymentoperations.go │ │ │ │ ├── deployments.go │ │ │ │ ├── enums.go │ │ │ │ ├── groups.go │ │ │ │ ├── models.go │ │ │ │ ├── operations.go │ │ │ │ ├── providers.go │ │ │ │ ├── resources.go │ │ │ │ ├── tags.go │ │ │ │ └── version.go │ │ │ └── version/ │ │ │ └── version.go │ │ └── go-ansiterm/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── constants.go │ │ ├── context.go │ │ ├── csi_entry_state.go │ │ ├── csi_param_state.go │ │ ├── escape_intermediate_state.go │ │ ├── escape_state.go │ │ ├── event_handler.go │ │ ├── ground_state.go │ │ ├── osc_string_state.go │ │ ├── parser.go │ │ ├── parser_action_helpers.go │ │ ├── parser_actions.go │ │ ├── states.go │ │ ├── utilities.go │ │ └── winterm/ │ │ ├── ansi.go │ │ ├── api.go │ │ ├── attr_translation.go │ │ ├── cursor_helpers.go │ │ ├── erase_helpers.go │ │ ├── scroll_helper.go │ │ ├── utilities.go │ │ └── win_event_handler.go │ ├── AzureAD/ │ │ └── microsoft-authentication-library-for-go/ │ │ ├── LICENSE │ │ └── apps/ │ │ ├── cache/ │ │ │ └── cache.go │ │ ├── confidential/ │ │ │ └── confidential.go │ │ ├── errors/ │ │ │ ├── error_design.md │ │ │ └── errors.go │ │ ├── internal/ │ │ │ ├── base/ │ │ │ │ ├── base.go │ │ │ │ └── storage/ │ │ │ │ ├── items.go │ │ │ │ ├── partitioned_storage.go │ │ │ │ └── storage.go │ │ │ ├── exported/ │ │ │ │ └── exported.go │ │ │ ├── json/ │ │ │ │ ├── design.md │ │ │ │ ├── json.go │ │ │ │ ├── mapslice.go │ │ │ │ ├── marshal.go │ │ │ │ ├── struct.go │ │ │ │ └── types/ │ │ │ │ └── time/ │ │ │ │ └── time.go │ │ │ ├── local/ │ │ │ │ └── server.go │ │ │ ├── oauth/ │ │ │ │ ├── oauth.go │ │ │ │ ├── ops/ │ │ │ │ │ ├── accesstokens/ │ │ │ │ │ │ ├── accesstokens.go │ │ │ │ │ │ ├── apptype_string.go │ │ │ │ │ │ └── tokens.go │ │ │ │ │ ├── authority/ │ │ │ │ │ │ ├── authority.go │ │ │ │ │ │ └── authorizetype_string.go │ │ │ │ │ ├── internal/ │ │ │ │ │ │ ├── comm/ │ │ │ │ │ │ │ ├── comm.go │ │ │ │ │ │ │ └── compress.go │ │ │ │ │ │ └── grant/ │ │ │ │ │ │ └── grant.go │ │ │ │ │ ├── ops.go │ │ │ │ │ └── wstrust/ │ │ │ │ │ ├── defs/ │ │ │ │ │ │ ├── endpointtype_string.go │ │ │ │ │ │ ├── mex_document_definitions.go │ │ │ │ │ │ ├── saml_assertion_definitions.go │ │ │ │ │ │ ├── version_string.go │ │ │ │ │ │ ├── wstrust_endpoint.go │ │ │ │ │ │ └── wstrust_mex_document.go │ │ │ │ │ └── wstrust.go │ │ │ │ └── resolvers.go │ │ │ ├── options/ │ │ │ │ └── options.go │ │ │ ├── shared/ │ │ │ │ └── shared.go │ │ │ └── version/ │ │ │ └── version.go │ │ ├── managedidentity/ │ │ │ ├── azure_ml.go │ │ │ ├── cloud_shell.go │ │ │ ├── managedidentity.go │ │ │ └── servicefabric.go │ │ └── public/ │ │ └── public.go │ ├── BurntSushi/ │ │ └── toml/ │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── README.md │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal/ │ │ │ └── tz.go │ │ ├── lex.go │ │ ├── meta.go │ │ ├── parse.go │ │ ├── type_fields.go │ │ └── type_toml.go │ ├── Crocmagnon/ │ │ └── fatcontext/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── analyzer/ │ │ └── analyzer.go │ ├── Djarvur/ │ │ └── go-err113/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.adoc │ │ ├── comparison.go │ │ ├── definition.go │ │ └── err113.go │ ├── GaijinEntertainment/ │ │ └── go-exhaustruct/ │ │ └── v3/ │ │ ├── LICENSE │ │ ├── analyzer/ │ │ │ └── analyzer.go │ │ └── internal/ │ │ ├── comment/ │ │ │ ├── cache.go │ │ │ └── directive.go │ │ ├── pattern/ │ │ │ └── list.go │ │ └── structure/ │ │ ├── fields-cache.go │ │ └── fields.go │ ├── GoogleCloudPlatform/ │ │ └── opentelemetry-operations-go/ │ │ ├── detectors/ │ │ │ └── gcp/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app_engine.go │ │ │ ├── bms.go │ │ │ ├── detector.go │ │ │ ├── faas.go │ │ │ ├── gce.go │ │ │ └── gke.go │ │ ├── exporter/ │ │ │ └── metric/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cloudmonitoring.go │ │ │ ├── constants.go │ │ │ ├── error.go │ │ │ ├── metric.go │ │ │ ├── option.go │ │ │ └── version.go │ │ └── internal/ │ │ └── resourcemapping/ │ │ ├── LICENSE │ │ └── resourcemapping.go │ ├── IBM/ │ │ ├── go-sdk-core/ │ │ │ └── v5/ │ │ │ ├── LICENSE │ │ │ └── core/ │ │ │ ├── authentication_error.go │ │ │ ├── authenticator.go │ │ │ ├── authenticator_factory.go │ │ │ ├── base_service.go │ │ │ ├── basic_authenticator.go │ │ │ ├── bearer_token_authenticator.go │ │ │ ├── config_utils.go │ │ │ ├── constants.go │ │ │ ├── container_authenticator.go │ │ │ ├── cp4d_authenticator.go │ │ │ ├── datetime.go │ │ │ ├── detailed_response.go │ │ │ ├── doc.go │ │ │ ├── file_with_metadata.go │ │ │ ├── gzip.go │ │ │ ├── http_problem.go │ │ │ ├── iam_assume_authenticator.go │ │ │ ├── iam_authenticator.go │ │ │ ├── ibm_problem.go │ │ │ ├── jwt_utils.go │ │ │ ├── log.go │ │ │ ├── mcsp_v1_authenticator.go │ │ │ ├── mcsp_v2_authenticator.go │ │ │ ├── noauth_authenticator.go │ │ │ ├── ordered_maps.go │ │ │ ├── parameterized_url.go │ │ │ ├── problem.go │ │ │ ├── problem_utils.go │ │ │ ├── request_builder.go │ │ │ ├── sdk_problem.go │ │ │ ├── sdk_problem_utils.go │ │ │ ├── unmarshal_v2.go │ │ │ ├── utils.go │ │ │ ├── version.go │ │ │ └── vpc_instance_authenticator.go │ │ ├── ibm-cos-sdk-go/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── aws/ │ │ │ │ ├── arn/ │ │ │ │ │ └── arn.go │ │ │ │ ├── awserr/ │ │ │ │ │ ├── error.go │ │ │ │ │ └── types.go │ │ │ │ ├── awsutil/ │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── path_value.go │ │ │ │ │ ├── prettify.go │ │ │ │ │ └── string_value.go │ │ │ │ ├── client/ │ │ │ │ │ ├── client.go │ │ │ │ │ ├── default_retryer.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── metadata/ │ │ │ │ │ │ └── client_info.go │ │ │ │ │ └── no_op_retryer.go │ │ │ │ ├── config.go │ │ │ │ ├── context_1_5.go │ │ │ │ ├── context_1_9.go │ │ │ │ ├── context_background_1_7.go │ │ │ │ ├── context_sleep.go │ │ │ │ ├── convert_types.go │ │ │ │ ├── corehandlers/ │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── param_validator.go │ │ │ │ │ └── user_agent.go │ │ │ │ ├── credentials/ │ │ │ │ │ ├── chain_provider.go │ │ │ │ │ ├── context_background_go1.7.go │ │ │ │ │ ├── context_go1.9.go │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── endpointcreds/ │ │ │ │ │ │ └── provider.go │ │ │ │ │ ├── env_provider.go │ │ │ │ │ ├── example.ini │ │ │ │ │ ├── ibmiam/ │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── common_ini_provider.go │ │ │ │ │ │ ├── custom_init_func_provider.go │ │ │ │ │ │ ├── env_provider.go │ │ │ │ │ │ ├── env_provider_trusted_profile.go │ │ │ │ │ │ ├── iamcreds_file_utils.go │ │ │ │ │ │ ├── shared_config_provider.go │ │ │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ │ │ ├── static_provider.go │ │ │ │ │ │ ├── token/ │ │ │ │ │ │ │ └── token.go │ │ │ │ │ │ ├── tokenmanager/ │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── helper.go │ │ │ │ │ │ │ ├── token_manager.go │ │ │ │ │ │ │ └── token_manager_interface.go │ │ │ │ │ │ ├── trusted_profile.go │ │ │ │ │ │ └── trusted_profile_provider.go │ │ │ │ │ ├── processcreds/ │ │ │ │ │ │ └── provider.go │ │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ │ └── static_provider.go │ │ │ │ ├── defaults/ │ │ │ │ │ ├── defaults.go │ │ │ │ │ └── shared_config.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints/ │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── dep_service_ids.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── legacy_regions.go │ │ │ │ │ ├── v3model.go │ │ │ │ │ └── v3model_codegen.go │ │ │ │ ├── errors.go │ │ │ │ ├── jsonvalue.go │ │ │ │ ├── logger.go │ │ │ │ ├── request/ │ │ │ │ │ ├── connection_reset_error.go │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── http_request.go │ │ │ │ │ ├── offset_reader.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── request_1_8.go │ │ │ │ │ ├── request_context.go │ │ │ │ │ ├── request_pagination.go │ │ │ │ │ ├── retryer.go │ │ │ │ │ ├── timeout_read_closer.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── waiter.go │ │ │ │ ├── session/ │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── custom_transport.go │ │ │ │ │ ├── custom_transport_go1.12.go │ │ │ │ │ ├── custom_transport_go1.5.go │ │ │ │ │ ├── custom_transport_go1.6.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── shared_config.go │ │ │ │ ├── signer/ │ │ │ │ │ ├── ibmiam/ │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ └── ibmiam.go │ │ │ │ │ ├── signer_router.go │ │ │ │ │ └── v4/ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── request_context_go1.7.go │ │ │ │ │ ├── stream.go │ │ │ │ │ ├── uri_path.go │ │ │ │ │ └── v4.go │ │ │ │ ├── types.go │ │ │ │ ├── url.go │ │ │ │ └── version.go │ │ │ ├── internal/ │ │ │ │ ├── ini/ │ │ │ │ │ ├── ast.go │ │ │ │ │ ├── comma_token.go │ │ │ │ │ ├── comment_token.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty_token.go │ │ │ │ │ ├── expression.go │ │ │ │ │ ├── fuzz.go │ │ │ │ │ ├── ini.go │ │ │ │ │ ├── ini_lexer.go │ │ │ │ │ ├── ini_parser.go │ │ │ │ │ ├── literal_tokens.go │ │ │ │ │ ├── newline_token.go │ │ │ │ │ ├── number_helper.go │ │ │ │ │ ├── op_tokens.go │ │ │ │ │ ├── parse_error.go │ │ │ │ │ ├── parse_stack.go │ │ │ │ │ ├── sep_tokens.go │ │ │ │ │ ├── skipper.go │ │ │ │ │ ├── statement.go │ │ │ │ │ ├── value_util.go │ │ │ │ │ ├── visitor.go │ │ │ │ │ ├── walker.go │ │ │ │ │ └── ws_token.go │ │ │ │ ├── s3shared/ │ │ │ │ │ ├── arn/ │ │ │ │ │ │ ├── accesspoint_arn.go │ │ │ │ │ │ ├── arn.go │ │ │ │ │ │ ├── outpost_arn.go │ │ │ │ │ │ └── s3_object_lambda_arn.go │ │ │ │ │ ├── endpoint_errors.go │ │ │ │ │ ├── resource_request.go │ │ │ │ │ └── s3err/ │ │ │ │ │ └── error.go │ │ │ │ ├── sdkio/ │ │ │ │ │ ├── byte.go │ │ │ │ │ └── io_go1.7.go │ │ │ │ ├── sdkmath/ │ │ │ │ │ ├── floor.go │ │ │ │ │ └── floor_go1.9.go │ │ │ │ ├── sdkrand/ │ │ │ │ │ ├── locked_source.go │ │ │ │ │ └── read.go │ │ │ │ ├── shareddefaults/ │ │ │ │ │ ├── ecs_container.go │ │ │ │ │ ├── shared_config.go │ │ │ │ │ ├── shared_config_resolve_home.go │ │ │ │ │ └── shared_config_resolve_home_go1.12.go │ │ │ │ ├── strings/ │ │ │ │ │ └── strings.go │ │ │ │ └── sync/ │ │ │ │ └── singleflight/ │ │ │ │ ├── LICENSE │ │ │ │ └── singleflight.go │ │ │ ├── private/ │ │ │ │ ├── checksum/ │ │ │ │ │ └── content_md5.go │ │ │ │ └── protocol/ │ │ │ │ ├── host.go │ │ │ │ ├── host_prefix.go │ │ │ │ ├── idempotency.go │ │ │ │ ├── json/ │ │ │ │ │ └── jsonutil/ │ │ │ │ │ ├── build.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── jsonvalue.go │ │ │ │ ├── payload.go │ │ │ │ ├── protocol.go │ │ │ │ ├── query/ │ │ │ │ │ ├── build.go │ │ │ │ │ ├── queryutil/ │ │ │ │ │ │ └── queryutil.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── rest/ │ │ │ │ │ ├── build.go │ │ │ │ │ ├── payload.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── restxml/ │ │ │ │ │ └── restxml.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── unmarshal.go │ │ │ │ ├── unmarshal_error.go │ │ │ │ └── xml/ │ │ │ │ └── xmlutil/ │ │ │ │ ├── build.go │ │ │ │ ├── sort.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── xml_to_struct.go │ │ │ └── service/ │ │ │ └── s3/ │ │ │ ├── api.go │ │ │ ├── body_hash.go │ │ │ ├── bucket_location.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── doc_custom.go │ │ │ ├── endpoint.go │ │ │ ├── endpoint_builder.go │ │ │ ├── errors.go │ │ │ ├── host_style_bucket.go │ │ │ ├── platform_handlers.go │ │ │ ├── platform_handlers_go1.6.go │ │ │ ├── service.go │ │ │ ├── sse.go │ │ │ ├── statusok_error.go │ │ │ ├── unmarshal_error.go │ │ │ └── waiters.go │ │ ├── networking-go-sdk/ │ │ │ ├── LICENSE │ │ │ ├── common/ │ │ │ │ ├── headers.go │ │ │ │ └── version.go │ │ │ ├── dnsrecordsv1/ │ │ │ │ └── dns_records_v1.go │ │ │ ├── dnssvcsv1/ │ │ │ │ └── dns_svcs_v1.go │ │ │ ├── dnszonesv1/ │ │ │ │ └── dns_zones_v1.go │ │ │ ├── resourcerecordsv1/ │ │ │ │ └── resource_records_v1.go │ │ │ ├── transitgatewayapisv1/ │ │ │ │ └── transit_gateway_apis_v1.go │ │ │ └── zonesv1/ │ │ │ └── zones_v1.go │ │ ├── platform-services-go-sdk/ │ │ │ ├── LICENSE │ │ │ ├── common/ │ │ │ │ ├── headers.go │ │ │ │ ├── utils.go │ │ │ │ └── version.go │ │ │ ├── globalcatalogv1/ │ │ │ │ └── global_catalog_v1.go │ │ │ ├── iamidentityv1/ │ │ │ │ └── iam_identity_v1.go │ │ │ ├── iampolicymanagementv1/ │ │ │ │ └── iam_policy_management_v1.go │ │ │ ├── resourcecontrollerv2/ │ │ │ │ └── resource_controller_v2.go │ │ │ └── resourcemanagerv2/ │ │ │ └── resource_manager_v2.go │ │ └── vpc-go-sdk/ │ │ ├── LICENSE │ │ ├── common/ │ │ │ ├── headers.go │ │ │ └── version.go │ │ └── vpcv1/ │ │ └── vpc_v1.go │ ├── IBM-Cloud/ │ │ ├── bluemix-go/ │ │ │ ├── LICENSE │ │ │ └── crn/ │ │ │ └── crn.go │ │ └── power-go-client/ │ │ ├── LICENSE │ │ ├── clients/ │ │ │ └── instance/ │ │ │ ├── Development.md │ │ │ ├── ibm-pi-clonevolumes.go │ │ │ ├── ibm-pi-cloud-connection.go │ │ │ ├── ibm-pi-cloud-instance.go │ │ │ ├── ibm-pi-datacenters.go │ │ │ ├── ibm-pi-dhcp.go │ │ │ ├── ibm-pi-dr-location.go │ │ │ ├── ibm-pi-helper.go │ │ │ ├── ibm-pi-host-groups.go │ │ │ ├── ibm-pi-image.go │ │ │ ├── ibm-pi-instance.go │ │ │ ├── ibm-pi-job.go │ │ │ ├── ibm-pi-key.go │ │ │ ├── ibm-pi-network-address-group.go │ │ │ ├── ibm-pi-network-peers.go │ │ │ ├── ibm-pi-network-security-group.go │ │ │ ├── ibm-pi-network.go │ │ │ ├── ibm-pi-placement-groups.go │ │ │ ├── ibm-pi-routes.go │ │ │ ├── ibm-pi-sap-instance.go │ │ │ ├── ibm-pi-shared-processor-pool.go │ │ │ ├── ibm-pi-snapshot.go │ │ │ ├── ibm-pi-spp-placement-groups.go │ │ │ ├── ibm-pi-ssh-key.go │ │ │ ├── ibm-pi-storage-capacity.go │ │ │ ├── ibm-pi-storage-tiers.go │ │ │ ├── ibm-pi-system-pools.go │ │ │ ├── ibm-pi-tasks.go │ │ │ ├── ibm-pi-tenant.go │ │ │ ├── ibm-pi-virtual-serial-number.go │ │ │ ├── ibm-pi-volume-group.go │ │ │ ├── ibm-pi-volume-onboarding.go │ │ │ ├── ibm-pi-volume.go │ │ │ ├── ibm-pi-vpn-policy.go │ │ │ ├── ibm-pi-vpn.go │ │ │ └── ibm-pi-workspaces.go │ │ ├── errors/ │ │ │ └── errors.go │ │ ├── helpers/ │ │ │ ├── constants.go │ │ │ └── env.go │ │ ├── ibmpisession/ │ │ │ ├── logger.go │ │ │ ├── session.go │ │ │ └── utils.go │ │ └── power/ │ │ ├── client/ │ │ │ ├── authentication/ │ │ │ │ ├── authentication_client.go │ │ │ │ ├── service_broker_auth_callback_parameters.go │ │ │ │ ├── service_broker_auth_callback_responses.go │ │ │ │ ├── service_broker_auth_device_code_post_parameters.go │ │ │ │ ├── service_broker_auth_device_code_post_responses.go │ │ │ │ ├── service_broker_auth_device_token_post_parameters.go │ │ │ │ ├── service_broker_auth_device_token_post_responses.go │ │ │ │ ├── service_broker_auth_info_token_parameters.go │ │ │ │ ├── service_broker_auth_info_token_responses.go │ │ │ │ ├── service_broker_auth_info_user_parameters.go │ │ │ │ ├── service_broker_auth_info_user_responses.go │ │ │ │ ├── service_broker_auth_login_parameters.go │ │ │ │ ├── service_broker_auth_login_responses.go │ │ │ │ ├── service_broker_auth_logout_parameters.go │ │ │ │ ├── service_broker_auth_logout_responses.go │ │ │ │ ├── service_broker_auth_registration_callback_parameters.go │ │ │ │ ├── service_broker_auth_registration_callback_responses.go │ │ │ │ ├── service_broker_auth_registration_parameters.go │ │ │ │ ├── service_broker_auth_registration_responses.go │ │ │ │ ├── service_broker_auth_token_post_parameters.go │ │ │ │ └── service_broker_auth_token_post_responses.go │ │ │ ├── bluemix_service_instances/ │ │ │ │ ├── bluemix_service_instance_get_parameters.go │ │ │ │ ├── bluemix_service_instance_get_responses.go │ │ │ │ ├── bluemix_service_instance_put_parameters.go │ │ │ │ ├── bluemix_service_instance_put_responses.go │ │ │ │ └── bluemix_service_instances_client.go │ │ │ ├── catalog/ │ │ │ │ ├── catalog_client.go │ │ │ │ ├── catalog_get_parameters.go │ │ │ │ └── catalog_get_responses.go │ │ │ ├── datacenters/ │ │ │ │ ├── datacenters_client.go │ │ │ │ ├── v1_datacenters_get_parameters.go │ │ │ │ ├── v1_datacenters_get_responses.go │ │ │ │ ├── v1_datacenters_getall_parameters.go │ │ │ │ ├── v1_datacenters_getall_responses.go │ │ │ │ ├── v1_datacenters_private_get_parameters.go │ │ │ │ ├── v1_datacenters_private_get_responses.go │ │ │ │ ├── v1_datacenters_private_getall_parameters.go │ │ │ │ └── v1_datacenters_private_getall_responses.go │ │ │ ├── hardware_platforms/ │ │ │ │ ├── hardware_platforms_client.go │ │ │ │ ├── service_broker_hardwareplatforms_get_parameters.go │ │ │ │ └── service_broker_hardwareplatforms_get_responses.go │ │ │ ├── host_groups/ │ │ │ │ ├── host_groups_client.go │ │ │ │ ├── v1_available_hosts_parameters.go │ │ │ │ ├── v1_available_hosts_responses.go │ │ │ │ ├── v1_host_groups_get_parameters.go │ │ │ │ ├── v1_host_groups_get_responses.go │ │ │ │ ├── v1_host_groups_id_get_parameters.go │ │ │ │ ├── v1_host_groups_id_get_responses.go │ │ │ │ ├── v1_host_groups_id_put_parameters.go │ │ │ │ ├── v1_host_groups_id_put_responses.go │ │ │ │ ├── v1_host_groups_post_parameters.go │ │ │ │ ├── v1_host_groups_post_responses.go │ │ │ │ ├── v1_hosts_get_parameters.go │ │ │ │ ├── v1_hosts_get_responses.go │ │ │ │ ├── v1_hosts_id_delete_parameters.go │ │ │ │ ├── v1_hosts_id_delete_responses.go │ │ │ │ ├── v1_hosts_id_get_parameters.go │ │ │ │ ├── v1_hosts_id_get_responses.go │ │ │ │ ├── v1_hosts_id_put_parameters.go │ │ │ │ ├── v1_hosts_id_put_responses.go │ │ │ │ ├── v1_hosts_post_parameters.go │ │ │ │ └── v1_hosts_post_responses.go │ │ │ ├── iaas_service_broker/ │ │ │ │ ├── iaas_service_broker_client.go │ │ │ │ ├── service_broker_health_head_parameters.go │ │ │ │ ├── service_broker_health_head_responses.go │ │ │ │ ├── service_broker_health_parameters.go │ │ │ │ ├── service_broker_health_responses.go │ │ │ │ ├── service_broker_test_timeout_parameters.go │ │ │ │ ├── service_broker_test_timeout_responses.go │ │ │ │ ├── service_broker_version_parameters.go │ │ │ │ └── service_broker_version_responses.go │ │ │ ├── internal_operations_dedicated_hosts/ │ │ │ │ ├── internal_operations_dedicated_hosts_client.go │ │ │ │ ├── internal_v1_operations_dedicatedhosts_delete_parameters.go │ │ │ │ ├── internal_v1_operations_dedicatedhosts_delete_responses.go │ │ │ │ ├── internal_v1_operations_dedicatedhosts_post_parameters.go │ │ │ │ └── internal_v1_operations_dedicatedhosts_post_responses.go │ │ │ ├── internal_operations_images/ │ │ │ │ ├── internal_operations_images_client.go │ │ │ │ ├── internal_v1_operations_images_delete_parameters.go │ │ │ │ ├── internal_v1_operations_images_delete_responses.go │ │ │ │ ├── internal_v1_operations_images_post_parameters.go │ │ │ │ └── internal_v1_operations_images_post_responses.go │ │ │ ├── internal_operations_network_address_groups/ │ │ │ │ ├── internal_operations_network_address_groups_client.go │ │ │ │ ├── internal_v1_operations_networkaddressgroups_delete_parameters.go │ │ │ │ ├── internal_v1_operations_networkaddressgroups_delete_responses.go │ │ │ │ ├── internal_v1_operations_networkaddressgroups_post_parameters.go │ │ │ │ └── internal_v1_operations_networkaddressgroups_post_responses.go │ │ │ ├── internal_operations_network_interfaces/ │ │ │ │ ├── internal_operations_network_interfaces_client.go │ │ │ │ ├── internal_v1_operations_networkinterfaces_delete_parameters.go │ │ │ │ ├── internal_v1_operations_networkinterfaces_delete_responses.go │ │ │ │ ├── internal_v1_operations_networkinterfaces_post_parameters.go │ │ │ │ └── internal_v1_operations_networkinterfaces_post_responses.go │ │ │ ├── internal_operations_network_security_groups/ │ │ │ │ ├── internal_operations_network_security_groups_client.go │ │ │ │ ├── internal_v1_operations_networksecuritygroups_delete_parameters.go │ │ │ │ ├── internal_v1_operations_networksecuritygroups_delete_responses.go │ │ │ │ ├── internal_v1_operations_networksecuritygroups_post_parameters.go │ │ │ │ └── internal_v1_operations_networksecuritygroups_post_responses.go │ │ │ ├── internal_operations_networks/ │ │ │ │ ├── internal_operations_networks_client.go │ │ │ │ ├── internal_v1_operations_networks_delete_parameters.go │ │ │ │ ├── internal_v1_operations_networks_delete_responses.go │ │ │ │ ├── internal_v1_operations_networks_post_parameters.go │ │ │ │ └── internal_v1_operations_networks_post_responses.go │ │ │ ├── internal_operations_pvm_instances/ │ │ │ │ ├── internal_operations_pvm_instances_client.go │ │ │ │ ├── internal_v1_operations_pvminstances_delete_parameters.go │ │ │ │ ├── internal_v1_operations_pvminstances_delete_responses.go │ │ │ │ ├── internal_v1_operations_pvminstances_post_parameters.go │ │ │ │ └── internal_v1_operations_pvminstances_post_responses.go │ │ │ ├── internal_operations_shared_processor_pools/ │ │ │ │ ├── internal_operations_shared_processor_pools_client.go │ │ │ │ ├── internal_v1_operations_sharedprocessorpools_delete_parameters.go │ │ │ │ ├── internal_v1_operations_sharedprocessorpools_delete_responses.go │ │ │ │ ├── internal_v1_operations_sharedprocessorpools_post_parameters.go │ │ │ │ └── internal_v1_operations_sharedprocessorpools_post_responses.go │ │ │ ├── internal_operations_snapshots/ │ │ │ │ ├── internal_operations_snapshots_client.go │ │ │ │ ├── internal_v1_operations_snapshots_delete_parameters.go │ │ │ │ ├── internal_v1_operations_snapshots_delete_responses.go │ │ │ │ ├── internal_v1_operations_snapshots_post_parameters.go │ │ │ │ └── internal_v1_operations_snapshots_post_responses.go │ │ │ ├── internal_operations_volumes/ │ │ │ │ ├── internal_operations_volumes_client.go │ │ │ │ ├── internal_v1_operations_volumes_delete_parameters.go │ │ │ │ ├── internal_v1_operations_volumes_delete_responses.go │ │ │ │ ├── internal_v1_operations_volumes_post_parameters.go │ │ │ │ └── internal_v1_operations_volumes_post_responses.go │ │ │ ├── internal_power_v_s_instances/ │ │ │ │ ├── internal_powervs_instances_client.go │ │ │ │ ├── internal_v1_powervs_instances_get_parameters.go │ │ │ │ └── internal_v1_powervs_instances_get_responses.go │ │ │ ├── internal_power_v_s_locations/ │ │ │ │ ├── internal_powervs_locations_client.go │ │ │ │ ├── internal_v1_powervs_locations_activate_put_parameters.go │ │ │ │ ├── internal_v1_powervs_locations_activate_put_responses.go │ │ │ │ ├── internal_v1_powervs_locations_tag_delete_parameters.go │ │ │ │ ├── internal_v1_powervs_locations_tag_delete_responses.go │ │ │ │ ├── internal_v1_powervs_locations_tag_post_parameters.go │ │ │ │ ├── internal_v1_powervs_locations_tag_post_responses.go │ │ │ │ ├── internal_v1_powervs_locations_transitgateway_get_parameters.go │ │ │ │ └── internal_v1_powervs_locations_transitgateway_get_responses.go │ │ │ ├── internal_storage_regions/ │ │ │ │ ├── internal_storage_regions_client.go │ │ │ │ ├── internal_v1_storage_regions_storage_pools_get_parameters.go │ │ │ │ ├── internal_v1_storage_regions_storage_pools_get_responses.go │ │ │ │ ├── internal_v1_storage_regions_storage_pools_getall_parameters.go │ │ │ │ ├── internal_v1_storage_regions_storage_pools_getall_responses.go │ │ │ │ ├── internal_v1_storage_regions_storage_pools_put_parameters.go │ │ │ │ ├── internal_v1_storage_regions_storage_pools_put_responses.go │ │ │ │ ├── internal_v1_storage_regions_thresholds_get_parameters.go │ │ │ │ ├── internal_v1_storage_regions_thresholds_get_responses.go │ │ │ │ ├── internal_v1_storage_regions_thresholds_put_parameters.go │ │ │ │ └── internal_v1_storage_regions_thresholds_put_responses.go │ │ │ ├── internal_transit_gateway/ │ │ │ │ ├── internal_transit_gateway_client.go │ │ │ │ ├── internal_v1_transitgateway_get_parameters.go │ │ │ │ └── internal_v1_transitgateway_get_responses.go │ │ │ ├── network_address_groups/ │ │ │ │ ├── network_address_groups_client.go │ │ │ │ ├── v1_network_address_groups_get_parameters.go │ │ │ │ ├── v1_network_address_groups_get_responses.go │ │ │ │ ├── v1_network_address_groups_id_delete_parameters.go │ │ │ │ ├── v1_network_address_groups_id_delete_responses.go │ │ │ │ ├── v1_network_address_groups_id_get_parameters.go │ │ │ │ ├── v1_network_address_groups_id_get_responses.go │ │ │ │ ├── v1_network_address_groups_id_put_parameters.go │ │ │ │ ├── v1_network_address_groups_id_put_responses.go │ │ │ │ ├── v1_network_address_groups_members_delete_parameters.go │ │ │ │ ├── v1_network_address_groups_members_delete_responses.go │ │ │ │ ├── v1_network_address_groups_members_post_parameters.go │ │ │ │ ├── v1_network_address_groups_members_post_responses.go │ │ │ │ ├── v1_network_address_groups_post_parameters.go │ │ │ │ └── v1_network_address_groups_post_responses.go │ │ │ ├── network_peers/ │ │ │ │ ├── network_peers_client.go │ │ │ │ ├── v1_network_peers_list_parameters.go │ │ │ │ └── v1_network_peers_list_responses.go │ │ │ ├── network_security_groups/ │ │ │ │ ├── network_security_groups_client.go │ │ │ │ ├── v1_network_security_groups_action_post_parameters.go │ │ │ │ ├── v1_network_security_groups_action_post_responses.go │ │ │ │ ├── v1_network_security_groups_id_delete_parameters.go │ │ │ │ ├── v1_network_security_groups_id_delete_responses.go │ │ │ │ ├── v1_network_security_groups_id_get_parameters.go │ │ │ │ ├── v1_network_security_groups_id_get_responses.go │ │ │ │ ├── v1_network_security_groups_id_post_parameters.go │ │ │ │ ├── v1_network_security_groups_id_post_responses.go │ │ │ │ ├── v1_network_security_groups_id_put_parameters.go │ │ │ │ ├── v1_network_security_groups_id_put_responses.go │ │ │ │ ├── v1_network_security_groups_list_parameters.go │ │ │ │ ├── v1_network_security_groups_list_responses.go │ │ │ │ ├── v1_network_security_groups_members_delete_parameters.go │ │ │ │ ├── v1_network_security_groups_members_delete_responses.go │ │ │ │ ├── v1_network_security_groups_members_post_parameters.go │ │ │ │ ├── v1_network_security_groups_members_post_responses.go │ │ │ │ ├── v1_network_security_groups_move_member_post_parameters.go │ │ │ │ ├── v1_network_security_groups_move_member_post_responses.go │ │ │ │ ├── v1_network_security_groups_post_parameters.go │ │ │ │ ├── v1_network_security_groups_post_responses.go │ │ │ │ ├── v1_network_security_groups_rules_delete_parameters.go │ │ │ │ ├── v1_network_security_groups_rules_delete_responses.go │ │ │ │ ├── v1_network_security_groups_rules_post_parameters.go │ │ │ │ └── v1_network_security_groups_rules_post_responses.go │ │ │ ├── networks/ │ │ │ │ ├── networks_client.go │ │ │ │ ├── v1_networks_network_interfaces_delete_parameters.go │ │ │ │ ├── v1_networks_network_interfaces_delete_responses.go │ │ │ │ ├── v1_networks_network_interfaces_get_parameters.go │ │ │ │ ├── v1_networks_network_interfaces_get_responses.go │ │ │ │ ├── v1_networks_network_interfaces_getall_parameters.go │ │ │ │ ├── v1_networks_network_interfaces_getall_responses.go │ │ │ │ ├── v1_networks_network_interfaces_post_parameters.go │ │ │ │ ├── v1_networks_network_interfaces_post_responses.go │ │ │ │ ├── v1_networks_network_interfaces_put_parameters.go │ │ │ │ └── v1_networks_network_interfaces_put_responses.go │ │ │ ├── open_stacks/ │ │ │ │ ├── open_stacks_client.go │ │ │ │ ├── service_broker_openstacks_get_parameters.go │ │ │ │ ├── service_broker_openstacks_get_responses.go │ │ │ │ ├── service_broker_openstacks_hosts_get_parameters.go │ │ │ │ ├── service_broker_openstacks_hosts_get_responses.go │ │ │ │ ├── service_broker_openstacks_openstack_get_parameters.go │ │ │ │ ├── service_broker_openstacks_openstack_get_responses.go │ │ │ │ ├── service_broker_openstacks_post_parameters.go │ │ │ │ ├── service_broker_openstacks_post_responses.go │ │ │ │ ├── service_broker_openstacks_servers_get_parameters.go │ │ │ │ └── service_broker_openstacks_servers_get_responses.go │ │ │ ├── p_cloud_cloud_connections/ │ │ │ │ ├── p_cloud_cloud_connections_client.go │ │ │ │ ├── pcloud_cloudconnections_delete_parameters.go │ │ │ │ ├── pcloud_cloudconnections_delete_responses.go │ │ │ │ ├── pcloud_cloudconnections_get_parameters.go │ │ │ │ ├── pcloud_cloudconnections_get_responses.go │ │ │ │ ├── pcloud_cloudconnections_getall_parameters.go │ │ │ │ ├── pcloud_cloudconnections_getall_responses.go │ │ │ │ ├── pcloud_cloudconnections_networks_delete_parameters.go │ │ │ │ ├── pcloud_cloudconnections_networks_delete_responses.go │ │ │ │ ├── pcloud_cloudconnections_networks_put_parameters.go │ │ │ │ ├── pcloud_cloudconnections_networks_put_responses.go │ │ │ │ ├── pcloud_cloudconnections_post_parameters.go │ │ │ │ ├── pcloud_cloudconnections_post_responses.go │ │ │ │ ├── pcloud_cloudconnections_put_parameters.go │ │ │ │ ├── pcloud_cloudconnections_put_responses.go │ │ │ │ ├── pcloud_cloudconnections_virtualprivateclouds_getall_parameters.go │ │ │ │ └── pcloud_cloudconnections_virtualprivateclouds_getall_responses.go │ │ │ ├── p_cloud_disaster_recovery/ │ │ │ │ ├── p_cloud_disaster_recovery_client.go │ │ │ │ ├── pcloud_locations_disasterrecovery_get_parameters.go │ │ │ │ ├── pcloud_locations_disasterrecovery_get_responses.go │ │ │ │ ├── pcloud_locations_disasterrecovery_getall_parameters.go │ │ │ │ └── pcloud_locations_disasterrecovery_getall_responses.go │ │ │ ├── p_cloud_events/ │ │ │ │ ├── p_cloud_events_client.go │ │ │ │ ├── pcloud_events_get_parameters.go │ │ │ │ ├── pcloud_events_get_responses.go │ │ │ │ ├── pcloud_events_getquery_parameters.go │ │ │ │ └── pcloud_events_getquery_responses.go │ │ │ ├── p_cloud_images/ │ │ │ │ ├── p_cloud_images_client.go │ │ │ │ ├── pcloud_cloudinstances_images_delete_parameters.go │ │ │ │ ├── pcloud_cloudinstances_images_delete_responses.go │ │ │ │ ├── pcloud_cloudinstances_images_export_post_parameters.go │ │ │ │ ├── pcloud_cloudinstances_images_export_post_responses.go │ │ │ │ ├── pcloud_cloudinstances_images_get_parameters.go │ │ │ │ ├── pcloud_cloudinstances_images_get_responses.go │ │ │ │ ├── pcloud_cloudinstances_images_getall_parameters.go │ │ │ │ ├── pcloud_cloudinstances_images_getall_responses.go │ │ │ │ ├── pcloud_cloudinstances_images_post_parameters.go │ │ │ │ ├── pcloud_cloudinstances_images_post_responses.go │ │ │ │ ├── pcloud_cloudinstances_stockimages_get_parameters.go │ │ │ │ ├── pcloud_cloudinstances_stockimages_get_responses.go │ │ │ │ ├── pcloud_cloudinstances_stockimages_getall_parameters.go │ │ │ │ ├── pcloud_cloudinstances_stockimages_getall_responses.go │ │ │ │ ├── pcloud_images_get_parameters.go │ │ │ │ ├── pcloud_images_get_responses.go │ │ │ │ ├── pcloud_images_getall_parameters.go │ │ │ │ ├── pcloud_images_getall_responses.go │ │ │ │ ├── pcloud_v1_cloudinstances_cosimages_get_parameters.go │ │ │ │ ├── pcloud_v1_cloudinstances_cosimages_get_responses.go │ │ │ │ ├── pcloud_v1_cloudinstances_cosimages_post_parameters.go │ │ │ │ ├── pcloud_v1_cloudinstances_cosimages_post_responses.go │ │ │ │ ├── pcloud_v2_images_export_get_parameters.go │ │ │ │ ├── pcloud_v2_images_export_get_responses.go │ │ │ │ ├── pcloud_v2_images_export_post_parameters.go │ │ │ │ └── pcloud_v2_images_export_post_responses.go │ │ │ ├── p_cloud_instances/ │ │ │ │ ├── p_cloud_instances_client.go │ │ │ │ ├── pcloud_cloudinstances_delete_parameters.go │ │ │ │ ├── pcloud_cloudinstances_delete_responses.go │ │ │ │ ├── pcloud_cloudinstances_get_parameters.go │ │ │ │ ├── pcloud_cloudinstances_get_responses.go │ │ │ │ ├── pcloud_cloudinstances_put_parameters.go │ │ │ │ └── pcloud_cloudinstances_put_responses.go │ │ │ ├── p_cloud_jobs/ │ │ │ │ ├── p_cloud_jobs_client.go │ │ │ │ ├── pcloud_cloudinstances_jobs_delete_parameters.go │ │ │ │ ├── pcloud_cloudinstances_jobs_delete_responses.go │ │ │ │ ├── pcloud_cloudinstances_jobs_get_parameters.go │ │ │ │ ├── pcloud_cloudinstances_jobs_get_responses.go │ │ │ │ ├── pcloud_cloudinstances_jobs_getall_parameters.go │ │ │ │ └── pcloud_cloudinstances_jobs_getall_responses.go │ │ │ ├── p_cloud_networks/ │ │ │ │ ├── p_cloud_networks_client.go │ │ │ │ ├── pcloud_networks_delete_parameters.go │ │ │ │ ├── pcloud_networks_delete_responses.go │ │ │ │ ├── pcloud_networks_get_parameters.go │ │ │ │ ├── pcloud_networks_get_responses.go │ │ │ │ ├── pcloud_networks_getall_parameters.go │ │ │ │ ├── pcloud_networks_getall_responses.go │ │ │ │ ├── pcloud_networks_ports_delete_parameters.go │ │ │ │ ├── pcloud_networks_ports_delete_responses.go │ │ │ │ ├── pcloud_networks_ports_get_parameters.go │ │ │ │ ├── pcloud_networks_ports_get_responses.go │ │ │ │ ├── pcloud_networks_ports_getall_parameters.go │ │ │ │ ├── pcloud_networks_ports_getall_responses.go │ │ │ │ ├── pcloud_networks_ports_post_parameters.go │ │ │ │ ├── pcloud_networks_ports_post_responses.go │ │ │ │ ├── pcloud_networks_ports_put_parameters.go │ │ │ │ ├── pcloud_networks_ports_put_responses.go │ │ │ │ ├── pcloud_networks_post_parameters.go │ │ │ │ ├── pcloud_networks_post_responses.go │ │ │ │ ├── pcloud_networks_put_parameters.go │ │ │ │ └── pcloud_networks_put_responses.go │ │ │ ├── p_cloud_p_vm_instances/ │ │ │ │ ├── p_cloudp_vm_instances_client.go │ │ │ │ ├── pcloud_pvminstances_action_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_action_post_responses.go │ │ │ │ ├── pcloud_pvminstances_capture_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_capture_post_responses.go │ │ │ │ ├── pcloud_pvminstances_clone_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_clone_post_responses.go │ │ │ │ ├── pcloud_pvminstances_console_get_parameters.go │ │ │ │ ├── pcloud_pvminstances_console_get_responses.go │ │ │ │ ├── pcloud_pvminstances_console_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_console_post_responses.go │ │ │ │ ├── pcloud_pvminstances_console_put_parameters.go │ │ │ │ ├── pcloud_pvminstances_console_put_responses.go │ │ │ │ ├── pcloud_pvminstances_delete_parameters.go │ │ │ │ ├── pcloud_pvminstances_delete_responses.go │ │ │ │ ├── pcloud_pvminstances_get_parameters.go │ │ │ │ ├── pcloud_pvminstances_get_responses.go │ │ │ │ ├── pcloud_pvminstances_getall_parameters.go │ │ │ │ ├── pcloud_pvminstances_getall_responses.go │ │ │ │ ├── pcloud_pvminstances_networks_delete_parameters.go │ │ │ │ ├── pcloud_pvminstances_networks_delete_responses.go │ │ │ │ ├── pcloud_pvminstances_networks_get_parameters.go │ │ │ │ ├── pcloud_pvminstances_networks_get_responses.go │ │ │ │ ├── pcloud_pvminstances_networks_getall_parameters.go │ │ │ │ ├── pcloud_pvminstances_networks_getall_responses.go │ │ │ │ ├── pcloud_pvminstances_networks_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_networks_post_responses.go │ │ │ │ ├── pcloud_pvminstances_operations_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_operations_post_responses.go │ │ │ │ ├── pcloud_pvminstances_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_post_responses.go │ │ │ │ ├── pcloud_pvminstances_put_parameters.go │ │ │ │ ├── pcloud_pvminstances_put_responses.go │ │ │ │ ├── pcloud_pvminstances_snapshots_getall_parameters.go │ │ │ │ ├── pcloud_pvminstances_snapshots_getall_responses.go │ │ │ │ ├── pcloud_pvminstances_snapshots_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_snapshots_post_responses.go │ │ │ │ ├── pcloud_pvminstances_snapshots_restore_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_snapshots_restore_post_responses.go │ │ │ │ ├── pcloud_v2_pvminstances_capture_get_parameters.go │ │ │ │ ├── pcloud_v2_pvminstances_capture_get_responses.go │ │ │ │ ├── pcloud_v2_pvminstances_capture_post_parameters.go │ │ │ │ ├── pcloud_v2_pvminstances_capture_post_responses.go │ │ │ │ ├── pcloud_v2_pvminstances_getall_parameters.go │ │ │ │ └── pcloud_v2_pvminstances_getall_responses.go │ │ │ ├── p_cloud_placement_groups/ │ │ │ │ ├── p_cloud_placement_groups_client.go │ │ │ │ ├── pcloud_placementgroups_delete_parameters.go │ │ │ │ ├── pcloud_placementgroups_delete_responses.go │ │ │ │ ├── pcloud_placementgroups_get_parameters.go │ │ │ │ ├── pcloud_placementgroups_get_responses.go │ │ │ │ ├── pcloud_placementgroups_getall_parameters.go │ │ │ │ ├── pcloud_placementgroups_getall_responses.go │ │ │ │ ├── pcloud_placementgroups_members_delete_parameters.go │ │ │ │ ├── pcloud_placementgroups_members_delete_responses.go │ │ │ │ ├── pcloud_placementgroups_members_post_parameters.go │ │ │ │ ├── pcloud_placementgroups_members_post_responses.go │ │ │ │ ├── pcloud_placementgroups_post_parameters.go │ │ │ │ └── pcloud_placementgroups_post_responses.go │ │ │ ├── p_cloud_pod_capacity/ │ │ │ │ ├── p_cloud_pod_capacity_client.go │ │ │ │ ├── pcloud_podcapacity_get_parameters.go │ │ │ │ └── pcloud_podcapacity_get_responses.go │ │ │ ├── p_cloud_s_a_p/ │ │ │ │ ├── p_cloudsap_client.go │ │ │ │ ├── pcloud_sap_get_parameters.go │ │ │ │ ├── pcloud_sap_get_responses.go │ │ │ │ ├── pcloud_sap_getall_parameters.go │ │ │ │ ├── pcloud_sap_getall_responses.go │ │ │ │ ├── pcloud_sap_post_parameters.go │ │ │ │ └── pcloud_sap_post_responses.go │ │ │ ├── p_cloud_s_p_p_placement_groups/ │ │ │ │ ├── p_cloudspp_placement_groups_client.go │ │ │ │ ├── pcloud_sppplacementgroups_delete_parameters.go │ │ │ │ ├── pcloud_sppplacementgroups_delete_responses.go │ │ │ │ ├── pcloud_sppplacementgroups_get_parameters.go │ │ │ │ ├── pcloud_sppplacementgroups_get_responses.go │ │ │ │ ├── pcloud_sppplacementgroups_getall_parameters.go │ │ │ │ ├── pcloud_sppplacementgroups_getall_responses.go │ │ │ │ ├── pcloud_sppplacementgroups_members_delete_parameters.go │ │ │ │ ├── pcloud_sppplacementgroups_members_delete_responses.go │ │ │ │ ├── pcloud_sppplacementgroups_members_post_parameters.go │ │ │ │ ├── pcloud_sppplacementgroups_members_post_responses.go │ │ │ │ ├── pcloud_sppplacementgroups_post_parameters.go │ │ │ │ └── pcloud_sppplacementgroups_post_responses.go │ │ │ ├── p_cloud_service_d_h_c_p/ │ │ │ │ ├── p_cloud_servicedhcp_client.go │ │ │ │ ├── pcloud_dhcp_delete_parameters.go │ │ │ │ ├── pcloud_dhcp_delete_responses.go │ │ │ │ ├── pcloud_dhcp_get_parameters.go │ │ │ │ ├── pcloud_dhcp_get_responses.go │ │ │ │ ├── pcloud_dhcp_getall_parameters.go │ │ │ │ ├── pcloud_dhcp_getall_responses.go │ │ │ │ ├── pcloud_dhcp_post_parameters.go │ │ │ │ └── pcloud_dhcp_post_responses.go │ │ │ ├── p_cloud_shared_processor_pools/ │ │ │ │ ├── p_cloud_shared_processor_pools_client.go │ │ │ │ ├── pcloud_sharedprocessorpools_delete_parameters.go │ │ │ │ ├── pcloud_sharedprocessorpools_delete_responses.go │ │ │ │ ├── pcloud_sharedprocessorpools_get_parameters.go │ │ │ │ ├── pcloud_sharedprocessorpools_get_responses.go │ │ │ │ ├── pcloud_sharedprocessorpools_getall_parameters.go │ │ │ │ ├── pcloud_sharedprocessorpools_getall_responses.go │ │ │ │ ├── pcloud_sharedprocessorpools_post_parameters.go │ │ │ │ ├── pcloud_sharedprocessorpools_post_responses.go │ │ │ │ ├── pcloud_sharedprocessorpools_put_parameters.go │ │ │ │ └── pcloud_sharedprocessorpools_put_responses.go │ │ │ ├── p_cloud_snapshots/ │ │ │ │ ├── p_cloud_snapshots_client.go │ │ │ │ ├── pcloud_cloudinstances_snapshots_delete_parameters.go │ │ │ │ ├── pcloud_cloudinstances_snapshots_delete_responses.go │ │ │ │ ├── pcloud_cloudinstances_snapshots_get_parameters.go │ │ │ │ ├── pcloud_cloudinstances_snapshots_get_responses.go │ │ │ │ ├── pcloud_cloudinstances_snapshots_getall_parameters.go │ │ │ │ ├── pcloud_cloudinstances_snapshots_getall_responses.go │ │ │ │ ├── pcloud_cloudinstances_snapshots_put_parameters.go │ │ │ │ └── pcloud_cloudinstances_snapshots_put_responses.go │ │ │ ├── p_cloud_storage_capacity/ │ │ │ │ ├── p_cloud_storage_capacity_client.go │ │ │ │ ├── pcloud_storagecapacity_pools_get_parameters.go │ │ │ │ ├── pcloud_storagecapacity_pools_get_responses.go │ │ │ │ ├── pcloud_storagecapacity_pools_getall_parameters.go │ │ │ │ ├── pcloud_storagecapacity_pools_getall_responses.go │ │ │ │ ├── pcloud_storagecapacity_types_get_parameters.go │ │ │ │ ├── pcloud_storagecapacity_types_get_responses.go │ │ │ │ ├── pcloud_storagecapacity_types_getall_parameters.go │ │ │ │ └── pcloud_storagecapacity_types_getall_responses.go │ │ │ ├── p_cloud_storage_tiers/ │ │ │ │ ├── p_cloud_storage_tiers_client.go │ │ │ │ ├── pcloud_cloudinstances_storagetiers_getall_parameters.go │ │ │ │ └── pcloud_cloudinstances_storagetiers_getall_responses.go │ │ │ ├── p_cloud_system_pools/ │ │ │ │ ├── p_cloud_system_pools_client.go │ │ │ │ ├── pcloud_systempools_get_parameters.go │ │ │ │ └── pcloud_systempools_get_responses.go │ │ │ ├── p_cloud_tasks/ │ │ │ │ ├── p_cloud_tasks_client.go │ │ │ │ ├── pcloud_tasks_delete_parameters.go │ │ │ │ ├── pcloud_tasks_delete_responses.go │ │ │ │ ├── pcloud_tasks_get_parameters.go │ │ │ │ └── pcloud_tasks_get_responses.go │ │ │ ├── p_cloud_tenants/ │ │ │ │ ├── p_cloud_tenants_client.go │ │ │ │ ├── pcloud_tenants_get_parameters.go │ │ │ │ ├── pcloud_tenants_get_responses.go │ │ │ │ ├── pcloud_tenants_put_parameters.go │ │ │ │ └── pcloud_tenants_put_responses.go │ │ │ ├── p_cloud_tenants_ssh_keys/ │ │ │ │ ├── p_cloud_tenants_ssh_keys_client.go │ │ │ │ ├── pcloud_tenants_sshkeys_delete_parameters.go │ │ │ │ ├── pcloud_tenants_sshkeys_delete_responses.go │ │ │ │ ├── pcloud_tenants_sshkeys_get_parameters.go │ │ │ │ ├── pcloud_tenants_sshkeys_get_responses.go │ │ │ │ ├── pcloud_tenants_sshkeys_getall_parameters.go │ │ │ │ ├── pcloud_tenants_sshkeys_getall_responses.go │ │ │ │ ├── pcloud_tenants_sshkeys_post_parameters.go │ │ │ │ ├── pcloud_tenants_sshkeys_post_responses.go │ │ │ │ ├── pcloud_tenants_sshkeys_put_parameters.go │ │ │ │ └── pcloud_tenants_sshkeys_put_responses.go │ │ │ ├── p_cloud_v_p_n_connections/ │ │ │ │ ├── p_cloudvpn_connections_client.go │ │ │ │ ├── pcloud_vpnconnections_delete_parameters.go │ │ │ │ ├── pcloud_vpnconnections_delete_responses.go │ │ │ │ ├── pcloud_vpnconnections_get_parameters.go │ │ │ │ ├── pcloud_vpnconnections_get_responses.go │ │ │ │ ├── pcloud_vpnconnections_getall_parameters.go │ │ │ │ ├── pcloud_vpnconnections_getall_responses.go │ │ │ │ ├── pcloud_vpnconnections_networks_delete_parameters.go │ │ │ │ ├── pcloud_vpnconnections_networks_delete_responses.go │ │ │ │ ├── pcloud_vpnconnections_networks_get_parameters.go │ │ │ │ ├── pcloud_vpnconnections_networks_get_responses.go │ │ │ │ ├── pcloud_vpnconnections_networks_put_parameters.go │ │ │ │ ├── pcloud_vpnconnections_networks_put_responses.go │ │ │ │ ├── pcloud_vpnconnections_peersubnets_delete_parameters.go │ │ │ │ ├── pcloud_vpnconnections_peersubnets_delete_responses.go │ │ │ │ ├── pcloud_vpnconnections_peersubnets_get_parameters.go │ │ │ │ ├── pcloud_vpnconnections_peersubnets_get_responses.go │ │ │ │ ├── pcloud_vpnconnections_peersubnets_put_parameters.go │ │ │ │ ├── pcloud_vpnconnections_peersubnets_put_responses.go │ │ │ │ ├── pcloud_vpnconnections_post_parameters.go │ │ │ │ ├── pcloud_vpnconnections_post_responses.go │ │ │ │ ├── pcloud_vpnconnections_put_parameters.go │ │ │ │ └── pcloud_vpnconnections_put_responses.go │ │ │ ├── p_cloud_v_p_n_policies/ │ │ │ │ ├── p_cloudvpn_policies_client.go │ │ │ │ ├── pcloud_ikepolicies_delete_parameters.go │ │ │ │ ├── pcloud_ikepolicies_delete_responses.go │ │ │ │ ├── pcloud_ikepolicies_get_parameters.go │ │ │ │ ├── pcloud_ikepolicies_get_responses.go │ │ │ │ ├── pcloud_ikepolicies_getall_parameters.go │ │ │ │ ├── pcloud_ikepolicies_getall_responses.go │ │ │ │ ├── pcloud_ikepolicies_post_parameters.go │ │ │ │ ├── pcloud_ikepolicies_post_responses.go │ │ │ │ ├── pcloud_ikepolicies_put_parameters.go │ │ │ │ ├── pcloud_ikepolicies_put_responses.go │ │ │ │ ├── pcloud_ipsecpolicies_delete_parameters.go │ │ │ │ ├── pcloud_ipsecpolicies_delete_responses.go │ │ │ │ ├── pcloud_ipsecpolicies_get_parameters.go │ │ │ │ ├── pcloud_ipsecpolicies_get_responses.go │ │ │ │ ├── pcloud_ipsecpolicies_getall_parameters.go │ │ │ │ ├── pcloud_ipsecpolicies_getall_responses.go │ │ │ │ ├── pcloud_ipsecpolicies_post_parameters.go │ │ │ │ ├── pcloud_ipsecpolicies_post_responses.go │ │ │ │ ├── pcloud_ipsecpolicies_put_parameters.go │ │ │ │ └── pcloud_ipsecpolicies_put_responses.go │ │ │ ├── p_cloud_virtual_serial_number/ │ │ │ │ ├── p_cloud_virtual_serial_number_client.go │ │ │ │ ├── pcloud_cloudinstances_virtual_serial_number_getall_parameters.go │ │ │ │ ├── pcloud_cloudinstances_virtual_serial_number_getall_responses.go │ │ │ │ ├── pcloud_pvminstances_virtualserialnumber_delete_parameters.go │ │ │ │ ├── pcloud_pvminstances_virtualserialnumber_delete_responses.go │ │ │ │ ├── pcloud_pvminstances_virtualserialnumber_get_parameters.go │ │ │ │ ├── pcloud_pvminstances_virtualserialnumber_get_responses.go │ │ │ │ ├── pcloud_pvminstances_virtualserialnumber_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_virtualserialnumber_post_responses.go │ │ │ │ ├── pcloud_pvminstances_virtualserialnumber_put_parameters.go │ │ │ │ ├── pcloud_pvminstances_virtualserialnumber_put_responses.go │ │ │ │ ├── pcloud_virtualserialnumber_delete_parameters.go │ │ │ │ ├── pcloud_virtualserialnumber_delete_responses.go │ │ │ │ ├── pcloud_virtualserialnumber_get_parameters.go │ │ │ │ ├── pcloud_virtualserialnumber_get_responses.go │ │ │ │ ├── pcloud_virtualserialnumber_getall_parameters.go │ │ │ │ ├── pcloud_virtualserialnumber_getall_responses.go │ │ │ │ ├── pcloud_virtualserialnumber_put_parameters.go │ │ │ │ ├── pcloud_virtualserialnumber_put_responses.go │ │ │ │ ├── pcloud_virtualserialnumber_softwaretiers_getall_parameters.go │ │ │ │ └── pcloud_virtualserialnumber_softwaretiers_getall_responses.go │ │ │ ├── p_cloud_volume_groups/ │ │ │ │ ├── p_cloud_volume_groups_client.go │ │ │ │ ├── pcloud_volumegroups_action_post_parameters.go │ │ │ │ ├── pcloud_volumegroups_action_post_responses.go │ │ │ │ ├── pcloud_volumegroups_delete_parameters.go │ │ │ │ ├── pcloud_volumegroups_delete_responses.go │ │ │ │ ├── pcloud_volumegroups_get_details_parameters.go │ │ │ │ ├── pcloud_volumegroups_get_details_responses.go │ │ │ │ ├── pcloud_volumegroups_get_parameters.go │ │ │ │ ├── pcloud_volumegroups_get_responses.go │ │ │ │ ├── pcloud_volumegroups_getall_details_parameters.go │ │ │ │ ├── pcloud_volumegroups_getall_details_responses.go │ │ │ │ ├── pcloud_volumegroups_getall_parameters.go │ │ │ │ ├── pcloud_volumegroups_getall_responses.go │ │ │ │ ├── pcloud_volumegroups_post_parameters.go │ │ │ │ ├── pcloud_volumegroups_post_responses.go │ │ │ │ ├── pcloud_volumegroups_put_parameters.go │ │ │ │ ├── pcloud_volumegroups_put_responses.go │ │ │ │ ├── pcloud_volumegroups_remote_copy_relationships_get_parameters.go │ │ │ │ ├── pcloud_volumegroups_remote_copy_relationships_get_responses.go │ │ │ │ ├── pcloud_volumegroups_storage_details_get_parameters.go │ │ │ │ └── pcloud_volumegroups_storage_details_get_responses.go │ │ │ ├── p_cloud_volume_onboarding/ │ │ │ │ ├── p_cloud_volume_onboarding_client.go │ │ │ │ ├── pcloud_volume_onboarding_get_parameters.go │ │ │ │ ├── pcloud_volume_onboarding_get_responses.go │ │ │ │ ├── pcloud_volume_onboarding_getall_parameters.go │ │ │ │ ├── pcloud_volume_onboarding_getall_responses.go │ │ │ │ ├── pcloud_volume_onboarding_post_parameters.go │ │ │ │ └── pcloud_volume_onboarding_post_responses.go │ │ │ ├── p_cloud_volumes/ │ │ │ │ ├── p_cloud_volumes_client.go │ │ │ │ ├── pcloud_cloudinstances_volumes_action_post_parameters.go │ │ │ │ ├── pcloud_cloudinstances_volumes_action_post_responses.go │ │ │ │ ├── pcloud_cloudinstances_volumes_delete_parameters.go │ │ │ │ ├── pcloud_cloudinstances_volumes_delete_responses.go │ │ │ │ ├── pcloud_cloudinstances_volumes_flash_copy_mappings_get_parameters.go │ │ │ │ ├── pcloud_cloudinstances_volumes_flash_copy_mappings_get_responses.go │ │ │ │ ├── pcloud_cloudinstances_volumes_get_parameters.go │ │ │ │ ├── pcloud_cloudinstances_volumes_get_responses.go │ │ │ │ ├── pcloud_cloudinstances_volumes_getall_parameters.go │ │ │ │ ├── pcloud_cloudinstances_volumes_getall_responses.go │ │ │ │ ├── pcloud_cloudinstances_volumes_post_parameters.go │ │ │ │ ├── pcloud_cloudinstances_volumes_post_responses.go │ │ │ │ ├── pcloud_cloudinstances_volumes_put_parameters.go │ │ │ │ ├── pcloud_cloudinstances_volumes_put_responses.go │ │ │ │ ├── pcloud_cloudinstances_volumes_remote_copy_relationship_get_parameters.go │ │ │ │ ├── pcloud_cloudinstances_volumes_remote_copy_relationship_get_responses.go │ │ │ │ ├── pcloud_pvminstances_volumes_delete_parameters.go │ │ │ │ ├── pcloud_pvminstances_volumes_delete_responses.go │ │ │ │ ├── pcloud_pvminstances_volumes_get_parameters.go │ │ │ │ ├── pcloud_pvminstances_volumes_get_responses.go │ │ │ │ ├── pcloud_pvminstances_volumes_getall_parameters.go │ │ │ │ ├── pcloud_pvminstances_volumes_getall_responses.go │ │ │ │ ├── pcloud_pvminstances_volumes_post_parameters.go │ │ │ │ ├── pcloud_pvminstances_volumes_post_responses.go │ │ │ │ ├── pcloud_pvminstances_volumes_put_parameters.go │ │ │ │ ├── pcloud_pvminstances_volumes_put_responses.go │ │ │ │ ├── pcloud_pvminstances_volumes_setboot_put_parameters.go │ │ │ │ ├── pcloud_pvminstances_volumes_setboot_put_responses.go │ │ │ │ ├── pcloud_v2_pvminstances_volumes_delete_parameters.go │ │ │ │ ├── pcloud_v2_pvminstances_volumes_delete_responses.go │ │ │ │ ├── pcloud_v2_pvminstances_volumes_post_parameters.go │ │ │ │ ├── pcloud_v2_pvminstances_volumes_post_responses.go │ │ │ │ ├── pcloud_v2_volumes_clone_post_parameters.go │ │ │ │ ├── pcloud_v2_volumes_clone_post_responses.go │ │ │ │ ├── pcloud_v2_volumes_clonetasks_get_parameters.go │ │ │ │ ├── pcloud_v2_volumes_clonetasks_get_responses.go │ │ │ │ ├── pcloud_v2_volumes_delete_parameters.go │ │ │ │ ├── pcloud_v2_volumes_delete_responses.go │ │ │ │ ├── pcloud_v2_volumes_getall_parameters.go │ │ │ │ ├── pcloud_v2_volumes_getall_responses.go │ │ │ │ ├── pcloud_v2_volumes_post_parameters.go │ │ │ │ ├── pcloud_v2_volumes_post_responses.go │ │ │ │ ├── pcloud_v2_volumesclone_cancel_post_parameters.go │ │ │ │ ├── pcloud_v2_volumesclone_cancel_post_responses.go │ │ │ │ ├── pcloud_v2_volumesclone_delete_parameters.go │ │ │ │ ├── pcloud_v2_volumesclone_delete_responses.go │ │ │ │ ├── pcloud_v2_volumesclone_execute_post_parameters.go │ │ │ │ ├── pcloud_v2_volumesclone_execute_post_responses.go │ │ │ │ ├── pcloud_v2_volumesclone_get_parameters.go │ │ │ │ ├── pcloud_v2_volumesclone_get_responses.go │ │ │ │ ├── pcloud_v2_volumesclone_getall_parameters.go │ │ │ │ ├── pcloud_v2_volumesclone_getall_responses.go │ │ │ │ ├── pcloud_v2_volumesclone_post_parameters.go │ │ │ │ ├── pcloud_v2_volumesclone_post_responses.go │ │ │ │ ├── pcloud_v2_volumesclone_start_post_parameters.go │ │ │ │ ├── pcloud_v2_volumesclone_start_post_responses.go │ │ │ │ ├── pcloud_volumes_clone_post_parameters.go │ │ │ │ └── pcloud_volumes_clone_post_responses.go │ │ │ ├── power_edge_router/ │ │ │ │ ├── power_edge_router_client.go │ │ │ │ ├── v1_poweredgerouter_action_post_parameters.go │ │ │ │ └── v1_poweredgerouter_action_post_responses.go │ │ │ ├── power_iaas_api_client.go │ │ │ ├── routes/ │ │ │ │ ├── routes_client.go │ │ │ │ ├── v1_routes_delete_parameters.go │ │ │ │ ├── v1_routes_delete_responses.go │ │ │ │ ├── v1_routes_get_parameters.go │ │ │ │ ├── v1_routes_get_responses.go │ │ │ │ ├── v1_routes_getall_parameters.go │ │ │ │ ├── v1_routes_getall_responses.go │ │ │ │ ├── v1_routes_post_parameters.go │ │ │ │ ├── v1_routes_post_responses.go │ │ │ │ ├── v1_routes_put_parameters.go │ │ │ │ ├── v1_routes_put_responses.go │ │ │ │ ├── v1_routes_report_get_parameters.go │ │ │ │ └── v1_routes_report_get_responses.go │ │ │ ├── service_bindings/ │ │ │ │ ├── service_binding_binding_parameters.go │ │ │ │ ├── service_binding_binding_responses.go │ │ │ │ ├── service_binding_get_parameters.go │ │ │ │ ├── service_binding_get_responses.go │ │ │ │ ├── service_binding_last_operation_get_parameters.go │ │ │ │ ├── service_binding_last_operation_get_responses.go │ │ │ │ ├── service_binding_unbinding_parameters.go │ │ │ │ ├── service_binding_unbinding_responses.go │ │ │ │ └── service_bindings_client.go │ │ │ ├── service_instances/ │ │ │ │ ├── service_instance_deprovision_parameters.go │ │ │ │ ├── service_instance_deprovision_responses.go │ │ │ │ ├── service_instance_get_parameters.go │ │ │ │ ├── service_instance_get_responses.go │ │ │ │ ├── service_instance_last_operation_get_parameters.go │ │ │ │ ├── service_instance_last_operation_get_responses.go │ │ │ │ ├── service_instance_provision_parameters.go │ │ │ │ ├── service_instance_provision_responses.go │ │ │ │ ├── service_instance_update_parameters.go │ │ │ │ ├── service_instance_update_responses.go │ │ │ │ └── service_instances_client.go │ │ │ ├── snapshots/ │ │ │ │ ├── snapshots_client.go │ │ │ │ ├── v1_snapshots_get_parameters.go │ │ │ │ ├── v1_snapshots_get_responses.go │ │ │ │ ├── v1_snapshots_getall_parameters.go │ │ │ │ ├── v1_snapshots_getall_responses.go │ │ │ │ ├── v1_volume_snapshots_get_parameters.go │ │ │ │ ├── v1_volume_snapshots_get_responses.go │ │ │ │ ├── v1_volume_snapshots_getall_parameters.go │ │ │ │ └── v1_volume_snapshots_getall_responses.go │ │ │ ├── ssh_keys/ │ │ │ │ ├── ssh_keys_client.go │ │ │ │ ├── v1_sshkeys_delete_parameters.go │ │ │ │ ├── v1_sshkeys_delete_responses.go │ │ │ │ ├── v1_sshkeys_get_parameters.go │ │ │ │ ├── v1_sshkeys_get_responses.go │ │ │ │ ├── v1_sshkeys_getall_parameters.go │ │ │ │ ├── v1_sshkeys_getall_responses.go │ │ │ │ ├── v1_sshkeys_post_parameters.go │ │ │ │ ├── v1_sshkeys_post_responses.go │ │ │ │ ├── v1_sshkeys_put_parameters.go │ │ │ │ └── v1_sshkeys_put_responses.go │ │ │ ├── storage_types/ │ │ │ │ ├── service_broker_storagetypes_get_parameters.go │ │ │ │ ├── service_broker_storagetypes_get_responses.go │ │ │ │ └── storage_types_client.go │ │ │ ├── swagger_spec/ │ │ │ │ ├── service_broker_swaggerspec_parameters.go │ │ │ │ ├── service_broker_swaggerspec_responses.go │ │ │ │ └── swagger_spec_client.go │ │ │ └── workspaces/ │ │ │ ├── v1_workspaces_get_parameters.go │ │ │ ├── v1_workspaces_get_responses.go │ │ │ ├── v1_workspaces_getall_parameters.go │ │ │ ├── v1_workspaces_getall_responses.go │ │ │ └── workspaces_client.go │ │ └── models/ │ │ ├── access_config.go │ │ ├── access_role.go │ │ ├── access_token.go │ │ ├── add_host.go │ │ ├── add_server_virtual_serial_number.go │ │ ├── async_operation.go │ │ ├── auxiliary_volume_for_onboarding.go │ │ ├── auxiliary_volumes_for_onboarding.go │ │ ├── available_host.go │ │ ├── available_host_capacity.go │ │ ├── available_host_list.go │ │ ├── available_host_resource_capacity.go │ │ ├── available_stock_images.go │ │ ├── c_r_n.go │ │ ├── capabilities_details.go │ │ ├── catalog.go │ │ ├── clone_task_reference.go │ │ ├── clone_task_status.go │ │ ├── cloned_volume.go │ │ ├── cloned_volume_detail.go │ │ ├── cloud_connection.go │ │ ├── cloud_connection_create.go │ │ ├── cloud_connection_create_response.go │ │ ├── cloud_connection_endpoint_classic.go │ │ ├── cloud_connection_endpoint_classic_update.go │ │ ├── cloud_connection_endpoint_v_p_c.go │ │ ├── cloud_connection_g_r_e_tunnel.go │ │ ├── cloud_connection_g_r_e_tunnel_create.go │ │ ├── cloud_connection_update.go │ │ ├── cloud_connection_v_p_c.go │ │ ├── cloud_connection_virtual_private_clouds.go │ │ ├── cloud_connections.go │ │ ├── cloud_initialization.go │ │ ├── cloud_instance.go │ │ ├── cloud_instance_create.go │ │ ├── cloud_instance_reference.go │ │ ├── cloud_instance_update.go │ │ ├── cloud_instance_usage_limits.go │ │ ├── console_language.go │ │ ├── console_languages.go │ │ ├── context.go │ │ ├── create_cos_image_import_job.go │ │ ├── create_data_volume.go │ │ ├── create_image.go │ │ ├── create_server_virtual_serial_number.go │ │ ├── create_workspace_ssh_key.go │ │ ├── d_h_c_p_server.go │ │ ├── d_h_c_p_server_create.go │ │ ├── d_h_c_p_server_detail.go │ │ ├── d_h_c_p_server_leases.go │ │ ├── d_h_c_p_server_network.go │ │ ├── d_h_c_p_servers.go │ │ ├── dashboard_client.go │ │ ├── datacenter.go │ │ ├── datacenter_location.go │ │ ├── datacenters.go │ │ ├── dead_peer_detection.go │ │ ├── delete_server_virtual_serial_number.go │ │ ├── deployment_target.go │ │ ├── device_code.go │ │ ├── disaster_recovery.go │ │ ├── disaster_recovery_location.go │ │ ├── disaster_recovery_locations.go │ │ ├── error.go │ │ ├── event.go │ │ ├── event_user.go │ │ ├── events.go │ │ ├── export_image.go │ │ ├── flash_copy_mapping.go │ │ ├── flash_copy_mappings.go │ │ ├── get_bulk_volume.go │ │ ├── get_server_virtual_serial_number.go │ │ ├── hardware_platform.go │ │ ├── hardware_platforms.go │ │ ├── health.go │ │ ├── host.go │ │ ├── host_capacity.go │ │ ├── host_create.go │ │ ├── host_group.go │ │ ├── host_group_create.go │ │ ├── host_group_list.go │ │ ├── host_group_share_op.go │ │ ├── host_group_summary.go │ │ ├── host_href.go │ │ ├── host_info.go │ │ ├── host_list.go │ │ ├── host_p_vm_instance.go │ │ ├── host_put.go │ │ ├── host_resource.go │ │ ├── host_resource_capacity.go │ │ ├── host_resources.go │ │ ├── i_k_e_policies.go │ │ ├── i_k_e_policy.go │ │ ├── i_k_e_policy_authentication.go │ │ ├── i_k_e_policy_create.go │ │ ├── i_k_e_policy_ref.go │ │ ├── i_k_e_policy_update.go │ │ ├── image.go │ │ ├── image_import_details.go │ │ ├── image_reference.go │ │ ├── image_specifications.go │ │ ├── image_volume.go │ │ ├── images.go │ │ ├── instance_capabilities.go │ │ ├── instance_capability.go │ │ ├── internal_operations_request.go │ │ ├── internal_operations_response.go │ │ ├── ip_address_range.go │ │ ├── ip_s_e_c_policy_authentication.go │ │ ├── ip_sec_policies.go │ │ ├── ip_sec_policy.go │ │ ├── ip_sec_policy_create.go │ │ ├── ip_sec_policy_ref.go │ │ ├── ip_sec_policy_update.go │ │ ├── job.go │ │ ├── job_reference.go │ │ ├── jobs.go │ │ ├── json_schema_object.go │ │ ├── key_lifetime.go │ │ ├── last_operation_resource.go │ │ ├── maximum_storage_allocation.go │ │ ├── metadata.go │ │ ├── min_max_default.go │ │ ├── multi_volumes_create.go │ │ ├── network.go │ │ ├── network_address_group.go │ │ ├── network_address_group_add_member.go │ │ ├── network_address_group_create.go │ │ ├── network_address_group_member.go │ │ ├── network_address_group_update.go │ │ ├── network_address_groups.go │ │ ├── network_address_translation.go │ │ ├── network_create.go │ │ ├── network_create_peer.go │ │ ├── network_i_ds.go │ │ ├── network_id.go │ │ ├── network_interface.go │ │ ├── network_interface_create.go │ │ ├── network_interface_update.go │ │ ├── network_interfaces.go │ │ ├── network_peer.go │ │ ├── network_peer_type.go │ │ ├── network_peers.go │ │ ├── network_port.go │ │ ├── network_port_create.go │ │ ├── network_port_update.go │ │ ├── network_ports.go │ │ ├── network_reference.go │ │ ├── network_security_group.go │ │ ├── network_security_group_add_member.go │ │ ├── network_security_group_add_rule.go │ │ ├── network_security_group_clone.go │ │ ├── network_security_group_create.go │ │ ├── network_security_group_member.go │ │ ├── network_security_group_move_member.go │ │ ├── network_security_group_rule.go │ │ ├── network_security_group_rule_port.go │ │ ├── network_security_group_rule_protocol.go │ │ ├── network_security_group_rule_protocol_tcp_flag.go │ │ ├── network_security_group_rule_remote.go │ │ ├── network_security_group_update.go │ │ ├── network_security_groups.go │ │ ├── network_security_groups_action.go │ │ ├── network_update.go │ │ ├── networks.go │ │ ├── object.go │ │ ├── open_stack.go │ │ ├── open_stack_create.go │ │ ├── open_stack_info.go │ │ ├── open_stacks.go │ │ ├── operation.go │ │ ├── operations.go │ │ ├── owner_info.go │ │ ├── p_vm_instance.go │ │ ├── p_vm_instance_action.go │ │ ├── p_vm_instance_add_network.go │ │ ├── p_vm_instance_capture.go │ │ ├── p_vm_instance_clone.go │ │ ├── p_vm_instance_configuration.go │ │ ├── p_vm_instance_console.go │ │ ├── p_vm_instance_cores.go │ │ ├── p_vm_instance_create.go │ │ ├── p_vm_instance_delete.go │ │ ├── p_vm_instance_fault.go │ │ ├── p_vm_instance_health.go │ │ ├── p_vm_instance_list.go │ │ ├── p_vm_instance_memory.go │ │ ├── p_vm_instance_multi_create.go │ │ ├── p_vm_instance_network.go │ │ ├── p_vm_instance_networks.go │ │ ├── p_vm_instance_operating_system.go │ │ ├── p_vm_instance_operation.go │ │ ├── p_vm_instance_reference.go │ │ ├── p_vm_instance_reference_v2.go │ │ ├── p_vm_instance_remove_network.go │ │ ├── p_vm_instance_update.go │ │ ├── p_vm_instance_update_response.go │ │ ├── p_vm_instance_v2_health.go │ │ ├── p_vm_instance_v2_network_port.go │ │ ├── p_vm_instance_virtual_cores.go │ │ ├── p_vm_instance_volume_update.go │ │ ├── p_vm_instances.go │ │ ├── p_vm_instances_v2.go │ │ ├── peer_gateway_address.go │ │ ├── peer_subnet_update.go │ │ ├── peer_subnets.go │ │ ├── peering_network.go │ │ ├── permissions.go │ │ ├── pin_policy.go │ │ ├── placement_group.go │ │ ├── placement_group_create.go │ │ ├── placement_group_server.go │ │ ├── placement_groups.go │ │ ├── plan.go │ │ ├── pod_capacity.go │ │ ├── pod_data.go │ │ ├── power_edge_router_action.go │ │ ├── power_v_s_instance.go │ │ ├── power_v_s_instances.go │ │ ├── pvm_instance_deployment.go │ │ ├── pvm_instance_host.go │ │ ├── pvm_instance_placement_group.go │ │ ├── region_storage_tiers.go │ │ ├── region_storage_types.go │ │ ├── remote_copy_relationship.go │ │ ├── remove_virtual_serial_number.go │ │ ├── replication_service.go │ │ ├── replication_sites.go │ │ ├── replication_target_location.go │ │ ├── resource_access.go │ │ ├── resource_target_info.go │ │ ├── route.go │ │ ├── route_create.go │ │ ├── route_report.go │ │ ├── route_report_route.go │ │ ├── route_update.go │ │ ├── routes.go │ │ ├── s_a_p_create.go │ │ ├── s_a_p_profile.go │ │ ├── s_a_p_profile_reference.go │ │ ├── s_a_p_profiles.go │ │ ├── s_p_p_placement_group.go │ │ ├── s_p_p_placement_group_create.go │ │ ├── s_p_p_placement_groups.go │ │ ├── s_r_c.go │ │ ├── satellite_order.go │ │ ├── satellite_registration.go │ │ ├── satellite_tag.go │ │ ├── schema_parameters.go │ │ ├── schemas_object.go │ │ ├── secondary.go │ │ ├── service.go │ │ ├── service_authentication_info.go │ │ ├── service_binding.go │ │ ├── service_binding_request.go │ │ ├── service_binding_resource.go │ │ ├── service_binding_resource_object.go │ │ ├── service_binding_schema_object.go │ │ ├── service_binding_volume_mount.go │ │ ├── service_binding_volume_mount_device.go │ │ ├── service_instance.go │ │ ├── service_instance_async_operation.go │ │ ├── service_instance_previous_values.go │ │ ├── service_instance_provision.go │ │ ├── service_instance_provision_request.go │ │ ├── service_instance_request.go │ │ ├── service_instance_resource.go │ │ ├── service_instance_schema_object.go │ │ ├── service_instance_update.go │ │ ├── service_instance_update_request.go │ │ ├── shared_processor_pool.go │ │ ├── shared_processor_pool_create.go │ │ ├── shared_processor_pool_detail.go │ │ ├── shared_processor_pool_placement_group.go │ │ ├── shared_processor_pool_server.go │ │ ├── shared_processor_pool_update.go │ │ ├── shared_processor_pools.go │ │ ├── site.go │ │ ├── snapshot.go │ │ ├── snapshot_create.go │ │ ├── snapshot_create_response.go │ │ ├── snapshot_list.go │ │ ├── snapshot_restore.go │ │ ├── snapshot_update.go │ │ ├── snapshot_v1.go │ │ ├── snapshots.go │ │ ├── softlayer_subscription.go │ │ ├── software_licenses.go │ │ ├── software_tier.go │ │ ├── ssh_key.go │ │ ├── ssh_keys.go │ │ ├── status.go │ │ ├── status_description.go │ │ ├── status_description_error.go │ │ ├── stock_image.go │ │ ├── stock_images.go │ │ ├── storage_affinity.go │ │ ├── storage_controller.go │ │ ├── storage_controllers.go │ │ ├── storage_entities.go │ │ ├── storage_pool.go │ │ ├── storage_pool_capacity.go │ │ ├── storage_pool_combined.go │ │ ├── storage_pool_map.go │ │ ├── storage_pools.go │ │ ├── storage_pools_capacity.go │ │ ├── storage_tier.go │ │ ├── storage_type.go │ │ ├── storage_type_capacity.go │ │ ├── storage_types.go │ │ ├── storage_types_capacity.go │ │ ├── supported_software_tier.go │ │ ├── supported_software_tier_list.go │ │ ├── supported_systems.go │ │ ├── system.go │ │ ├── system_pool.go │ │ ├── system_pool_capacity.go │ │ ├── system_pools.go │ │ ├── system_pools_capacity.go │ │ ├── system_resources.go │ │ ├── tags.go │ │ ├── target_object.go │ │ ├── task.go │ │ ├── task_reference.go │ │ ├── tenant.go │ │ ├── tenant_update.go │ │ ├── thresholds.go │ │ ├── token.go │ │ ├── token_extra.go │ │ ├── token_request.go │ │ ├── transit_connection_error_item.go │ │ ├── transit_gateway_instance.go │ │ ├── transit_gateway_location.go │ │ ├── transit_gateway_locations.go │ │ ├── update_server_virtual_serial_number.go │ │ ├── update_storage_pool.go │ │ ├── update_virtual_serial_number.go │ │ ├── update_volume.go │ │ ├── update_workspace_ssh_key.go │ │ ├── user_authentication_info.go │ │ ├── user_info.go │ │ ├── v_p_n_connection.go │ │ ├── v_p_n_connection_create.go │ │ ├── v_p_n_connection_create_response.go │ │ ├── v_p_n_connection_update.go │ │ ├── v_p_n_connections.go │ │ ├── version.go │ │ ├── virtual_cores.go │ │ ├── virtual_serial_number.go │ │ ├── virtual_serial_number_list.go │ │ ├── volume.go │ │ ├── volume_action.go │ │ ├── volume_group.go │ │ ├── volume_group_action.go │ │ ├── volume_group_action_reset.go │ │ ├── volume_group_action_start.go │ │ ├── volume_group_action_stop.go │ │ ├── volume_group_create.go │ │ ├── volume_group_create_response.go │ │ ├── volume_group_details.go │ │ ├── volume_group_remote_copy_relationships.go │ │ ├── volume_group_storage_details.go │ │ ├── volume_group_update.go │ │ ├── volume_groups.go │ │ ├── volume_groups_details.go │ │ ├── volume_info.go │ │ ├── volume_onboarding.go │ │ ├── volume_onboarding_common.go │ │ ├── volume_onboarding_create.go │ │ ├── volume_onboarding_create_response.go │ │ ├── volume_onboarding_failure.go │ │ ├── volume_onboardings.go │ │ ├── volume_reference.go │ │ ├── volume_remote_copy_relationship.go │ │ ├── volume_snapshot_list.go │ │ ├── volumes.go │ │ ├── volumes_attach.go │ │ ├── volumes_attachment_response.go │ │ ├── volumes_clone.go │ │ ├── volumes_clone_async_request.go │ │ ├── volumes_clone_cancel.go │ │ ├── volumes_clone_create.go │ │ ├── volumes_clone_detail.go │ │ ├── volumes_clone_execute.go │ │ ├── volumes_clone_request.go │ │ ├── volumes_clone_response.go │ │ ├── volumes_clones.go │ │ ├── volumes_delete.go │ │ ├── volumes_delete_response.go │ │ ├── volumes_detach.go │ │ ├── volumes_detachment_response.go │ │ ├── workspace.go │ │ ├── workspace_details.go │ │ ├── workspace_location.go │ │ ├── workspace_network_security_groups_details.go │ │ ├── workspace_power_edge_router_details.go │ │ ├── workspace_ssh_key.go │ │ ├── workspace_ssh_keys.go │ │ └── workspaces.go │ ├── MakeNowJust/ │ │ └── heredoc/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── heredoc.go │ ├── Masterminds/ │ │ └── semver/ │ │ └── v3/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── collection.go │ │ ├── constraints.go │ │ ├── doc.go │ │ └── version.go │ ├── NYTimes/ │ │ └── gziphandler/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── gzip.go │ │ └── gzip_go18.go │ ├── OpenPeeDeeP/ │ │ └── depguard/ │ │ └── v2/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── depguard.go │ │ ├── internal/ │ │ │ └── utils/ │ │ │ ├── errors.go │ │ │ └── variables.go │ │ └── settings.go │ ├── PaesslerAG/ │ │ ├── gval/ │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── evaluable.go │ │ │ ├── functions.go │ │ │ ├── gval.go │ │ │ ├── language.go │ │ │ ├── operator.go │ │ │ ├── parse.go │ │ │ └── parser.go │ │ └── jsonpath/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── jsonpath.go │ │ ├── parse.go │ │ ├── path.go │ │ ├── placeholder.go │ │ ├── selector.go │ │ └── test.sh │ ├── alecthomas/ │ │ └── go-check-sumtype/ │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── COPYING │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── UNLICENSE │ │ ├── check.go │ │ ├── config.go │ │ ├── decl.go │ │ ├── def.go │ │ ├── doc.go │ │ ├── renovate.json5 │ │ └── run.go │ ├── alexkohler/ │ │ ├── nakedret/ │ │ │ └── v2/ │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── import.go │ │ │ └── nakedret.go │ │ └── prealloc/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── prealloc.go │ ├── alingse/ │ │ └── nilnesserr/ │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal/ │ │ │ └── typeparams/ │ │ │ ├── coretype.go │ │ │ ├── normalize.go │ │ │ ├── termlist.go │ │ │ └── typeterm.go │ │ ├── linter.go │ │ ├── nilerr.go │ │ └── nilness.go │ ├── antlr4-go/ │ │ └── antlr/ │ │ └── v4/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── antlrdoc.go │ │ ├── atn.go │ │ ├── atn_config.go │ │ ├── atn_config_set.go │ │ ├── atn_deserialization_options.go │ │ ├── atn_deserializer.go │ │ ├── atn_simulator.go │ │ ├── atn_state.go │ │ ├── atn_type.go │ │ ├── char_stream.go │ │ ├── common_token_factory.go │ │ ├── common_token_stream.go │ │ ├── comparators.go │ │ ├── configuration.go │ │ ├── dfa.go │ │ ├── dfa_serializer.go │ │ ├── dfa_state.go │ │ ├── diagnostic_error_listener.go │ │ ├── error_listener.go │ │ ├── error_strategy.go │ │ ├── errors.go │ │ ├── file_stream.go │ │ ├── input_stream.go │ │ ├── int_stream.go │ │ ├── interval_set.go │ │ ├── jcollect.go │ │ ├── lexer.go │ │ ├── lexer_action.go │ │ ├── lexer_action_executor.go │ │ ├── lexer_atn_simulator.go │ │ ├── ll1_analyzer.go │ │ ├── mutex.go │ │ ├── mutex_nomutex.go │ │ ├── nostatistics.go │ │ ├── parser.go │ │ ├── parser_atn_simulator.go │ │ ├── parser_rule_context.go │ │ ├── prediction_context.go │ │ ├── prediction_context_cache.go │ │ ├── prediction_mode.go │ │ ├── recognizer.go │ │ ├── rule_context.go │ │ ├── semantic_context.go │ │ ├── statistics.go │ │ ├── stats_data.go │ │ ├── token.go │ │ ├── token_source.go │ │ ├── token_stream.go │ │ ├── tokenstream_rewriter.go │ │ ├── trace_listener.go │ │ ├── transition.go │ │ ├── tree.go │ │ ├── trees.go │ │ └── utils.go │ ├── apparentlymart/ │ │ └── go-cidr/ │ │ ├── LICENSE │ │ └── cidr/ │ │ ├── cidr.go │ │ └── wrangling.go │ ├── asaskevich/ │ │ └── govalidator/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arrays.go │ │ ├── converter.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── numerics.go │ │ ├── patterns.go │ │ ├── types.go │ │ ├── utils.go │ │ ├── v11/ │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arrays.go │ │ │ ├── converter.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── numerics.go │ │ │ ├── patterns.go │ │ │ ├── types.go │ │ │ ├── utils.go │ │ │ ├── validator.go │ │ │ └── wercker.yml │ │ ├── validator.go │ │ └── wercker.yml │ ├── ashanbrown/ │ │ ├── forbidigo/ │ │ │ ├── LICENSE │ │ │ └── forbidigo/ │ │ │ ├── config_options.go │ │ │ ├── forbidigo.go │ │ │ └── patterns.go │ │ └── makezero/ │ │ ├── LICENSE │ │ └── makezero/ │ │ └── makezero.go │ ├── aws/ │ │ ├── aws-sdk-go/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── aws/ │ │ │ │ ├── arn/ │ │ │ │ │ └── arn.go │ │ │ │ ├── auth/ │ │ │ │ │ └── bearer/ │ │ │ │ │ └── token.go │ │ │ │ ├── awserr/ │ │ │ │ │ ├── error.go │ │ │ │ │ └── types.go │ │ │ │ ├── awsutil/ │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── path_value.go │ │ │ │ │ ├── prettify.go │ │ │ │ │ └── string_value.go │ │ │ │ ├── client/ │ │ │ │ │ ├── client.go │ │ │ │ │ ├── default_retryer.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── metadata/ │ │ │ │ │ │ └── client_info.go │ │ │ │ │ └── no_op_retryer.go │ │ │ │ ├── config.go │ │ │ │ ├── context_1_5.go │ │ │ │ ├── context_1_9.go │ │ │ │ ├── context_background_1_5.go │ │ │ │ ├── context_background_1_7.go │ │ │ │ ├── context_sleep.go │ │ │ │ ├── convert_types.go │ │ │ │ ├── corehandlers/ │ │ │ │ │ ├── awsinternal.go │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── param_validator.go │ │ │ │ │ └── user_agent.go │ │ │ │ ├── credentials/ │ │ │ │ │ ├── chain_provider.go │ │ │ │ │ ├── context_background_go1.5.go │ │ │ │ │ ├── context_background_go1.7.go │ │ │ │ │ ├── context_go1.5.go │ │ │ │ │ ├── context_go1.9.go │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── ec2rolecreds/ │ │ │ │ │ │ └── ec2_role_provider.go │ │ │ │ │ ├── endpointcreds/ │ │ │ │ │ │ └── provider.go │ │ │ │ │ ├── env_provider.go │ │ │ │ │ ├── example.ini │ │ │ │ │ ├── processcreds/ │ │ │ │ │ │ └── provider.go │ │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ │ ├── ssocreds/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── os.go │ │ │ │ │ │ ├── os_windows.go │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ ├── sso_cached_token.go │ │ │ │ │ │ └── token_provider.go │ │ │ │ │ ├── static_provider.go │ │ │ │ │ └── stscreds/ │ │ │ │ │ ├── assume_role_provider.go │ │ │ │ │ └── web_identity_provider.go │ │ │ │ ├── csm/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── enable.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── metric_chan.go │ │ │ │ │ ├── metric_exception.go │ │ │ │ │ └── reporter.go │ │ │ │ ├── defaults/ │ │ │ │ │ ├── defaults.go │ │ │ │ │ └── shared_config.go │ │ │ │ ├── doc.go │ │ │ │ ├── ec2metadata/ │ │ │ │ │ ├── api.go │ │ │ │ │ ├── service.go │ │ │ │ │ └── token_provider.go │ │ │ │ ├── endpoints/ │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── dep_service_ids.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── legacy_regions.go │ │ │ │ │ ├── v3model.go │ │ │ │ │ └── v3model_codegen.go │ │ │ │ ├── errors.go │ │ │ │ ├── jsonvalue.go │ │ │ │ ├── logger.go │ │ │ │ ├── request/ │ │ │ │ │ ├── connection_reset_error.go │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── http_request.go │ │ │ │ │ ├── offset_reader.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── request_1_7.go │ │ │ │ │ ├── request_1_8.go │ │ │ │ │ ├── request_context.go │ │ │ │ │ ├── request_context_1_6.go │ │ │ │ │ ├── request_pagination.go │ │ │ │ │ ├── retryer.go │ │ │ │ │ ├── timeout_read_closer.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── waiter.go │ │ │ │ ├── session/ │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── custom_transport.go │ │ │ │ │ ├── custom_transport_go1.12.go │ │ │ │ │ ├── custom_transport_go1.5.go │ │ │ │ │ ├── custom_transport_go1.6.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── shared_config.go │ │ │ │ ├── signer/ │ │ │ │ │ └── v4/ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── request_context_go1.5.go │ │ │ │ │ ├── request_context_go1.7.go │ │ │ │ │ ├── stream.go │ │ │ │ │ ├── uri_path.go │ │ │ │ │ └── v4.go │ │ │ │ ├── types.go │ │ │ │ ├── url.go │ │ │ │ ├── url_1_7.go │ │ │ │ └── version.go │ │ │ ├── internal/ │ │ │ │ ├── context/ │ │ │ │ │ └── background_go1.5.go │ │ │ │ ├── ini/ │ │ │ │ │ ├── ast.go │ │ │ │ │ ├── comma_token.go │ │ │ │ │ ├── comment_token.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty_token.go │ │ │ │ │ ├── expression.go │ │ │ │ │ ├── fuzz.go │ │ │ │ │ ├── ini.go │ │ │ │ │ ├── ini_lexer.go │ │ │ │ │ ├── ini_parser.go │ │ │ │ │ ├── literal_tokens.go │ │ │ │ │ ├── newline_token.go │ │ │ │ │ ├── number_helper.go │ │ │ │ │ ├── op_tokens.go │ │ │ │ │ ├── parse_error.go │ │ │ │ │ ├── parse_stack.go │ │ │ │ │ ├── sep_tokens.go │ │ │ │ │ ├── skipper.go │ │ │ │ │ ├── statement.go │ │ │ │ │ ├── value_util.go │ │ │ │ │ ├── visitor.go │ │ │ │ │ ├── walker.go │ │ │ │ │ └── ws_token.go │ │ │ │ ├── s3shared/ │ │ │ │ │ ├── arn/ │ │ │ │ │ │ ├── accesspoint_arn.go │ │ │ │ │ │ ├── arn.go │ │ │ │ │ │ ├── outpost_arn.go │ │ │ │ │ │ └── s3_object_lambda_arn.go │ │ │ │ │ ├── endpoint_errors.go │ │ │ │ │ ├── resource_request.go │ │ │ │ │ └── s3err/ │ │ │ │ │ └── error.go │ │ │ │ ├── sdkio/ │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── io_go1.6.go │ │ │ │ │ └── io_go1.7.go │ │ │ │ ├── sdkmath/ │ │ │ │ │ ├── floor.go │ │ │ │ │ └── floor_go1.9.go │ │ │ │ ├── sdkrand/ │ │ │ │ │ ├── locked_source.go │ │ │ │ │ ├── read.go │ │ │ │ │ └── read_1_5.go │ │ │ │ ├── sdkuri/ │ │ │ │ │ └── path.go │ │ │ │ ├── shareddefaults/ │ │ │ │ │ ├── ecs_container.go │ │ │ │ │ ├── shared_config.go │ │ │ │ │ ├── shared_config_resolve_home.go │ │ │ │ │ └── shared_config_resolve_home_go1.12.go │ │ │ │ ├── strings/ │ │ │ │ │ └── strings.go │ │ │ │ └── sync/ │ │ │ │ └── singleflight/ │ │ │ │ ├── LICENSE │ │ │ │ └── singleflight.go │ │ │ ├── private/ │ │ │ │ ├── checksum/ │ │ │ │ │ └── content_md5.go │ │ │ │ └── protocol/ │ │ │ │ ├── ec2query/ │ │ │ │ │ ├── build.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── eventstream/ │ │ │ │ │ ├── debug.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── eventstreamapi/ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── reader.go │ │ │ │ │ │ ├── shared.go │ │ │ │ │ │ ├── signer.go │ │ │ │ │ │ ├── stream_writer.go │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ ├── transport_go1.17.go │ │ │ │ │ │ └── writer.go │ │ │ │ │ ├── header.go │ │ │ │ │ ├── header_value.go │ │ │ │ │ └── message.go │ │ │ │ ├── host.go │ │ │ │ ├── host_prefix.go │ │ │ │ ├── idempotency.go │ │ │ │ ├── json/ │ │ │ │ │ └── jsonutil/ │ │ │ │ │ ├── build.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── jsonrpc/ │ │ │ │ │ ├── jsonrpc.go │ │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── jsonvalue.go │ │ │ │ ├── payload.go │ │ │ │ ├── protocol.go │ │ │ │ ├── query/ │ │ │ │ │ ├── build.go │ │ │ │ │ ├── queryutil/ │ │ │ │ │ │ └── queryutil.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── rest/ │ │ │ │ │ ├── build.go │ │ │ │ │ ├── payload.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── restjson/ │ │ │ │ │ ├── restjson.go │ │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── restxml/ │ │ │ │ │ └── restxml.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── unmarshal.go │ │ │ │ ├── unmarshal_error.go │ │ │ │ └── xml/ │ │ │ │ └── xmlutil/ │ │ │ │ ├── build.go │ │ │ │ ├── sort.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── xml_to_struct.go │ │ │ └── service/ │ │ │ ├── cloudfront/ │ │ │ │ ├── api.go │ │ │ │ ├── cloudfrontiface/ │ │ │ │ │ └── interface.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── service.go │ │ │ │ └── waiters.go │ │ │ ├── ec2/ │ │ │ │ ├── api.go │ │ │ │ ├── customizations.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── service.go │ │ │ │ └── waiters.go │ │ │ ├── efs/ │ │ │ │ ├── api.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ └── service.go │ │ │ ├── elb/ │ │ │ │ ├── api.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── service.go │ │ │ │ └── waiters.go │ │ │ ├── elbv2/ │ │ │ │ ├── api.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── service.go │ │ │ │ └── waiters.go │ │ │ ├── iam/ │ │ │ │ ├── api.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── iamiface/ │ │ │ │ │ └── interface.go │ │ │ │ ├── service.go │ │ │ │ └── waiters.go │ │ │ ├── resourcegroupstaggingapi/ │ │ │ │ ├── api.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ └── service.go │ │ │ ├── route53/ │ │ │ │ ├── api.go │ │ │ │ ├── customizations.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── service.go │ │ │ │ ├── unmarshal_error.go │ │ │ │ └── waiters.go │ │ │ ├── s3/ │ │ │ │ ├── api.go │ │ │ │ ├── body_hash.go │ │ │ │ ├── bucket_location.go │ │ │ │ ├── customizations.go │ │ │ │ ├── doc.go │ │ │ │ ├── doc_custom.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpoint_builder.go │ │ │ │ ├── errors.go │ │ │ │ ├── host_style_bucket.go │ │ │ │ ├── platform_handlers.go │ │ │ │ ├── platform_handlers_go1.6.go │ │ │ │ ├── s3iface/ │ │ │ │ │ └── interface.go │ │ │ │ ├── s3manager/ │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── batch.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 │ │ │ │ │ ├── pool.go │ │ │ │ │ ├── read_seeker_write_to.go │ │ │ │ │ ├── upload.go │ │ │ │ │ ├── upload_input.go │ │ │ │ │ └── writer_read_from.go │ │ │ │ ├── service.go │ │ │ │ ├── sse.go │ │ │ │ ├── statusok_error.go │ │ │ │ ├── unmarshal_error.go │ │ │ │ └── waiters.go │ │ │ ├── sso/ │ │ │ │ ├── api.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── service.go │ │ │ │ └── ssoiface/ │ │ │ │ └── interface.go │ │ │ ├── ssooidc/ │ │ │ │ ├── api.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ └── service.go │ │ │ └── sts/ │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── stsiface/ │ │ │ └── interface.go │ │ ├── aws-sdk-go-v2/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── aws/ │ │ │ │ ├── accountid_endpoint_mode.go │ │ │ │ ├── arn/ │ │ │ │ │ └── arn.go │ │ │ │ ├── checksum.go │ │ │ │ ├── config.go │ │ │ │ ├── context.go │ │ │ │ ├── credential_cache.go │ │ │ │ ├── credentials.go │ │ │ │ ├── defaults/ │ │ │ │ │ ├── auto.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ └── doc.go │ │ │ │ ├── defaultsmode.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── errors.go │ │ │ │ ├── from_ptr.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── logging.go │ │ │ │ ├── logging_generate.go │ │ │ │ ├── middleware/ │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── osname.go │ │ │ │ │ ├── osname_go115.go │ │ │ │ │ ├── recursion_detection.go │ │ │ │ │ ├── request_id.go │ │ │ │ │ ├── request_id_retriever.go │ │ │ │ │ └── user_agent.go │ │ │ │ ├── protocol/ │ │ │ │ │ ├── ec2query/ │ │ │ │ │ │ └── error_utils.go │ │ │ │ │ ├── eventstream/ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── debug.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── eventstreamapi/ │ │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ │ └── transport_go117.go │ │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ │ ├── header.go │ │ │ │ │ │ ├── header_value.go │ │ │ │ │ │ └── message.go │ │ │ │ │ ├── query/ │ │ │ │ │ │ ├── array.go │ │ │ │ │ │ ├── encoder.go │ │ │ │ │ │ ├── map.go │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ ├── object.go │ │ │ │ │ │ └── value.go │ │ │ │ │ ├── restjson/ │ │ │ │ │ │ └── decoder_util.go │ │ │ │ │ └── xml/ │ │ │ │ │ └── error_utils.go │ │ │ │ ├── ratelimit/ │ │ │ │ │ ├── none.go │ │ │ │ │ ├── token_bucket.go │ │ │ │ │ └── token_rate_limit.go │ │ │ │ ├── request.go │ │ │ │ ├── retry/ │ │ │ │ │ ├── adaptive.go │ │ │ │ │ ├── adaptive_ratelimit.go │ │ │ │ │ ├── adaptive_token_bucket.go │ │ │ │ │ ├── attempt_metrics.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── jitter_backoff.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── retry.go │ │ │ │ │ ├── retryable_error.go │ │ │ │ │ ├── standard.go │ │ │ │ │ ├── throttle_error.go │ │ │ │ │ └── timeout_error.go │ │ │ │ ├── retryer.go │ │ │ │ ├── runtime.go │ │ │ │ ├── signer/ │ │ │ │ │ ├── internal/ │ │ │ │ │ │ └── v4/ │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ └── util.go │ │ │ │ │ └── v4/ │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ ├── stream.go │ │ │ │ │ └── v4.go │ │ │ │ ├── to_ptr.go │ │ │ │ ├── transport/ │ │ │ │ │ └── http/ │ │ │ │ │ ├── client.go │ │ │ │ │ ├── content_type.go │ │ │ │ │ ├── response_error.go │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ └── timeout_read_closer.go │ │ │ │ ├── types.go │ │ │ │ └── version.go │ │ │ ├── config/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── auth_scheme_preference.go │ │ │ │ ├── config.go │ │ │ │ ├── defaultsmode.go │ │ │ │ ├── doc.go │ │ │ │ ├── env_config.go │ │ │ │ ├── generate.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── load_options.go │ │ │ │ ├── local.go │ │ │ │ ├── provider.go │ │ │ │ ├── resolve.go │ │ │ │ ├── resolve_bearer_token.go │ │ │ │ ├── resolve_credentials.go │ │ │ │ └── shared_config.go │ │ │ ├── credentials/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── doc.go │ │ │ │ ├── ec2rolecreds/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── provider.go │ │ │ │ ├── endpointcreds/ │ │ │ │ │ ├── internal/ │ │ │ │ │ │ └── client/ │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ └── middleware.go │ │ │ │ │ └── provider.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── processcreds/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── provider.go │ │ │ │ ├── ssocreds/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── sso_cached_token.go │ │ │ │ │ ├── sso_credentials_provider.go │ │ │ │ │ └── sso_token_provider.go │ │ │ │ ├── static_provider.go │ │ │ │ └── stscreds/ │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ │ ├── feature/ │ │ │ │ ├── ec2/ │ │ │ │ │ └── imds/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── api_client.go │ │ │ │ │ ├── api_op_GetDynamicData.go │ │ │ │ │ ├── api_op_GetIAMInfo.go │ │ │ │ │ ├── api_op_GetInstanceIdentityDocument.go │ │ │ │ │ ├── api_op_GetMetadata.go │ │ │ │ │ ├── api_op_GetRegion.go │ │ │ │ │ ├── api_op_GetToken.go │ │ │ │ │ ├── api_op_GetUserData.go │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── internal/ │ │ │ │ │ │ └── config/ │ │ │ │ │ │ └── resolvers.go │ │ │ │ │ ├── request_middleware.go │ │ │ │ │ └── token_provider.go │ │ │ │ └── s3/ │ │ │ │ └── manager/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api.go │ │ │ │ ├── arn.go │ │ │ │ ├── bucket_region.go │ │ │ │ ├── buffered_read_seeker.go │ │ │ │ ├── default_read_seeker_write_to.go │ │ │ │ ├── default_read_seeker_write_to_windows.go │ │ │ │ ├── default_writer_read_from.go │ │ │ │ ├── default_writer_read_from_windows.go │ │ │ │ ├── doc.go │ │ │ │ ├── download.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── pool.go │ │ │ │ ├── read_seeker_write_to.go │ │ │ │ ├── types.go │ │ │ │ ├── upload.go │ │ │ │ └── writer_read_from.go │ │ │ ├── internal/ │ │ │ │ ├── auth/ │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── scheme.go │ │ │ │ │ └── smithy/ │ │ │ │ │ ├── bearer_token_adapter.go │ │ │ │ │ ├── bearer_token_signer_adapter.go │ │ │ │ │ ├── credentials_adapter.go │ │ │ │ │ ├── smithy.go │ │ │ │ │ └── v4signer_adapter.go │ │ │ │ ├── awsutil/ │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── prettify.go │ │ │ │ │ └── string_value.go │ │ │ │ ├── configsources/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── config.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── go_module_metadata.go │ │ │ │ ├── context/ │ │ │ │ │ └── context.go │ │ │ │ ├── endpoints/ │ │ │ │ │ ├── awsrulesfn/ │ │ │ │ │ │ ├── arn.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generate.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── partition.go │ │ │ │ │ │ ├── partitions.go │ │ │ │ │ │ └── partitions.json │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── v2/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── go_module_metadata.go │ │ │ │ ├── ini/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── ini.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── sections.go │ │ │ │ │ ├── strings.go │ │ │ │ │ ├── token.go │ │ │ │ │ ├── tokenize.go │ │ │ │ │ └── value.go │ │ │ │ ├── middleware/ │ │ │ │ │ └── middleware.go │ │ │ │ ├── rand/ │ │ │ │ │ └── rand.go │ │ │ │ ├── sdk/ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ └── time.go │ │ │ │ ├── sdkio/ │ │ │ │ │ └── byte.go │ │ │ │ ├── shareddefaults/ │ │ │ │ │ └── shared_config.go │ │ │ │ ├── strings/ │ │ │ │ │ └── strings.go │ │ │ │ ├── sync/ │ │ │ │ │ └── singleflight/ │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── docs.go │ │ │ │ │ └── singleflight.go │ │ │ │ ├── timeconv/ │ │ │ │ │ └── duration.go │ │ │ │ └── v4a/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── credentials.go │ │ │ │ ├── error.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── crypto/ │ │ │ │ │ │ ├── compare.go │ │ │ │ │ │ └── ecc.go │ │ │ │ │ └── v4/ │ │ │ │ │ ├── const.go │ │ │ │ │ ├── header_rules.go │ │ │ │ │ ├── headers.go │ │ │ │ │ ├── hmac.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── time.go │ │ │ │ │ └── util.go │ │ │ │ ├── middleware.go │ │ │ │ ├── presign_middleware.go │ │ │ │ ├── smithy.go │ │ │ │ └── v4a.go │ │ │ └── service/ │ │ │ ├── ec2/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AcceptAddressTransfer.go │ │ │ │ ├── api_op_AcceptCapacityReservationBillingOwnership.go │ │ │ │ ├── api_op_AcceptReservedInstancesExchangeQuote.go │ │ │ │ ├── api_op_AcceptTransitGatewayMulticastDomainAssociations.go │ │ │ │ ├── api_op_AcceptTransitGatewayPeeringAttachment.go │ │ │ │ ├── api_op_AcceptTransitGatewayVpcAttachment.go │ │ │ │ ├── api_op_AcceptVpcEndpointConnections.go │ │ │ │ ├── api_op_AcceptVpcPeeringConnection.go │ │ │ │ ├── api_op_AdvertiseByoipCidr.go │ │ │ │ ├── api_op_AllocateAddress.go │ │ │ │ ├── api_op_AllocateHosts.go │ │ │ │ ├── api_op_AllocateIpamPoolCidr.go │ │ │ │ ├── api_op_ApplySecurityGroupsToClientVpnTargetNetwork.go │ │ │ │ ├── api_op_AssignIpv6Addresses.go │ │ │ │ ├── api_op_AssignPrivateIpAddresses.go │ │ │ │ ├── api_op_AssignPrivateNatGatewayAddress.go │ │ │ │ ├── api_op_AssociateAddress.go │ │ │ │ ├── api_op_AssociateCapacityReservationBillingOwner.go │ │ │ │ ├── api_op_AssociateClientVpnTargetNetwork.go │ │ │ │ ├── api_op_AssociateDhcpOptions.go │ │ │ │ ├── api_op_AssociateEnclaveCertificateIamRole.go │ │ │ │ ├── api_op_AssociateIamInstanceProfile.go │ │ │ │ ├── api_op_AssociateInstanceEventWindow.go │ │ │ │ ├── api_op_AssociateIpamByoasn.go │ │ │ │ ├── api_op_AssociateIpamResourceDiscovery.go │ │ │ │ ├── api_op_AssociateNatGatewayAddress.go │ │ │ │ ├── api_op_AssociateRouteServer.go │ │ │ │ ├── api_op_AssociateRouteTable.go │ │ │ │ ├── api_op_AssociateSecurityGroupVpc.go │ │ │ │ ├── api_op_AssociateSubnetCidrBlock.go │ │ │ │ ├── api_op_AssociateTransitGatewayMulticastDomain.go │ │ │ │ ├── api_op_AssociateTransitGatewayPolicyTable.go │ │ │ │ ├── api_op_AssociateTransitGatewayRouteTable.go │ │ │ │ ├── api_op_AssociateTrunkInterface.go │ │ │ │ ├── api_op_AssociateVpcCidrBlock.go │ │ │ │ ├── api_op_AttachClassicLinkVpc.go │ │ │ │ ├── api_op_AttachInternetGateway.go │ │ │ │ ├── api_op_AttachNetworkInterface.go │ │ │ │ ├── api_op_AttachVerifiedAccessTrustProvider.go │ │ │ │ ├── api_op_AttachVolume.go │ │ │ │ ├── api_op_AttachVpnGateway.go │ │ │ │ ├── api_op_AuthorizeClientVpnIngress.go │ │ │ │ ├── api_op_AuthorizeSecurityGroupEgress.go │ │ │ │ ├── api_op_AuthorizeSecurityGroupIngress.go │ │ │ │ ├── api_op_BundleInstance.go │ │ │ │ ├── api_op_CancelBundleTask.go │ │ │ │ ├── api_op_CancelCapacityReservation.go │ │ │ │ ├── api_op_CancelCapacityReservationFleets.go │ │ │ │ ├── api_op_CancelConversionTask.go │ │ │ │ ├── api_op_CancelDeclarativePoliciesReport.go │ │ │ │ ├── api_op_CancelExportTask.go │ │ │ │ ├── api_op_CancelImageLaunchPermission.go │ │ │ │ ├── api_op_CancelImportTask.go │ │ │ │ ├── api_op_CancelReservedInstancesListing.go │ │ │ │ ├── api_op_CancelSpotFleetRequests.go │ │ │ │ ├── api_op_CancelSpotInstanceRequests.go │ │ │ │ ├── api_op_ConfirmProductInstance.go │ │ │ │ ├── api_op_CopyFpgaImage.go │ │ │ │ ├── api_op_CopyImage.go │ │ │ │ ├── api_op_CopySnapshot.go │ │ │ │ ├── api_op_CreateCapacityReservation.go │ │ │ │ ├── api_op_CreateCapacityReservationBySplitting.go │ │ │ │ ├── api_op_CreateCapacityReservationFleet.go │ │ │ │ ├── api_op_CreateCarrierGateway.go │ │ │ │ ├── api_op_CreateClientVpnEndpoint.go │ │ │ │ ├── api_op_CreateClientVpnRoute.go │ │ │ │ ├── api_op_CreateCoipCidr.go │ │ │ │ ├── api_op_CreateCoipPool.go │ │ │ │ ├── api_op_CreateCustomerGateway.go │ │ │ │ ├── api_op_CreateDefaultSubnet.go │ │ │ │ ├── api_op_CreateDefaultVpc.go │ │ │ │ ├── api_op_CreateDelegateMacVolumeOwnershipTask.go │ │ │ │ ├── api_op_CreateDhcpOptions.go │ │ │ │ ├── api_op_CreateEgressOnlyInternetGateway.go │ │ │ │ ├── api_op_CreateFleet.go │ │ │ │ ├── api_op_CreateFlowLogs.go │ │ │ │ ├── api_op_CreateFpgaImage.go │ │ │ │ ├── api_op_CreateImage.go │ │ │ │ ├── api_op_CreateInstanceConnectEndpoint.go │ │ │ │ ├── api_op_CreateInstanceEventWindow.go │ │ │ │ ├── api_op_CreateInstanceExportTask.go │ │ │ │ ├── api_op_CreateInternetGateway.go │ │ │ │ ├── api_op_CreateIpam.go │ │ │ │ ├── api_op_CreateIpamExternalResourceVerificationToken.go │ │ │ │ ├── api_op_CreateIpamPool.go │ │ │ │ ├── api_op_CreateIpamResourceDiscovery.go │ │ │ │ ├── api_op_CreateIpamScope.go │ │ │ │ ├── api_op_CreateKeyPair.go │ │ │ │ ├── api_op_CreateLaunchTemplate.go │ │ │ │ ├── api_op_CreateLaunchTemplateVersion.go │ │ │ │ ├── api_op_CreateLocalGatewayRoute.go │ │ │ │ ├── api_op_CreateLocalGatewayRouteTable.go │ │ │ │ ├── api_op_CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation.go │ │ │ │ ├── api_op_CreateLocalGatewayRouteTableVpcAssociation.go │ │ │ │ ├── api_op_CreateLocalGatewayVirtualInterface.go │ │ │ │ ├── api_op_CreateLocalGatewayVirtualInterfaceGroup.go │ │ │ │ ├── api_op_CreateMacSystemIntegrityProtectionModificationTask.go │ │ │ │ ├── api_op_CreateManagedPrefixList.go │ │ │ │ ├── api_op_CreateNatGateway.go │ │ │ │ ├── api_op_CreateNetworkAcl.go │ │ │ │ ├── api_op_CreateNetworkAclEntry.go │ │ │ │ ├── api_op_CreateNetworkInsightsAccessScope.go │ │ │ │ ├── api_op_CreateNetworkInsightsPath.go │ │ │ │ ├── api_op_CreateNetworkInterface.go │ │ │ │ ├── api_op_CreateNetworkInterfacePermission.go │ │ │ │ ├── api_op_CreatePlacementGroup.go │ │ │ │ ├── api_op_CreatePublicIpv4Pool.go │ │ │ │ ├── api_op_CreateReplaceRootVolumeTask.go │ │ │ │ ├── api_op_CreateReservedInstancesListing.go │ │ │ │ ├── api_op_CreateRestoreImageTask.go │ │ │ │ ├── api_op_CreateRoute.go │ │ │ │ ├── api_op_CreateRouteServer.go │ │ │ │ ├── api_op_CreateRouteServerEndpoint.go │ │ │ │ ├── api_op_CreateRouteServerPeer.go │ │ │ │ ├── api_op_CreateRouteTable.go │ │ │ │ ├── api_op_CreateSecurityGroup.go │ │ │ │ ├── api_op_CreateSnapshot.go │ │ │ │ ├── api_op_CreateSnapshots.go │ │ │ │ ├── api_op_CreateSpotDatafeedSubscription.go │ │ │ │ ├── api_op_CreateStoreImageTask.go │ │ │ │ ├── api_op_CreateSubnet.go │ │ │ │ ├── api_op_CreateSubnetCidrReservation.go │ │ │ │ ├── api_op_CreateTags.go │ │ │ │ ├── api_op_CreateTrafficMirrorFilter.go │ │ │ │ ├── api_op_CreateTrafficMirrorFilterRule.go │ │ │ │ ├── api_op_CreateTrafficMirrorSession.go │ │ │ │ ├── api_op_CreateTrafficMirrorTarget.go │ │ │ │ ├── api_op_CreateTransitGateway.go │ │ │ │ ├── api_op_CreateTransitGatewayConnect.go │ │ │ │ ├── api_op_CreateTransitGatewayConnectPeer.go │ │ │ │ ├── api_op_CreateTransitGatewayMulticastDomain.go │ │ │ │ ├── api_op_CreateTransitGatewayPeeringAttachment.go │ │ │ │ ├── api_op_CreateTransitGatewayPolicyTable.go │ │ │ │ ├── api_op_CreateTransitGatewayPrefixListReference.go │ │ │ │ ├── api_op_CreateTransitGatewayRoute.go │ │ │ │ ├── api_op_CreateTransitGatewayRouteTable.go │ │ │ │ ├── api_op_CreateTransitGatewayRouteTableAnnouncement.go │ │ │ │ ├── api_op_CreateTransitGatewayVpcAttachment.go │ │ │ │ ├── api_op_CreateVerifiedAccessEndpoint.go │ │ │ │ ├── api_op_CreateVerifiedAccessGroup.go │ │ │ │ ├── api_op_CreateVerifiedAccessInstance.go │ │ │ │ ├── api_op_CreateVerifiedAccessTrustProvider.go │ │ │ │ ├── api_op_CreateVolume.go │ │ │ │ ├── api_op_CreateVpc.go │ │ │ │ ├── api_op_CreateVpcBlockPublicAccessExclusion.go │ │ │ │ ├── api_op_CreateVpcEndpoint.go │ │ │ │ ├── api_op_CreateVpcEndpointConnectionNotification.go │ │ │ │ ├── api_op_CreateVpcEndpointServiceConfiguration.go │ │ │ │ ├── api_op_CreateVpcPeeringConnection.go │ │ │ │ ├── api_op_CreateVpnConnection.go │ │ │ │ ├── api_op_CreateVpnConnectionRoute.go │ │ │ │ ├── api_op_CreateVpnGateway.go │ │ │ │ ├── api_op_DeleteCarrierGateway.go │ │ │ │ ├── api_op_DeleteClientVpnEndpoint.go │ │ │ │ ├── api_op_DeleteClientVpnRoute.go │ │ │ │ ├── api_op_DeleteCoipCidr.go │ │ │ │ ├── api_op_DeleteCoipPool.go │ │ │ │ ├── api_op_DeleteCustomerGateway.go │ │ │ │ ├── api_op_DeleteDhcpOptions.go │ │ │ │ ├── api_op_DeleteEgressOnlyInternetGateway.go │ │ │ │ ├── api_op_DeleteFleets.go │ │ │ │ ├── api_op_DeleteFlowLogs.go │ │ │ │ ├── api_op_DeleteFpgaImage.go │ │ │ │ ├── api_op_DeleteInstanceConnectEndpoint.go │ │ │ │ ├── api_op_DeleteInstanceEventWindow.go │ │ │ │ ├── api_op_DeleteInternetGateway.go │ │ │ │ ├── api_op_DeleteIpam.go │ │ │ │ ├── api_op_DeleteIpamExternalResourceVerificationToken.go │ │ │ │ ├── api_op_DeleteIpamPool.go │ │ │ │ ├── api_op_DeleteIpamResourceDiscovery.go │ │ │ │ ├── api_op_DeleteIpamScope.go │ │ │ │ ├── api_op_DeleteKeyPair.go │ │ │ │ ├── api_op_DeleteLaunchTemplate.go │ │ │ │ ├── api_op_DeleteLaunchTemplateVersions.go │ │ │ │ ├── api_op_DeleteLocalGatewayRoute.go │ │ │ │ ├── api_op_DeleteLocalGatewayRouteTable.go │ │ │ │ ├── api_op_DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation.go │ │ │ │ ├── api_op_DeleteLocalGatewayRouteTableVpcAssociation.go │ │ │ │ ├── api_op_DeleteLocalGatewayVirtualInterface.go │ │ │ │ ├── api_op_DeleteLocalGatewayVirtualInterfaceGroup.go │ │ │ │ ├── api_op_DeleteManagedPrefixList.go │ │ │ │ ├── api_op_DeleteNatGateway.go │ │ │ │ ├── api_op_DeleteNetworkAcl.go │ │ │ │ ├── api_op_DeleteNetworkAclEntry.go │ │ │ │ ├── api_op_DeleteNetworkInsightsAccessScope.go │ │ │ │ ├── api_op_DeleteNetworkInsightsAccessScopeAnalysis.go │ │ │ │ ├── api_op_DeleteNetworkInsightsAnalysis.go │ │ │ │ ├── api_op_DeleteNetworkInsightsPath.go │ │ │ │ ├── api_op_DeleteNetworkInterface.go │ │ │ │ ├── api_op_DeleteNetworkInterfacePermission.go │ │ │ │ ├── api_op_DeletePlacementGroup.go │ │ │ │ ├── api_op_DeletePublicIpv4Pool.go │ │ │ │ ├── api_op_DeleteQueuedReservedInstances.go │ │ │ │ ├── api_op_DeleteRoute.go │ │ │ │ ├── api_op_DeleteRouteServer.go │ │ │ │ ├── api_op_DeleteRouteServerEndpoint.go │ │ │ │ ├── api_op_DeleteRouteServerPeer.go │ │ │ │ ├── api_op_DeleteRouteTable.go │ │ │ │ ├── api_op_DeleteSecurityGroup.go │ │ │ │ ├── api_op_DeleteSnapshot.go │ │ │ │ ├── api_op_DeleteSpotDatafeedSubscription.go │ │ │ │ ├── api_op_DeleteSubnet.go │ │ │ │ ├── api_op_DeleteSubnetCidrReservation.go │ │ │ │ ├── api_op_DeleteTags.go │ │ │ │ ├── api_op_DeleteTrafficMirrorFilter.go │ │ │ │ ├── api_op_DeleteTrafficMirrorFilterRule.go │ │ │ │ ├── api_op_DeleteTrafficMirrorSession.go │ │ │ │ ├── api_op_DeleteTrafficMirrorTarget.go │ │ │ │ ├── api_op_DeleteTransitGateway.go │ │ │ │ ├── api_op_DeleteTransitGatewayConnect.go │ │ │ │ ├── api_op_DeleteTransitGatewayConnectPeer.go │ │ │ │ ├── api_op_DeleteTransitGatewayMulticastDomain.go │ │ │ │ ├── api_op_DeleteTransitGatewayPeeringAttachment.go │ │ │ │ ├── api_op_DeleteTransitGatewayPolicyTable.go │ │ │ │ ├── api_op_DeleteTransitGatewayPrefixListReference.go │ │ │ │ ├── api_op_DeleteTransitGatewayRoute.go │ │ │ │ ├── api_op_DeleteTransitGatewayRouteTable.go │ │ │ │ ├── api_op_DeleteTransitGatewayRouteTableAnnouncement.go │ │ │ │ ├── api_op_DeleteTransitGatewayVpcAttachment.go │ │ │ │ ├── api_op_DeleteVerifiedAccessEndpoint.go │ │ │ │ ├── api_op_DeleteVerifiedAccessGroup.go │ │ │ │ ├── api_op_DeleteVerifiedAccessInstance.go │ │ │ │ ├── api_op_DeleteVerifiedAccessTrustProvider.go │ │ │ │ ├── api_op_DeleteVolume.go │ │ │ │ ├── api_op_DeleteVpc.go │ │ │ │ ├── api_op_DeleteVpcBlockPublicAccessExclusion.go │ │ │ │ ├── api_op_DeleteVpcEndpointConnectionNotifications.go │ │ │ │ ├── api_op_DeleteVpcEndpointServiceConfigurations.go │ │ │ │ ├── api_op_DeleteVpcEndpoints.go │ │ │ │ ├── api_op_DeleteVpcPeeringConnection.go │ │ │ │ ├── api_op_DeleteVpnConnection.go │ │ │ │ ├── api_op_DeleteVpnConnectionRoute.go │ │ │ │ ├── api_op_DeleteVpnGateway.go │ │ │ │ ├── api_op_DeprovisionByoipCidr.go │ │ │ │ ├── api_op_DeprovisionIpamByoasn.go │ │ │ │ ├── api_op_DeprovisionIpamPoolCidr.go │ │ │ │ ├── api_op_DeprovisionPublicIpv4PoolCidr.go │ │ │ │ ├── api_op_DeregisterImage.go │ │ │ │ ├── api_op_DeregisterInstanceEventNotificationAttributes.go │ │ │ │ ├── api_op_DeregisterTransitGatewayMulticastGroupMembers.go │ │ │ │ ├── api_op_DeregisterTransitGatewayMulticastGroupSources.go │ │ │ │ ├── api_op_DescribeAccountAttributes.go │ │ │ │ ├── api_op_DescribeAddressTransfers.go │ │ │ │ ├── api_op_DescribeAddresses.go │ │ │ │ ├── api_op_DescribeAddressesAttribute.go │ │ │ │ ├── api_op_DescribeAggregateIdFormat.go │ │ │ │ ├── api_op_DescribeAvailabilityZones.go │ │ │ │ ├── api_op_DescribeAwsNetworkPerformanceMetricSubscriptions.go │ │ │ │ ├── api_op_DescribeBundleTasks.go │ │ │ │ ├── api_op_DescribeByoipCidrs.go │ │ │ │ ├── api_op_DescribeCapacityBlockExtensionHistory.go │ │ │ │ ├── api_op_DescribeCapacityBlockExtensionOfferings.go │ │ │ │ ├── api_op_DescribeCapacityBlockOfferings.go │ │ │ │ ├── api_op_DescribeCapacityBlockStatus.go │ │ │ │ ├── api_op_DescribeCapacityBlocks.go │ │ │ │ ├── api_op_DescribeCapacityReservationBillingRequests.go │ │ │ │ ├── api_op_DescribeCapacityReservationFleets.go │ │ │ │ ├── api_op_DescribeCapacityReservations.go │ │ │ │ ├── api_op_DescribeCarrierGateways.go │ │ │ │ ├── api_op_DescribeClassicLinkInstances.go │ │ │ │ ├── api_op_DescribeClientVpnAuthorizationRules.go │ │ │ │ ├── api_op_DescribeClientVpnConnections.go │ │ │ │ ├── api_op_DescribeClientVpnEndpoints.go │ │ │ │ ├── api_op_DescribeClientVpnRoutes.go │ │ │ │ ├── api_op_DescribeClientVpnTargetNetworks.go │ │ │ │ ├── api_op_DescribeCoipPools.go │ │ │ │ ├── api_op_DescribeConversionTasks.go │ │ │ │ ├── api_op_DescribeCustomerGateways.go │ │ │ │ ├── api_op_DescribeDeclarativePoliciesReports.go │ │ │ │ ├── api_op_DescribeDhcpOptions.go │ │ │ │ ├── api_op_DescribeEgressOnlyInternetGateways.go │ │ │ │ ├── api_op_DescribeElasticGpus.go │ │ │ │ ├── api_op_DescribeExportImageTasks.go │ │ │ │ ├── api_op_DescribeExportTasks.go │ │ │ │ ├── api_op_DescribeFastLaunchImages.go │ │ │ │ ├── api_op_DescribeFastSnapshotRestores.go │ │ │ │ ├── api_op_DescribeFleetHistory.go │ │ │ │ ├── api_op_DescribeFleetInstances.go │ │ │ │ ├── api_op_DescribeFleets.go │ │ │ │ ├── api_op_DescribeFlowLogs.go │ │ │ │ ├── api_op_DescribeFpgaImageAttribute.go │ │ │ │ ├── api_op_DescribeFpgaImages.go │ │ │ │ ├── api_op_DescribeHostReservationOfferings.go │ │ │ │ ├── api_op_DescribeHostReservations.go │ │ │ │ ├── api_op_DescribeHosts.go │ │ │ │ ├── api_op_DescribeIamInstanceProfileAssociations.go │ │ │ │ ├── api_op_DescribeIdFormat.go │ │ │ │ ├── api_op_DescribeIdentityIdFormat.go │ │ │ │ ├── api_op_DescribeImageAttribute.go │ │ │ │ ├── api_op_DescribeImages.go │ │ │ │ ├── api_op_DescribeImportImageTasks.go │ │ │ │ ├── api_op_DescribeImportSnapshotTasks.go │ │ │ │ ├── api_op_DescribeInstanceAttribute.go │ │ │ │ ├── api_op_DescribeInstanceConnectEndpoints.go │ │ │ │ ├── api_op_DescribeInstanceCreditSpecifications.go │ │ │ │ ├── api_op_DescribeInstanceEventNotificationAttributes.go │ │ │ │ ├── api_op_DescribeInstanceEventWindows.go │ │ │ │ ├── api_op_DescribeInstanceImageMetadata.go │ │ │ │ ├── api_op_DescribeInstanceStatus.go │ │ │ │ ├── api_op_DescribeInstanceTopology.go │ │ │ │ ├── api_op_DescribeInstanceTypeOfferings.go │ │ │ │ ├── api_op_DescribeInstanceTypes.go │ │ │ │ ├── api_op_DescribeInstances.go │ │ │ │ ├── api_op_DescribeInternetGateways.go │ │ │ │ ├── api_op_DescribeIpamByoasn.go │ │ │ │ ├── api_op_DescribeIpamExternalResourceVerificationTokens.go │ │ │ │ ├── api_op_DescribeIpamPools.go │ │ │ │ ├── api_op_DescribeIpamResourceDiscoveries.go │ │ │ │ ├── api_op_DescribeIpamResourceDiscoveryAssociations.go │ │ │ │ ├── api_op_DescribeIpamScopes.go │ │ │ │ ├── api_op_DescribeIpams.go │ │ │ │ ├── api_op_DescribeIpv6Pools.go │ │ │ │ ├── api_op_DescribeKeyPairs.go │ │ │ │ ├── api_op_DescribeLaunchTemplateVersions.go │ │ │ │ ├── api_op_DescribeLaunchTemplates.go │ │ │ │ ├── api_op_DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations.go │ │ │ │ ├── api_op_DescribeLocalGatewayRouteTableVpcAssociations.go │ │ │ │ ├── api_op_DescribeLocalGatewayRouteTables.go │ │ │ │ ├── api_op_DescribeLocalGatewayVirtualInterfaceGroups.go │ │ │ │ ├── api_op_DescribeLocalGatewayVirtualInterfaces.go │ │ │ │ ├── api_op_DescribeLocalGateways.go │ │ │ │ ├── api_op_DescribeLockedSnapshots.go │ │ │ │ ├── api_op_DescribeMacHosts.go │ │ │ │ ├── api_op_DescribeMacModificationTasks.go │ │ │ │ ├── api_op_DescribeManagedPrefixLists.go │ │ │ │ ├── api_op_DescribeMovingAddresses.go │ │ │ │ ├── api_op_DescribeNatGateways.go │ │ │ │ ├── api_op_DescribeNetworkAcls.go │ │ │ │ ├── api_op_DescribeNetworkInsightsAccessScopeAnalyses.go │ │ │ │ ├── api_op_DescribeNetworkInsightsAccessScopes.go │ │ │ │ ├── api_op_DescribeNetworkInsightsAnalyses.go │ │ │ │ ├── api_op_DescribeNetworkInsightsPaths.go │ │ │ │ ├── api_op_DescribeNetworkInterfaceAttribute.go │ │ │ │ ├── api_op_DescribeNetworkInterfacePermissions.go │ │ │ │ ├── api_op_DescribeNetworkInterfaces.go │ │ │ │ ├── api_op_DescribeOutpostLags.go │ │ │ │ ├── api_op_DescribePlacementGroups.go │ │ │ │ ├── api_op_DescribePrefixLists.go │ │ │ │ ├── api_op_DescribePrincipalIdFormat.go │ │ │ │ ├── api_op_DescribePublicIpv4Pools.go │ │ │ │ ├── api_op_DescribeRegions.go │ │ │ │ ├── api_op_DescribeReplaceRootVolumeTasks.go │ │ │ │ ├── api_op_DescribeReservedInstances.go │ │ │ │ ├── api_op_DescribeReservedInstancesListings.go │ │ │ │ ├── api_op_DescribeReservedInstancesModifications.go │ │ │ │ ├── api_op_DescribeReservedInstancesOfferings.go │ │ │ │ ├── api_op_DescribeRouteServerEndpoints.go │ │ │ │ ├── api_op_DescribeRouteServerPeers.go │ │ │ │ ├── api_op_DescribeRouteServers.go │ │ │ │ ├── api_op_DescribeRouteTables.go │ │ │ │ ├── api_op_DescribeScheduledInstanceAvailability.go │ │ │ │ ├── api_op_DescribeScheduledInstances.go │ │ │ │ ├── api_op_DescribeSecurityGroupReferences.go │ │ │ │ ├── api_op_DescribeSecurityGroupRules.go │ │ │ │ ├── api_op_DescribeSecurityGroupVpcAssociations.go │ │ │ │ ├── api_op_DescribeSecurityGroups.go │ │ │ │ ├── api_op_DescribeServiceLinkVirtualInterfaces.go │ │ │ │ ├── api_op_DescribeSnapshotAttribute.go │ │ │ │ ├── api_op_DescribeSnapshotTierStatus.go │ │ │ │ ├── api_op_DescribeSnapshots.go │ │ │ │ ├── api_op_DescribeSpotDatafeedSubscription.go │ │ │ │ ├── api_op_DescribeSpotFleetInstances.go │ │ │ │ ├── api_op_DescribeSpotFleetRequestHistory.go │ │ │ │ ├── api_op_DescribeSpotFleetRequests.go │ │ │ │ ├── api_op_DescribeSpotInstanceRequests.go │ │ │ │ ├── api_op_DescribeSpotPriceHistory.go │ │ │ │ ├── api_op_DescribeStaleSecurityGroups.go │ │ │ │ ├── api_op_DescribeStoreImageTasks.go │ │ │ │ ├── api_op_DescribeSubnets.go │ │ │ │ ├── api_op_DescribeTags.go │ │ │ │ ├── api_op_DescribeTrafficMirrorFilterRules.go │ │ │ │ ├── api_op_DescribeTrafficMirrorFilters.go │ │ │ │ ├── api_op_DescribeTrafficMirrorSessions.go │ │ │ │ ├── api_op_DescribeTrafficMirrorTargets.go │ │ │ │ ├── api_op_DescribeTransitGatewayAttachments.go │ │ │ │ ├── api_op_DescribeTransitGatewayConnectPeers.go │ │ │ │ ├── api_op_DescribeTransitGatewayConnects.go │ │ │ │ ├── api_op_DescribeTransitGatewayMulticastDomains.go │ │ │ │ ├── api_op_DescribeTransitGatewayPeeringAttachments.go │ │ │ │ ├── api_op_DescribeTransitGatewayPolicyTables.go │ │ │ │ ├── api_op_DescribeTransitGatewayRouteTableAnnouncements.go │ │ │ │ ├── api_op_DescribeTransitGatewayRouteTables.go │ │ │ │ ├── api_op_DescribeTransitGatewayVpcAttachments.go │ │ │ │ ├── api_op_DescribeTransitGateways.go │ │ │ │ ├── api_op_DescribeTrunkInterfaceAssociations.go │ │ │ │ ├── api_op_DescribeVerifiedAccessEndpoints.go │ │ │ │ ├── api_op_DescribeVerifiedAccessGroups.go │ │ │ │ ├── api_op_DescribeVerifiedAccessInstanceLoggingConfigurations.go │ │ │ │ ├── api_op_DescribeVerifiedAccessInstances.go │ │ │ │ ├── api_op_DescribeVerifiedAccessTrustProviders.go │ │ │ │ ├── api_op_DescribeVolumeAttribute.go │ │ │ │ ├── api_op_DescribeVolumeStatus.go │ │ │ │ ├── api_op_DescribeVolumes.go │ │ │ │ ├── api_op_DescribeVolumesModifications.go │ │ │ │ ├── api_op_DescribeVpcAttribute.go │ │ │ │ ├── api_op_DescribeVpcBlockPublicAccessExclusions.go │ │ │ │ ├── api_op_DescribeVpcBlockPublicAccessOptions.go │ │ │ │ ├── api_op_DescribeVpcClassicLink.go │ │ │ │ ├── api_op_DescribeVpcClassicLinkDnsSupport.go │ │ │ │ ├── api_op_DescribeVpcEndpointAssociations.go │ │ │ │ ├── api_op_DescribeVpcEndpointConnectionNotifications.go │ │ │ │ ├── api_op_DescribeVpcEndpointConnections.go │ │ │ │ ├── api_op_DescribeVpcEndpointServiceConfigurations.go │ │ │ │ ├── api_op_DescribeVpcEndpointServicePermissions.go │ │ │ │ ├── api_op_DescribeVpcEndpointServices.go │ │ │ │ ├── api_op_DescribeVpcEndpoints.go │ │ │ │ ├── api_op_DescribeVpcPeeringConnections.go │ │ │ │ ├── api_op_DescribeVpcs.go │ │ │ │ ├── api_op_DescribeVpnConnections.go │ │ │ │ ├── api_op_DescribeVpnGateways.go │ │ │ │ ├── api_op_DetachClassicLinkVpc.go │ │ │ │ ├── api_op_DetachInternetGateway.go │ │ │ │ ├── api_op_DetachNetworkInterface.go │ │ │ │ ├── api_op_DetachVerifiedAccessTrustProvider.go │ │ │ │ ├── api_op_DetachVolume.go │ │ │ │ ├── api_op_DetachVpnGateway.go │ │ │ │ ├── api_op_DisableAddressTransfer.go │ │ │ │ ├── api_op_DisableAllowedImagesSettings.go │ │ │ │ ├── api_op_DisableAwsNetworkPerformanceMetricSubscription.go │ │ │ │ ├── api_op_DisableEbsEncryptionByDefault.go │ │ │ │ ├── api_op_DisableFastLaunch.go │ │ │ │ ├── api_op_DisableFastSnapshotRestores.go │ │ │ │ ├── api_op_DisableImage.go │ │ │ │ ├── api_op_DisableImageBlockPublicAccess.go │ │ │ │ ├── api_op_DisableImageDeprecation.go │ │ │ │ ├── api_op_DisableImageDeregistrationProtection.go │ │ │ │ ├── api_op_DisableIpamOrganizationAdminAccount.go │ │ │ │ ├── api_op_DisableRouteServerPropagation.go │ │ │ │ ├── api_op_DisableSerialConsoleAccess.go │ │ │ │ ├── api_op_DisableSnapshotBlockPublicAccess.go │ │ │ │ ├── api_op_DisableTransitGatewayRouteTablePropagation.go │ │ │ │ ├── api_op_DisableVgwRoutePropagation.go │ │ │ │ ├── api_op_DisableVpcClassicLink.go │ │ │ │ ├── api_op_DisableVpcClassicLinkDnsSupport.go │ │ │ │ ├── api_op_DisassociateAddress.go │ │ │ │ ├── api_op_DisassociateCapacityReservationBillingOwner.go │ │ │ │ ├── api_op_DisassociateClientVpnTargetNetwork.go │ │ │ │ ├── api_op_DisassociateEnclaveCertificateIamRole.go │ │ │ │ ├── api_op_DisassociateIamInstanceProfile.go │ │ │ │ ├── api_op_DisassociateInstanceEventWindow.go │ │ │ │ ├── api_op_DisassociateIpamByoasn.go │ │ │ │ ├── api_op_DisassociateIpamResourceDiscovery.go │ │ │ │ ├── api_op_DisassociateNatGatewayAddress.go │ │ │ │ ├── api_op_DisassociateRouteServer.go │ │ │ │ ├── api_op_DisassociateRouteTable.go │ │ │ │ ├── api_op_DisassociateSecurityGroupVpc.go │ │ │ │ ├── api_op_DisassociateSubnetCidrBlock.go │ │ │ │ ├── api_op_DisassociateTransitGatewayMulticastDomain.go │ │ │ │ ├── api_op_DisassociateTransitGatewayPolicyTable.go │ │ │ │ ├── api_op_DisassociateTransitGatewayRouteTable.go │ │ │ │ ├── api_op_DisassociateTrunkInterface.go │ │ │ │ ├── api_op_DisassociateVpcCidrBlock.go │ │ │ │ ├── api_op_EnableAddressTransfer.go │ │ │ │ ├── api_op_EnableAllowedImagesSettings.go │ │ │ │ ├── api_op_EnableAwsNetworkPerformanceMetricSubscription.go │ │ │ │ ├── api_op_EnableEbsEncryptionByDefault.go │ │ │ │ ├── api_op_EnableFastLaunch.go │ │ │ │ ├── api_op_EnableFastSnapshotRestores.go │ │ │ │ ├── api_op_EnableImage.go │ │ │ │ ├── api_op_EnableImageBlockPublicAccess.go │ │ │ │ ├── api_op_EnableImageDeprecation.go │ │ │ │ ├── api_op_EnableImageDeregistrationProtection.go │ │ │ │ ├── api_op_EnableIpamOrganizationAdminAccount.go │ │ │ │ ├── api_op_EnableReachabilityAnalyzerOrganizationSharing.go │ │ │ │ ├── api_op_EnableRouteServerPropagation.go │ │ │ │ ├── api_op_EnableSerialConsoleAccess.go │ │ │ │ ├── api_op_EnableSnapshotBlockPublicAccess.go │ │ │ │ ├── api_op_EnableTransitGatewayRouteTablePropagation.go │ │ │ │ ├── api_op_EnableVgwRoutePropagation.go │ │ │ │ ├── api_op_EnableVolumeIO.go │ │ │ │ ├── api_op_EnableVpcClassicLink.go │ │ │ │ ├── api_op_EnableVpcClassicLinkDnsSupport.go │ │ │ │ ├── api_op_ExportClientVpnClientCertificateRevocationList.go │ │ │ │ ├── api_op_ExportClientVpnClientConfiguration.go │ │ │ │ ├── api_op_ExportImage.go │ │ │ │ ├── api_op_ExportTransitGatewayRoutes.go │ │ │ │ ├── api_op_ExportVerifiedAccessInstanceClientConfiguration.go │ │ │ │ ├── api_op_GetActiveVpnTunnelStatus.go │ │ │ │ ├── api_op_GetAllowedImagesSettings.go │ │ │ │ ├── api_op_GetAssociatedEnclaveCertificateIamRoles.go │ │ │ │ ├── api_op_GetAssociatedIpv6PoolCidrs.go │ │ │ │ ├── api_op_GetAwsNetworkPerformanceData.go │ │ │ │ ├── api_op_GetCapacityReservationUsage.go │ │ │ │ ├── api_op_GetCoipPoolUsage.go │ │ │ │ ├── api_op_GetConsoleOutput.go │ │ │ │ ├── api_op_GetConsoleScreenshot.go │ │ │ │ ├── api_op_GetDeclarativePoliciesReportSummary.go │ │ │ │ ├── api_op_GetDefaultCreditSpecification.go │ │ │ │ ├── api_op_GetEbsDefaultKmsKeyId.go │ │ │ │ ├── api_op_GetEbsEncryptionByDefault.go │ │ │ │ ├── api_op_GetFlowLogsIntegrationTemplate.go │ │ │ │ ├── api_op_GetGroupsForCapacityReservation.go │ │ │ │ ├── api_op_GetHostReservationPurchasePreview.go │ │ │ │ ├── api_op_GetImageBlockPublicAccessState.go │ │ │ │ ├── api_op_GetInstanceMetadataDefaults.go │ │ │ │ ├── api_op_GetInstanceTpmEkPub.go │ │ │ │ ├── api_op_GetInstanceTypesFromInstanceRequirements.go │ │ │ │ ├── api_op_GetInstanceUefiData.go │ │ │ │ ├── api_op_GetIpamAddressHistory.go │ │ │ │ ├── api_op_GetIpamDiscoveredAccounts.go │ │ │ │ ├── api_op_GetIpamDiscoveredPublicAddresses.go │ │ │ │ ├── api_op_GetIpamDiscoveredResourceCidrs.go │ │ │ │ ├── api_op_GetIpamPoolAllocations.go │ │ │ │ ├── api_op_GetIpamPoolCidrs.go │ │ │ │ ├── api_op_GetIpamResourceCidrs.go │ │ │ │ ├── api_op_GetLaunchTemplateData.go │ │ │ │ ├── api_op_GetManagedPrefixListAssociations.go │ │ │ │ ├── api_op_GetManagedPrefixListEntries.go │ │ │ │ ├── api_op_GetNetworkInsightsAccessScopeAnalysisFindings.go │ │ │ │ ├── api_op_GetNetworkInsightsAccessScopeContent.go │ │ │ │ ├── api_op_GetPasswordData.go │ │ │ │ ├── api_op_GetReservedInstancesExchangeQuote.go │ │ │ │ ├── api_op_GetRouteServerAssociations.go │ │ │ │ ├── api_op_GetRouteServerPropagations.go │ │ │ │ ├── api_op_GetRouteServerRoutingDatabase.go │ │ │ │ ├── api_op_GetSecurityGroupsForVpc.go │ │ │ │ ├── api_op_GetSerialConsoleAccessStatus.go │ │ │ │ ├── api_op_GetSnapshotBlockPublicAccessState.go │ │ │ │ ├── api_op_GetSpotPlacementScores.go │ │ │ │ ├── api_op_GetSubnetCidrReservations.go │ │ │ │ ├── api_op_GetTransitGatewayAttachmentPropagations.go │ │ │ │ ├── api_op_GetTransitGatewayMulticastDomainAssociations.go │ │ │ │ ├── api_op_GetTransitGatewayPolicyTableAssociations.go │ │ │ │ ├── api_op_GetTransitGatewayPolicyTableEntries.go │ │ │ │ ├── api_op_GetTransitGatewayPrefixListReferences.go │ │ │ │ ├── api_op_GetTransitGatewayRouteTableAssociations.go │ │ │ │ ├── api_op_GetTransitGatewayRouteTablePropagations.go │ │ │ │ ├── api_op_GetVerifiedAccessEndpointPolicy.go │ │ │ │ ├── api_op_GetVerifiedAccessEndpointTargets.go │ │ │ │ ├── api_op_GetVerifiedAccessGroupPolicy.go │ │ │ │ ├── api_op_GetVpnConnectionDeviceSampleConfiguration.go │ │ │ │ ├── api_op_GetVpnConnectionDeviceTypes.go │ │ │ │ ├── api_op_GetVpnTunnelReplacementStatus.go │ │ │ │ ├── api_op_ImportClientVpnClientCertificateRevocationList.go │ │ │ │ ├── api_op_ImportImage.go │ │ │ │ ├── api_op_ImportInstance.go │ │ │ │ ├── api_op_ImportKeyPair.go │ │ │ │ ├── api_op_ImportSnapshot.go │ │ │ │ ├── api_op_ImportVolume.go │ │ │ │ ├── api_op_ListImagesInRecycleBin.go │ │ │ │ ├── api_op_ListSnapshotsInRecycleBin.go │ │ │ │ ├── api_op_LockSnapshot.go │ │ │ │ ├── api_op_ModifyAddressAttribute.go │ │ │ │ ├── api_op_ModifyAvailabilityZoneGroup.go │ │ │ │ ├── api_op_ModifyCapacityReservation.go │ │ │ │ ├── api_op_ModifyCapacityReservationFleet.go │ │ │ │ ├── api_op_ModifyClientVpnEndpoint.go │ │ │ │ ├── api_op_ModifyDefaultCreditSpecification.go │ │ │ │ ├── api_op_ModifyEbsDefaultKmsKeyId.go │ │ │ │ ├── api_op_ModifyFleet.go │ │ │ │ ├── api_op_ModifyFpgaImageAttribute.go │ │ │ │ ├── api_op_ModifyHosts.go │ │ │ │ ├── api_op_ModifyIdFormat.go │ │ │ │ ├── api_op_ModifyIdentityIdFormat.go │ │ │ │ ├── api_op_ModifyImageAttribute.go │ │ │ │ ├── api_op_ModifyInstanceAttribute.go │ │ │ │ ├── api_op_ModifyInstanceCapacityReservationAttributes.go │ │ │ │ ├── api_op_ModifyInstanceCpuOptions.go │ │ │ │ ├── api_op_ModifyInstanceCreditSpecification.go │ │ │ │ ├── api_op_ModifyInstanceEventStartTime.go │ │ │ │ ├── api_op_ModifyInstanceEventWindow.go │ │ │ │ ├── api_op_ModifyInstanceMaintenanceOptions.go │ │ │ │ ├── api_op_ModifyInstanceMetadataDefaults.go │ │ │ │ ├── api_op_ModifyInstanceMetadataOptions.go │ │ │ │ ├── api_op_ModifyInstanceNetworkPerformanceOptions.go │ │ │ │ ├── api_op_ModifyInstancePlacement.go │ │ │ │ ├── api_op_ModifyIpam.go │ │ │ │ ├── api_op_ModifyIpamPool.go │ │ │ │ ├── api_op_ModifyIpamResourceCidr.go │ │ │ │ ├── api_op_ModifyIpamResourceDiscovery.go │ │ │ │ ├── api_op_ModifyIpamScope.go │ │ │ │ ├── api_op_ModifyLaunchTemplate.go │ │ │ │ ├── api_op_ModifyLocalGatewayRoute.go │ │ │ │ ├── api_op_ModifyManagedPrefixList.go │ │ │ │ ├── api_op_ModifyNetworkInterfaceAttribute.go │ │ │ │ ├── api_op_ModifyPrivateDnsNameOptions.go │ │ │ │ ├── api_op_ModifyPublicIpDnsNameOptions.go │ │ │ │ ├── api_op_ModifyReservedInstances.go │ │ │ │ ├── api_op_ModifyRouteServer.go │ │ │ │ ├── api_op_ModifySecurityGroupRules.go │ │ │ │ ├── api_op_ModifySnapshotAttribute.go │ │ │ │ ├── api_op_ModifySnapshotTier.go │ │ │ │ ├── api_op_ModifySpotFleetRequest.go │ │ │ │ ├── api_op_ModifySubnetAttribute.go │ │ │ │ ├── api_op_ModifyTrafficMirrorFilterNetworkServices.go │ │ │ │ ├── api_op_ModifyTrafficMirrorFilterRule.go │ │ │ │ ├── api_op_ModifyTrafficMirrorSession.go │ │ │ │ ├── api_op_ModifyTransitGateway.go │ │ │ │ ├── api_op_ModifyTransitGatewayPrefixListReference.go │ │ │ │ ├── api_op_ModifyTransitGatewayVpcAttachment.go │ │ │ │ ├── api_op_ModifyVerifiedAccessEndpoint.go │ │ │ │ ├── api_op_ModifyVerifiedAccessEndpointPolicy.go │ │ │ │ ├── api_op_ModifyVerifiedAccessGroup.go │ │ │ │ ├── api_op_ModifyVerifiedAccessGroupPolicy.go │ │ │ │ ├── api_op_ModifyVerifiedAccessInstance.go │ │ │ │ ├── api_op_ModifyVerifiedAccessInstanceLoggingConfiguration.go │ │ │ │ ├── api_op_ModifyVerifiedAccessTrustProvider.go │ │ │ │ ├── api_op_ModifyVolume.go │ │ │ │ ├── api_op_ModifyVolumeAttribute.go │ │ │ │ ├── api_op_ModifyVpcAttribute.go │ │ │ │ ├── api_op_ModifyVpcBlockPublicAccessExclusion.go │ │ │ │ ├── api_op_ModifyVpcBlockPublicAccessOptions.go │ │ │ │ ├── api_op_ModifyVpcEndpoint.go │ │ │ │ ├── api_op_ModifyVpcEndpointConnectionNotification.go │ │ │ │ ├── api_op_ModifyVpcEndpointServiceConfiguration.go │ │ │ │ ├── api_op_ModifyVpcEndpointServicePayerResponsibility.go │ │ │ │ ├── api_op_ModifyVpcEndpointServicePermissions.go │ │ │ │ ├── api_op_ModifyVpcPeeringConnectionOptions.go │ │ │ │ ├── api_op_ModifyVpcTenancy.go │ │ │ │ ├── api_op_ModifyVpnConnection.go │ │ │ │ ├── api_op_ModifyVpnConnectionOptions.go │ │ │ │ ├── api_op_ModifyVpnTunnelCertificate.go │ │ │ │ ├── api_op_ModifyVpnTunnelOptions.go │ │ │ │ ├── api_op_MonitorInstances.go │ │ │ │ ├── api_op_MoveAddressToVpc.go │ │ │ │ ├── api_op_MoveByoipCidrToIpam.go │ │ │ │ ├── api_op_MoveCapacityReservationInstances.go │ │ │ │ ├── api_op_ProvisionByoipCidr.go │ │ │ │ ├── api_op_ProvisionIpamByoasn.go │ │ │ │ ├── api_op_ProvisionIpamPoolCidr.go │ │ │ │ ├── api_op_ProvisionPublicIpv4PoolCidr.go │ │ │ │ ├── api_op_PurchaseCapacityBlock.go │ │ │ │ ├── api_op_PurchaseCapacityBlockExtension.go │ │ │ │ ├── api_op_PurchaseHostReservation.go │ │ │ │ ├── api_op_PurchaseReservedInstancesOffering.go │ │ │ │ ├── api_op_PurchaseScheduledInstances.go │ │ │ │ ├── api_op_RebootInstances.go │ │ │ │ ├── api_op_RegisterImage.go │ │ │ │ ├── api_op_RegisterInstanceEventNotificationAttributes.go │ │ │ │ ├── api_op_RegisterTransitGatewayMulticastGroupMembers.go │ │ │ │ ├── api_op_RegisterTransitGatewayMulticastGroupSources.go │ │ │ │ ├── api_op_RejectCapacityReservationBillingOwnership.go │ │ │ │ ├── api_op_RejectTransitGatewayMulticastDomainAssociations.go │ │ │ │ ├── api_op_RejectTransitGatewayPeeringAttachment.go │ │ │ │ ├── api_op_RejectTransitGatewayVpcAttachment.go │ │ │ │ ├── api_op_RejectVpcEndpointConnections.go │ │ │ │ ├── api_op_RejectVpcPeeringConnection.go │ │ │ │ ├── api_op_ReleaseAddress.go │ │ │ │ ├── api_op_ReleaseHosts.go │ │ │ │ ├── api_op_ReleaseIpamPoolAllocation.go │ │ │ │ ├── api_op_ReplaceIamInstanceProfileAssociation.go │ │ │ │ ├── api_op_ReplaceImageCriteriaInAllowedImagesSettings.go │ │ │ │ ├── api_op_ReplaceNetworkAclAssociation.go │ │ │ │ ├── api_op_ReplaceNetworkAclEntry.go │ │ │ │ ├── api_op_ReplaceRoute.go │ │ │ │ ├── api_op_ReplaceRouteTableAssociation.go │ │ │ │ ├── api_op_ReplaceTransitGatewayRoute.go │ │ │ │ ├── api_op_ReplaceVpnTunnel.go │ │ │ │ ├── api_op_ReportInstanceStatus.go │ │ │ │ ├── api_op_RequestSpotFleet.go │ │ │ │ ├── api_op_RequestSpotInstances.go │ │ │ │ ├── api_op_ResetAddressAttribute.go │ │ │ │ ├── api_op_ResetEbsDefaultKmsKeyId.go │ │ │ │ ├── api_op_ResetFpgaImageAttribute.go │ │ │ │ ├── api_op_ResetImageAttribute.go │ │ │ │ ├── api_op_ResetInstanceAttribute.go │ │ │ │ ├── api_op_ResetNetworkInterfaceAttribute.go │ │ │ │ ├── api_op_ResetSnapshotAttribute.go │ │ │ │ ├── api_op_RestoreAddressToClassic.go │ │ │ │ ├── api_op_RestoreImageFromRecycleBin.go │ │ │ │ ├── api_op_RestoreManagedPrefixListVersion.go │ │ │ │ ├── api_op_RestoreSnapshotFromRecycleBin.go │ │ │ │ ├── api_op_RestoreSnapshotTier.go │ │ │ │ ├── api_op_RevokeClientVpnIngress.go │ │ │ │ ├── api_op_RevokeSecurityGroupEgress.go │ │ │ │ ├── api_op_RevokeSecurityGroupIngress.go │ │ │ │ ├── api_op_RunInstances.go │ │ │ │ ├── api_op_RunScheduledInstances.go │ │ │ │ ├── api_op_SearchLocalGatewayRoutes.go │ │ │ │ ├── api_op_SearchTransitGatewayMulticastGroups.go │ │ │ │ ├── api_op_SearchTransitGatewayRoutes.go │ │ │ │ ├── api_op_SendDiagnosticInterrupt.go │ │ │ │ ├── api_op_StartDeclarativePoliciesReport.go │ │ │ │ ├── api_op_StartInstances.go │ │ │ │ ├── api_op_StartNetworkInsightsAccessScopeAnalysis.go │ │ │ │ ├── api_op_StartNetworkInsightsAnalysis.go │ │ │ │ ├── api_op_StartVpcEndpointServicePrivateDnsVerification.go │ │ │ │ ├── api_op_StopInstances.go │ │ │ │ ├── api_op_TerminateClientVpnConnections.go │ │ │ │ ├── api_op_TerminateInstances.go │ │ │ │ ├── api_op_UnassignIpv6Addresses.go │ │ │ │ ├── api_op_UnassignPrivateIpAddresses.go │ │ │ │ ├── api_op_UnassignPrivateNatGatewayAddress.go │ │ │ │ ├── api_op_UnlockSnapshot.go │ │ │ │ ├── api_op_UnmonitorInstances.go │ │ │ │ ├── api_op_UpdateSecurityGroupRuleDescriptionsEgress.go │ │ │ │ ├── api_op_UpdateSecurityGroupRuleDescriptionsIngress.go │ │ │ │ ├── api_op_WithdrawByoipCidr.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal/ │ │ │ │ │ └── endpoints/ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types/ │ │ │ │ │ ├── enums.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ ├── elasticloadbalancing/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AddTags.go │ │ │ │ ├── api_op_ApplySecurityGroupsToLoadBalancer.go │ │ │ │ ├── api_op_AttachLoadBalancerToSubnets.go │ │ │ │ ├── api_op_ConfigureHealthCheck.go │ │ │ │ ├── api_op_CreateAppCookieStickinessPolicy.go │ │ │ │ ├── api_op_CreateLBCookieStickinessPolicy.go │ │ │ │ ├── api_op_CreateLoadBalancer.go │ │ │ │ ├── api_op_CreateLoadBalancerListeners.go │ │ │ │ ├── api_op_CreateLoadBalancerPolicy.go │ │ │ │ ├── api_op_DeleteLoadBalancer.go │ │ │ │ ├── api_op_DeleteLoadBalancerListeners.go │ │ │ │ ├── api_op_DeleteLoadBalancerPolicy.go │ │ │ │ ├── api_op_DeregisterInstancesFromLoadBalancer.go │ │ │ │ ├── api_op_DescribeAccountLimits.go │ │ │ │ ├── api_op_DescribeInstanceHealth.go │ │ │ │ ├── api_op_DescribeLoadBalancerAttributes.go │ │ │ │ ├── api_op_DescribeLoadBalancerPolicies.go │ │ │ │ ├── api_op_DescribeLoadBalancerPolicyTypes.go │ │ │ │ ├── api_op_DescribeLoadBalancers.go │ │ │ │ ├── api_op_DescribeTags.go │ │ │ │ ├── api_op_DetachLoadBalancerFromSubnets.go │ │ │ │ ├── api_op_DisableAvailabilityZonesForLoadBalancer.go │ │ │ │ ├── api_op_EnableAvailabilityZonesForLoadBalancer.go │ │ │ │ ├── api_op_ModifyLoadBalancerAttributes.go │ │ │ │ ├── api_op_RegisterInstancesWithLoadBalancer.go │ │ │ │ ├── api_op_RemoveTags.go │ │ │ │ ├── api_op_SetLoadBalancerListenerSSLCertificate.go │ │ │ │ ├── api_op_SetLoadBalancerPoliciesForBackendServer.go │ │ │ │ ├── api_op_SetLoadBalancerPoliciesOfListener.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 │ │ │ ├── elasticloadbalancingv2/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AddListenerCertificates.go │ │ │ │ ├── api_op_AddTags.go │ │ │ │ ├── api_op_AddTrustStoreRevocations.go │ │ │ │ ├── api_op_CreateListener.go │ │ │ │ ├── api_op_CreateLoadBalancer.go │ │ │ │ ├── api_op_CreateRule.go │ │ │ │ ├── api_op_CreateTargetGroup.go │ │ │ │ ├── api_op_CreateTrustStore.go │ │ │ │ ├── api_op_DeleteListener.go │ │ │ │ ├── api_op_DeleteLoadBalancer.go │ │ │ │ ├── api_op_DeleteRule.go │ │ │ │ ├── api_op_DeleteSharedTrustStoreAssociation.go │ │ │ │ ├── api_op_DeleteTargetGroup.go │ │ │ │ ├── api_op_DeleteTrustStore.go │ │ │ │ ├── api_op_DeregisterTargets.go │ │ │ │ ├── api_op_DescribeAccountLimits.go │ │ │ │ ├── api_op_DescribeCapacityReservation.go │ │ │ │ ├── api_op_DescribeListenerAttributes.go │ │ │ │ ├── api_op_DescribeListenerCertificates.go │ │ │ │ ├── api_op_DescribeListeners.go │ │ │ │ ├── api_op_DescribeLoadBalancerAttributes.go │ │ │ │ ├── api_op_DescribeLoadBalancers.go │ │ │ │ ├── api_op_DescribeRules.go │ │ │ │ ├── api_op_DescribeSSLPolicies.go │ │ │ │ ├── api_op_DescribeTags.go │ │ │ │ ├── api_op_DescribeTargetGroupAttributes.go │ │ │ │ ├── api_op_DescribeTargetGroups.go │ │ │ │ ├── api_op_DescribeTargetHealth.go │ │ │ │ ├── api_op_DescribeTrustStoreAssociations.go │ │ │ │ ├── api_op_DescribeTrustStoreRevocations.go │ │ │ │ ├── api_op_DescribeTrustStores.go │ │ │ │ ├── api_op_GetResourcePolicy.go │ │ │ │ ├── api_op_GetTrustStoreCaCertificatesBundle.go │ │ │ │ ├── api_op_GetTrustStoreRevocationContent.go │ │ │ │ ├── api_op_ModifyCapacityReservation.go │ │ │ │ ├── api_op_ModifyIpPools.go │ │ │ │ ├── api_op_ModifyListener.go │ │ │ │ ├── api_op_ModifyListenerAttributes.go │ │ │ │ ├── api_op_ModifyLoadBalancerAttributes.go │ │ │ │ ├── api_op_ModifyRule.go │ │ │ │ ├── api_op_ModifyTargetGroup.go │ │ │ │ ├── api_op_ModifyTargetGroupAttributes.go │ │ │ │ ├── api_op_ModifyTrustStore.go │ │ │ │ ├── api_op_RegisterTargets.go │ │ │ │ ├── api_op_RemoveListenerCertificates.go │ │ │ │ ├── api_op_RemoveTags.go │ │ │ │ ├── api_op_RemoveTrustStoreRevocations.go │ │ │ │ ├── api_op_SetIpAddressType.go │ │ │ │ ├── api_op_SetRulePriorities.go │ │ │ │ ├── api_op_SetSecurityGroups.go │ │ │ │ ├── api_op_SetSubnets.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_EnableMFADevice.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_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_checksum_metrics_tracking.go │ │ │ │ │ ├── middleware_compute_input_checksum.go │ │ │ │ │ ├── middleware_setup_context.go │ │ │ │ │ └── middleware_validate_output.go │ │ │ │ ├── presigned-url/ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ └── middleware.go │ │ │ │ └── s3shared/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── arn/ │ │ │ │ │ ├── accesspoint_arn.go │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── arn_member.go │ │ │ │ │ ├── outpost_arn.go │ │ │ │ │ └── s3_object_lambda_arn.go │ │ │ │ ├── arn_lookup.go │ │ │ │ ├── config/ │ │ │ │ │ └── config.go │ │ │ │ ├── endpoint_error.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── host_id.go │ │ │ │ ├── metadata.go │ │ │ │ ├── metadata_retriever.go │ │ │ │ ├── resource_request.go │ │ │ │ ├── response_error.go │ │ │ │ ├── response_error_middleware.go │ │ │ │ ├── s3100continue.go │ │ │ │ ├── update_endpoint.go │ │ │ │ └── xml_utils.go │ │ │ ├── resourcegroupstaggingapi/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_DescribeReportCreation.go │ │ │ │ ├── api_op_GetComplianceSummary.go │ │ │ │ ├── api_op_GetResources.go │ │ │ │ ├── api_op_GetTagKeys.go │ │ │ │ ├── api_op_GetTagValues.go │ │ │ │ ├── api_op_StartReportCreation.go │ │ │ │ ├── api_op_TagResources.go │ │ │ │ ├── api_op_UntagResources.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_CreateBucketMetadataConfiguration.go │ │ │ │ ├── api_op_CreateBucketMetadataTableConfiguration.go │ │ │ │ ├── api_op_CreateMultipartUpload.go │ │ │ │ ├── api_op_CreateSession.go │ │ │ │ ├── api_op_DeleteBucket.go │ │ │ │ ├── api_op_DeleteBucketAnalyticsConfiguration.go │ │ │ │ ├── api_op_DeleteBucketCors.go │ │ │ │ ├── api_op_DeleteBucketEncryption.go │ │ │ │ ├── api_op_DeleteBucketIntelligentTieringConfiguration.go │ │ │ │ ├── api_op_DeleteBucketInventoryConfiguration.go │ │ │ │ ├── api_op_DeleteBucketLifecycle.go │ │ │ │ ├── api_op_DeleteBucketMetadataConfiguration.go │ │ │ │ ├── api_op_DeleteBucketMetadataTableConfiguration.go │ │ │ │ ├── api_op_DeleteBucketMetricsConfiguration.go │ │ │ │ ├── api_op_DeleteBucketOwnershipControls.go │ │ │ │ ├── api_op_DeleteBucketPolicy.go │ │ │ │ ├── api_op_DeleteBucketReplication.go │ │ │ │ ├── api_op_DeleteBucketTagging.go │ │ │ │ ├── api_op_DeleteBucketWebsite.go │ │ │ │ ├── api_op_DeleteObject.go │ │ │ │ ├── api_op_DeleteObjectTagging.go │ │ │ │ ├── api_op_DeleteObjects.go │ │ │ │ ├── api_op_DeletePublicAccessBlock.go │ │ │ │ ├── api_op_GetBucketAccelerateConfiguration.go │ │ │ │ ├── api_op_GetBucketAcl.go │ │ │ │ ├── api_op_GetBucketAnalyticsConfiguration.go │ │ │ │ ├── api_op_GetBucketCors.go │ │ │ │ ├── api_op_GetBucketEncryption.go │ │ │ │ ├── api_op_GetBucketIntelligentTieringConfiguration.go │ │ │ │ ├── api_op_GetBucketInventoryConfiguration.go │ │ │ │ ├── api_op_GetBucketLifecycleConfiguration.go │ │ │ │ ├── api_op_GetBucketLocation.go │ │ │ │ ├── api_op_GetBucketLogging.go │ │ │ │ ├── api_op_GetBucketMetadataConfiguration.go │ │ │ │ ├── api_op_GetBucketMetadataTableConfiguration.go │ │ │ │ ├── api_op_GetBucketMetricsConfiguration.go │ │ │ │ ├── api_op_GetBucketNotificationConfiguration.go │ │ │ │ ├── api_op_GetBucketOwnershipControls.go │ │ │ │ ├── api_op_GetBucketPolicy.go │ │ │ │ ├── api_op_GetBucketPolicyStatus.go │ │ │ │ ├── api_op_GetBucketReplication.go │ │ │ │ ├── api_op_GetBucketRequestPayment.go │ │ │ │ ├── api_op_GetBucketTagging.go │ │ │ │ ├── api_op_GetBucketVersioning.go │ │ │ │ ├── api_op_GetBucketWebsite.go │ │ │ │ ├── api_op_GetObject.go │ │ │ │ ├── api_op_GetObjectAcl.go │ │ │ │ ├── api_op_GetObjectAttributes.go │ │ │ │ ├── api_op_GetObjectLegalHold.go │ │ │ │ ├── api_op_GetObjectLockConfiguration.go │ │ │ │ ├── api_op_GetObjectRetention.go │ │ │ │ ├── api_op_GetObjectTagging.go │ │ │ │ ├── api_op_GetObjectTorrent.go │ │ │ │ ├── api_op_GetPublicAccessBlock.go │ │ │ │ ├── api_op_HeadBucket.go │ │ │ │ ├── api_op_HeadObject.go │ │ │ │ ├── api_op_ListBucketAnalyticsConfigurations.go │ │ │ │ ├── api_op_ListBucketIntelligentTieringConfigurations.go │ │ │ │ ├── api_op_ListBucketInventoryConfigurations.go │ │ │ │ ├── api_op_ListBucketMetricsConfigurations.go │ │ │ │ ├── api_op_ListBuckets.go │ │ │ │ ├── api_op_ListDirectoryBuckets.go │ │ │ │ ├── api_op_ListMultipartUploads.go │ │ │ │ ├── api_op_ListObjectVersions.go │ │ │ │ ├── api_op_ListObjects.go │ │ │ │ ├── api_op_ListObjectsV2.go │ │ │ │ ├── api_op_ListParts.go │ │ │ │ ├── api_op_PutBucketAccelerateConfiguration.go │ │ │ │ ├── api_op_PutBucketAcl.go │ │ │ │ ├── api_op_PutBucketAnalyticsConfiguration.go │ │ │ │ ├── api_op_PutBucketCors.go │ │ │ │ ├── api_op_PutBucketEncryption.go │ │ │ │ ├── api_op_PutBucketIntelligentTieringConfiguration.go │ │ │ │ ├── api_op_PutBucketInventoryConfiguration.go │ │ │ │ ├── api_op_PutBucketLifecycleConfiguration.go │ │ │ │ ├── api_op_PutBucketLogging.go │ │ │ │ ├── api_op_PutBucketMetricsConfiguration.go │ │ │ │ ├── api_op_PutBucketNotificationConfiguration.go │ │ │ │ ├── api_op_PutBucketOwnershipControls.go │ │ │ │ ├── api_op_PutBucketPolicy.go │ │ │ │ ├── api_op_PutBucketReplication.go │ │ │ │ ├── api_op_PutBucketRequestPayment.go │ │ │ │ ├── api_op_PutBucketTagging.go │ │ │ │ ├── api_op_PutBucketVersioning.go │ │ │ │ ├── api_op_PutBucketWebsite.go │ │ │ │ ├── api_op_PutObject.go │ │ │ │ ├── api_op_PutObjectAcl.go │ │ │ │ ├── api_op_PutObjectLegalHold.go │ │ │ │ ├── api_op_PutObjectLockConfiguration.go │ │ │ │ ├── api_op_PutObjectRetention.go │ │ │ │ ├── api_op_PutObjectTagging.go │ │ │ │ ├── api_op_PutPublicAccessBlock.go │ │ │ │ ├── api_op_RenameObject.go │ │ │ │ ├── api_op_RestoreObject.go │ │ │ │ ├── api_op_SelectObjectContent.go │ │ │ │ ├── api_op_UpdateBucketMetadataInventoryTableConfiguration.go │ │ │ │ ├── api_op_UpdateBucketMetadataJournalTableConfiguration.go │ │ │ │ ├── api_op_UploadPart.go │ │ │ │ ├── api_op_UploadPartCopy.go │ │ │ │ ├── api_op_WriteGetObjectResponse.go │ │ │ │ ├── auth.go │ │ │ │ ├── bucket_context.go │ │ │ │ ├── bucketer.go │ │ │ │ ├── create_mpu_checksum.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint_auth_resolver.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── eventstream.go │ │ │ │ ├── express.go │ │ │ │ ├── express_default.go │ │ │ │ ├── express_resolve.go │ │ │ │ ├── express_user_agent.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── handwritten_paginators.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── arn/ │ │ │ │ │ │ └── arn_parser.go │ │ │ │ │ ├── customizations/ │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── express.go │ │ │ │ │ │ ├── express_config.go │ │ │ │ │ │ ├── express_default_checksum.go │ │ │ │ │ │ ├── express_properties.go │ │ │ │ │ │ ├── express_signer.go │ │ │ │ │ │ ├── express_signer_smithy.go │ │ │ │ │ │ ├── handle_200_error.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── presigned_expires.go │ │ │ │ │ │ ├── process_arn_resource.go │ │ │ │ │ │ ├── remove_bucket_middleware.go │ │ │ │ │ │ ├── s3_object_lambda.go │ │ │ │ │ │ ├── signer_wrapper.go │ │ │ │ │ │ └── update_endpoint.go │ │ │ │ │ └── endpoints/ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── presign_post.go │ │ │ │ ├── serialize_immutable_hostname_bucket.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types/ │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ ├── uri_context.go │ │ │ │ └── validators.go │ │ │ ├── servicequotas/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AssociateServiceQuotaTemplate.go │ │ │ │ ├── api_op_CreateSupportCase.go │ │ │ │ ├── api_op_DeleteServiceQuotaIncreaseRequestFromTemplate.go │ │ │ │ ├── api_op_DisassociateServiceQuotaTemplate.go │ │ │ │ ├── api_op_GetAWSDefaultServiceQuota.go │ │ │ │ ├── api_op_GetAssociationForServiceQuotaTemplate.go │ │ │ │ ├── api_op_GetRequestedServiceQuotaChange.go │ │ │ │ ├── api_op_GetServiceQuota.go │ │ │ │ ├── api_op_GetServiceQuotaIncreaseRequestFromTemplate.go │ │ │ │ ├── api_op_ListAWSDefaultServiceQuotas.go │ │ │ │ ├── api_op_ListRequestedServiceQuotaChangeHistory.go │ │ │ │ ├── api_op_ListRequestedServiceQuotaChangeHistoryByQuota.go │ │ │ │ ├── api_op_ListServiceQuotaIncreaseRequestsInTemplate.go │ │ │ │ ├── api_op_ListServiceQuotas.go │ │ │ │ ├── api_op_ListServices.go │ │ │ │ ├── api_op_ListTagsForResource.go │ │ │ │ ├── api_op_PutServiceQuotaIncreaseRequestIntoTemplate.go │ │ │ │ ├── api_op_RequestServiceQuotaIncrease.go │ │ │ │ ├── api_op_TagResource.go │ │ │ │ ├── api_op_UntagResource.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal/ │ │ │ │ │ └── endpoints/ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types/ │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ ├── sso/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_GetRoleCredentials.go │ │ │ │ ├── api_op_ListAccountRoles.go │ │ │ │ ├── api_op_ListAccounts.go │ │ │ │ ├── api_op_Logout.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal/ │ │ │ │ │ └── endpoints/ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types/ │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ ├── ssooidc/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_CreateToken.go │ │ │ │ ├── api_op_CreateTokenWithIAM.go │ │ │ │ ├── api_op_RegisterClient.go │ │ │ │ ├── api_op_StartDeviceAuthorization.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal/ │ │ │ │ │ └── endpoints/ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types/ │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ └── sts/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AssumeRole.go │ │ │ ├── api_op_AssumeRoleWithSAML.go │ │ │ ├── api_op_AssumeRoleWithWebIdentity.go │ │ │ ├── api_op_AssumeRoot.go │ │ │ ├── api_op_DecodeAuthorizationMessage.go │ │ │ ├── api_op_GetAccessKeyInfo.go │ │ │ ├── api_op_GetCallerIdentity.go │ │ │ ├── api_op_GetFederationToken.go │ │ │ ├── api_op_GetSessionToken.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal/ │ │ │ │ └── endpoints/ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types/ │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ └── smithy-go/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── auth/ │ │ │ ├── auth.go │ │ │ ├── bearer/ │ │ │ │ ├── docs.go │ │ │ │ ├── middleware.go │ │ │ │ ├── token.go │ │ │ │ └── token_cache.go │ │ │ ├── identity.go │ │ │ ├── option.go │ │ │ └── scheme_id.go │ │ ├── changelog-template.json │ │ ├── container/ │ │ │ └── private/ │ │ │ └── cache/ │ │ │ ├── cache.go │ │ │ └── lru/ │ │ │ └── lru.go │ │ ├── context/ │ │ │ └── suppress_expired.go │ │ ├── doc.go │ │ ├── document/ │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ └── errors.go │ │ ├── document.go │ │ ├── encoding/ │ │ │ ├── doc.go │ │ │ ├── encoding.go │ │ │ ├── httpbinding/ │ │ │ │ ├── encode.go │ │ │ │ ├── header.go │ │ │ │ ├── path_replace.go │ │ │ │ ├── query.go │ │ │ │ └── uri.go │ │ │ ├── json/ │ │ │ │ ├── array.go │ │ │ │ ├── constants.go │ │ │ │ ├── decoder_util.go │ │ │ │ ├── encoder.go │ │ │ │ ├── escape.go │ │ │ │ ├── object.go │ │ │ │ └── value.go │ │ │ └── xml/ │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── element.go │ │ │ ├── encoder.go │ │ │ ├── error_utils.go │ │ │ ├── escape.go │ │ │ ├── map.go │ │ │ ├── value.go │ │ │ └── xml_decoder.go │ │ ├── endpoints/ │ │ │ ├── endpoint.go │ │ │ └── private/ │ │ │ └── rulesfn/ │ │ │ ├── doc.go │ │ │ ├── strings.go │ │ │ └── uri.go │ │ ├── errors.go │ │ ├── go_module_metadata.go │ │ ├── internal/ │ │ │ └── sync/ │ │ │ └── singleflight/ │ │ │ ├── LICENSE │ │ │ ├── docs.go │ │ │ └── singleflight.go │ │ ├── io/ │ │ │ ├── byte.go │ │ │ ├── doc.go │ │ │ ├── reader.go │ │ │ └── ringbuffer.go │ │ ├── local-mod-replace.sh │ │ ├── logging/ │ │ │ └── logger.go │ │ ├── metrics/ │ │ │ ├── metrics.go │ │ │ └── nop.go │ │ ├── middleware/ │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── logging.go │ │ │ ├── metadata.go │ │ │ ├── middleware.go │ │ │ ├── ordered_group.go │ │ │ ├── stack.go │ │ │ ├── stack_values.go │ │ │ ├── step_build.go │ │ │ ├── step_deserialize.go │ │ │ ├── step_finalize.go │ │ │ ├── step_initialize.go │ │ │ └── step_serialize.go │ │ ├── modman.toml │ │ ├── private/ │ │ │ └── requestcompression/ │ │ │ ├── gzip.go │ │ │ ├── middleware_capture_request_compression.go │ │ │ └── request_compression.go │ │ ├── properties.go │ │ ├── ptr/ │ │ │ ├── doc.go │ │ │ ├── from_ptr.go │ │ │ ├── gen_scalars.go │ │ │ └── to_ptr.go │ │ ├── rand/ │ │ │ ├── doc.go │ │ │ ├── rand.go │ │ │ └── uuid.go │ │ ├── sync/ │ │ │ └── error.go │ │ ├── time/ │ │ │ └── time.go │ │ ├── tracing/ │ │ │ ├── context.go │ │ │ ├── nop.go │ │ │ └── tracing.go │ │ ├── transport/ │ │ │ └── http/ │ │ │ ├── auth.go │ │ │ ├── auth_schemes.go │ │ │ ├── checksum_middleware.go │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── headerlist.go │ │ │ ├── host.go │ │ │ ├── interceptor.go │ │ │ ├── interceptor_middleware.go │ │ │ ├── internal/ │ │ │ │ └── io/ │ │ │ │ └── safe.go │ │ │ ├── md5_checksum.go │ │ │ ├── metrics.go │ │ │ ├── middleware_close_response_body.go │ │ │ ├── middleware_content_length.go │ │ │ ├── middleware_header_comment.go │ │ │ ├── middleware_headers.go │ │ │ ├── middleware_http_logging.go │ │ │ ├── middleware_metadata.go │ │ │ ├── middleware_min_proto.go │ │ │ ├── properties.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── time.go │ │ │ ├── url.go │ │ │ └── user_agent.go │ │ ├── validation.go │ │ └── waiter/ │ │ ├── logger.go │ │ └── waiter.go │ ├── beorn7/ │ │ └── perks/ │ │ ├── LICENSE │ │ └── quantile/ │ │ ├── exampledata.txt │ │ └── stream.go │ ├── bkielbasa/ │ │ └── cyclop/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── analyzer/ │ │ └── analyzer.go │ ├── blang/ │ │ └── semver/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── json.go │ │ ├── package.json │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ ├── sql.go │ │ └── v4/ │ │ ├── LICENSE │ │ ├── json.go │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go │ ├── blizzy78/ │ │ └── varnamelen/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── flags.go │ │ ├── typeparam.go │ │ ├── typeparam_go1.16.go │ │ ├── varnamelen.code-workspace │ │ └── varnamelen.go │ ├── breml/ │ │ ├── bidichk/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ └── bidichk/ │ │ │ ├── bidichk.go │ │ │ └── version.go │ │ └── errchkjson/ │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errchkjson.go │ │ ├── noexported_error.go │ │ ├── unsupported_error.go │ │ └── version.go │ ├── butuzov/ │ │ ├── ireturn/ │ │ │ ├── LICENSE │ │ │ └── analyzer/ │ │ │ ├── analyzer.go │ │ │ ├── disallow.go │ │ │ ├── internal/ │ │ │ │ ├── config/ │ │ │ │ │ ├── allow.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── new.go │ │ │ │ │ └── reject.go │ │ │ │ └── types/ │ │ │ │ ├── iface.go │ │ │ │ ├── names.go │ │ │ │ └── types.go │ │ │ └── std.go │ │ └── mirror/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── MIRROR_FUNCS.md │ │ ├── Makefile │ │ ├── Taskfile.yml │ │ ├── analyzer.go │ │ ├── checkers_bufio.go │ │ ├── checkers_bytes.go │ │ ├── checkers_httptest.go │ │ ├── checkers_maphash.go │ │ ├── checkers_os.go │ │ ├── checkers_regexp.go │ │ ├── checkers_strings.go │ │ ├── checkers_utf8.go │ │ ├── internal/ │ │ │ └── checker/ │ │ │ ├── checker.go │ │ │ ├── imports.go │ │ │ └── violation.go │ │ └── readme.md │ ├── catenacyber/ │ │ └── perfsprint/ │ │ ├── LICENSE │ │ └── analyzer/ │ │ ├── analyzer.go │ │ └── diagnostic.go │ ├── ccojocar/ │ │ └── zxcvbn-go/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── adjacency/ │ │ │ └── adjcmartix.go │ │ ├── data/ │ │ │ └── bindata.go │ │ ├── entropy/ │ │ │ └── entropyCalculator.go │ │ ├── frequency/ │ │ │ └── frequency.go │ │ ├── match/ │ │ │ └── match.go │ │ ├── matching/ │ │ │ ├── dateMatchers.go │ │ │ ├── dictionaryMatch.go │ │ │ ├── leet.go │ │ │ ├── matching.go │ │ │ ├── repeatMatch.go │ │ │ ├── sequenceMatch.go │ │ │ └── spatialMatch.go │ │ ├── renovate.json │ │ ├── scoring/ │ │ │ └── scoring.go │ │ ├── utils/ │ │ │ └── math/ │ │ │ └── mathutils.go │ │ └── zxcvbn.go │ ├── cenkalti/ │ │ └── backoff/ │ │ └── v5/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── error.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ └── timer.go │ ├── cespare/ │ │ └── xxhash/ │ │ └── v2/ │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go │ ├── chai2010/ │ │ └── gettext-go/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_json.go │ │ ├── fs_os.go │ │ ├── fs_zip.go │ │ ├── gettext.go │ │ ├── locale.go │ │ ├── mo/ │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── file.go │ │ │ ├── header.go │ │ │ ├── message.go │ │ │ └── util.go │ │ ├── plural/ │ │ │ ├── doc.go │ │ │ ├── formula.go │ │ │ └── table.go │ │ ├── po/ │ │ │ ├── comment.go │ │ │ ├── doc.go │ │ │ ├── file.go │ │ │ ├── header.go │ │ │ ├── line_reader.go │ │ │ ├── message.go │ │ │ ├── re.go │ │ │ └── util.go │ │ ├── tr.go │ │ └── util.go │ ├── charithe/ │ │ └── durationcheck/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── durationcheck.go │ ├── chavacava/ │ │ └── garif/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constructors.go │ │ ├── decorators.go │ │ ├── doc.go │ │ ├── enums.go │ │ ├── io.go │ │ └── models.go │ ├── cjlapao/ │ │ └── common-go/ │ │ ├── LICENSE │ │ └── duration/ │ │ └── main.go │ ├── ckaznocha/ │ │ └── intrange/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── go.work │ │ └── intrange.go │ ├── cncf/ │ │ └── xds/ │ │ └── go/ │ │ ├── LICENSE │ │ ├── udpa/ │ │ │ ├── annotations/ │ │ │ │ ├── migrate.pb.go │ │ │ │ ├── migrate.pb.validate.go │ │ │ │ ├── security.pb.go │ │ │ │ ├── security.pb.validate.go │ │ │ │ ├── sensitive.pb.go │ │ │ │ ├── sensitive.pb.validate.go │ │ │ │ ├── status.pb.go │ │ │ │ ├── status.pb.validate.go │ │ │ │ ├── versioning.pb.go │ │ │ │ └── versioning.pb.validate.go │ │ │ └── type/ │ │ │ └── v1/ │ │ │ ├── typed_struct.pb.go │ │ │ └── typed_struct.pb.validate.go │ │ └── xds/ │ │ ├── annotations/ │ │ │ └── v3/ │ │ │ ├── migrate.pb.go │ │ │ ├── migrate.pb.validate.go │ │ │ ├── security.pb.go │ │ │ ├── security.pb.validate.go │ │ │ ├── sensitive.pb.go │ │ │ ├── sensitive.pb.validate.go │ │ │ ├── status.pb.go │ │ │ ├── status.pb.validate.go │ │ │ ├── versioning.pb.go │ │ │ └── versioning.pb.validate.go │ │ ├── core/ │ │ │ └── v3/ │ │ │ ├── authority.pb.go │ │ │ ├── authority.pb.validate.go │ │ │ ├── cidr.pb.go │ │ │ ├── cidr.pb.validate.go │ │ │ ├── collection_entry.pb.go │ │ │ ├── collection_entry.pb.validate.go │ │ │ ├── context_params.pb.go │ │ │ ├── context_params.pb.validate.go │ │ │ ├── extension.pb.go │ │ │ ├── extension.pb.validate.go │ │ │ ├── resource.pb.go │ │ │ ├── resource.pb.validate.go │ │ │ ├── resource_locator.pb.go │ │ │ ├── resource_locator.pb.validate.go │ │ │ ├── resource_name.pb.go │ │ │ └── resource_name.pb.validate.go │ │ ├── data/ │ │ │ └── orca/ │ │ │ └── v3/ │ │ │ ├── orca_load_report.pb.go │ │ │ └── orca_load_report.pb.validate.go │ │ ├── service/ │ │ │ └── orca/ │ │ │ └── v3/ │ │ │ ├── orca.pb.go │ │ │ ├── orca.pb.validate.go │ │ │ └── orca_grpc.pb.go │ │ └── type/ │ │ ├── matcher/ │ │ │ └── v3/ │ │ │ ├── cel.pb.go │ │ │ ├── cel.pb.validate.go │ │ │ ├── domain.pb.go │ │ │ ├── domain.pb.validate.go │ │ │ ├── http_inputs.pb.go │ │ │ ├── http_inputs.pb.validate.go │ │ │ ├── ip.pb.go │ │ │ ├── ip.pb.validate.go │ │ │ ├── matcher.pb.go │ │ │ ├── matcher.pb.validate.go │ │ │ ├── range.pb.go │ │ │ ├── range.pb.validate.go │ │ │ ├── regex.pb.go │ │ │ ├── regex.pb.validate.go │ │ │ ├── string.pb.go │ │ │ └── string.pb.validate.go │ │ └── v3/ │ │ ├── cel.pb.go │ │ ├── cel.pb.validate.go │ │ ├── range.pb.go │ │ ├── range.pb.validate.go │ │ ├── typed_struct.pb.go │ │ └── typed_struct.pb.validate.go │ ├── containers/ │ │ ├── image/ │ │ │ └── v5/ │ │ │ ├── LICENSE │ │ │ └── docker/ │ │ │ └── reference/ │ │ │ ├── README.md │ │ │ ├── helpers.go │ │ │ ├── normalize.go │ │ │ ├── reference.go │ │ │ ├── regexp-additions.go │ │ │ └── regexp.go │ │ └── storage/ │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pkg/ │ │ └── regexp/ │ │ ├── regexp.go │ │ ├── regexp_dontprecompile.go │ │ └── regexp_precompile.go │ ├── coreos/ │ │ ├── go-semver/ │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── semver/ │ │ │ ├── semver.go │ │ │ └── sort.go │ │ ├── go-systemd/ │ │ │ └── v22/ │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── daemon/ │ │ │ │ ├── sdnotify.go │ │ │ │ └── watchdog.go │ │ │ ├── journal/ │ │ │ │ ├── journal.go │ │ │ │ ├── journal_unix.go │ │ │ │ └── journal_windows.go │ │ │ └── unit/ │ │ │ ├── deserialize.go │ │ │ ├── doc.go │ │ │ ├── escape.go │ │ │ ├── option.go │ │ │ ├── section.go │ │ │ └── serialize.go │ │ ├── ignition/ │ │ │ └── v2/ │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── config/ │ │ │ ├── shared/ │ │ │ │ ├── errors/ │ │ │ │ │ └── errors.go │ │ │ │ ├── parse/ │ │ │ │ │ └── unit.go │ │ │ │ └── validations/ │ │ │ │ └── unit.go │ │ │ ├── util/ │ │ │ │ ├── config.go │ │ │ │ ├── helpers.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── parsingErrors.go │ │ │ │ └── reflection.go │ │ │ └── v3_2/ │ │ │ └── types/ │ │ │ ├── config.go │ │ │ ├── custom.go │ │ │ ├── device.go │ │ │ ├── directory.go │ │ │ ├── disk.go │ │ │ ├── file.go │ │ │ ├── filesystem.go │ │ │ ├── headers.go │ │ │ ├── ignition.go │ │ │ ├── luks.go │ │ │ ├── mode.go │ │ │ ├── node.go │ │ │ ├── partition.go │ │ │ ├── passwd.go │ │ │ ├── path.go │ │ │ ├── proxy.go │ │ │ ├── raid.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ ├── storage.go │ │ │ ├── systemd.go │ │ │ ├── tang.go │ │ │ ├── tls.go │ │ │ ├── unit.go │ │ │ ├── url.go │ │ │ └── verification.go │ │ ├── stream-metadata-go/ │ │ │ ├── LICENSE │ │ │ ├── arch/ │ │ │ │ └── arch.go │ │ │ └── stream/ │ │ │ ├── artifact_utils.go │ │ │ ├── rhcos/ │ │ │ │ └── rhcos.go │ │ │ ├── stream.go │ │ │ └── stream_utils.go │ │ └── vcontext/ │ │ ├── LICENSE │ │ ├── path/ │ │ │ └── path.go │ │ ├── report/ │ │ │ └── report.go │ │ └── tree/ │ │ └── tree.go │ ├── curioswitch/ │ │ └── go-reassign/ │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyzer.go │ │ └── internal/ │ │ └── analyzer/ │ │ └── analyzer.go │ ├── daixiang0/ │ │ └── gci/ │ │ ├── LICENSE │ │ └── pkg/ │ │ ├── config/ │ │ │ └── config.go │ │ ├── format/ │ │ │ └── format.go │ │ ├── gci/ │ │ │ ├── gci.go │ │ │ └── testdata.go │ │ ├── io/ │ │ │ ├── file.go │ │ │ ├── search.go │ │ │ └── stdin.go │ │ ├── log/ │ │ │ └── log.go │ │ ├── parse/ │ │ │ └── parse.go │ │ ├── section/ │ │ │ ├── alias.go │ │ │ ├── blank.go │ │ │ ├── commentline.go │ │ │ ├── default.go │ │ │ ├── dot.go │ │ │ ├── errors.go │ │ │ ├── local_module.go │ │ │ ├── newline.go │ │ │ ├── parser.go │ │ │ ├── prefix.go │ │ │ ├── section.go │ │ │ ├── standard.go │ │ │ └── standard_list.go │ │ ├── specificity/ │ │ │ ├── default.go │ │ │ ├── local_module.go │ │ │ ├── match.go │ │ │ ├── mismatch.go │ │ │ ├── name.go │ │ │ ├── specificity.go │ │ │ └── standard.go │ │ └── utils/ │ │ └── constants.go │ ├── davecgh/ │ │ └── go-spew/ │ │ ├── LICENSE │ │ └── spew/ │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go │ ├── davegardnerisme/ │ │ └── deephash/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── deephash.go │ ├── denis-tingaikin/ │ │ └── go-header/ │ │ ├── .gitignore │ │ ├── .go-header.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyzer.go │ │ ├── config.go │ │ ├── issue.go │ │ ├── location.go │ │ ├── option.go │ │ ├── reader.go │ │ └── value.go │ ├── digitalocean/ │ │ └── go-libvirt/ │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── connect_uri.go │ │ ├── const.gen.go │ │ ├── doc.go │ │ ├── internal/ │ │ │ ├── constants/ │ │ │ │ ├── qemu_protocol.gen.go │ │ │ │ └── remote_protocol.gen.go │ │ │ ├── event/ │ │ │ │ ├── event.go │ │ │ │ └── stream.go │ │ │ └── go-xdr/ │ │ │ ├── LICENSE │ │ │ └── xdr2/ │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── error.go │ │ ├── libvirt.go │ │ ├── libvirt.yml │ │ ├── qemu_protocol.gen.go │ │ ├── remote_protocol.gen.go │ │ ├── rpc.go │ │ └── socket/ │ │ ├── dialers/ │ │ │ ├── already_connected.go │ │ │ ├── gossh.go │ │ │ ├── local.go │ │ │ ├── remote.go │ │ │ └── tls.go │ │ ├── socket.go │ │ └── units.go │ ├── dimchansky/ │ │ └── utfbom/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── utfbom.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 │ ├── envoyproxy/ │ │ ├── go-control-plane/ │ │ │ └── envoy/ │ │ │ ├── LICENSE │ │ │ ├── admin/ │ │ │ │ └── v3/ │ │ │ │ ├── certs.pb.go │ │ │ │ ├── certs.pb.validate.go │ │ │ │ ├── certs_vtproto.pb.go │ │ │ │ ├── clusters.pb.go │ │ │ │ ├── clusters.pb.validate.go │ │ │ │ ├── clusters_vtproto.pb.go │ │ │ │ ├── config_dump.pb.go │ │ │ │ ├── config_dump.pb.validate.go │ │ │ │ ├── config_dump_shared.pb.go │ │ │ │ ├── config_dump_shared.pb.validate.go │ │ │ │ ├── config_dump_shared_vtproto.pb.go │ │ │ │ ├── config_dump_vtproto.pb.go │ │ │ │ ├── init_dump.pb.go │ │ │ │ ├── init_dump.pb.validate.go │ │ │ │ ├── init_dump_vtproto.pb.go │ │ │ │ ├── listeners.pb.go │ │ │ │ ├── listeners.pb.validate.go │ │ │ │ ├── listeners_vtproto.pb.go │ │ │ │ ├── memory.pb.go │ │ │ │ ├── memory.pb.validate.go │ │ │ │ ├── memory_vtproto.pb.go │ │ │ │ ├── metrics.pb.go │ │ │ │ ├── metrics.pb.validate.go │ │ │ │ ├── metrics_vtproto.pb.go │ │ │ │ ├── mutex_stats.pb.go │ │ │ │ ├── mutex_stats.pb.validate.go │ │ │ │ ├── mutex_stats_vtproto.pb.go │ │ │ │ ├── server_info.pb.go │ │ │ │ ├── server_info.pb.validate.go │ │ │ │ ├── server_info_vtproto.pb.go │ │ │ │ ├── tap.pb.go │ │ │ │ ├── tap.pb.validate.go │ │ │ │ └── tap_vtproto.pb.go │ │ │ ├── annotations/ │ │ │ │ ├── deprecation.pb.go │ │ │ │ ├── deprecation.pb.validate.go │ │ │ │ ├── resource.pb.go │ │ │ │ ├── resource.pb.validate.go │ │ │ │ └── resource_vtproto.pb.go │ │ │ ├── config/ │ │ │ │ ├── accesslog/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── accesslog.pb.go │ │ │ │ │ ├── accesslog.pb.validate.go │ │ │ │ │ └── accesslog_vtproto.pb.go │ │ │ │ ├── bootstrap/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── bootstrap.pb.go │ │ │ │ │ ├── bootstrap.pb.validate.go │ │ │ │ │ └── bootstrap_vtproto.pb.go │ │ │ │ ├── cluster/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── circuit_breaker.pb.go │ │ │ │ │ ├── circuit_breaker.pb.validate.go │ │ │ │ │ ├── circuit_breaker_vtproto.pb.go │ │ │ │ │ ├── cluster.pb.go │ │ │ │ │ ├── cluster.pb.validate.go │ │ │ │ │ ├── cluster_vtproto.pb.go │ │ │ │ │ ├── filter.pb.go │ │ │ │ │ ├── filter.pb.validate.go │ │ │ │ │ ├── filter_vtproto.pb.go │ │ │ │ │ ├── outlier_detection.pb.go │ │ │ │ │ ├── outlier_detection.pb.validate.go │ │ │ │ │ └── outlier_detection_vtproto.pb.go │ │ │ │ ├── common/ │ │ │ │ │ ├── matcher/ │ │ │ │ │ │ └── v3/ │ │ │ │ │ │ ├── matcher.pb.go │ │ │ │ │ │ ├── matcher.pb.validate.go │ │ │ │ │ │ └── matcher_vtproto.pb.go │ │ │ │ │ └── mutation_rules/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── mutation_rules.pb.go │ │ │ │ │ ├── mutation_rules.pb.validate.go │ │ │ │ │ └── mutation_rules_vtproto.pb.go │ │ │ │ ├── core/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── address.pb.go │ │ │ │ │ ├── address.pb.validate.go │ │ │ │ │ ├── address_vtproto.pb.go │ │ │ │ │ ├── backoff.pb.go │ │ │ │ │ ├── backoff.pb.validate.go │ │ │ │ │ ├── backoff_vtproto.pb.go │ │ │ │ │ ├── base.pb.go │ │ │ │ │ ├── base.pb.validate.go │ │ │ │ │ ├── base_vtproto.pb.go │ │ │ │ │ ├── config_source.pb.go │ │ │ │ │ ├── config_source.pb.validate.go │ │ │ │ │ ├── config_source_vtproto.pb.go │ │ │ │ │ ├── event_service_config.pb.go │ │ │ │ │ ├── event_service_config.pb.validate.go │ │ │ │ │ ├── event_service_config_vtproto.pb.go │ │ │ │ │ ├── extension.pb.go │ │ │ │ │ ├── extension.pb.validate.go │ │ │ │ │ ├── extension_vtproto.pb.go │ │ │ │ │ ├── grpc_method_list.pb.go │ │ │ │ │ ├── grpc_method_list.pb.validate.go │ │ │ │ │ ├── grpc_method_list_vtproto.pb.go │ │ │ │ │ ├── grpc_service.pb.go │ │ │ │ │ ├── grpc_service.pb.validate.go │ │ │ │ │ ├── grpc_service_vtproto.pb.go │ │ │ │ │ ├── health_check.pb.go │ │ │ │ │ ├── health_check.pb.validate.go │ │ │ │ │ ├── health_check_vtproto.pb.go │ │ │ │ │ ├── http_service.pb.go │ │ │ │ │ ├── http_service.pb.validate.go │ │ │ │ │ ├── http_service_vtproto.pb.go │ │ │ │ │ ├── http_uri.pb.go │ │ │ │ │ ├── http_uri.pb.validate.go │ │ │ │ │ ├── http_uri_vtproto.pb.go │ │ │ │ │ ├── protocol.pb.go │ │ │ │ │ ├── protocol.pb.validate.go │ │ │ │ │ ├── protocol_vtproto.pb.go │ │ │ │ │ ├── proxy_protocol.pb.go │ │ │ │ │ ├── proxy_protocol.pb.validate.go │ │ │ │ │ ├── proxy_protocol_vtproto.pb.go │ │ │ │ │ ├── resolver.pb.go │ │ │ │ │ ├── resolver.pb.validate.go │ │ │ │ │ ├── resolver_vtproto.pb.go │ │ │ │ │ ├── socket_cmsg_headers.pb.go │ │ │ │ │ ├── socket_cmsg_headers.pb.validate.go │ │ │ │ │ ├── socket_cmsg_headers_vtproto.pb.go │ │ │ │ │ ├── socket_option.pb.go │ │ │ │ │ ├── socket_option.pb.validate.go │ │ │ │ │ ├── socket_option_vtproto.pb.go │ │ │ │ │ ├── substitution_format_string.pb.go │ │ │ │ │ ├── substitution_format_string.pb.validate.go │ │ │ │ │ ├── substitution_format_string_vtproto.pb.go │ │ │ │ │ ├── udp_socket_config.pb.go │ │ │ │ │ ├── udp_socket_config.pb.validate.go │ │ │ │ │ └── udp_socket_config_vtproto.pb.go │ │ │ │ ├── endpoint/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── endpoint.pb.go │ │ │ │ │ ├── endpoint.pb.validate.go │ │ │ │ │ ├── endpoint_components.pb.go │ │ │ │ │ ├── endpoint_components.pb.validate.go │ │ │ │ │ ├── endpoint_components_vtproto.pb.go │ │ │ │ │ ├── endpoint_vtproto.pb.go │ │ │ │ │ ├── load_report.pb.go │ │ │ │ │ ├── load_report.pb.validate.go │ │ │ │ │ └── load_report_vtproto.pb.go │ │ │ │ ├── listener/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── api_listener.pb.go │ │ │ │ │ ├── api_listener.pb.validate.go │ │ │ │ │ ├── api_listener_vtproto.pb.go │ │ │ │ │ ├── listener.pb.go │ │ │ │ │ ├── listener.pb.validate.go │ │ │ │ │ ├── listener_components.pb.go │ │ │ │ │ ├── listener_components.pb.validate.go │ │ │ │ │ ├── listener_components_vtproto.pb.go │ │ │ │ │ ├── listener_vtproto.pb.go │ │ │ │ │ ├── quic_config.pb.go │ │ │ │ │ ├── quic_config.pb.validate.go │ │ │ │ │ ├── quic_config_vtproto.pb.go │ │ │ │ │ ├── udp_listener_config.pb.go │ │ │ │ │ ├── udp_listener_config.pb.validate.go │ │ │ │ │ └── udp_listener_config_vtproto.pb.go │ │ │ │ ├── metrics/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── metrics_service.pb.go │ │ │ │ │ ├── metrics_service.pb.validate.go │ │ │ │ │ ├── metrics_service_vtproto.pb.go │ │ │ │ │ ├── stats.pb.go │ │ │ │ │ ├── stats.pb.validate.go │ │ │ │ │ └── stats_vtproto.pb.go │ │ │ │ ├── overload/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── overload.pb.go │ │ │ │ │ ├── overload.pb.validate.go │ │ │ │ │ └── overload_vtproto.pb.go │ │ │ │ ├── rbac/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── rbac.pb.go │ │ │ │ │ ├── rbac.pb.validate.go │ │ │ │ │ └── rbac_vtproto.pb.go │ │ │ │ ├── route/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── route.pb.go │ │ │ │ │ ├── route.pb.validate.go │ │ │ │ │ ├── route_components.pb.go │ │ │ │ │ ├── route_components.pb.validate.go │ │ │ │ │ ├── route_components_vtproto.pb.go │ │ │ │ │ ├── route_vtproto.pb.go │ │ │ │ │ ├── scoped_route.pb.go │ │ │ │ │ ├── scoped_route.pb.validate.go │ │ │ │ │ └── scoped_route_vtproto.pb.go │ │ │ │ ├── tap/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── common.pb.validate.go │ │ │ │ │ └── common_vtproto.pb.go │ │ │ │ └── trace/ │ │ │ │ └── v3/ │ │ │ │ ├── datadog.pb.go │ │ │ │ ├── datadog.pb.validate.go │ │ │ │ ├── datadog_vtproto.pb.go │ │ │ │ ├── dynamic_ot.pb.go │ │ │ │ ├── dynamic_ot.pb.validate.go │ │ │ │ ├── dynamic_ot_vtproto.pb.go │ │ │ │ ├── http_tracer.pb.go │ │ │ │ ├── http_tracer.pb.validate.go │ │ │ │ ├── http_tracer_vtproto.pb.go │ │ │ │ ├── lightstep.pb.go │ │ │ │ ├── lightstep.pb.validate.go │ │ │ │ ├── lightstep_vtproto.pb.go │ │ │ │ ├── opentelemetry.pb.go │ │ │ │ ├── opentelemetry.pb.validate.go │ │ │ │ ├── opentelemetry_vtproto.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── service.pb.validate.go │ │ │ │ ├── service_vtproto.pb.go │ │ │ │ ├── skywalking.pb.go │ │ │ │ ├── skywalking.pb.validate.go │ │ │ │ ├── skywalking_vtproto.pb.go │ │ │ │ ├── trace.pb.go │ │ │ │ ├── trace.pb.validate.go │ │ │ │ ├── xray.pb.go │ │ │ │ ├── xray.pb.validate.go │ │ │ │ ├── xray_vtproto.pb.go │ │ │ │ ├── zipkin.pb.go │ │ │ │ ├── zipkin.pb.validate.go │ │ │ │ └── zipkin_vtproto.pb.go │ │ │ ├── data/ │ │ │ │ └── accesslog/ │ │ │ │ └── v3/ │ │ │ │ ├── accesslog.pb.go │ │ │ │ ├── accesslog.pb.validate.go │ │ │ │ └── accesslog_vtproto.pb.go │ │ │ ├── extensions/ │ │ │ │ ├── clusters/ │ │ │ │ │ └── aggregate/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── cluster.pb.go │ │ │ │ │ ├── cluster.pb.validate.go │ │ │ │ │ └── cluster_vtproto.pb.go │ │ │ │ ├── filters/ │ │ │ │ │ ├── common/ │ │ │ │ │ │ └── fault/ │ │ │ │ │ │ └── v3/ │ │ │ │ │ │ ├── fault.pb.go │ │ │ │ │ │ ├── fault.pb.validate.go │ │ │ │ │ │ └── fault_vtproto.pb.go │ │ │ │ │ ├── http/ │ │ │ │ │ │ ├── fault/ │ │ │ │ │ │ │ └── v3/ │ │ │ │ │ │ │ ├── fault.pb.go │ │ │ │ │ │ │ ├── fault.pb.validate.go │ │ │ │ │ │ │ └── fault_vtproto.pb.go │ │ │ │ │ │ ├── rbac/ │ │ │ │ │ │ │ └── v3/ │ │ │ │ │ │ │ ├── rbac.pb.go │ │ │ │ │ │ │ ├── rbac.pb.validate.go │ │ │ │ │ │ │ └── rbac_vtproto.pb.go │ │ │ │ │ │ └── router/ │ │ │ │ │ │ └── v3/ │ │ │ │ │ │ ├── router.pb.go │ │ │ │ │ │ ├── router.pb.validate.go │ │ │ │ │ │ └── router_vtproto.pb.go │ │ │ │ │ └── network/ │ │ │ │ │ └── http_connection_manager/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── http_connection_manager.pb.go │ │ │ │ │ ├── http_connection_manager.pb.validate.go │ │ │ │ │ └── http_connection_manager_vtproto.pb.go │ │ │ │ ├── load_balancing_policies/ │ │ │ │ │ ├── client_side_weighted_round_robin/ │ │ │ │ │ │ └── v3/ │ │ │ │ │ │ ├── client_side_weighted_round_robin.pb.go │ │ │ │ │ │ ├── client_side_weighted_round_robin.pb.validate.go │ │ │ │ │ │ └── client_side_weighted_round_robin_vtproto.pb.go │ │ │ │ │ ├── common/ │ │ │ │ │ │ └── v3/ │ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ │ ├── common.pb.validate.go │ │ │ │ │ │ └── common_vtproto.pb.go │ │ │ │ │ ├── least_request/ │ │ │ │ │ │ └── v3/ │ │ │ │ │ │ ├── least_request.pb.go │ │ │ │ │ │ ├── least_request.pb.validate.go │ │ │ │ │ │ └── least_request_vtproto.pb.go │ │ │ │ │ ├── pick_first/ │ │ │ │ │ │ └── v3/ │ │ │ │ │ │ ├── pick_first.pb.go │ │ │ │ │ │ ├── pick_first.pb.validate.go │ │ │ │ │ │ └── pick_first_vtproto.pb.go │ │ │ │ │ ├── ring_hash/ │ │ │ │ │ │ └── v3/ │ │ │ │ │ │ ├── ring_hash.pb.go │ │ │ │ │ │ ├── ring_hash.pb.validate.go │ │ │ │ │ │ └── ring_hash_vtproto.pb.go │ │ │ │ │ └── wrr_locality/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── wrr_locality.pb.go │ │ │ │ │ ├── wrr_locality.pb.validate.go │ │ │ │ │ └── wrr_locality_vtproto.pb.go │ │ │ │ ├── rbac/ │ │ │ │ │ └── audit_loggers/ │ │ │ │ │ └── stream/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── stream.pb.go │ │ │ │ │ ├── stream.pb.validate.go │ │ │ │ │ └── stream_vtproto.pb.go │ │ │ │ └── transport_sockets/ │ │ │ │ └── tls/ │ │ │ │ └── v3/ │ │ │ │ ├── cert.pb.go │ │ │ │ ├── cert.pb.validate.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── common.pb.validate.go │ │ │ │ ├── common_vtproto.pb.go │ │ │ │ ├── secret.pb.go │ │ │ │ ├── secret.pb.validate.go │ │ │ │ ├── secret_vtproto.pb.go │ │ │ │ ├── tls.pb.go │ │ │ │ ├── tls.pb.validate.go │ │ │ │ ├── tls_spiffe_validator_config.pb.go │ │ │ │ ├── tls_spiffe_validator_config.pb.validate.go │ │ │ │ ├── tls_spiffe_validator_config_vtproto.pb.go │ │ │ │ └── tls_vtproto.pb.go │ │ │ ├── service/ │ │ │ │ ├── discovery/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── ads.pb.go │ │ │ │ │ ├── ads.pb.validate.go │ │ │ │ │ ├── ads_grpc.pb.go │ │ │ │ │ ├── ads_vtproto.pb.go │ │ │ │ │ ├── discovery.pb.go │ │ │ │ │ ├── discovery.pb.validate.go │ │ │ │ │ └── discovery_vtproto.pb.go │ │ │ │ ├── load_stats/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── lrs.pb.go │ │ │ │ │ ├── lrs.pb.validate.go │ │ │ │ │ ├── lrs_grpc.pb.go │ │ │ │ │ └── lrs_vtproto.pb.go │ │ │ │ └── status/ │ │ │ │ └── v3/ │ │ │ │ ├── csds.pb.go │ │ │ │ ├── csds.pb.validate.go │ │ │ │ ├── csds_grpc.pb.go │ │ │ │ └── csds_vtproto.pb.go │ │ │ └── type/ │ │ │ ├── http/ │ │ │ │ └── v3/ │ │ │ │ ├── cookie.pb.go │ │ │ │ ├── cookie.pb.validate.go │ │ │ │ ├── cookie_vtproto.pb.go │ │ │ │ ├── path_transformation.pb.go │ │ │ │ ├── path_transformation.pb.validate.go │ │ │ │ └── path_transformation_vtproto.pb.go │ │ │ ├── matcher/ │ │ │ │ └── v3/ │ │ │ │ ├── address.pb.go │ │ │ │ ├── address.pb.validate.go │ │ │ │ ├── address_vtproto.pb.go │ │ │ │ ├── filter_state.pb.go │ │ │ │ ├── filter_state.pb.validate.go │ │ │ │ ├── filter_state_vtproto.pb.go │ │ │ │ ├── http_inputs.pb.go │ │ │ │ ├── http_inputs.pb.validate.go │ │ │ │ ├── http_inputs_vtproto.pb.go │ │ │ │ ├── metadata.pb.go │ │ │ │ ├── metadata.pb.validate.go │ │ │ │ ├── metadata_vtproto.pb.go │ │ │ │ ├── node.pb.go │ │ │ │ ├── node.pb.validate.go │ │ │ │ ├── node_vtproto.pb.go │ │ │ │ ├── number.pb.go │ │ │ │ ├── number.pb.validate.go │ │ │ │ ├── number_vtproto.pb.go │ │ │ │ ├── path.pb.go │ │ │ │ ├── path.pb.validate.go │ │ │ │ ├── path_vtproto.pb.go │ │ │ │ ├── regex.pb.go │ │ │ │ ├── regex.pb.validate.go │ │ │ │ ├── regex_vtproto.pb.go │ │ │ │ ├── status_code_input.pb.go │ │ │ │ ├── status_code_input.pb.validate.go │ │ │ │ ├── status_code_input_vtproto.pb.go │ │ │ │ ├── string.pb.go │ │ │ │ ├── string.pb.validate.go │ │ │ │ ├── string_vtproto.pb.go │ │ │ │ ├── struct.pb.go │ │ │ │ ├── struct.pb.validate.go │ │ │ │ ├── struct_vtproto.pb.go │ │ │ │ ├── value.pb.go │ │ │ │ ├── value.pb.validate.go │ │ │ │ └── value_vtproto.pb.go │ │ │ ├── metadata/ │ │ │ │ └── v3/ │ │ │ │ ├── metadata.pb.go │ │ │ │ ├── metadata.pb.validate.go │ │ │ │ └── metadata_vtproto.pb.go │ │ │ ├── tracing/ │ │ │ │ └── v3/ │ │ │ │ ├── custom_tag.pb.go │ │ │ │ ├── custom_tag.pb.validate.go │ │ │ │ └── custom_tag_vtproto.pb.go │ │ │ └── v3/ │ │ │ ├── hash_policy.pb.go │ │ │ ├── hash_policy.pb.validate.go │ │ │ ├── hash_policy_vtproto.pb.go │ │ │ ├── http.pb.go │ │ │ ├── http.pb.validate.go │ │ │ ├── http_status.pb.go │ │ │ ├── http_status.pb.validate.go │ │ │ ├── http_status_vtproto.pb.go │ │ │ ├── percent.pb.go │ │ │ ├── percent.pb.validate.go │ │ │ ├── percent_vtproto.pb.go │ │ │ ├── range.pb.go │ │ │ ├── range.pb.validate.go │ │ │ ├── range_vtproto.pb.go │ │ │ ├── ratelimit_strategy.pb.go │ │ │ ├── ratelimit_strategy.pb.validate.go │ │ │ ├── ratelimit_strategy_vtproto.pb.go │ │ │ ├── ratelimit_unit.pb.go │ │ │ ├── ratelimit_unit.pb.validate.go │ │ │ ├── semantic_version.pb.go │ │ │ ├── semantic_version.pb.validate.go │ │ │ ├── semantic_version_vtproto.pb.go │ │ │ ├── token_bucket.pb.go │ │ │ ├── token_bucket.pb.validate.go │ │ │ └── token_bucket_vtproto.pb.go │ │ └── protoc-gen-validate/ │ │ ├── LICENSE │ │ └── validate/ │ │ ├── BUILD │ │ ├── validate.h │ │ ├── validate.pb.go │ │ └── validate.proto │ ├── evanphx/ │ │ └── json-patch/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ ├── patch.go │ │ └── v5/ │ │ ├── LICENSE │ │ ├── errors.go │ │ ├── internal/ │ │ │ └── json/ │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fold.go │ │ │ ├── fuzz.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── merge.go │ │ └── patch.go │ ├── exponent-io/ │ │ └── jsonpath/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decoder.go │ │ ├── path.go │ │ └── pathaction.go │ ├── fatih/ │ │ ├── camelcase/ │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── camelcase.go │ │ ├── color/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ ├── color_windows.go │ │ │ └── doc.go │ │ └── structtag/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── tags.go │ ├── felixge/ │ │ └── httpsnoop/ │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go │ ├── firefart/ │ │ └── nonamedreturns/ │ │ ├── LICENSE │ │ └── analyzer/ │ │ └── analyzer.go │ ├── form3tech-oss/ │ │ └── jwt-go/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ └── token.go │ ├── fsnotify/ │ │ └── fsnotify/ │ │ ├── .cirrus.yml │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── internal/ │ │ │ ├── darwin.go │ │ │ ├── debug_darwin.go │ │ │ ├── debug_dragonfly.go │ │ │ ├── debug_freebsd.go │ │ │ ├── debug_kqueue.go │ │ │ ├── debug_linux.go │ │ │ ├── debug_netbsd.go │ │ │ ├── debug_openbsd.go │ │ │ ├── debug_solaris.go │ │ │ ├── debug_windows.go │ │ │ ├── freebsd.go │ │ │ ├── internal.go │ │ │ ├── unix.go │ │ │ ├── unix2.go │ │ │ └── windows.go │ │ ├── shared.go │ │ ├── staticcheck.conf │ │ ├── system_bsd.go │ │ └── system_darwin.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 │ │ ├── omitzero_go124.go │ │ ├── omitzero_pre_go124.go │ │ ├── simplevalue.go │ │ ├── stream.go │ │ ├── structfields.go │ │ ├── tag.go │ │ └── valid.go │ ├── fzipp/ │ │ └── gocyclo/ │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analyze.go │ │ ├── complexity.go │ │ ├── directives.go │ │ ├── recv.go │ │ ├── recv_pre118.go │ │ └── stats.go │ ├── gabriel-vasile/ │ │ └── mimetype/ │ │ ├── .gitattributes │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal/ │ │ │ ├── charset/ │ │ │ │ └── charset.go │ │ │ ├── json/ │ │ │ │ └── parser.go │ │ │ └── magic/ │ │ │ ├── archive.go │ │ │ ├── audio.go │ │ │ ├── binary.go │ │ │ ├── database.go │ │ │ ├── document.go │ │ │ ├── font.go │ │ │ ├── ftyp.go │ │ │ ├── geo.go │ │ │ ├── image.go │ │ │ ├── magic.go │ │ │ ├── ms_office.go │ │ │ ├── ogg.go │ │ │ ├── text.go │ │ │ ├── text_csv.go │ │ │ ├── video.go │ │ │ └── zip.go │ │ ├── mime.go │ │ ├── mimetype.go │ │ ├── supported_mimes.md │ │ └── tree.go │ ├── ghostiam/ │ │ └── protogetter/ │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── posfilter.go │ │ ├── processor.go │ │ └── protogetter.go │ ├── go-bindata/ │ │ └── go-bindata/ │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── _config.yml │ │ ├── asset.go │ │ ├── bytewriter.go │ │ ├── config.go │ │ ├── convert.go │ │ ├── debug.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── release.go │ │ ├── restore.go │ │ ├── stringwriter.go │ │ └── toc.go │ ├── go-critic/ │ │ └── go-critic/ │ │ ├── LICENSE │ │ ├── checkers/ │ │ │ ├── appendAssign_checker.go │ │ │ ├── appendCombine_checker.go │ │ │ ├── badCond_checker.go │ │ │ ├── badRegexp_checker.go │ │ │ ├── boolExprSimplify_checker.go │ │ │ ├── builtinShadowDecl_checker.go │ │ │ ├── builtinShadow_checker.go │ │ │ ├── captLocal_checker.go │ │ │ ├── caseOrder_checker.go │ │ │ ├── checkers.go │ │ │ ├── codegenComment_checker.go │ │ │ ├── commentFormatting_checker.go │ │ │ ├── commentedOutCode_checker.go │ │ │ ├── commentedOutImport_checker.go │ │ │ ├── defaultCaseOrder_checker.go │ │ │ ├── deferInLoop_checker.go │ │ │ ├── deprecatedComment_checker.go │ │ │ ├── docStub_checker.go │ │ │ ├── dupBranchBody_checker.go │ │ │ ├── dupCase_checker.go │ │ │ ├── dupImports_checker.go │ │ │ ├── dupSubExpr_checker.go │ │ │ ├── elseif_checker.go │ │ │ ├── embedded_rules.go │ │ │ ├── emptyFallthrough_checker.go │ │ │ ├── evalOrder_checker.go │ │ │ ├── exitAfterDefer_checker.go │ │ │ ├── filepathJoin_checker.go │ │ │ ├── flagName_checker.go │ │ │ ├── hexLiteral_checker.go │ │ │ ├── hugeParam_checker.go │ │ │ ├── ifElseChain_checker.go │ │ │ ├── importShadow_checker.go │ │ │ ├── initClause_checker.go │ │ │ ├── internal/ │ │ │ │ ├── astwalk/ │ │ │ │ │ ├── comment_walker.go │ │ │ │ │ ├── doc_comment_walker.go │ │ │ │ │ ├── expr_walker.go │ │ │ │ │ ├── func_decl_walker.go │ │ │ │ │ ├── local_comment_walker.go │ │ │ │ │ ├── local_def_visitor.go │ │ │ │ │ ├── local_def_walker.go │ │ │ │ │ ├── local_expr_walker.go │ │ │ │ │ ├── stmt_list_walker.go │ │ │ │ │ ├── stmt_walker.go │ │ │ │ │ ├── type_expr_walker.go │ │ │ │ │ ├── visitor.go │ │ │ │ │ ├── walk_handler.go │ │ │ │ │ └── walker.go │ │ │ │ └── lintutil/ │ │ │ │ ├── astfind.go │ │ │ │ ├── astflow.go │ │ │ │ ├── astset.go │ │ │ │ └── zero_value.go │ │ │ ├── mapKey_checker.go │ │ │ ├── methodExprCall_checker.go │ │ │ ├── nestingReduce_checker.go │ │ │ ├── newDeref_checker.go │ │ │ ├── nilValReturn_checker.go │ │ │ ├── octalLiteral_checker.go │ │ │ ├── paramTypeCombine_checker.go │ │ │ ├── ptrToRefParam_checker.go │ │ │ ├── rangeAppendAll_checker.go │ │ │ ├── rangeExprCopy_checker.go │ │ │ ├── rangeValCopy_checker.go │ │ │ ├── regexpPattern_checker.go │ │ │ ├── regexpSimplify_checker.go │ │ │ ├── ruleguard_checker.go │ │ │ ├── rulesdata/ │ │ │ │ └── rulesdata.go │ │ │ ├── singleCaseSwitch_checker.go │ │ │ ├── sloppyReassign_checker.go │ │ │ ├── sloppyTypeAssert_checker.go │ │ │ ├── sortSlice_checker.go │ │ │ ├── sqlQuery_checker.go │ │ │ ├── todoCommentWithoutDetail_checker.go │ │ │ ├── tooManyResults_checker.go │ │ │ ├── truncateCmp_checker.go │ │ │ ├── typeAssertChain_checker.go │ │ │ ├── typeDefFirst_checker.go │ │ │ ├── typeSwitchVar_checker.go │ │ │ ├── typeUnparen_checker.go │ │ │ ├── underef_checker.go │ │ │ ├── unlabelStmt_checker.go │ │ │ ├── unlambda_checker.go │ │ │ ├── unnamedResult_checker.go │ │ │ ├── unnecessaryBlock_checker.go │ │ │ ├── unnecessaryDefer_checker.go │ │ │ ├── utils.go │ │ │ ├── weakCond_checker.go │ │ │ └── whyNoLint_checker.go │ │ └── linter/ │ │ ├── go_version.go │ │ ├── helpers.go │ │ └── linter.go │ ├── go-errors/ │ │ └── errors/ │ │ ├── .travis.yml │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── error.go │ │ ├── error_1_13.go │ │ ├── error_backward.go │ │ ├── parse_panic.go │ │ └── stackframe.go │ ├── go-jose/ │ │ └── go-jose/ │ │ └── v4/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── asymmetric.go │ │ ├── cipher/ │ │ │ ├── cbc_hmac.go │ │ │ ├── concat_kdf.go │ │ │ ├── ecdh_es.go │ │ │ └── key_wrap.go │ │ ├── crypter.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── json/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ └── tags.go │ │ ├── jwe.go │ │ ├── jwk.go │ │ ├── jws.go │ │ ├── opaque.go │ │ ├── shared.go │ │ ├── signing.go │ │ └── symmetric.go │ ├── go-logr/ │ │ ├── logr/ │ │ │ ├── .golangci.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── context.go │ │ │ ├── context_noslog.go │ │ │ ├── context_slog.go │ │ │ ├── discard.go │ │ │ ├── funcr/ │ │ │ │ ├── funcr.go │ │ │ │ └── slogsink.go │ │ │ ├── logr.go │ │ │ ├── sloghandler.go │ │ │ ├── slogr/ │ │ │ │ └── slogr.go │ │ │ ├── slogr.go │ │ │ └── slogsink.go │ │ ├── stdr/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── stdr.go │ │ └── zapr/ │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── slogzapr.go │ │ ├── zapr.go │ │ ├── zapr_noslog.go │ │ └── zapr_slog.go │ ├── go-openapi/ │ │ ├── analysis/ │ │ │ ├── .codecov.yml │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ ├── debug.go │ │ │ ├── doc.go │ │ │ ├── fixer.go │ │ │ ├── flatten.go │ │ │ ├── flatten_name.go │ │ │ ├── flatten_options.go │ │ │ ├── internal/ │ │ │ │ ├── debug/ │ │ │ │ │ └── debug.go │ │ │ │ └── flatten/ │ │ │ │ ├── normalize/ │ │ │ │ │ └── normalize.go │ │ │ │ ├── operations/ │ │ │ │ │ └── operations.go │ │ │ │ ├── replace/ │ │ │ │ │ └── replace.go │ │ │ │ ├── schutils/ │ │ │ │ │ └── flatten_schema.go │ │ │ │ └── sortref/ │ │ │ │ ├── keys.go │ │ │ │ └── sort_ref.go │ │ │ ├── mixin.go │ │ │ └── schema.go │ │ ├── errors/ │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── auth.go │ │ │ ├── doc.go │ │ │ ├── headers.go │ │ │ ├── middleware.go │ │ │ ├── parsing.go │ │ │ └── schema.go │ │ ├── jsonpointer/ │ │ │ ├── .cliff.toml │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTORS.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── errors.go │ │ │ └── pointer.go │ │ ├── jsonreference/ │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── internal/ │ │ │ │ └── normalize_url.go │ │ │ └── reference.go │ │ ├── loads/ │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── loaders.go │ │ │ ├── options.go │ │ │ └── spec.go │ │ ├── runtime/ │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bytestream.go │ │ │ ├── client/ │ │ │ │ ├── auth_info.go │ │ │ │ ├── keepalive.go │ │ │ │ ├── opentelemetry.go │ │ │ │ ├── opentracing.go │ │ │ │ ├── request.go │ │ │ │ ├── response.go │ │ │ │ └── runtime.go │ │ │ ├── client_auth_info.go │ │ │ ├── client_operation.go │ │ │ ├── client_request.go │ │ │ ├── client_response.go │ │ │ ├── constants.go │ │ │ ├── csv.go │ │ │ ├── csv_options.go │ │ │ ├── discard.go │ │ │ ├── file.go │ │ │ ├── headers.go │ │ │ ├── interfaces.go │ │ │ ├── json.go │ │ │ ├── logger/ │ │ │ │ ├── logger.go │ │ │ │ └── standard.go │ │ │ ├── middleware/ │ │ │ │ ├── context.go │ │ │ │ ├── denco/ │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── router.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── util.go │ │ │ │ ├── doc.go │ │ │ │ ├── header/ │ │ │ │ │ └── header.go │ │ │ │ ├── negotiate.go │ │ │ │ ├── not_implemented.go │ │ │ │ ├── operation.go │ │ │ │ ├── parameter.go │ │ │ │ ├── rapidoc.go │ │ │ │ ├── redoc.go │ │ │ │ ├── request.go │ │ │ │ ├── router.go │ │ │ │ ├── security.go │ │ │ │ ├── spec.go │ │ │ │ ├── swaggerui.go │ │ │ │ ├── swaggerui_oauth2.go │ │ │ │ ├── ui_options.go │ │ │ │ ├── untyped/ │ │ │ │ │ └── api.go │ │ │ │ └── validation.go │ │ │ ├── request.go │ │ │ ├── security/ │ │ │ │ ├── authenticator.go │ │ │ │ └── authorizer.go │ │ │ ├── statuses.go │ │ │ ├── text.go │ │ │ ├── values.go │ │ │ ├── xml.go │ │ │ └── yamlpc/ │ │ │ └── yaml.go │ │ ├── spec/ │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cache.go │ │ │ ├── contact_info.go │ │ │ ├── debug.go │ │ │ ├── embed.go │ │ │ ├── errors.go │ │ │ ├── expander.go │ │ │ ├── external_docs.go │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── normalizer.go │ │ │ ├── normalizer_nonwindows.go │ │ │ ├── normalizer_windows.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── properties.go │ │ │ ├── ref.go │ │ │ ├── resolver.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── schema_loader.go │ │ │ ├── schemas/ │ │ │ │ ├── jsonschema-draft-04.json │ │ │ │ └── v2/ │ │ │ │ └── schema.json │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── swagger.go │ │ │ ├── tag.go │ │ │ ├── url_go19.go │ │ │ ├── validations.go │ │ │ └── xml_object.go │ │ ├── strfmt/ │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bson.go │ │ │ ├── date.go │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── format.go │ │ │ ├── time.go │ │ │ └── ulid.go │ │ └── validate/ │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── BENCHMARK.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── debug.go │ │ ├── default_validator.go │ │ ├── doc.go │ │ ├── example_validator.go │ │ ├── formats.go │ │ ├── helpers.go │ │ ├── object_validator.go │ │ ├── options.go │ │ ├── pools.go │ │ ├── pools_debug.go │ │ ├── result.go │ │ ├── rexp.go │ │ ├── schema.go │ │ ├── schema_messages.go │ │ ├── schema_option.go │ │ ├── schema_props.go │ │ ├── slice_validator.go │ │ ├── spec.go │ │ ├── spec_messages.go │ │ ├── type.go │ │ ├── update-fixtures.sh │ │ ├── validator.go │ │ └── values.go │ ├── go-playground/ │ │ ├── locales/ │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── currency/ │ │ │ │ └── currency.go │ │ │ └── rules.go │ │ ├── universal-translator/ │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── import_export.go │ │ │ ├── translator.go │ │ │ └── universal_translator.go │ │ └── validator/ │ │ └── v10/ │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── baked_in.go │ │ ├── cache.go │ │ ├── country_codes.go │ │ ├── currency_codes.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── field_level.go │ │ ├── options.go │ │ ├── postcode_regexes.go │ │ ├── regexes.go │ │ ├── struct_level.go │ │ ├── translations.go │ │ ├── util.go │ │ ├── validator.go │ │ └── validator_instance.go │ ├── go-test/ │ │ └── deep/ │ │ ├── .gitignore │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ └── deep.go │ ├── go-toolsmith/ │ │ ├── astcast/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── astcast.go │ │ ├── astcopy/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── astcopy.go │ │ │ ├── astcopy_go117.go │ │ │ └── astcopy_go118.go │ │ ├── astequal/ │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── astequal.go │ │ │ └── diff.go │ │ ├── astfmt/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── astfmt.go │ │ ├── astp/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decl.go │ │ │ ├── expr.go │ │ │ └── stmt.go │ │ ├── strparse/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── strparse.go │ │ └── typep/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── predicates.go │ │ ├── safe_expr.go │ │ └── simple_predicates.go │ ├── go-viper/ │ │ └── mapstructure/ │ │ └── v2/ │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── errors.go │ │ ├── flake.nix │ │ ├── internal/ │ │ │ └── errors/ │ │ │ ├── errors.go │ │ │ ├── join.go │ │ │ └── join_go1_19.go │ │ ├── mapstructure.go │ │ ├── reflect_go1_19.go │ │ └── reflect_go1_20.go │ ├── go-xmlfmt/ │ │ └── xmlfmt/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── xmlfmt.go │ ├── gobuffalo/ │ │ └── flect/ │ │ ├── .gitignore │ │ ├── .gometalinter.json │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SHOULDERS.md │ │ ├── acronyms.go │ │ ├── camelize.go │ │ ├── capitalize.go │ │ ├── custom_data.go │ │ ├── dasherize.go │ │ ├── flect.go │ │ ├── humanize.go │ │ ├── ident.go │ │ ├── lower_upper.go │ │ ├── ordinalize.go │ │ ├── pascalize.go │ │ ├── plural_rules.go │ │ ├── pluralize.go │ │ ├── rule.go │ │ ├── singular_rules.go │ │ ├── singularize.go │ │ ├── titleize.go │ │ ├── underscore.go │ │ └── version.go │ ├── gobwas/ │ │ └── glob/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── bench.sh │ │ ├── compiler/ │ │ │ └── compiler.go │ │ ├── glob.go │ │ ├── match/ │ │ │ ├── any.go │ │ │ ├── any_of.go │ │ │ ├── btree.go │ │ │ ├── contains.go │ │ │ ├── every_of.go │ │ │ ├── list.go │ │ │ ├── match.go │ │ │ ├── max.go │ │ │ ├── min.go │ │ │ ├── nothing.go │ │ │ ├── prefix.go │ │ │ ├── prefix_any.go │ │ │ ├── prefix_suffix.go │ │ │ ├── range.go │ │ │ ├── row.go │ │ │ ├── segments.go │ │ │ ├── single.go │ │ │ ├── suffix.go │ │ │ ├── suffix_any.go │ │ │ ├── super.go │ │ │ └── text.go │ │ ├── readme.md │ │ ├── syntax/ │ │ │ ├── ast/ │ │ │ │ ├── ast.go │ │ │ │ └── parser.go │ │ │ ├── lexer/ │ │ │ │ ├── lexer.go │ │ │ │ └── token.go │ │ │ └── syntax.go │ │ └── util/ │ │ ├── runes/ │ │ │ └── runes.go │ │ └── strings/ │ │ └── strings.go │ ├── gofrs/ │ │ ├── flock/ │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── build.sh │ │ │ ├── flock.go │ │ │ ├── flock_others.go │ │ │ ├── flock_unix.go │ │ │ ├── flock_unix_fcntl.go │ │ │ └── flock_windows.go │ │ └── uuid/ │ │ └── v5/ │ │ ├── .gitignore │ │ ├── .pre-commit-config.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── codec.go │ │ ├── error.go │ │ ├── generator.go │ │ ├── sql.go │ │ └── uuid.go │ ├── gogo/ │ │ └── protobuf/ │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gogoproto/ │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ ├── 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 │ │ ├── protoc-gen-gogo/ │ │ │ └── descriptor/ │ │ │ ├── Makefile │ │ │ ├── descriptor.go │ │ │ ├── descriptor.pb.go │ │ │ ├── descriptor_gostring.gen.go │ │ │ └── helper.go │ │ └── sortkeys/ │ │ └── sortkeys.go │ ├── golang/ │ │ ├── mock/ │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── gomock/ │ │ │ │ ├── call.go │ │ │ │ ├── callset.go │ │ │ │ ├── controller.go │ │ │ │ ├── doc.go │ │ │ │ └── matchers.go │ │ │ └── mockgen/ │ │ │ ├── generic_go118.go │ │ │ ├── generic_notgo118.go │ │ │ ├── mockgen.go │ │ │ ├── model/ │ │ │ │ └── model.go │ │ │ ├── parse.go │ │ │ ├── reflect.go │ │ │ └── version.go │ │ └── protobuf/ │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto/ │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go │ ├── golang-jwt/ │ │ └── jwt/ │ │ ├── v4/ │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── ed25519.go │ │ │ ├── ed25519_utils.go │ │ │ ├── errors.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── parser_option.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ ├── staticcheck.conf │ │ │ ├── token.go │ │ │ └── types.go │ │ └── v5/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── ed25519.go │ │ ├── ed25519_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── parser_option.go │ │ ├── registered_claims.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ ├── staticcheck.conf │ │ ├── token.go │ │ ├── token_option.go │ │ ├── types.go │ │ └── validator.go │ ├── golangci/ │ │ ├── dupl/ │ │ │ ├── LICENSE │ │ │ ├── job/ │ │ │ │ ├── buildtree.go │ │ │ │ └── parse.go │ │ │ ├── lib/ │ │ │ │ └── lib.go │ │ │ ├── printer/ │ │ │ │ ├── html.go │ │ │ │ ├── issuer.go │ │ │ │ ├── plumbing.go │ │ │ │ ├── printer.go │ │ │ │ └── text.go │ │ │ ├── suffixtree/ │ │ │ │ ├── dupl.go │ │ │ │ └── suffixtree.go │ │ │ └── syntax/ │ │ │ ├── golang/ │ │ │ │ └── golang.go │ │ │ └── syntax.go │ │ ├── go-printf-func-name/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ └── analyzer/ │ │ │ └── analyzer.go │ │ ├── gofmt/ │ │ │ └── gofmt/ │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── gofmt.go │ │ │ ├── golangci.go │ │ │ ├── internal.go │ │ │ ├── readme.md │ │ │ ├── rewrite.go │ │ │ └── simplify.go │ │ ├── golangci-lint/ │ │ │ ├── LICENSE │ │ │ ├── cmd/ │ │ │ │ └── golangci-lint/ │ │ │ │ ├── main.go │ │ │ │ └── plugins.go │ │ │ ├── internal/ │ │ │ │ ├── cache/ │ │ │ │ │ └── cache.go │ │ │ │ ├── errorutil/ │ │ │ │ │ └── errors.go │ │ │ │ ├── go/ │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── cache/ │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── cache_gcil.go │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── default_gcil.go │ │ │ │ │ │ ├── hash.go │ │ │ │ │ │ ├── hash_gcil.go │ │ │ │ │ │ ├── prog.go │ │ │ │ │ │ └── readme.md │ │ │ │ │ ├── mmap/ │ │ │ │ │ │ ├── mmap.go │ │ │ │ │ │ ├── mmap_other.go │ │ │ │ │ │ ├── mmap_unix.go │ │ │ │ │ │ ├── mmap_windows.go │ │ │ │ │ │ └── readme.md │ │ │ │ │ ├── quoted/ │ │ │ │ │ │ ├── quoted.go │ │ │ │ │ │ └── readme.md │ │ │ │ │ └── robustio/ │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── robustio.go │ │ │ │ │ ├── robustio_darwin.go │ │ │ │ │ ├── robustio_flaky.go │ │ │ │ │ ├── robustio_other.go │ │ │ │ │ └── robustio_windows.go │ │ │ │ └── x/ │ │ │ │ ├── LICENSE │ │ │ │ └── tools/ │ │ │ │ ├── analysisflags/ │ │ │ │ │ ├── readme.md │ │ │ │ │ └── url.go │ │ │ │ ├── analysisinternal/ │ │ │ │ │ ├── analysis.go │ │ │ │ │ └── readme.md │ │ │ │ └── diff/ │ │ │ │ ├── diff.go │ │ │ │ ├── lcs/ │ │ │ │ │ ├── common.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── git.sh │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── old.go │ │ │ │ │ └── sequence.go │ │ │ │ ├── ndiff.go │ │ │ │ ├── readme.md │ │ │ │ └── unified.go │ │ │ └── pkg/ │ │ │ ├── commands/ │ │ │ │ ├── cache.go │ │ │ │ ├── config.go │ │ │ │ ├── config_verify.go │ │ │ │ ├── custom.go │ │ │ │ ├── flagsets.go │ │ │ │ ├── help.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── builder.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── imports.go │ │ │ │ │ └── vibra.go │ │ │ │ ├── linters.go │ │ │ │ ├── root.go │ │ │ │ ├── run.go │ │ │ │ └── version.go │ │ │ ├── config/ │ │ │ │ ├── base_rule.go │ │ │ │ ├── config.go │ │ │ │ ├── issues.go │ │ │ │ ├── linters.go │ │ │ │ ├── linters_exclusions.go │ │ │ │ ├── linters_settings.go │ │ │ │ ├── loader.go │ │ │ │ ├── output.go │ │ │ │ ├── run.go │ │ │ │ └── severity.go │ │ │ ├── exitcodes/ │ │ │ │ └── exitcodes.go │ │ │ ├── fsutils/ │ │ │ │ ├── basepath.go │ │ │ │ ├── filecache.go │ │ │ │ ├── files.go │ │ │ │ ├── fsutils.go │ │ │ │ ├── fsutils_unix.go │ │ │ │ ├── fsutils_windows.go │ │ │ │ ├── linecache.go │ │ │ │ ├── path_unix.go │ │ │ │ └── path_windows.go │ │ │ ├── goanalysis/ │ │ │ │ ├── issue.go │ │ │ │ ├── linter.go │ │ │ │ ├── load/ │ │ │ │ │ └── guard.go │ │ │ │ ├── metalinter.go │ │ │ │ ├── pkgerrors/ │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── extract.go │ │ │ │ │ └── parse.go │ │ │ │ ├── position.go │ │ │ │ ├── runner.go │ │ │ │ ├── runner_action.go │ │ │ │ ├── runner_action_cache.go │ │ │ │ ├── runner_checker.go │ │ │ │ ├── runner_loadingpackage.go │ │ │ │ ├── runners.go │ │ │ │ └── runners_cache.go │ │ │ ├── goformatters/ │ │ │ │ ├── analyzer.go │ │ │ │ ├── formatters.go │ │ │ │ ├── gci/ │ │ │ │ │ ├── gci.go │ │ │ │ │ └── internal/ │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── config/ │ │ │ │ │ │ └── config.go │ │ │ │ │ └── section/ │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── section.go │ │ │ │ │ ├── standard.go │ │ │ │ │ └── standard_list.go │ │ │ │ ├── gofmt/ │ │ │ │ │ └── gofmt.go │ │ │ │ ├── gofumpt/ │ │ │ │ │ └── gofumpt.go │ │ │ │ ├── goimports/ │ │ │ │ │ └── goimports.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── commons.go │ │ │ │ │ └── diff.go │ │ │ │ └── meta_formatter.go │ │ │ ├── golinters/ │ │ │ │ ├── asasalint/ │ │ │ │ │ └── asasalint.go │ │ │ │ ├── asciicheck/ │ │ │ │ │ └── asciicheck.go │ │ │ │ ├── bidichk/ │ │ │ │ │ └── bidichk.go │ │ │ │ ├── bodyclose/ │ │ │ │ │ └── bodyclose.go │ │ │ │ ├── canonicalheader/ │ │ │ │ │ └── canonicalheader.go │ │ │ │ ├── containedctx/ │ │ │ │ │ └── containedctx.go │ │ │ │ ├── contextcheck/ │ │ │ │ │ └── contextcheck.go │ │ │ │ ├── copyloopvar/ │ │ │ │ │ └── copyloopvar.go │ │ │ │ ├── cyclop/ │ │ │ │ │ └── cyclop.go │ │ │ │ ├── decorder/ │ │ │ │ │ └── decorder.go │ │ │ │ ├── depguard/ │ │ │ │ │ └── depguard.go │ │ │ │ ├── dogsled/ │ │ │ │ │ └── dogsled.go │ │ │ │ ├── dupl/ │ │ │ │ │ └── dupl.go │ │ │ │ ├── dupword/ │ │ │ │ │ └── dupword.go │ │ │ │ ├── durationcheck/ │ │ │ │ │ └── durationcheck.go │ │ │ │ ├── err113/ │ │ │ │ │ └── err113.go │ │ │ │ ├── errcheck/ │ │ │ │ │ └── errcheck.go │ │ │ │ ├── errchkjson/ │ │ │ │ │ └── errchkjson.go │ │ │ │ ├── errname/ │ │ │ │ │ └── errname.go │ │ │ │ ├── errorlint/ │ │ │ │ │ └── errorlint.go │ │ │ │ ├── exhaustive/ │ │ │ │ │ └── exhaustive.go │ │ │ │ ├── exhaustruct/ │ │ │ │ │ └── exhaustruct.go │ │ │ │ ├── exptostd/ │ │ │ │ │ └── exptostd.go │ │ │ │ ├── fatcontext/ │ │ │ │ │ └── fatcontext.go │ │ │ │ ├── forbidigo/ │ │ │ │ │ └── forbidigo.go │ │ │ │ ├── forcetypeassert/ │ │ │ │ │ └── forcetypeassert.go │ │ │ │ ├── funlen/ │ │ │ │ │ └── funlen.go │ │ │ │ ├── gci/ │ │ │ │ │ └── gci.go │ │ │ │ ├── ginkgolinter/ │ │ │ │ │ └── ginkgolinter.go │ │ │ │ ├── gocheckcompilerdirectives/ │ │ │ │ │ └── gocheckcompilerdirectives.go │ │ │ │ ├── gochecknoglobals/ │ │ │ │ │ └── gochecknoglobals.go │ │ │ │ ├── gochecknoinits/ │ │ │ │ │ └── gochecknoinits.go │ │ │ │ ├── gochecksumtype/ │ │ │ │ │ └── gochecksumtype.go │ │ │ │ ├── gocognit/ │ │ │ │ │ └── gocognit.go │ │ │ │ ├── goconst/ │ │ │ │ │ └── goconst.go │ │ │ │ ├── gocritic/ │ │ │ │ │ └── gocritic.go │ │ │ │ ├── gocyclo/ │ │ │ │ │ └── gocyclo.go │ │ │ │ ├── godot/ │ │ │ │ │ └── godot.go │ │ │ │ ├── godox/ │ │ │ │ │ └── godox.go │ │ │ │ ├── gofmt/ │ │ │ │ │ └── gofmt.go │ │ │ │ ├── gofumpt/ │ │ │ │ │ └── gofumpt.go │ │ │ │ ├── goheader/ │ │ │ │ │ └── goheader.go │ │ │ │ ├── goimports/ │ │ │ │ │ └── goimports.go │ │ │ │ ├── gomoddirectives/ │ │ │ │ │ └── gomoddirectives.go │ │ │ │ ├── gomodguard/ │ │ │ │ │ └── gomodguard.go │ │ │ │ ├── goprintffuncname/ │ │ │ │ │ └── goprintffuncname.go │ │ │ │ ├── gosec/ │ │ │ │ │ └── gosec.go │ │ │ │ ├── gosimple/ │ │ │ │ │ └── gosimple.go │ │ │ │ ├── gosmopolitan/ │ │ │ │ │ └── gosmopolitan.go │ │ │ │ ├── govet/ │ │ │ │ │ └── govet.go │ │ │ │ ├── grouper/ │ │ │ │ │ └── grouper.go │ │ │ │ ├── iface/ │ │ │ │ │ └── iface.go │ │ │ │ ├── importas/ │ │ │ │ │ └── importas.go │ │ │ │ ├── inamedparam/ │ │ │ │ │ └── inamedparam.go │ │ │ │ ├── ineffassign/ │ │ │ │ │ └── ineffassign.go │ │ │ │ ├── interfacebloat/ │ │ │ │ │ └── interfacebloat.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── commons.go │ │ │ │ │ ├── staticcheck_common.go │ │ │ │ │ └── util.go │ │ │ │ ├── intrange/ │ │ │ │ │ └── intrange.go │ │ │ │ ├── ireturn/ │ │ │ │ │ └── ireturn.go │ │ │ │ ├── lll/ │ │ │ │ │ └── lll.go │ │ │ │ ├── loggercheck/ │ │ │ │ │ └── loggercheck.go │ │ │ │ ├── maintidx/ │ │ │ │ │ └── maintidx.go │ │ │ │ ├── makezero/ │ │ │ │ │ └── makezero.go │ │ │ │ ├── mirror/ │ │ │ │ │ └── mirror.go │ │ │ │ ├── misspell/ │ │ │ │ │ └── misspell.go │ │ │ │ ├── mnd/ │ │ │ │ │ └── mnd.go │ │ │ │ ├── musttag/ │ │ │ │ │ └── musttag.go │ │ │ │ ├── nakedret/ │ │ │ │ │ └── nakedret.go │ │ │ │ ├── nestif/ │ │ │ │ │ └── nestif.go │ │ │ │ ├── nilerr/ │ │ │ │ │ └── nilerr.go │ │ │ │ ├── nilnesserr/ │ │ │ │ │ └── nilnesserr.go │ │ │ │ ├── nilnil/ │ │ │ │ │ └── nilnil.go │ │ │ │ ├── nlreturn/ │ │ │ │ │ └── nlreturn.go │ │ │ │ ├── noctx/ │ │ │ │ │ └── noctx.go │ │ │ │ ├── nolintlint/ │ │ │ │ │ ├── internal/ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── issues.go │ │ │ │ │ │ └── nolintlint.go │ │ │ │ │ └── nolintlint.go │ │ │ │ ├── nonamedreturns/ │ │ │ │ │ └── nonamedreturns.go │ │ │ │ ├── nosprintfhostport/ │ │ │ │ │ └── nosprintfhostport.go │ │ │ │ ├── paralleltest/ │ │ │ │ │ └── paralleltest.go │ │ │ │ ├── perfsprint/ │ │ │ │ │ └── perfsprint.go │ │ │ │ ├── prealloc/ │ │ │ │ │ └── prealloc.go │ │ │ │ ├── predeclared/ │ │ │ │ │ └── predeclared.go │ │ │ │ ├── promlinter/ │ │ │ │ │ └── promlinter.go │ │ │ │ ├── protogetter/ │ │ │ │ │ └── protogetter.go │ │ │ │ ├── reassign/ │ │ │ │ │ └── reassign.go │ │ │ │ ├── recvcheck/ │ │ │ │ │ └── recvcheck.go │ │ │ │ ├── revive/ │ │ │ │ │ └── revive.go │ │ │ │ ├── rowserrcheck/ │ │ │ │ │ └── rowserrcheck.go │ │ │ │ ├── sloglint/ │ │ │ │ │ └── sloglint.go │ │ │ │ ├── spancheck/ │ │ │ │ │ └── spancheck.go │ │ │ │ ├── sqlclosecheck/ │ │ │ │ │ └── sqlclosecheck.go │ │ │ │ ├── staticcheck/ │ │ │ │ │ └── staticcheck.go │ │ │ │ ├── stylecheck/ │ │ │ │ │ └── stylecheck.go │ │ │ │ ├── tagalign/ │ │ │ │ │ └── tagalign.go │ │ │ │ ├── tagliatelle/ │ │ │ │ │ └── tagliatelle.go │ │ │ │ ├── tenv/ │ │ │ │ │ └── tenv.go │ │ │ │ ├── testableexamples/ │ │ │ │ │ └── testableexamples.go │ │ │ │ ├── testifylint/ │ │ │ │ │ └── testifylint.go │ │ │ │ ├── testpackage/ │ │ │ │ │ └── testpackage.go │ │ │ │ ├── thelper/ │ │ │ │ │ └── thelper.go │ │ │ │ ├── tparallel/ │ │ │ │ │ └── tparallel.go │ │ │ │ ├── typecheck.go │ │ │ │ ├── unconvert/ │ │ │ │ │ └── unconvert.go │ │ │ │ ├── unparam/ │ │ │ │ │ └── unparam.go │ │ │ │ ├── unused/ │ │ │ │ │ └── unused.go │ │ │ │ ├── usestdlibvars/ │ │ │ │ │ └── usestdlibvars.go │ │ │ │ ├── usetesting/ │ │ │ │ │ └── usetesting.go │ │ │ │ ├── varnamelen/ │ │ │ │ │ └── varnamelen.go │ │ │ │ ├── wastedassign/ │ │ │ │ │ └── wastedassign.go │ │ │ │ ├── whitespace/ │ │ │ │ │ └── whitespace.go │ │ │ │ ├── wrapcheck/ │ │ │ │ │ └── wrapcheck.go │ │ │ │ ├── wsl/ │ │ │ │ │ └── wsl.go │ │ │ │ └── zerologlint/ │ │ │ │ └── zerologlint.go │ │ │ ├── goutil/ │ │ │ │ ├── env.go │ │ │ │ └── version.go │ │ │ ├── lint/ │ │ │ │ ├── context.go │ │ │ │ ├── linter/ │ │ │ │ │ ├── config.go │ │ │ │ │ ├── context.go │ │ │ │ │ └── linter.go │ │ │ │ ├── lintersdb/ │ │ │ │ │ ├── builder_linter.go │ │ │ │ │ ├── builder_plugin_go.go │ │ │ │ │ ├── builder_plugin_module.go │ │ │ │ │ ├── manager.go │ │ │ │ │ └── validator.go │ │ │ │ ├── package.go │ │ │ │ └── runner.go │ │ │ ├── logutils/ │ │ │ │ ├── log.go │ │ │ │ ├── logutils.go │ │ │ │ ├── mock.go │ │ │ │ ├── out.go │ │ │ │ └── stderr_log.go │ │ │ ├── printers/ │ │ │ │ ├── checkstyle.go │ │ │ │ ├── codeclimate.go │ │ │ │ ├── githubaction.go │ │ │ │ ├── html.go │ │ │ │ ├── json.go │ │ │ │ ├── junitxml.go │ │ │ │ ├── printer.go │ │ │ │ ├── sarif.go │ │ │ │ ├── tab.go │ │ │ │ ├── teamcity.go │ │ │ │ └── text.go │ │ │ ├── report/ │ │ │ │ ├── data.go │ │ │ │ └── log.go │ │ │ ├── result/ │ │ │ │ ├── issue.go │ │ │ │ └── processors/ │ │ │ │ ├── base_rule.go │ │ │ │ ├── cgo.go │ │ │ │ ├── diff.go │ │ │ │ ├── exclusion_generated_file_filter.go │ │ │ │ ├── exclusion_paths.go │ │ │ │ ├── exclusion_presets.go │ │ │ │ ├── exclusion_rules.go │ │ │ │ ├── filename_unadjuster.go │ │ │ │ ├── fixer.go │ │ │ │ ├── identifier_marker.go │ │ │ │ ├── invalid_issue.go │ │ │ │ ├── issues.go │ │ │ │ ├── max_from_linter.go │ │ │ │ ├── max_per_file_from_linter.go │ │ │ │ ├── max_same_issues.go │ │ │ │ ├── nolint_filter.go │ │ │ │ ├── path_absoluter.go │ │ │ │ ├── path_prettifier.go │ │ │ │ ├── path_relativity.go │ │ │ │ ├── path_shortener.go │ │ │ │ ├── processor.go │ │ │ │ ├── severity.go │ │ │ │ ├── skip_dirs.go │ │ │ │ ├── skip_files.go │ │ │ │ ├── sort_results.go │ │ │ │ ├── source_code.go │ │ │ │ └── uniq_by_line.go │ │ │ └── timeutils/ │ │ │ └── stopwatch.go │ │ ├── plugin-module-register/ │ │ │ ├── LICENSE │ │ │ └── register/ │ │ │ └── register.go │ │ ├── revgrep/ │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── issue.go │ │ │ ├── patch.go │ │ │ └── revgrep.go │ │ └── unconvert/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── golangci.go │ │ └── unconvert.go │ ├── google/ │ │ ├── btree/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── btree.go │ │ │ └── btree_generic.go │ │ ├── cel-go/ │ │ │ ├── LICENSE │ │ │ ├── cel/ │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── cel.go │ │ │ │ ├── decls.go │ │ │ │ ├── env.go │ │ │ │ ├── folding.go │ │ │ │ ├── inlining.go │ │ │ │ ├── io.go │ │ │ │ ├── library.go │ │ │ │ ├── macro.go │ │ │ │ ├── optimizer.go │ │ │ │ ├── options.go │ │ │ │ ├── program.go │ │ │ │ ├── prompt.go │ │ │ │ ├── templates/ │ │ │ │ │ └── authoring.tmpl │ │ │ │ └── validator.go │ │ │ ├── checker/ │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── checker.go │ │ │ │ ├── cost.go │ │ │ │ ├── decls/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── decls.go │ │ │ │ ├── env.go │ │ │ │ ├── errors.go │ │ │ │ ├── format.go │ │ │ │ ├── mapping.go │ │ │ │ ├── options.go │ │ │ │ ├── printer.go │ │ │ │ ├── scopes.go │ │ │ │ └── types.go │ │ │ ├── common/ │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── ast/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── ast.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── expr.go │ │ │ │ │ ├── factory.go │ │ │ │ │ └── navigable.go │ │ │ │ ├── containers/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── container.go │ │ │ │ ├── cost.go │ │ │ │ ├── debug/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── debug.go │ │ │ │ ├── decls/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── decls.go │ │ │ │ ├── doc.go │ │ │ │ ├── env/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── env.go │ │ │ │ ├── error.go │ │ │ │ ├── errors.go │ │ │ │ ├── functions/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── functions.go │ │ │ │ ├── location.go │ │ │ │ ├── operators/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── operators.go │ │ │ │ ├── overloads/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── overloads.go │ │ │ │ ├── runes/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── buffer.go │ │ │ │ ├── source.go │ │ │ │ ├── stdlib/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── standard.go │ │ │ │ └── types/ │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── any_value.go │ │ │ │ ├── bool.go │ │ │ │ ├── bytes.go │ │ │ │ ├── compare.go │ │ │ │ ├── doc.go │ │ │ │ ├── double.go │ │ │ │ ├── duration.go │ │ │ │ ├── err.go │ │ │ │ ├── format.go │ │ │ │ ├── int.go │ │ │ │ ├── iterator.go │ │ │ │ ├── json_value.go │ │ │ │ ├── list.go │ │ │ │ ├── map.go │ │ │ │ ├── null.go │ │ │ │ ├── object.go │ │ │ │ ├── optional.go │ │ │ │ ├── overflow.go │ │ │ │ ├── pb/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── checked.go │ │ │ │ │ ├── enum.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── pb.go │ │ │ │ │ └── type.go │ │ │ │ ├── provider.go │ │ │ │ ├── ref/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── provider.go │ │ │ │ │ └── reference.go │ │ │ │ ├── string.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── traits/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── comparer.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── field_tester.go │ │ │ │ │ ├── indexer.go │ │ │ │ │ ├── iterator.go │ │ │ │ │ ├── lister.go │ │ │ │ │ ├── mapper.go │ │ │ │ │ ├── matcher.go │ │ │ │ │ ├── math.go │ │ │ │ │ ├── receiver.go │ │ │ │ │ ├── sizer.go │ │ │ │ │ ├── traits.go │ │ │ │ │ └── zeroer.go │ │ │ │ ├── types.go │ │ │ │ ├── uint.go │ │ │ │ ├── unknown.go │ │ │ │ └── util.go │ │ │ ├── ext/ │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── README.md │ │ │ │ ├── bindings.go │ │ │ │ ├── comprehensions.go │ │ │ │ ├── encoders.go │ │ │ │ ├── extension_option_factory.go │ │ │ │ ├── formatting.go │ │ │ │ ├── formatting_v2.go │ │ │ │ ├── guards.go │ │ │ │ ├── lists.go │ │ │ │ ├── math.go │ │ │ │ ├── native.go │ │ │ │ ├── protos.go │ │ │ │ ├── regex.go │ │ │ │ ├── sets.go │ │ │ │ └── strings.go │ │ │ ├── interpreter/ │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── activation.go │ │ │ │ ├── attribute_patterns.go │ │ │ │ ├── attributes.go │ │ │ │ ├── decorators.go │ │ │ │ ├── dispatcher.go │ │ │ │ ├── evalstate.go │ │ │ │ ├── functions/ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── functions.go │ │ │ │ ├── interpretable.go │ │ │ │ ├── interpreter.go │ │ │ │ ├── optimizations.go │ │ │ │ ├── planner.go │ │ │ │ ├── prune.go │ │ │ │ └── runtimecost.go │ │ │ └── parser/ │ │ │ ├── BUILD.bazel │ │ │ ├── errors.go │ │ │ ├── gen/ │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CEL.g4 │ │ │ │ ├── CEL.interp │ │ │ │ ├── CEL.tokens │ │ │ │ ├── CELLexer.interp │ │ │ │ ├── CELLexer.tokens │ │ │ │ ├── cel_base_listener.go │ │ │ │ ├── cel_base_visitor.go │ │ │ │ ├── cel_lexer.go │ │ │ │ ├── cel_listener.go │ │ │ │ ├── cel_parser.go │ │ │ │ ├── cel_visitor.go │ │ │ │ ├── doc.go │ │ │ │ └── generate.sh │ │ │ ├── helper.go │ │ │ ├── input.go │ │ │ ├── macro.go │ │ │ ├── options.go │ │ │ ├── parser.go │ │ │ ├── unescape.go │ │ │ └── unparser.go │ │ ├── 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/ │ │ │ ├── cmpopts/ │ │ │ │ ├── equate.go │ │ │ │ ├── ignore.go │ │ │ │ ├── sort.go │ │ │ │ ├── struct_filter.go │ │ │ │ └── xform.go │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal/ │ │ │ │ ├── diff/ │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── flags/ │ │ │ │ │ └── flags.go │ │ │ │ ├── function/ │ │ │ │ │ └── func.go │ │ │ │ └── value/ │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ │ ├── s2a-go/ │ │ │ ├── .gitignore │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── fallback/ │ │ │ │ └── s2a_fallback.go │ │ │ ├── internal/ │ │ │ │ ├── authinfo/ │ │ │ │ │ └── authinfo.go │ │ │ │ ├── handshaker/ │ │ │ │ │ ├── handshaker.go │ │ │ │ │ └── service/ │ │ │ │ │ └── service.go │ │ │ │ ├── proto/ │ │ │ │ │ ├── common_go_proto/ │ │ │ │ │ │ └── common.pb.go │ │ │ │ │ ├── s2a_context_go_proto/ │ │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ ├── s2a_go_proto/ │ │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ │ └── v2/ │ │ │ │ │ ├── common_go_proto/ │ │ │ │ │ │ └── common.pb.go │ │ │ │ │ ├── s2a_context_go_proto/ │ │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ └── s2a_go_proto/ │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ ├── record/ │ │ │ │ │ ├── internal/ │ │ │ │ │ │ ├── aeadcrypter/ │ │ │ │ │ │ │ ├── aeadcrypter.go │ │ │ │ │ │ │ ├── aesgcm.go │ │ │ │ │ │ │ ├── chachapoly.go │ │ │ │ │ │ │ └── common.go │ │ │ │ │ │ └── halfconn/ │ │ │ │ │ │ ├── ciphersuite.go │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── expander.go │ │ │ │ │ │ └── halfconn.go │ │ │ │ │ ├── record.go │ │ │ │ │ └── ticketsender.go │ │ │ │ ├── tokenmanager/ │ │ │ │ │ └── tokenmanager.go │ │ │ │ └── v2/ │ │ │ │ ├── README.md │ │ │ │ ├── certverifier/ │ │ │ │ │ └── certverifier.go │ │ │ │ ├── remotesigner/ │ │ │ │ │ └── remotesigner.go │ │ │ │ ├── s2av2.go │ │ │ │ └── tlsconfigstore/ │ │ │ │ └── tlsconfigstore.go │ │ │ ├── retry/ │ │ │ │ └── retry.go │ │ │ ├── s2a.go │ │ │ ├── s2a_options.go │ │ │ ├── s2a_utils.go │ │ │ └── stream/ │ │ │ └── s2a_stream.go │ │ └── uuid/ │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go │ ├── googleapis/ │ │ ├── enterprise-certificate-proxy/ │ │ │ ├── LICENSE │ │ │ └── client/ │ │ │ ├── client.go │ │ │ └── util/ │ │ │ └── util.go │ │ └── gax-go/ │ │ └── v2/ │ │ ├── .release-please-manifest.json │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── apierror/ │ │ │ ├── apierror.go │ │ │ └── internal/ │ │ │ └── proto/ │ │ │ ├── README.md │ │ │ ├── custom_error.pb.go │ │ │ ├── custom_error.proto │ │ │ ├── error.pb.go │ │ │ └── error.proto │ │ ├── call_option.go │ │ ├── callctx/ │ │ │ └── callctx.go │ │ ├── content_type.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── internal/ │ │ │ └── version.go │ │ ├── internallog/ │ │ │ ├── grpclog/ │ │ │ │ └── grpclog.go │ │ │ ├── internal/ │ │ │ │ └── internal.go │ │ │ └── internallog.go │ │ ├── invoke.go │ │ ├── iterator/ │ │ │ └── iterator.go │ │ ├── proto_json_stream.go │ │ └── release-please-config.json │ ├── gophercloud/ │ │ ├── gophercloud/ │ │ │ └── v2/ │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASE.md │ │ │ ├── auth_options.go │ │ │ ├── auth_result.go │ │ │ ├── endpoint_search.go │ │ │ ├── errors.go │ │ │ ├── openstack/ │ │ │ │ ├── auth_env.go │ │ │ │ ├── blockstorage/ │ │ │ │ │ └── v3/ │ │ │ │ │ ├── availabilityzones/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── snapshots/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ ├── urls.go │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── volumes/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ ├── urls.go │ │ │ │ │ │ └── util.go │ │ │ │ │ └── volumetypes/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ ├── client.go │ │ │ │ ├── common/ │ │ │ │ │ └── extensions/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ ├── compute/ │ │ │ │ │ └── v2/ │ │ │ │ │ ├── availabilityzones/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── flavors/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── quotasets/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── servergroups/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── servers/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── util.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpoint_location.go │ │ │ │ ├── errors.go │ │ │ │ ├── identity/ │ │ │ │ │ ├── v2/ │ │ │ │ │ │ ├── tenants/ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ └── tokens/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── v3/ │ │ │ │ │ ├── ec2tokens/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── oauth1/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── tokens/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ ├── image/ │ │ │ │ │ └── v2/ │ │ │ │ │ └── images/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── urls.go │ │ │ │ ├── loadbalancer/ │ │ │ │ │ └── v2/ │ │ │ │ │ ├── l7policies/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── listeners/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── loadbalancers/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── monitors/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── pools/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ ├── networking/ │ │ │ │ │ └── v2/ │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── attributestags/ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ ├── delegate.go │ │ │ │ │ │ ├── external/ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ └── results.go │ │ │ │ │ │ ├── layer3/ │ │ │ │ │ │ │ ├── floatingips/ │ │ │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ │ └── routers/ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ ├── mtu/ │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ └── results.go │ │ │ │ │ │ ├── quotas/ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ ├── security/ │ │ │ │ │ │ │ ├── groups/ │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ │ └── rules/ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ └── trunks/ │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── networks/ │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── ports/ │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── subnets/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ ├── objectstorage/ │ │ │ │ │ └── v1/ │ │ │ │ │ ├── accounts/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── containers/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── objects/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ ├── sharedfilesystems/ │ │ │ │ │ └── v2/ │ │ │ │ │ ├── shares/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── snapshots/ │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ └── utils/ │ │ │ │ ├── base_endpoint.go │ │ │ │ ├── choose_version.go │ │ │ │ └── discovery.go │ │ │ ├── pagination/ │ │ │ │ ├── http.go │ │ │ │ ├── linked.go │ │ │ │ ├── marker.go │ │ │ │ ├── pager.go │ │ │ │ ├── pkg.go │ │ │ │ └── single.go │ │ │ ├── params.go │ │ │ ├── provider_client.go │ │ │ ├── results.go │ │ │ ├── service_client.go │ │ │ └── util.go │ │ └── utils/ │ │ └── v2/ │ │ ├── LICENSE │ │ ├── env/ │ │ │ ├── env.go │ │ │ └── env_windows.go │ │ ├── gnocchi/ │ │ │ ├── client.go │ │ │ └── results.go │ │ ├── internal/ │ │ │ ├── pkg.go │ │ │ └── util.go │ │ └── openstack/ │ │ ├── clientconfig/ │ │ │ ├── doc.go │ │ │ ├── requests.go │ │ │ ├── results.go │ │ │ └── utils.go │ │ ├── compute/ │ │ │ └── v2/ │ │ │ ├── availabilityzones/ │ │ │ │ └── utils.go │ │ │ └── flavors/ │ │ │ └── utils.go │ │ ├── image/ │ │ │ └── v2/ │ │ │ └── images/ │ │ │ └── utils.go │ │ └── networking/ │ │ └── v2/ │ │ └── networks/ │ │ └── utils.go │ ├── gordonklaus/ │ │ └── ineffassign/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── ineffassign/ │ │ └── ineffassign.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 │ │ └── util.go │ ├── gostaticanalysis/ │ │ ├── analysisutil/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── call.go │ │ │ ├── diagnostic.go │ │ │ ├── file.go │ │ │ ├── pkg.go │ │ │ ├── ssa.go │ │ │ ├── ssainspect.go │ │ │ └── types.go │ │ ├── comment/ │ │ │ ├── .tagpr │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── comment.go │ │ │ ├── passes/ │ │ │ │ └── commentmap/ │ │ │ │ └── commentmap.go │ │ │ └── version.txt │ │ ├── forcetypeassert/ │ │ │ ├── .reviewdog.yml │ │ │ ├── .tagpr │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── forcetypeassert.go │ │ │ └── version.txt │ │ └── nilerr/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── nilerr.go │ ├── gregjones/ │ │ └── httpcache/ │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── httpcache.go │ ├── grpc-ecosystem/ │ │ └── grpc-gateway/ │ │ └── v2/ │ │ ├── LICENSE │ │ ├── internal/ │ │ │ └── httprule/ │ │ │ ├── BUILD.bazel │ │ │ ├── compile.go │ │ │ ├── fuzz.go │ │ │ ├── parse.go │ │ │ └── types.go │ │ ├── protoc-gen-openapiv2/ │ │ │ └── options/ │ │ │ ├── BUILD.bazel │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ ├── annotations_protoopaque.pb.go │ │ │ ├── buf.gen.yaml │ │ │ ├── openapiv2.pb.go │ │ │ ├── openapiv2.proto │ │ │ └── openapiv2_protoopaque.pb.go │ │ ├── runtime/ │ │ │ ├── BUILD.bazel │ │ │ ├── context.go │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── fieldmask.go │ │ │ ├── handler.go │ │ │ ├── marshal_httpbodyproto.go │ │ │ ├── marshal_json.go │ │ │ ├── marshal_jsonpb.go │ │ │ ├── marshal_proto.go │ │ │ ├── marshaler.go │ │ │ ├── marshaler_registry.go │ │ │ ├── mux.go │ │ │ ├── pattern.go │ │ │ ├── proto2_convert.go │ │ │ └── query.go │ │ └── utilities/ │ │ ├── BUILD.bazel │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── readerfactory.go │ │ ├── string_array_flag.go │ │ └── trie.go │ ├── hashicorp/ │ │ ├── go-cleanhttp/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cleanhttp.go │ │ │ ├── doc.go │ │ │ └── handlers.go │ │ ├── go-immutable-radix/ │ │ │ └── v2/ │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── edges.go │ │ │ ├── iradix.go │ │ │ ├── iter.go │ │ │ ├── node.go │ │ │ ├── path_iter.go │ │ │ ├── raw_iter.go │ │ │ └── reverse_iter.go │ │ ├── go-retryablehttp/ │ │ │ ├── .gitignore │ │ │ ├── .go-version │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CODEOWNERS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cert_error_go119.go │ │ │ ├── cert_error_go120.go │ │ │ ├── client.go │ │ │ └── roundtripper.go │ │ ├── go-version/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── constraint.go │ │ │ ├── version.go │ │ │ └── version_collection.go │ │ └── golang-lru/ │ │ └── v2/ │ │ ├── LICENSE │ │ ├── internal/ │ │ │ └── list.go │ │ └── simplelru/ │ │ ├── LICENSE_list │ │ ├── lru.go │ │ └── lru_interface.go │ ├── heptio/ │ │ └── velero/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── apis/ │ │ └── velero/ │ │ └── v1/ │ │ ├── backup.go │ │ ├── backup_storage_location.go │ │ ├── constants.go │ │ ├── delete_backup_request.go │ │ ├── doc.go │ │ ├── download_request.go │ │ ├── labels_annotations.go │ │ ├── pod_volume_backup.go │ │ ├── pod_volume_restore.go │ │ ├── register.go │ │ ├── restic_repository.go │ │ ├── restore.go │ │ ├── schedule.go │ │ ├── server_status_request.go │ │ ├── volume_snapshot_location.go │ │ └── zz_generated.deepcopy.go │ ├── hexops/ │ │ └── gotextdiff/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── diff.go │ │ ├── myers/ │ │ │ └── diff.go │ │ ├── span/ │ │ │ ├── parse.go │ │ │ ├── span.go │ │ │ ├── token.go │ │ │ ├── token111.go │ │ │ ├── token112.go │ │ │ ├── uri.go │ │ │ └── utf16.go │ │ └── unified.go │ ├── imdario/ │ │ └── mergo/ │ │ ├── .deepsource.toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.go │ ├── inconshreveable/ │ │ └── mousetrap/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go │ ├── jgautheron/ │ │ └── goconst/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api.go │ │ ├── parser.go │ │ └── visitor.go │ ├── jingyugao/ │ │ └── rowserrcheck/ │ │ ├── LICENSE │ │ └── passes/ │ │ └── rowserr/ │ │ └── rowserr.go │ ├── jjti/ │ │ └── go-spancheck/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── config.go │ │ ├── doc.go │ │ ├── go.work │ │ ├── go.work.sum │ │ └── spancheck.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 │ ├── jonboulle/ │ │ └── clockwork/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── clockwork.go │ │ ├── context.go │ │ ├── ticker.go │ │ └── timer.go │ ├── jongio/ │ │ └── azidext/ │ │ └── go/ │ │ └── azidext/ │ │ ├── LICENSE │ │ └── azure_identity_credential_adapter.go │ ├── kballard/ │ │ └── go-shellquote/ │ │ ├── LICENSE │ │ ├── README │ │ ├── doc.go │ │ ├── quote.go │ │ └── unquote.go │ ├── kdomanski/ │ │ └── iso9660/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── image_reader.go │ │ ├── image_writer.go │ │ ├── iso9660.go │ │ └── iso9660_datatypes.go │ ├── kisielk/ │ │ └── errcheck/ │ │ ├── LICENSE │ │ └── errcheck/ │ │ ├── analyzer.go │ │ ├── embedded_walker.go │ │ ├── embedded_walker_121.go │ │ ├── embedded_walker_122.go │ │ ├── errcheck.go │ │ └── excludes.go │ ├── kkHAIKE/ │ │ └── contextcheck/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── contextcheck.go │ ├── kulti/ │ │ └── thelper/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── analyzer/ │ │ ├── analyzer.go │ │ └── report.go │ ├── kunwardeep/ │ │ └── paralleltest/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── paralleltest/ │ │ └── paralleltest.go │ ├── kylelemons/ │ │ └── godebug/ │ │ ├── LICENSE │ │ ├── diff/ │ │ │ └── diff.go │ │ └── pretty/ │ │ ├── .gitignore │ │ ├── doc.go │ │ ├── public.go │ │ ├── reflect.go │ │ └── structure.go │ ├── lasiar/ │ │ └── canonicalheader/ │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .goreleaser.yaml │ │ ├── LICENCE │ │ ├── README.md │ │ ├── analyzer.go │ │ ├── constant_string.go │ │ ├── initialism.go │ │ ├── literal_string.go │ │ └── makefile │ ├── ldez/ │ │ ├── exptostd/ │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── exptostd.go │ │ │ └── readme.md │ │ ├── gomoddirectives/ │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── gomoddirectives.go │ │ │ ├── module.go │ │ │ └── readme.md │ │ ├── grignotin/ │ │ │ ├── goenv/ │ │ │ │ ├── goenv.go │ │ │ │ └── names.go │ │ │ └── gomod/ │ │ │ └── gomod.go │ │ ├── tagliatelle/ │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── converter.go │ │ │ ├── readme.md │ │ │ └── tagliatelle.go │ │ └── usetesting/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── readme.md │ │ ├── report.go │ │ └── usetesting.go │ ├── leonklingele/ │ │ └── grouper/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── analyzer/ │ │ ├── analyzer.go │ │ ├── config.go │ │ ├── consts/ │ │ │ ├── analyzer.go │ │ │ └── config.go │ │ ├── flags.go │ │ ├── globals/ │ │ │ └── analyzer.go │ │ ├── imports/ │ │ │ ├── analyzer.go │ │ │ └── config.go │ │ ├── types/ │ │ │ ├── analyzer.go │ │ │ └── config.go │ │ └── vars/ │ │ ├── analyzer.go │ │ └── config.go │ ├── liggitt/ │ │ └── tabwriter/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── tabwriter.go │ ├── maratori/ │ │ ├── testableexamples/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ └── testableexamples/ │ │ │ └── testableexamples.go │ │ └── testpackage/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── testpackage/ │ │ └── testpackage.go │ ├── matoous/ │ │ └── godox/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .revive.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── godox.go │ ├── mattn/ │ │ ├── go-colorable/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ ├── go.test.sh │ │ │ └── noncolorable.go │ │ ├── go-isatty/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.test.sh │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_plan9.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_tcgets.go │ │ │ └── isatty_windows.go │ │ └── go-runewidth/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── runewidth.go │ │ ├── runewidth_appengine.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ ├── runewidth_table.go │ │ └── runewidth_windows.go │ ├── metal3-io/ │ │ └── baremetal-operator/ │ │ ├── apis/ │ │ │ ├── LICENSE │ │ │ └── metal3.io/ │ │ │ └── v1alpha1/ │ │ │ ├── baremetalhost_types.go │ │ │ ├── baremetalhost_validation.go │ │ │ ├── baremetalhost_webhook.go │ │ │ ├── bmceventsubscription_types.go │ │ │ ├── bmceventsubscription_validation.go │ │ │ ├── bmceventsubscription_webhook.go │ │ │ ├── firmwareschema_types.go │ │ │ ├── groupversion_info.go │ │ │ ├── hardwaredata_types.go │ │ │ ├── hostfirmwaresettings_types.go │ │ │ ├── preprovisioningimage_types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── pkg/ │ │ └── hardwareutils/ │ │ ├── LICENSE │ │ └── bmc/ │ │ ├── access.go │ │ ├── credentials.go │ │ ├── errors.go │ │ ├── ibmc.go │ │ ├── idrac.go │ │ ├── idrac_virtualmedia.go │ │ ├── ilo4.go │ │ ├── ilo5.go │ │ ├── ipmi.go │ │ ├── irmc.go │ │ ├── redfish.go │ │ └── redfish_virtualmedia.go │ ├── mgechev/ │ │ └── revive/ │ │ ├── LICENSE │ │ ├── config/ │ │ │ └── config.go │ │ ├── formatter/ │ │ │ ├── checkstyle.go │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── friendly.go │ │ │ ├── json.go │ │ │ ├── ndjson.go │ │ │ ├── plain.go │ │ │ ├── sarif.go │ │ │ ├── severity.go │ │ │ ├── stylish.go │ │ │ └── unix.go │ │ ├── internal/ │ │ │ ├── astutils/ │ │ │ │ └── ast_utils.go │ │ │ ├── ifelse/ │ │ │ │ ├── args.go │ │ │ │ ├── branch.go │ │ │ │ ├── branch_kind.go │ │ │ │ ├── chain.go │ │ │ │ ├── doc.go │ │ │ │ ├── func.go │ │ │ │ ├── rule.go │ │ │ │ └── target.go │ │ │ └── typeparams/ │ │ │ ├── typeparams.go │ │ │ ├── typeparams_go117.go │ │ │ └── typeparams_go118.go │ │ ├── lint/ │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── failure.go │ │ │ ├── file.go │ │ │ ├── filefilter.go │ │ │ ├── formatter.go │ │ │ ├── linter.go │ │ │ ├── name.go │ │ │ ├── package.go │ │ │ └── rule.go │ │ └── rule/ │ │ ├── add_constant.go │ │ ├── argument_limit.go │ │ ├── atomic.go │ │ ├── banned_characters.go │ │ ├── bare_return.go │ │ ├── blank_imports.go │ │ ├── bool_literal_in_expr.go │ │ ├── call_to_gc.go │ │ ├── cognitive_complexity.go │ │ ├── comment_spacings.go │ │ ├── comments_density.go │ │ ├── confusing_naming.go │ │ ├── confusing_results.go │ │ ├── constant_logical_expr.go │ │ ├── context_as_argument.go │ │ ├── context_keys_type.go │ │ ├── cyclomatic.go │ │ ├── datarace.go │ │ ├── deep_exit.go │ │ ├── defer.go │ │ ├── doc.go │ │ ├── dot_imports.go │ │ ├── duplicated_imports.go │ │ ├── early_return.go │ │ ├── empty_block.go │ │ ├── empty_lines.go │ │ ├── enforce_map_style.go │ │ ├── enforce_repeated_arg_type_style.go │ │ ├── enforce_slice_style.go │ │ ├── error_naming.go │ │ ├── error_return.go │ │ ├── error_strings.go │ │ ├── errorf.go │ │ ├── exported.go │ │ ├── file_header.go │ │ ├── file_length_limit.go │ │ ├── filename_format.go │ │ ├── flag_param.go │ │ ├── function_length.go │ │ ├── function_result_limit.go │ │ ├── get_return.go │ │ ├── identical_branches.go │ │ ├── if_return.go │ │ ├── import_alias_naming.go │ │ ├── import_shadowing.go │ │ ├── imports_blocklist.go │ │ ├── increment_decrement.go │ │ ├── indent_error_flow.go │ │ ├── line_length_limit.go │ │ ├── max_control_nesting.go │ │ ├── max_public_structs.go │ │ ├── modifies_param.go │ │ ├── modifies_value_receiver.go │ │ ├── nested_structs.go │ │ ├── optimize_operands_order.go │ │ ├── package_comments.go │ │ ├── range.go │ │ ├── range_val_address.go │ │ ├── range_val_in_closure.go │ │ ├── receiver_naming.go │ │ ├── redefines_builtin_id.go │ │ ├── redundant_build_tag.go │ │ ├── redundant_import_alias.go │ │ ├── redundant_test_main_exit.go │ │ ├── string_format.go │ │ ├── string_of_int.go │ │ ├── struct_tag.go │ │ ├── superfluous_else.go │ │ ├── time_equal.go │ │ ├── time_naming.go │ │ ├── unchecked_type_assertion.go │ │ ├── unconditional_recursion.go │ │ ├── unexported_naming.go │ │ ├── unexported_return.go │ │ ├── unhandled_error.go │ │ ├── unnecessary_stmt.go │ │ ├── unreachable_code.go │ │ ├── unused_param.go │ │ ├── unused_receiver.go │ │ ├── use_any.go │ │ ├── use_errors_new.go │ │ ├── useless_break.go │ │ ├── utils.go │ │ ├── var_declarations.go │ │ ├── var_naming.go │ │ └── waitgroup_by_value.go │ ├── mgutz/ │ │ └── ansi/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansi.go │ │ ├── doc.go │ │ └── print.go │ ├── microsoft/ │ │ ├── kiota-abstractions-go/ │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── SUPPORT.md │ │ │ ├── api_client_builder.go │ │ │ ├── api_error.go │ │ │ ├── authentication/ │ │ │ │ ├── access_token_provider.go │ │ │ │ ├── allowed_hosts_validator.go │ │ │ │ ├── anonymous_authentication_provider.go │ │ │ │ ├── api_key_authentication_provider.go │ │ │ │ ├── authentication_provider.go │ │ │ │ └── base_bearer_token_authentication_provider.go │ │ │ ├── http_method.go │ │ │ ├── request_adapter.go │ │ │ ├── request_handler_option.go │ │ │ ├── request_headers.go │ │ │ ├── request_information.go │ │ │ ├── request_option.go │ │ │ ├── response_handler.go │ │ │ ├── serialization/ │ │ │ │ ├── additional_data_holder.go │ │ │ │ ├── date_only.go │ │ │ │ ├── iso_duration.go │ │ │ │ ├── parsable.go │ │ │ │ ├── parse_node.go │ │ │ │ ├── parse_node_factory.go │ │ │ │ ├── parse_node_factory_registry.go │ │ │ │ ├── parse_node_helper.go │ │ │ │ ├── parse_node_proxy_factory.go │ │ │ │ ├── serialization_writer.go │ │ │ │ ├── serialization_writer_factory.go │ │ │ │ ├── serialization_writer_factory_registry.go │ │ │ │ ├── serialization_writer_proxy_factory.go │ │ │ │ └── time_only.go │ │ │ ├── sonar-project.properties │ │ │ ├── store/ │ │ │ │ ├── backed_model.go │ │ │ │ ├── backing_store.go │ │ │ │ ├── backing_store_factory.go │ │ │ │ ├── backing_store_parse_node_factory.go │ │ │ │ ├── backing_store_serialization_writer_proxy_factory.go │ │ │ │ └── inmemory_backing_store.go │ │ │ └── utils.go │ │ ├── kiota-authentication-azure-go/ │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── SUPPORT.md │ │ │ ├── azure_identity_access_token_provider.go │ │ │ ├── azure_identity_authentication_provider.go │ │ │ └── sonar-project.properties │ │ ├── kiota-http-go/ │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── SUPPORT.md │ │ │ ├── chaos_handler.go │ │ │ ├── compression_handler.go │ │ │ ├── kiota_client_factory.go │ │ │ ├── middleware.go │ │ │ ├── nethttp_request_adapter.go │ │ │ ├── observability_options.go │ │ │ ├── parameters_name_decoding_handler.go │ │ │ ├── pipeline.go │ │ │ ├── redirect_handler.go │ │ │ ├── retry_handler.go │ │ │ ├── sonar-project.properties │ │ │ ├── url_replace_handler.go │ │ │ └── user_agent_handler.go │ │ ├── kiota-serialization-form-go/ │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── SUPPORT.md │ │ │ ├── form_parse_node.go │ │ │ ├── form_parse_node_factory.go │ │ │ ├── form_serialization_writer.go │ │ │ ├── form_serialization_writer_factory.go │ │ │ └── sonar-project.properties │ │ ├── kiota-serialization-json-go/ │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── SUPPORT.md │ │ │ ├── json_parse_node.go │ │ │ ├── json_parse_node_factory.go │ │ │ ├── json_serialization_helpers.go │ │ │ ├── json_serialization_writer.go │ │ │ ├── json_serialization_writer_factory.go │ │ │ └── sonar-project.properties │ │ └── kiota-serialization-text-go/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── SUPPORT.md │ │ ├── sonar-project.properties │ │ ├── text_parse_node.go │ │ ├── text_parse_node_factory.go │ │ ├── text_parse_node_factory_text.go │ │ ├── text_serialization_writer.go │ │ ├── text_serialization_writer_factory.go │ │ └── text_serialization_writer_factory_text.go │ ├── microsoftgraph/ │ │ ├── msgraph-sdk-go/ │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── THIRD PARTY NOTICES │ │ │ ├── admin/ │ │ │ │ ├── admin_request_builder.go │ │ │ │ ├── service_announcement_health_overviews_count_request_builder.go │ │ │ │ ├── service_announcement_health_overviews_item_issues_count_request_builder.go │ │ │ │ ├── service_announcement_health_overviews_item_issues_item_incident_report_request_builder.go │ │ │ │ ├── service_announcement_health_overviews_item_issues_request_builder.go │ │ │ │ ├── service_announcement_health_overviews_item_issues_service_health_issue_item_request_builder.go │ │ │ │ ├── service_announcement_health_overviews_request_builder.go │ │ │ │ ├── service_announcement_health_overviews_service_health_item_request_builder.go │ │ │ │ ├── service_announcement_issues_count_request_builder.go │ │ │ │ ├── service_announcement_issues_item_incident_report_request_builder.go │ │ │ │ ├── service_announcement_issues_request_builder.go │ │ │ │ ├── service_announcement_issues_service_health_issue_item_request_builder.go │ │ │ │ ├── service_announcement_messages_archive_post_request_body.go │ │ │ │ ├── service_announcement_messages_archive_request_builder.go │ │ │ │ ├── service_announcement_messages_archive_response.go │ │ │ │ ├── service_announcement_messages_count_request_builder.go │ │ │ │ ├── service_announcement_messages_favorite_post_request_body.go │ │ │ │ ├── service_announcement_messages_favorite_request_builder.go │ │ │ │ ├── service_announcement_messages_favorite_response.go │ │ │ │ ├── service_announcement_messages_item_attachments_archive_request_builder.go │ │ │ │ ├── service_announcement_messages_item_attachments_count_request_builder.go │ │ │ │ ├── service_announcement_messages_item_attachments_item_content_request_builder.go │ │ │ │ ├── service_announcement_messages_item_attachments_request_builder.go │ │ │ │ ├── service_announcement_messages_item_attachments_service_announcement_attachment_item_request_builder.go │ │ │ │ ├── service_announcement_messages_mark_read_post_request_body.go │ │ │ │ ├── service_announcement_messages_mark_read_request_builder.go │ │ │ │ ├── service_announcement_messages_mark_read_response.go │ │ │ │ ├── service_announcement_messages_mark_unread_post_request_body.go │ │ │ │ ├── service_announcement_messages_mark_unread_request_builder.go │ │ │ │ ├── service_announcement_messages_mark_unread_response.go │ │ │ │ ├── service_announcement_messages_request_builder.go │ │ │ │ ├── service_announcement_messages_service_update_message_item_request_builder.go │ │ │ │ ├── service_announcement_messages_unarchive_post_request_body.go │ │ │ │ ├── service_announcement_messages_unarchive_request_builder.go │ │ │ │ ├── service_announcement_messages_unarchive_response.go │ │ │ │ ├── service_announcement_messages_unfavorite_post_request_body.go │ │ │ │ ├── service_announcement_messages_unfavorite_request_builder.go │ │ │ │ ├── service_announcement_messages_unfavorite_response.go │ │ │ │ └── service_announcement_request_builder.go │ │ │ ├── agreementacceptances/ │ │ │ │ ├── agreement_acceptance_item_request_builder.go │ │ │ │ └── agreement_acceptances_request_builder.go │ │ │ ├── agreements/ │ │ │ │ ├── agreement_item_request_builder.go │ │ │ │ ├── agreements_request_builder.go │ │ │ │ ├── item_acceptances_agreement_acceptance_item_request_builder.go │ │ │ │ ├── item_acceptances_count_request_builder.go │ │ │ │ ├── item_acceptances_request_builder.go │ │ │ │ ├── item_file_localizations_agreement_file_localization_item_request_builder.go │ │ │ │ ├── item_file_localizations_count_request_builder.go │ │ │ │ ├── item_file_localizations_item_versions_agreement_file_version_item_request_builder.go │ │ │ │ ├── item_file_localizations_item_versions_count_request_builder.go │ │ │ │ ├── item_file_localizations_item_versions_request_builder.go │ │ │ │ ├── item_file_localizations_request_builder.go │ │ │ │ ├── item_file_request_builder.go │ │ │ │ ├── item_files_agreement_file_localization_item_request_builder.go │ │ │ │ ├── item_files_count_request_builder.go │ │ │ │ ├── item_files_item_versions_agreement_file_version_item_request_builder.go │ │ │ │ ├── item_files_item_versions_count_request_builder.go │ │ │ │ ├── item_files_item_versions_request_builder.go │ │ │ │ └── item_files_request_builder.go │ │ │ ├── appcatalogs/ │ │ │ │ ├── app_catalogs_request_builder.go │ │ │ │ ├── teams_apps_count_request_builder.go │ │ │ │ ├── teams_apps_item_app_definitions_count_request_builder.go │ │ │ │ ├── teams_apps_item_app_definitions_item_bot_request_builder.go │ │ │ │ ├── teams_apps_item_app_definitions_request_builder.go │ │ │ │ ├── teams_apps_item_app_definitions_teams_app_definition_item_request_builder.go │ │ │ │ ├── teams_apps_request_builder.go │ │ │ │ └── teams_apps_teams_app_item_request_builder.go │ │ │ ├── applications/ │ │ │ │ ├── application_item_request_builder.go │ │ │ │ ├── applications_request_builder.go │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── item_add_key_post_request_body.go │ │ │ │ ├── item_add_key_request_builder.go │ │ │ │ ├── item_add_password_post_request_body.go │ │ │ │ ├── item_add_password_request_builder.go │ │ │ │ ├── item_app_management_policies_app_management_policy_item_request_builder.go │ │ │ │ ├── item_app_management_policies_count_request_builder.go │ │ │ │ ├── item_app_management_policies_item_ref_request_builder.go │ │ │ │ ├── item_app_management_policies_ref_request_builder.go │ │ │ │ ├── item_app_management_policies_request_builder.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_created_on_behalf_of_request_builder.go │ │ │ │ ├── item_extension_properties_count_request_builder.go │ │ │ │ ├── item_extension_properties_extension_property_item_request_builder.go │ │ │ │ ├── item_extension_properties_request_builder.go │ │ │ │ ├── item_federated_identity_credentials_count_request_builder.go │ │ │ │ ├── item_federated_identity_credentials_federated_identity_credential_item_request_builder.go │ │ │ │ ├── item_federated_identity_credentials_request_builder.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_home_realm_discovery_policies_count_request_builder.go │ │ │ │ ├── item_home_realm_discovery_policies_home_realm_discovery_policy_item_request_builder.go │ │ │ │ ├── item_home_realm_discovery_policies_request_builder.go │ │ │ │ ├── item_logo_request_builder.go │ │ │ │ ├── item_owners_count_request_builder.go │ │ │ │ ├── item_owners_directory_object_item_request_builder.go │ │ │ │ ├── item_owners_graph_app_role_assignment_count_request_builder.go │ │ │ │ ├── item_owners_graph_app_role_assignment_request_builder.go │ │ │ │ ├── item_owners_graph_endpoint_count_request_builder.go │ │ │ │ ├── item_owners_graph_endpoint_request_builder.go │ │ │ │ ├── item_owners_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_owners_graph_service_principal_request_builder.go │ │ │ │ ├── item_owners_graph_user_count_request_builder.go │ │ │ │ ├── item_owners_graph_user_request_builder.go │ │ │ │ ├── item_owners_item_graph_app_role_assignment_request_builder.go │ │ │ │ ├── item_owners_item_graph_endpoint_request_builder.go │ │ │ │ ├── item_owners_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_owners_item_graph_user_request_builder.go │ │ │ │ ├── item_owners_item_ref_request_builder.go │ │ │ │ ├── item_owners_ref_request_builder.go │ │ │ │ ├── item_owners_request_builder.go │ │ │ │ ├── item_remove_key_post_request_body.go │ │ │ │ ├── item_remove_key_request_builder.go │ │ │ │ ├── item_remove_password_post_request_body.go │ │ │ │ ├── item_remove_password_request_builder.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── item_set_verified_publisher_post_request_body.go │ │ │ │ ├── item_set_verified_publisher_request_builder.go │ │ │ │ ├── item_token_issuance_policies_count_request_builder.go │ │ │ │ ├── item_token_issuance_policies_item_ref_request_builder.go │ │ │ │ ├── item_token_issuance_policies_ref_request_builder.go │ │ │ │ ├── item_token_issuance_policies_request_builder.go │ │ │ │ ├── item_token_issuance_policies_token_issuance_policy_item_request_builder.go │ │ │ │ ├── item_token_lifetime_policies_count_request_builder.go │ │ │ │ ├── item_token_lifetime_policies_item_ref_request_builder.go │ │ │ │ ├── item_token_lifetime_policies_ref_request_builder.go │ │ │ │ ├── item_token_lifetime_policies_request_builder.go │ │ │ │ ├── item_token_lifetime_policies_token_lifetime_policy_item_request_builder.go │ │ │ │ ├── item_unset_verified_publisher_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── applicationtemplates/ │ │ │ │ ├── application_template_item_request_builder.go │ │ │ │ ├── application_templates_request_builder.go │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── item_instantiate_post_request_body.go │ │ │ │ └── item_instantiate_request_builder.go │ │ │ ├── auditlogs/ │ │ │ │ ├── audit_logs_request_builder.go │ │ │ │ ├── directory_audits_count_request_builder.go │ │ │ │ ├── directory_audits_directory_audit_item_request_builder.go │ │ │ │ ├── directory_audits_request_builder.go │ │ │ │ ├── provisioning_count_request_builder.go │ │ │ │ ├── provisioning_provisioning_object_summary_item_request_builder.go │ │ │ │ ├── provisioning_request_builder.go │ │ │ │ ├── sign_ins_count_request_builder.go │ │ │ │ ├── sign_ins_request_builder.go │ │ │ │ └── sign_ins_sign_in_item_request_builder.go │ │ │ ├── authenticationmethodconfigurations/ │ │ │ │ ├── authentication_method_configuration_item_request_builder.go │ │ │ │ ├── authentication_method_configurations_request_builder.go │ │ │ │ └── count_request_builder.go │ │ │ ├── authenticationmethodspolicy/ │ │ │ │ ├── authentication_method_configurations_authentication_method_configuration_item_request_builder.go │ │ │ │ ├── authentication_method_configurations_count_request_builder.go │ │ │ │ ├── authentication_method_configurations_request_builder.go │ │ │ │ └── authentication_methods_policy_request_builder.go │ │ │ ├── branding/ │ │ │ │ ├── background_image_request_builder.go │ │ │ │ ├── banner_logo_request_builder.go │ │ │ │ ├── branding_request_builder.go │ │ │ │ ├── localizations_count_request_builder.go │ │ │ │ ├── localizations_item_background_image_request_builder.go │ │ │ │ ├── localizations_item_banner_logo_request_builder.go │ │ │ │ ├── localizations_item_square_logo_request_builder.go │ │ │ │ ├── localizations_organizational_branding_localization_item_request_builder.go │ │ │ │ ├── localizations_request_builder.go │ │ │ │ └── square_logo_request_builder.go │ │ │ ├── certificatebasedauthconfiguration/ │ │ │ │ ├── certificate_based_auth_configuration_item_request_builder.go │ │ │ │ ├── certificate_based_auth_configuration_request_builder.go │ │ │ │ └── count_request_builder.go │ │ │ ├── chats/ │ │ │ │ ├── chat_item_request_builder.go │ │ │ │ ├── chats_request_builder.go │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── get_all_messages_request_builder.go │ │ │ │ ├── get_all_messages_response.go │ │ │ │ ├── item_hide_for_user_post_request_body.go │ │ │ │ ├── item_hide_for_user_request_builder.go │ │ │ │ ├── item_installed_apps_count_request_builder.go │ │ │ │ ├── item_installed_apps_item_teams_app_definition_request_builder.go │ │ │ │ ├── item_installed_apps_item_teams_app_request_builder.go │ │ │ │ ├── item_installed_apps_item_upgrade_request_builder.go │ │ │ │ ├── item_installed_apps_request_builder.go │ │ │ │ ├── item_installed_apps_teams_app_installation_item_request_builder.go │ │ │ │ ├── item_last_message_preview_request_builder.go │ │ │ │ ├── item_mark_chat_read_for_user_post_request_body.go │ │ │ │ ├── item_mark_chat_read_for_user_request_builder.go │ │ │ │ ├── item_mark_chat_unread_for_user_post_request_body.go │ │ │ │ ├── item_mark_chat_unread_for_user_request_builder.go │ │ │ │ ├── item_members_add_post_request_body.go │ │ │ │ ├── item_members_add_request_builder.go │ │ │ │ ├── item_members_add_response.go │ │ │ │ ├── item_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_members_count_request_builder.go │ │ │ │ ├── item_members_request_builder.go │ │ │ │ ├── item_messages_chat_message_item_request_builder.go │ │ │ │ ├── item_messages_count_request_builder.go │ │ │ │ ├── item_messages_delta_request_builder.go │ │ │ │ ├── item_messages_delta_response.go │ │ │ │ ├── item_messages_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── item_messages_item_hosted_contents_count_request_builder.go │ │ │ │ ├── item_messages_item_hosted_contents_request_builder.go │ │ │ │ ├── item_messages_item_replies_chat_message_item_request_builder.go │ │ │ │ ├── item_messages_item_replies_count_request_builder.go │ │ │ │ ├── item_messages_item_replies_delta_request_builder.go │ │ │ │ ├── item_messages_item_replies_delta_response.go │ │ │ │ ├── item_messages_item_replies_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── item_messages_item_replies_item_hosted_contents_count_request_builder.go │ │ │ │ ├── item_messages_item_replies_item_hosted_contents_request_builder.go │ │ │ │ ├── item_messages_item_replies_item_soft_delete_request_builder.go │ │ │ │ ├── item_messages_item_replies_item_undo_soft_delete_request_builder.go │ │ │ │ ├── item_messages_item_replies_request_builder.go │ │ │ │ ├── item_messages_item_soft_delete_request_builder.go │ │ │ │ ├── item_messages_item_undo_soft_delete_request_builder.go │ │ │ │ ├── item_messages_request_builder.go │ │ │ │ ├── item_pinned_messages_count_request_builder.go │ │ │ │ ├── item_pinned_messages_item_message_request_builder.go │ │ │ │ ├── item_pinned_messages_pinned_chat_message_info_item_request_builder.go │ │ │ │ ├── item_pinned_messages_request_builder.go │ │ │ │ ├── item_send_activity_notification_post_request_body.go │ │ │ │ ├── item_send_activity_notification_request_builder.go │ │ │ │ ├── item_tabs_count_request_builder.go │ │ │ │ ├── item_tabs_item_teams_app_request_builder.go │ │ │ │ ├── item_tabs_request_builder.go │ │ │ │ ├── item_tabs_teams_tab_item_request_builder.go │ │ │ │ ├── item_unhide_for_user_post_request_body.go │ │ │ │ └── item_unhide_for_user_request_builder.go │ │ │ ├── communications/ │ │ │ │ ├── call_records_call_record_item_request_builder.go │ │ │ │ ├── call_records_call_records_get_direct_routing_calls_with_from_date_time_with_to_date_time_get_direct_routing_calls_with_from_date_time_with_to_date_time_response.go │ │ │ │ ├── call_records_call_records_get_direct_routing_calls_with_from_date_time_with_to_date_time_request_builder.go │ │ │ │ ├── call_records_call_records_get_pstn_calls_with_from_date_time_with_to_date_time_get_pstn_calls_with_from_date_time_with_to_date_time_response.go │ │ │ │ ├── call_records_call_records_get_pstn_calls_with_from_date_time_with_to_date_time_request_builder.go │ │ │ │ ├── call_records_count_request_builder.go │ │ │ │ ├── call_records_item_sessions_count_request_builder.go │ │ │ │ ├── call_records_item_sessions_item_segments_count_request_builder.go │ │ │ │ ├── call_records_item_sessions_item_segments_request_builder.go │ │ │ │ ├── call_records_item_sessions_item_segments_segment_item_request_builder.go │ │ │ │ ├── call_records_item_sessions_request_builder.go │ │ │ │ ├── call_records_item_sessions_session_item_request_builder.go │ │ │ │ ├── call_records_request_builder.go │ │ │ │ ├── calls_call_item_request_builder.go │ │ │ │ ├── calls_count_request_builder.go │ │ │ │ ├── calls_item_add_large_gallery_view_post_request_body.go │ │ │ │ ├── calls_item_add_large_gallery_view_request_builder.go │ │ │ │ ├── calls_item_answer_post_request_body.go │ │ │ │ ├── calls_item_answer_request_builder.go │ │ │ │ ├── calls_item_audio_routing_groups_audio_routing_group_item_request_builder.go │ │ │ │ ├── calls_item_audio_routing_groups_count_request_builder.go │ │ │ │ ├── calls_item_audio_routing_groups_request_builder.go │ │ │ │ ├── calls_item_cancel_media_processing_post_request_body.go │ │ │ │ ├── calls_item_cancel_media_processing_request_builder.go │ │ │ │ ├── calls_item_change_screen_sharing_role_post_request_body.go │ │ │ │ ├── calls_item_change_screen_sharing_role_request_builder.go │ │ │ │ ├── calls_item_content_sharing_sessions_content_sharing_session_item_request_builder.go │ │ │ │ ├── calls_item_content_sharing_sessions_count_request_builder.go │ │ │ │ ├── calls_item_content_sharing_sessions_request_builder.go │ │ │ │ ├── calls_item_keep_alive_request_builder.go │ │ │ │ ├── calls_item_mute_post_request_body.go │ │ │ │ ├── calls_item_mute_request_builder.go │ │ │ │ ├── calls_item_operations_comms_operation_item_request_builder.go │ │ │ │ ├── calls_item_operations_count_request_builder.go │ │ │ │ ├── calls_item_operations_request_builder.go │ │ │ │ ├── calls_item_participants_count_request_builder.go │ │ │ │ ├── calls_item_participants_invite_post_request_body.go │ │ │ │ ├── calls_item_participants_invite_request_builder.go │ │ │ │ ├── calls_item_participants_item_mute_post_request_body.go │ │ │ │ ├── calls_item_participants_item_mute_request_builder.go │ │ │ │ ├── calls_item_participants_item_start_hold_music_post_request_body.go │ │ │ │ ├── calls_item_participants_item_start_hold_music_request_builder.go │ │ │ │ ├── calls_item_participants_item_stop_hold_music_post_request_body.go │ │ │ │ ├── calls_item_participants_item_stop_hold_music_request_builder.go │ │ │ │ ├── calls_item_participants_participant_item_request_builder.go │ │ │ │ ├── calls_item_participants_request_builder.go │ │ │ │ ├── calls_item_play_prompt_post_request_body.go │ │ │ │ ├── calls_item_play_prompt_request_builder.go │ │ │ │ ├── calls_item_record_response_post_request_body.go │ │ │ │ ├── calls_item_record_response_request_builder.go │ │ │ │ ├── calls_item_redirect_post_request_body.go │ │ │ │ ├── calls_item_redirect_request_builder.go │ │ │ │ ├── calls_item_reject_post_request_body.go │ │ │ │ ├── calls_item_reject_request_builder.go │ │ │ │ ├── calls_item_subscribe_to_tone_post_request_body.go │ │ │ │ ├── calls_item_subscribe_to_tone_request_builder.go │ │ │ │ ├── calls_item_transfer_post_request_body.go │ │ │ │ ├── calls_item_transfer_request_builder.go │ │ │ │ ├── calls_item_unmute_post_request_body.go │ │ │ │ ├── calls_item_unmute_request_builder.go │ │ │ │ ├── calls_item_update_recording_status_post_request_body.go │ │ │ │ ├── calls_item_update_recording_status_request_builder.go │ │ │ │ ├── calls_log_teleconference_device_quality_post_request_body.go │ │ │ │ ├── calls_log_teleconference_device_quality_request_builder.go │ │ │ │ ├── calls_request_builder.go │ │ │ │ ├── communications_request_builder.go │ │ │ │ ├── get_presences_by_user_id_post_request_body.go │ │ │ │ ├── get_presences_by_user_id_request_builder.go │ │ │ │ ├── get_presences_by_user_id_response.go │ │ │ │ ├── online_meetings_count_request_builder.go │ │ │ │ ├── online_meetings_create_or_get_post_request_body.go │ │ │ │ ├── online_meetings_create_or_get_request_builder.go │ │ │ │ ├── online_meetings_item_attendance_reports_count_request_builder.go │ │ │ │ ├── online_meetings_item_attendance_reports_item_attendance_records_attendance_record_item_request_builder.go │ │ │ │ ├── online_meetings_item_attendance_reports_item_attendance_records_count_request_builder.go │ │ │ │ ├── online_meetings_item_attendance_reports_item_attendance_records_request_builder.go │ │ │ │ ├── online_meetings_item_attendance_reports_meeting_attendance_report_item_request_builder.go │ │ │ │ ├── online_meetings_item_attendance_reports_request_builder.go │ │ │ │ ├── online_meetings_item_attendee_report_request_builder.go │ │ │ │ ├── online_meetings_online_meeting_item_request_builder.go │ │ │ │ ├── online_meetings_request_builder.go │ │ │ │ ├── presences_count_request_builder.go │ │ │ │ ├── presences_item_clear_presence_post_request_body.go │ │ │ │ ├── presences_item_clear_presence_request_builder.go │ │ │ │ ├── presences_item_clear_user_preferred_presence_request_builder.go │ │ │ │ ├── presences_item_set_presence_post_request_body.go │ │ │ │ ├── presences_item_set_presence_request_builder.go │ │ │ │ ├── presences_item_set_user_preferred_presence_post_request_body.go │ │ │ │ ├── presences_item_set_user_preferred_presence_request_builder.go │ │ │ │ ├── presences_presence_item_request_builder.go │ │ │ │ └── presences_request_builder.go │ │ │ ├── compliance/ │ │ │ │ └── compliance_request_builder.go │ │ │ ├── connections/ │ │ │ │ ├── connections_request_builder.go │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── external_connection_item_request_builder.go │ │ │ │ ├── item_groups_count_request_builder.go │ │ │ │ ├── item_groups_external_group_item_request_builder.go │ │ │ │ ├── item_groups_item_members_count_request_builder.go │ │ │ │ ├── item_groups_item_members_identity_item_request_builder.go │ │ │ │ ├── item_groups_item_members_request_builder.go │ │ │ │ ├── item_groups_request_builder.go │ │ │ │ ├── item_items_count_request_builder.go │ │ │ │ ├── item_items_external_item_item_request_builder.go │ │ │ │ ├── item_items_request_builder.go │ │ │ │ ├── item_operations_connection_operation_item_request_builder.go │ │ │ │ ├── item_operations_count_request_builder.go │ │ │ │ ├── item_operations_request_builder.go │ │ │ │ └── item_schema_request_builder.go │ │ │ ├── contacts/ │ │ │ │ ├── contacts_request_builder.go │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_direct_reports_count_request_builder.go │ │ │ │ ├── item_direct_reports_directory_object_item_request_builder.go │ │ │ │ ├── item_direct_reports_graph_org_contact_count_request_builder.go │ │ │ │ ├── item_direct_reports_graph_org_contact_request_builder.go │ │ │ │ ├── item_direct_reports_graph_user_count_request_builder.go │ │ │ │ ├── item_direct_reports_graph_user_request_builder.go │ │ │ │ ├── item_direct_reports_item_graph_org_contact_request_builder.go │ │ │ │ ├── item_direct_reports_item_graph_user_request_builder.go │ │ │ │ ├── item_direct_reports_request_builder.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_manager_request_builder.go │ │ │ │ ├── item_member_of_count_request_builder.go │ │ │ │ ├── item_member_of_directory_object_item_request_builder.go │ │ │ │ ├── item_member_of_graph_administrative_unit_count_request_builder.go │ │ │ │ ├── item_member_of_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_member_of_graph_group_count_request_builder.go │ │ │ │ ├── item_member_of_graph_group_request_builder.go │ │ │ │ ├── item_member_of_item_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_member_of_item_graph_group_request_builder.go │ │ │ │ ├── item_member_of_request_builder.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── item_transitive_member_of_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_directory_object_item_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_administrative_unit_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_group_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_group_request_builder.go │ │ │ │ ├── item_transitive_member_of_item_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_transitive_member_of_item_graph_group_request_builder.go │ │ │ │ ├── item_transitive_member_of_request_builder.go │ │ │ │ ├── org_contact_item_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── contracts/ │ │ │ │ ├── contract_item_request_builder.go │ │ │ │ ├── contracts_request_builder.go │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── datapolicyoperations/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── data_policy_operation_item_request_builder.go │ │ │ │ └── data_policy_operations_request_builder.go │ │ │ ├── deviceappmanagement/ │ │ │ │ ├── android_managed_app_protections_android_managed_app_protection_item_request_builder.go │ │ │ │ ├── android_managed_app_protections_count_request_builder.go │ │ │ │ ├── android_managed_app_protections_item_apps_count_request_builder.go │ │ │ │ ├── android_managed_app_protections_item_apps_managed_mobile_app_item_request_builder.go │ │ │ │ ├── android_managed_app_protections_item_apps_request_builder.go │ │ │ │ ├── android_managed_app_protections_item_deployment_summary_request_builder.go │ │ │ │ ├── android_managed_app_protections_request_builder.go │ │ │ │ ├── default_managed_app_protections_count_request_builder.go │ │ │ │ ├── default_managed_app_protections_default_managed_app_protection_item_request_builder.go │ │ │ │ ├── default_managed_app_protections_item_apps_count_request_builder.go │ │ │ │ ├── default_managed_app_protections_item_apps_managed_mobile_app_item_request_builder.go │ │ │ │ ├── default_managed_app_protections_item_apps_request_builder.go │ │ │ │ ├── default_managed_app_protections_item_deployment_summary_request_builder.go │ │ │ │ ├── default_managed_app_protections_request_builder.go │ │ │ │ ├── device_app_management_request_builder.go │ │ │ │ ├── ios_managed_app_protections_count_request_builder.go │ │ │ │ ├── ios_managed_app_protections_ios_managed_app_protection_item_request_builder.go │ │ │ │ ├── ios_managed_app_protections_item_apps_count_request_builder.go │ │ │ │ ├── ios_managed_app_protections_item_apps_managed_mobile_app_item_request_builder.go │ │ │ │ ├── ios_managed_app_protections_item_apps_request_builder.go │ │ │ │ ├── ios_managed_app_protections_item_deployment_summary_request_builder.go │ │ │ │ ├── ios_managed_app_protections_request_builder.go │ │ │ │ ├── managed_app_policies_count_request_builder.go │ │ │ │ ├── managed_app_policies_item_target_apps_post_request_body.go │ │ │ │ ├── managed_app_policies_item_target_apps_request_builder.go │ │ │ │ ├── managed_app_policies_managed_app_policy_item_request_builder.go │ │ │ │ ├── managed_app_policies_request_builder.go │ │ │ │ ├── managed_app_registrations_count_request_builder.go │ │ │ │ ├── managed_app_registrations_get_user_ids_with_flagged_app_registration_request_builder.go │ │ │ │ ├── managed_app_registrations_get_user_ids_with_flagged_app_registration_response.go │ │ │ │ ├── managed_app_registrations_item_applied_policies_count_request_builder.go │ │ │ │ ├── managed_app_registrations_item_applied_policies_item_target_apps_post_request_body.go │ │ │ │ ├── managed_app_registrations_item_applied_policies_item_target_apps_request_builder.go │ │ │ │ ├── managed_app_registrations_item_applied_policies_managed_app_policy_item_request_builder.go │ │ │ │ ├── managed_app_registrations_item_applied_policies_request_builder.go │ │ │ │ ├── managed_app_registrations_item_intended_policies_count_request_builder.go │ │ │ │ ├── managed_app_registrations_item_intended_policies_item_target_apps_post_request_body.go │ │ │ │ ├── managed_app_registrations_item_intended_policies_item_target_apps_request_builder.go │ │ │ │ ├── managed_app_registrations_item_intended_policies_managed_app_policy_item_request_builder.go │ │ │ │ ├── managed_app_registrations_item_intended_policies_request_builder.go │ │ │ │ ├── managed_app_registrations_item_operations_count_request_builder.go │ │ │ │ ├── managed_app_registrations_item_operations_managed_app_operation_item_request_builder.go │ │ │ │ ├── managed_app_registrations_item_operations_request_builder.go │ │ │ │ ├── managed_app_registrations_managed_app_registration_item_request_builder.go │ │ │ │ ├── managed_app_registrations_request_builder.go │ │ │ │ ├── managed_app_statuses_count_request_builder.go │ │ │ │ ├── managed_app_statuses_managed_app_status_item_request_builder.go │ │ │ │ ├── managed_app_statuses_request_builder.go │ │ │ │ ├── managed_e_books_count_request_builder.go │ │ │ │ ├── managed_e_books_item_assign_post_request_body.go │ │ │ │ ├── managed_e_books_item_assign_request_builder.go │ │ │ │ ├── managed_e_books_item_assignments_count_request_builder.go │ │ │ │ ├── managed_e_books_item_assignments_managed_e_book_assignment_item_request_builder.go │ │ │ │ ├── managed_e_books_item_assignments_request_builder.go │ │ │ │ ├── managed_e_books_item_device_states_count_request_builder.go │ │ │ │ ├── managed_e_books_item_device_states_device_install_state_item_request_builder.go │ │ │ │ ├── managed_e_books_item_device_states_request_builder.go │ │ │ │ ├── managed_e_books_item_install_summary_request_builder.go │ │ │ │ ├── managed_e_books_item_user_state_summary_count_request_builder.go │ │ │ │ ├── managed_e_books_item_user_state_summary_item_device_states_count_request_builder.go │ │ │ │ ├── managed_e_books_item_user_state_summary_item_device_states_device_install_state_item_request_builder.go │ │ │ │ ├── managed_e_books_item_user_state_summary_item_device_states_request_builder.go │ │ │ │ ├── managed_e_books_item_user_state_summary_request_builder.go │ │ │ │ ├── managed_e_books_item_user_state_summary_user_install_state_summary_item_request_builder.go │ │ │ │ ├── managed_e_books_managed_e_book_item_request_builder.go │ │ │ │ ├── managed_e_books_request_builder.go │ │ │ │ ├── mdm_windows_information_protection_policies_count_request_builder.go │ │ │ │ ├── mdm_windows_information_protection_policies_mdm_windows_information_protection_policy_item_request_builder.go │ │ │ │ ├── mdm_windows_information_protection_policies_request_builder.go │ │ │ │ ├── mobile_app_categories_count_request_builder.go │ │ │ │ ├── mobile_app_categories_mobile_app_category_item_request_builder.go │ │ │ │ ├── mobile_app_categories_request_builder.go │ │ │ │ ├── mobile_app_configurations_count_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_assign_post_request_body.go │ │ │ │ ├── mobile_app_configurations_item_assign_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_assignments_count_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_assignments_managed_device_mobile_app_configuration_assignment_item_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_assignments_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_device_status_summary_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_device_statuses_count_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_device_statuses_managed_device_mobile_app_configuration_device_status_item_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_device_statuses_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_user_status_summary_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_user_statuses_count_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_user_statuses_managed_device_mobile_app_configuration_user_status_item_request_builder.go │ │ │ │ ├── mobile_app_configurations_item_user_statuses_request_builder.go │ │ │ │ ├── mobile_app_configurations_managed_device_mobile_app_configuration_item_request_builder.go │ │ │ │ ├── mobile_app_configurations_request_builder.go │ │ │ │ ├── mobile_apps_count_request_builder.go │ │ │ │ ├── mobile_apps_graph_managed_mobile_lob_app_count_request_builder.go │ │ │ │ ├── mobile_apps_graph_managed_mobile_lob_app_request_builder.go │ │ │ │ ├── mobile_apps_graph_mobile_lob_app_count_request_builder.go │ │ │ │ ├── mobile_apps_graph_mobile_lob_app_request_builder.go │ │ │ │ ├── mobile_apps_item_assign_post_request_body.go │ │ │ │ ├── mobile_apps_item_assign_request_builder.go │ │ │ │ ├── mobile_apps_item_assignments_count_request_builder.go │ │ │ │ ├── mobile_apps_item_assignments_mobile_app_assignment_item_request_builder.go │ │ │ │ ├── mobile_apps_item_assignments_request_builder.go │ │ │ │ ├── mobile_apps_item_categories_count_request_builder.go │ │ │ │ ├── mobile_apps_item_categories_mobile_app_category_item_request_builder.go │ │ │ │ ├── mobile_apps_item_categories_request_builder.go │ │ │ │ ├── mobile_apps_item_graph_managed_mobile_lob_app_request_builder.go │ │ │ │ ├── mobile_apps_item_graph_mobile_lob_app_request_builder.go │ │ │ │ ├── mobile_apps_mobile_app_item_request_builder.go │ │ │ │ ├── mobile_apps_request_builder.go │ │ │ │ ├── sync_microsoft_store_for_business_apps_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_count_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_item_apps_count_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_item_apps_managed_mobile_app_item_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_item_apps_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_item_assign_post_request_body.go │ │ │ │ ├── targeted_managed_app_configurations_item_assign_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_item_assignments_count_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_item_assignments_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_item_assignments_targeted_managed_app_policy_assignment_item_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_item_deployment_summary_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_item_target_apps_post_request_body.go │ │ │ │ ├── targeted_managed_app_configurations_item_target_apps_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_request_builder.go │ │ │ │ ├── targeted_managed_app_configurations_targeted_managed_app_configuration_item_request_builder.go │ │ │ │ ├── vpp_tokens_count_request_builder.go │ │ │ │ ├── vpp_tokens_item_sync_licenses_request_builder.go │ │ │ │ ├── vpp_tokens_request_builder.go │ │ │ │ ├── vpp_tokens_vpp_token_item_request_builder.go │ │ │ │ ├── windows_information_protection_policies_count_request_builder.go │ │ │ │ ├── windows_information_protection_policies_request_builder.go │ │ │ │ └── windows_information_protection_policies_windows_information_protection_policy_item_request_builder.go │ │ │ ├── devicemanagement/ │ │ │ │ ├── apple_push_notification_certificate_download_apple_push_notification_certificate_signing_request_request_builder.go │ │ │ │ ├── apple_push_notification_certificate_download_apple_push_notification_certificate_signing_request_response.go │ │ │ │ ├── apple_push_notification_certificate_request_builder.go │ │ │ │ ├── audit_events_audit_event_item_request_builder.go │ │ │ │ ├── audit_events_count_request_builder.go │ │ │ │ ├── audit_events_get_audit_activity_types_with_category_request_builder.go │ │ │ │ ├── audit_events_get_audit_activity_types_with_category_response.go │ │ │ │ ├── audit_events_get_audit_categories_request_builder.go │ │ │ │ ├── audit_events_get_audit_categories_response.go │ │ │ │ ├── audit_events_request_builder.go │ │ │ │ ├── compliance_management_partners_compliance_management_partner_item_request_builder.go │ │ │ │ ├── compliance_management_partners_count_request_builder.go │ │ │ │ ├── compliance_management_partners_request_builder.go │ │ │ │ ├── conditional_access_settings_request_builder.go │ │ │ │ ├── detected_apps_count_request_builder.go │ │ │ │ ├── detected_apps_detected_app_item_request_builder.go │ │ │ │ ├── detected_apps_item_managed_devices_count_request_builder.go │ │ │ │ ├── detected_apps_item_managed_devices_managed_device_item_request_builder.go │ │ │ │ ├── detected_apps_item_managed_devices_request_builder.go │ │ │ │ ├── detected_apps_request_builder.go │ │ │ │ ├── device_categories_count_request_builder.go │ │ │ │ ├── device_categories_device_category_item_request_builder.go │ │ │ │ ├── device_categories_request_builder.go │ │ │ │ ├── device_compliance_policies_count_request_builder.go │ │ │ │ ├── device_compliance_policies_device_compliance_policy_item_request_builder.go │ │ │ │ ├── device_compliance_policies_item_assign_post_request_body.go │ │ │ │ ├── device_compliance_policies_item_assign_request_builder.go │ │ │ │ ├── device_compliance_policies_item_assign_response.go │ │ │ │ ├── device_compliance_policies_item_assignments_count_request_builder.go │ │ │ │ ├── device_compliance_policies_item_assignments_device_compliance_policy_assignment_item_request_builder.go │ │ │ │ ├── device_compliance_policies_item_assignments_request_builder.go │ │ │ │ ├── device_compliance_policies_item_device_setting_state_summaries_count_request_builder.go │ │ │ │ ├── device_compliance_policies_item_device_setting_state_summaries_request_builder.go │ │ │ │ ├── device_compliance_policies_item_device_setting_state_summaries_setting_state_device_summary_item_request_builder.go │ │ │ │ ├── device_compliance_policies_item_device_status_overview_request_builder.go │ │ │ │ ├── device_compliance_policies_item_device_statuses_count_request_builder.go │ │ │ │ ├── device_compliance_policies_item_device_statuses_device_compliance_device_status_item_request_builder.go │ │ │ │ ├── device_compliance_policies_item_device_statuses_request_builder.go │ │ │ │ ├── device_compliance_policies_item_schedule_actions_for_rules_post_request_body.go │ │ │ │ ├── device_compliance_policies_item_schedule_actions_for_rules_request_builder.go │ │ │ │ ├── device_compliance_policies_item_scheduled_actions_for_rule_count_request_builder.go │ │ │ │ ├── device_compliance_policies_item_scheduled_actions_for_rule_device_compliance_scheduled_action_for_rule_item_request_builder.go │ │ │ │ ├── device_compliance_policies_item_scheduled_actions_for_rule_item_scheduled_action_configurations_count_request_builder.go │ │ │ │ ├── device_compliance_policies_item_scheduled_actions_for_rule_item_scheduled_action_configurations_device_compliance_action_item_item_request_builder.go │ │ │ │ ├── device_compliance_policies_item_scheduled_actions_for_rule_item_scheduled_action_configurations_request_builder.go │ │ │ │ ├── device_compliance_policies_item_scheduled_actions_for_rule_request_builder.go │ │ │ │ ├── device_compliance_policies_item_user_status_overview_request_builder.go │ │ │ │ ├── device_compliance_policies_item_user_statuses_count_request_builder.go │ │ │ │ ├── device_compliance_policies_item_user_statuses_device_compliance_user_status_item_request_builder.go │ │ │ │ ├── device_compliance_policies_item_user_statuses_request_builder.go │ │ │ │ ├── device_compliance_policies_request_builder.go │ │ │ │ ├── device_compliance_policy_device_state_summary_request_builder.go │ │ │ │ ├── device_compliance_policy_setting_state_summaries_count_request_builder.go │ │ │ │ ├── device_compliance_policy_setting_state_summaries_device_compliance_policy_setting_state_summary_item_request_builder.go │ │ │ │ ├── device_compliance_policy_setting_state_summaries_item_device_compliance_setting_states_count_request_builder.go │ │ │ │ ├── device_compliance_policy_setting_state_summaries_item_device_compliance_setting_states_device_compliance_setting_state_item_request_builder.go │ │ │ │ ├── device_compliance_policy_setting_state_summaries_item_device_compliance_setting_states_request_builder.go │ │ │ │ ├── device_compliance_policy_setting_state_summaries_request_builder.go │ │ │ │ ├── device_configuration_device_state_summaries_request_builder.go │ │ │ │ ├── device_configurations_count_request_builder.go │ │ │ │ ├── device_configurations_device_configuration_item_request_builder.go │ │ │ │ ├── device_configurations_item_assign_post_request_body.go │ │ │ │ ├── device_configurations_item_assign_request_builder.go │ │ │ │ ├── device_configurations_item_assign_response.go │ │ │ │ ├── device_configurations_item_assignments_count_request_builder.go │ │ │ │ ├── device_configurations_item_assignments_device_configuration_assignment_item_request_builder.go │ │ │ │ ├── device_configurations_item_assignments_request_builder.go │ │ │ │ ├── device_configurations_item_device_setting_state_summaries_count_request_builder.go │ │ │ │ ├── device_configurations_item_device_setting_state_summaries_request_builder.go │ │ │ │ ├── device_configurations_item_device_setting_state_summaries_setting_state_device_summary_item_request_builder.go │ │ │ │ ├── device_configurations_item_device_status_overview_request_builder.go │ │ │ │ ├── device_configurations_item_device_statuses_count_request_builder.go │ │ │ │ ├── device_configurations_item_device_statuses_device_configuration_device_status_item_request_builder.go │ │ │ │ ├── device_configurations_item_device_statuses_request_builder.go │ │ │ │ ├── device_configurations_item_get_oma_setting_plain_text_value_with_secret_reference_value_id_request_builder.go │ │ │ │ ├── device_configurations_item_get_oma_setting_plain_text_value_with_secret_reference_value_id_response.go │ │ │ │ ├── device_configurations_item_user_status_overview_request_builder.go │ │ │ │ ├── device_configurations_item_user_statuses_count_request_builder.go │ │ │ │ ├── device_configurations_item_user_statuses_device_configuration_user_status_item_request_builder.go │ │ │ │ ├── device_configurations_item_user_statuses_request_builder.go │ │ │ │ ├── device_configurations_request_builder.go │ │ │ │ ├── device_enrollment_configurations_count_request_builder.go │ │ │ │ ├── device_enrollment_configurations_device_enrollment_configuration_item_request_builder.go │ │ │ │ ├── device_enrollment_configurations_item_assign_post_request_body.go │ │ │ │ ├── device_enrollment_configurations_item_assign_request_builder.go │ │ │ │ ├── device_enrollment_configurations_item_assignments_count_request_builder.go │ │ │ │ ├── device_enrollment_configurations_item_assignments_enrollment_configuration_assignment_item_request_builder.go │ │ │ │ ├── device_enrollment_configurations_item_assignments_request_builder.go │ │ │ │ ├── device_enrollment_configurations_item_set_priority_post_request_body.go │ │ │ │ ├── device_enrollment_configurations_item_set_priority_request_builder.go │ │ │ │ ├── device_enrollment_configurations_request_builder.go │ │ │ │ ├── device_management_partners_count_request_builder.go │ │ │ │ ├── device_management_partners_device_management_partner_item_request_builder.go │ │ │ │ ├── device_management_partners_item_terminate_request_builder.go │ │ │ │ ├── device_management_partners_request_builder.go │ │ │ │ ├── device_management_request_builder.go │ │ │ │ ├── exchange_connectors_count_request_builder.go │ │ │ │ ├── exchange_connectors_device_management_exchange_connector_item_request_builder.go │ │ │ │ ├── exchange_connectors_item_sync_post_request_body.go │ │ │ │ ├── exchange_connectors_item_sync_request_builder.go │ │ │ │ ├── exchange_connectors_request_builder.go │ │ │ │ ├── get_effective_permissions_with_scope_request_builder.go │ │ │ │ ├── get_effective_permissions_with_scope_response.go │ │ │ │ ├── imported_windows_autopilot_device_identities_count_request_builder.go │ │ │ │ ├── imported_windows_autopilot_device_identities_import_post_request_body.go │ │ │ │ ├── imported_windows_autopilot_device_identities_import_request_builder.go │ │ │ │ ├── imported_windows_autopilot_device_identities_import_response.go │ │ │ │ ├── imported_windows_autopilot_device_identities_imported_windows_autopilot_device_identity_item_request_builder.go │ │ │ │ ├── imported_windows_autopilot_device_identities_request_builder.go │ │ │ │ ├── ios_update_statuses_count_request_builder.go │ │ │ │ ├── ios_update_statuses_ios_update_device_status_item_request_builder.go │ │ │ │ ├── ios_update_statuses_request_builder.go │ │ │ │ ├── managed_device_overview_request_builder.go │ │ │ │ ├── managed_devices_count_request_builder.go │ │ │ │ ├── managed_devices_item_bypass_activation_lock_request_builder.go │ │ │ │ ├── managed_devices_item_clean_windows_device_post_request_body.go │ │ │ │ ├── managed_devices_item_clean_windows_device_request_builder.go │ │ │ │ ├── managed_devices_item_delete_user_from_shared_apple_device_post_request_body.go │ │ │ │ ├── managed_devices_item_delete_user_from_shared_apple_device_request_builder.go │ │ │ │ ├── managed_devices_item_device_category_request_builder.go │ │ │ │ ├── managed_devices_item_device_compliance_policy_states_count_request_builder.go │ │ │ │ ├── managed_devices_item_device_compliance_policy_states_device_compliance_policy_state_item_request_builder.go │ │ │ │ ├── managed_devices_item_device_compliance_policy_states_request_builder.go │ │ │ │ ├── managed_devices_item_device_configuration_states_count_request_builder.go │ │ │ │ ├── managed_devices_item_device_configuration_states_device_configuration_state_item_request_builder.go │ │ │ │ ├── managed_devices_item_device_configuration_states_request_builder.go │ │ │ │ ├── managed_devices_item_disable_lost_mode_request_builder.go │ │ │ │ ├── managed_devices_item_locate_device_request_builder.go │ │ │ │ ├── managed_devices_item_logout_shared_apple_device_active_user_request_builder.go │ │ │ │ ├── managed_devices_item_reboot_now_request_builder.go │ │ │ │ ├── managed_devices_item_recover_passcode_request_builder.go │ │ │ │ ├── managed_devices_item_remote_lock_request_builder.go │ │ │ │ ├── managed_devices_item_request_remote_assistance_request_builder.go │ │ │ │ ├── managed_devices_item_reset_passcode_request_builder.go │ │ │ │ ├── managed_devices_item_retire_request_builder.go │ │ │ │ ├── managed_devices_item_shut_down_request_builder.go │ │ │ │ ├── managed_devices_item_sync_device_request_builder.go │ │ │ │ ├── managed_devices_item_update_windows_device_account_post_request_body.go │ │ │ │ ├── managed_devices_item_update_windows_device_account_request_builder.go │ │ │ │ ├── managed_devices_item_users_request_builder.go │ │ │ │ ├── managed_devices_item_windows_defender_scan_post_request_body.go │ │ │ │ ├── managed_devices_item_windows_defender_scan_request_builder.go │ │ │ │ ├── managed_devices_item_windows_defender_update_signatures_request_builder.go │ │ │ │ ├── managed_devices_item_wipe_post_request_body.go │ │ │ │ ├── managed_devices_item_wipe_request_builder.go │ │ │ │ ├── managed_devices_managed_device_item_request_builder.go │ │ │ │ ├── managed_devices_request_builder.go │ │ │ │ ├── mobile_threat_defense_connectors_count_request_builder.go │ │ │ │ ├── mobile_threat_defense_connectors_mobile_threat_defense_connector_item_request_builder.go │ │ │ │ ├── mobile_threat_defense_connectors_request_builder.go │ │ │ │ ├── notification_message_templates_count_request_builder.go │ │ │ │ ├── notification_message_templates_item_localized_notification_messages_count_request_builder.go │ │ │ │ ├── notification_message_templates_item_localized_notification_messages_localized_notification_message_item_request_builder.go │ │ │ │ ├── notification_message_templates_item_localized_notification_messages_request_builder.go │ │ │ │ ├── notification_message_templates_item_send_test_message_request_builder.go │ │ │ │ ├── notification_message_templates_notification_message_template_item_request_builder.go │ │ │ │ ├── notification_message_templates_request_builder.go │ │ │ │ ├── remote_assistance_partners_count_request_builder.go │ │ │ │ ├── remote_assistance_partners_item_begin_onboarding_request_builder.go │ │ │ │ ├── remote_assistance_partners_item_disconnect_request_builder.go │ │ │ │ ├── remote_assistance_partners_remote_assistance_partner_item_request_builder.go │ │ │ │ ├── remote_assistance_partners_request_builder.go │ │ │ │ ├── reports_export_jobs_count_request_builder.go │ │ │ │ ├── reports_export_jobs_device_management_export_job_item_request_builder.go │ │ │ │ ├── reports_export_jobs_request_builder.go │ │ │ │ ├── reports_get_cached_report_post_request_body.go │ │ │ │ ├── reports_get_cached_report_request_builder.go │ │ │ │ ├── reports_get_compliance_policy_non_compliance_report_post_request_body.go │ │ │ │ ├── reports_get_compliance_policy_non_compliance_report_request_builder.go │ │ │ │ ├── reports_get_compliance_policy_non_compliance_summary_report_post_request_body.go │ │ │ │ ├── reports_get_compliance_policy_non_compliance_summary_report_request_builder.go │ │ │ │ ├── reports_get_compliance_setting_non_compliance_report_post_request_body.go │ │ │ │ ├── reports_get_compliance_setting_non_compliance_report_request_builder.go │ │ │ │ ├── reports_get_configuration_policy_non_compliance_report_post_request_body.go │ │ │ │ ├── reports_get_configuration_policy_non_compliance_report_request_builder.go │ │ │ │ ├── reports_get_configuration_policy_non_compliance_summary_report_post_request_body.go │ │ │ │ ├── reports_get_configuration_policy_non_compliance_summary_report_request_builder.go │ │ │ │ ├── reports_get_configuration_setting_non_compliance_report_post_request_body.go │ │ │ │ ├── reports_get_configuration_setting_non_compliance_report_request_builder.go │ │ │ │ ├── reports_get_device_management_intent_per_setting_contributing_profiles_post_request_body.go │ │ │ │ ├── reports_get_device_management_intent_per_setting_contributing_profiles_request_builder.go │ │ │ │ ├── reports_get_device_management_intent_settings_report_post_request_body.go │ │ │ │ ├── reports_get_device_management_intent_settings_report_request_builder.go │ │ │ │ ├── reports_get_device_non_compliance_report_post_request_body.go │ │ │ │ ├── reports_get_device_non_compliance_report_request_builder.go │ │ │ │ ├── reports_get_devices_without_compliance_policy_report_post_request_body.go │ │ │ │ ├── reports_get_devices_without_compliance_policy_report_request_builder.go │ │ │ │ ├── reports_get_historical_report_post_request_body.go │ │ │ │ ├── reports_get_historical_report_request_builder.go │ │ │ │ ├── reports_get_noncompliant_devices_and_settings_report_post_request_body.go │ │ │ │ ├── reports_get_noncompliant_devices_and_settings_report_request_builder.go │ │ │ │ ├── reports_get_policy_non_compliance_metadata_post_request_body.go │ │ │ │ ├── reports_get_policy_non_compliance_metadata_request_builder.go │ │ │ │ ├── reports_get_policy_non_compliance_report_post_request_body.go │ │ │ │ ├── reports_get_policy_non_compliance_report_request_builder.go │ │ │ │ ├── reports_get_policy_non_compliance_summary_report_post_request_body.go │ │ │ │ ├── reports_get_policy_non_compliance_summary_report_request_builder.go │ │ │ │ ├── reports_get_report_filters_post_request_body.go │ │ │ │ ├── reports_get_report_filters_request_builder.go │ │ │ │ ├── reports_get_setting_non_compliance_report_post_request_body.go │ │ │ │ ├── reports_get_setting_non_compliance_report_request_builder.go │ │ │ │ ├── reports_request_builder.go │ │ │ │ ├── resource_operations_count_request_builder.go │ │ │ │ ├── resource_operations_request_builder.go │ │ │ │ ├── resource_operations_resource_operation_item_request_builder.go │ │ │ │ ├── role_assignments_count_request_builder.go │ │ │ │ ├── role_assignments_device_and_app_management_role_assignment_item_request_builder.go │ │ │ │ ├── role_assignments_request_builder.go │ │ │ │ ├── role_definitions_count_request_builder.go │ │ │ │ ├── role_definitions_item_role_assignments_count_request_builder.go │ │ │ │ ├── role_definitions_item_role_assignments_item_role_definition_request_builder.go │ │ │ │ ├── role_definitions_item_role_assignments_request_builder.go │ │ │ │ ├── role_definitions_item_role_assignments_role_assignment_item_request_builder.go │ │ │ │ ├── role_definitions_request_builder.go │ │ │ │ ├── role_definitions_role_definition_item_request_builder.go │ │ │ │ ├── software_update_status_summary_request_builder.go │ │ │ │ ├── telecom_expense_management_partners_count_request_builder.go │ │ │ │ ├── telecom_expense_management_partners_request_builder.go │ │ │ │ ├── telecom_expense_management_partners_telecom_expense_management_partner_item_request_builder.go │ │ │ │ ├── terms_and_conditions_count_request_builder.go │ │ │ │ ├── terms_and_conditions_item_acceptance_statuses_count_request_builder.go │ │ │ │ ├── terms_and_conditions_item_acceptance_statuses_item_terms_and_conditions_request_builder.go │ │ │ │ ├── terms_and_conditions_item_acceptance_statuses_request_builder.go │ │ │ │ ├── terms_and_conditions_item_acceptance_statuses_terms_and_conditions_acceptance_status_item_request_builder.go │ │ │ │ ├── terms_and_conditions_item_assignments_count_request_builder.go │ │ │ │ ├── terms_and_conditions_item_assignments_request_builder.go │ │ │ │ ├── terms_and_conditions_item_assignments_terms_and_conditions_assignment_item_request_builder.go │ │ │ │ ├── terms_and_conditions_request_builder.go │ │ │ │ ├── terms_and_conditions_terms_and_conditions_item_request_builder.go │ │ │ │ ├── troubleshooting_events_count_request_builder.go │ │ │ │ ├── troubleshooting_events_device_management_troubleshooting_event_item_request_builder.go │ │ │ │ ├── troubleshooting_events_request_builder.go │ │ │ │ ├── verify_windows_enrollment_auto_discovery_with_domain_name_request_builder.go │ │ │ │ ├── verify_windows_enrollment_auto_discovery_with_domain_name_response.go │ │ │ │ ├── windows_autopilot_device_identities_count_request_builder.go │ │ │ │ ├── windows_autopilot_device_identities_item_assign_user_to_device_post_request_body.go │ │ │ │ ├── windows_autopilot_device_identities_item_assign_user_to_device_request_builder.go │ │ │ │ ├── windows_autopilot_device_identities_item_unassign_user_from_device_request_builder.go │ │ │ │ ├── windows_autopilot_device_identities_item_update_device_properties_post_request_body.go │ │ │ │ ├── windows_autopilot_device_identities_item_update_device_properties_request_builder.go │ │ │ │ ├── windows_autopilot_device_identities_request_builder.go │ │ │ │ ├── windows_autopilot_device_identities_windows_autopilot_device_identity_item_request_builder.go │ │ │ │ ├── windows_information_protection_app_learning_summaries_count_request_builder.go │ │ │ │ ├── windows_information_protection_app_learning_summaries_request_builder.go │ │ │ │ ├── windows_information_protection_app_learning_summaries_windows_information_protection_app_learning_summary_item_request_builder.go │ │ │ │ ├── windows_information_protection_network_learning_summaries_count_request_builder.go │ │ │ │ ├── windows_information_protection_network_learning_summaries_request_builder.go │ │ │ │ └── windows_information_protection_network_learning_summaries_windows_information_protection_network_learning_summary_item_request_builder.go │ │ │ ├── devices/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── device_item_request_builder.go │ │ │ │ ├── devices_request_builder.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_extensions_count_request_builder.go │ │ │ │ ├── item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_extensions_request_builder.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_member_of_count_request_builder.go │ │ │ │ ├── item_member_of_directory_object_item_request_builder.go │ │ │ │ ├── item_member_of_graph_administrative_unit_count_request_builder.go │ │ │ │ ├── item_member_of_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_member_of_graph_group_count_request_builder.go │ │ │ │ ├── item_member_of_graph_group_request_builder.go │ │ │ │ ├── item_member_of_item_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_member_of_item_graph_group_request_builder.go │ │ │ │ ├── item_member_of_request_builder.go │ │ │ │ ├── item_registered_owners_count_request_builder.go │ │ │ │ ├── item_registered_owners_directory_object_item_request_builder.go │ │ │ │ ├── item_registered_owners_graph_app_role_assignment_count_request_builder.go │ │ │ │ ├── item_registered_owners_graph_app_role_assignment_request_builder.go │ │ │ │ ├── item_registered_owners_graph_endpoint_count_request_builder.go │ │ │ │ ├── item_registered_owners_graph_endpoint_request_builder.go │ │ │ │ ├── item_registered_owners_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_registered_owners_graph_service_principal_request_builder.go │ │ │ │ ├── item_registered_owners_graph_user_count_request_builder.go │ │ │ │ ├── item_registered_owners_graph_user_request_builder.go │ │ │ │ ├── item_registered_owners_item_graph_app_role_assignment_request_builder.go │ │ │ │ ├── item_registered_owners_item_graph_endpoint_request_builder.go │ │ │ │ ├── item_registered_owners_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_registered_owners_item_graph_user_request_builder.go │ │ │ │ ├── item_registered_owners_item_ref_request_builder.go │ │ │ │ ├── item_registered_owners_ref_request_builder.go │ │ │ │ ├── item_registered_owners_request_builder.go │ │ │ │ ├── item_registered_users_count_request_builder.go │ │ │ │ ├── item_registered_users_directory_object_item_request_builder.go │ │ │ │ ├── item_registered_users_graph_app_role_assignment_count_request_builder.go │ │ │ │ ├── item_registered_users_graph_app_role_assignment_request_builder.go │ │ │ │ ├── item_registered_users_graph_endpoint_count_request_builder.go │ │ │ │ ├── item_registered_users_graph_endpoint_request_builder.go │ │ │ │ ├── item_registered_users_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_registered_users_graph_service_principal_request_builder.go │ │ │ │ ├── item_registered_users_graph_user_count_request_builder.go │ │ │ │ ├── item_registered_users_graph_user_request_builder.go │ │ │ │ ├── item_registered_users_item_graph_app_role_assignment_request_builder.go │ │ │ │ ├── item_registered_users_item_graph_endpoint_request_builder.go │ │ │ │ ├── item_registered_users_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_registered_users_item_graph_user_request_builder.go │ │ │ │ ├── item_registered_users_request_builder.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── item_transitive_member_of_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_directory_object_item_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_administrative_unit_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_group_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_group_request_builder.go │ │ │ │ ├── item_transitive_member_of_item_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_transitive_member_of_item_graph_group_request_builder.go │ │ │ │ ├── item_transitive_member_of_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── directory/ │ │ │ │ ├── administrative_units_administrative_unit_item_request_builder.go │ │ │ │ ├── administrative_units_count_request_builder.go │ │ │ │ ├── administrative_units_delta_request_builder.go │ │ │ │ ├── administrative_units_delta_response.go │ │ │ │ ├── administrative_units_item_extensions_count_request_builder.go │ │ │ │ ├── administrative_units_item_extensions_extension_item_request_builder.go │ │ │ │ ├── administrative_units_item_extensions_request_builder.go │ │ │ │ ├── administrative_units_item_members_count_request_builder.go │ │ │ │ ├── administrative_units_item_members_directory_object_item_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_application_count_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_application_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_device_count_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_device_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_group_count_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_group_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_org_contact_count_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_org_contact_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_service_principal_count_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_service_principal_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_user_count_request_builder.go │ │ │ │ ├── administrative_units_item_members_graph_user_request_builder.go │ │ │ │ ├── administrative_units_item_members_item_graph_application_request_builder.go │ │ │ │ ├── administrative_units_item_members_item_graph_device_request_builder.go │ │ │ │ ├── administrative_units_item_members_item_graph_group_request_builder.go │ │ │ │ ├── administrative_units_item_members_item_graph_org_contact_request_builder.go │ │ │ │ ├── administrative_units_item_members_item_graph_service_principal_request_builder.go │ │ │ │ ├── administrative_units_item_members_item_graph_user_request_builder.go │ │ │ │ ├── administrative_units_item_members_item_ref_request_builder.go │ │ │ │ ├── administrative_units_item_members_ref_request_builder.go │ │ │ │ ├── administrative_units_item_members_request_builder.go │ │ │ │ ├── administrative_units_item_scoped_role_members_count_request_builder.go │ │ │ │ ├── administrative_units_item_scoped_role_members_request_builder.go │ │ │ │ ├── administrative_units_item_scoped_role_members_scoped_role_membership_item_request_builder.go │ │ │ │ ├── administrative_units_request_builder.go │ │ │ │ ├── deleted_items_count_request_builder.go │ │ │ │ ├── deleted_items_delta_request_builder.go │ │ │ │ ├── deleted_items_delta_response.go │ │ │ │ ├── deleted_items_directory_object_item_request_builder.go │ │ │ │ ├── deleted_items_get_available_extension_properties_post_request_body.go │ │ │ │ ├── deleted_items_get_available_extension_properties_request_builder.go │ │ │ │ ├── deleted_items_get_available_extension_properties_response.go │ │ │ │ ├── deleted_items_get_by_ids_post_request_body.go │ │ │ │ ├── deleted_items_get_by_ids_request_builder.go │ │ │ │ ├── deleted_items_get_by_ids_response.go │ │ │ │ ├── deleted_items_graph_application_count_request_builder.go │ │ │ │ ├── deleted_items_graph_application_request_builder.go │ │ │ │ ├── deleted_items_graph_group_count_request_builder.go │ │ │ │ ├── deleted_items_graph_group_request_builder.go │ │ │ │ ├── deleted_items_graph_user_count_request_builder.go │ │ │ │ ├── deleted_items_graph_user_request_builder.go │ │ │ │ ├── deleted_items_item_check_member_groups_post_request_body.go │ │ │ │ ├── deleted_items_item_check_member_groups_request_builder.go │ │ │ │ ├── deleted_items_item_check_member_groups_response.go │ │ │ │ ├── deleted_items_item_check_member_objects_post_request_body.go │ │ │ │ ├── deleted_items_item_check_member_objects_request_builder.go │ │ │ │ ├── deleted_items_item_check_member_objects_response.go │ │ │ │ ├── deleted_items_item_get_member_groups_post_request_body.go │ │ │ │ ├── deleted_items_item_get_member_groups_request_builder.go │ │ │ │ ├── deleted_items_item_get_member_groups_response.go │ │ │ │ ├── deleted_items_item_get_member_objects_post_request_body.go │ │ │ │ ├── deleted_items_item_get_member_objects_request_builder.go │ │ │ │ ├── deleted_items_item_get_member_objects_response.go │ │ │ │ ├── deleted_items_item_graph_application_request_builder.go │ │ │ │ ├── deleted_items_item_graph_group_request_builder.go │ │ │ │ ├── deleted_items_item_graph_user_request_builder.go │ │ │ │ ├── deleted_items_item_restore_request_builder.go │ │ │ │ ├── deleted_items_request_builder.go │ │ │ │ ├── deleted_items_validate_properties_post_request_body.go │ │ │ │ ├── deleted_items_validate_properties_request_builder.go │ │ │ │ ├── directory_request_builder.go │ │ │ │ ├── federation_configurations_available_provider_types_request_builder.go │ │ │ │ ├── federation_configurations_available_provider_types_response.go │ │ │ │ ├── federation_configurations_count_request_builder.go │ │ │ │ ├── federation_configurations_identity_provider_base_item_request_builder.go │ │ │ │ ├── federation_configurations_request_builder.go │ │ │ │ ├── on_premises_synchronization_count_request_builder.go │ │ │ │ ├── on_premises_synchronization_on_premises_directory_synchronization_item_request_builder.go │ │ │ │ └── on_premises_synchronization_request_builder.go │ │ │ ├── directoryobjects/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── directory_object_item_request_builder.go │ │ │ │ ├── directory_objects_request_builder.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── directoryroles/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── directory_role_item_request_builder.go │ │ │ │ ├── directory_roles_request_builder.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_members_count_request_builder.go │ │ │ │ ├── item_members_directory_object_item_request_builder.go │ │ │ │ ├── item_members_graph_application_count_request_builder.go │ │ │ │ ├── item_members_graph_application_request_builder.go │ │ │ │ ├── item_members_graph_device_count_request_builder.go │ │ │ │ ├── item_members_graph_device_request_builder.go │ │ │ │ ├── item_members_graph_group_count_request_builder.go │ │ │ │ ├── item_members_graph_group_request_builder.go │ │ │ │ ├── item_members_graph_org_contact_count_request_builder.go │ │ │ │ ├── item_members_graph_org_contact_request_builder.go │ │ │ │ ├── item_members_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_members_graph_service_principal_request_builder.go │ │ │ │ ├── item_members_graph_user_count_request_builder.go │ │ │ │ ├── item_members_graph_user_request_builder.go │ │ │ │ ├── item_members_item_graph_application_request_builder.go │ │ │ │ ├── item_members_item_graph_device_request_builder.go │ │ │ │ ├── item_members_item_graph_group_request_builder.go │ │ │ │ ├── item_members_item_graph_org_contact_request_builder.go │ │ │ │ ├── item_members_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_members_item_graph_user_request_builder.go │ │ │ │ ├── item_members_item_ref_request_builder.go │ │ │ │ ├── item_members_ref_request_builder.go │ │ │ │ ├── item_members_request_builder.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── item_scoped_members_count_request_builder.go │ │ │ │ ├── item_scoped_members_request_builder.go │ │ │ │ ├── item_scoped_members_scoped_role_membership_item_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── directoryroletemplates/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── directory_role_template_item_request_builder.go │ │ │ │ ├── directory_role_templates_request_builder.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── domaindnsrecords/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── domain_dns_record_item_request_builder.go │ │ │ │ └── domain_dns_records_request_builder.go │ │ │ ├── domains/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── domain_item_request_builder.go │ │ │ │ ├── domains_request_builder.go │ │ │ │ ├── item_domain_name_references_count_request_builder.go │ │ │ │ ├── item_domain_name_references_directory_object_item_request_builder.go │ │ │ │ ├── item_domain_name_references_request_builder.go │ │ │ │ ├── item_federation_configuration_count_request_builder.go │ │ │ │ ├── item_federation_configuration_internal_domain_federation_item_request_builder.go │ │ │ │ ├── item_federation_configuration_request_builder.go │ │ │ │ ├── item_force_delete_post_request_body.go │ │ │ │ ├── item_force_delete_request_builder.go │ │ │ │ ├── item_promote_request_builder.go │ │ │ │ ├── item_promote_response.go │ │ │ │ ├── item_service_configuration_records_count_request_builder.go │ │ │ │ ├── item_service_configuration_records_domain_dns_record_item_request_builder.go │ │ │ │ ├── item_service_configuration_records_request_builder.go │ │ │ │ ├── item_verification_dns_records_count_request_builder.go │ │ │ │ ├── item_verification_dns_records_domain_dns_record_item_request_builder.go │ │ │ │ ├── item_verification_dns_records_request_builder.go │ │ │ │ └── item_verify_request_builder.go │ │ │ ├── drives/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── drive_item_request_builder.go │ │ │ │ ├── drives_request_builder.go │ │ │ │ ├── item_bundles_count_request_builder.go │ │ │ │ ├── item_bundles_drive_item_item_request_builder.go │ │ │ │ ├── item_bundles_item_content_request_builder.go │ │ │ │ ├── item_bundles_request_builder.go │ │ │ │ ├── item_following_count_request_builder.go │ │ │ │ ├── item_following_drive_item_item_request_builder.go │ │ │ │ ├── item_following_item_content_request_builder.go │ │ │ │ ├── item_following_request_builder.go │ │ │ │ ├── item_items_count_request_builder.go │ │ │ │ ├── item_items_drive_item_item_request_builder.go │ │ │ │ ├── item_items_item_analytics_all_time_request_builder.go │ │ │ │ ├── item_items_item_analytics_item_activity_stats_count_request_builder.go │ │ │ │ ├── item_items_item_analytics_item_activity_stats_item_activities_count_request_builder.go │ │ │ │ ├── item_items_item_analytics_item_activity_stats_item_activities_item_activity_item_request_builder.go │ │ │ │ ├── item_items_item_analytics_item_activity_stats_item_activities_item_drive_item_content_request_builder.go │ │ │ │ ├── item_items_item_analytics_item_activity_stats_item_activities_item_drive_item_request_builder.go │ │ │ │ ├── item_items_item_analytics_item_activity_stats_item_activities_request_builder.go │ │ │ │ ├── item_items_item_analytics_item_activity_stats_item_activity_stat_item_request_builder.go │ │ │ │ ├── item_items_item_analytics_item_activity_stats_request_builder.go │ │ │ │ ├── item_items_item_analytics_last_seven_days_request_builder.go │ │ │ │ ├── item_items_item_analytics_request_builder.go │ │ │ │ ├── item_items_item_checkin_post_request_body.go │ │ │ │ ├── item_items_item_checkin_request_builder.go │ │ │ │ ├── item_items_item_checkout_request_builder.go │ │ │ │ ├── item_items_item_children_count_request_builder.go │ │ │ │ ├── item_items_item_children_drive_item_item_request_builder.go │ │ │ │ ├── item_items_item_children_item_content_request_builder.go │ │ │ │ ├── item_items_item_children_request_builder.go │ │ │ │ ├── item_items_item_content_request_builder.go │ │ │ │ ├── item_items_item_copy_post_request_body.go │ │ │ │ ├── item_items_item_copy_request_builder.go │ │ │ │ ├── item_items_item_create_link_post_request_body.go │ │ │ │ ├── item_items_item_create_link_request_builder.go │ │ │ │ ├── item_items_item_create_upload_session_post_request_body.go │ │ │ │ ├── item_items_item_create_upload_session_request_builder.go │ │ │ │ ├── item_items_item_delta_request_builder.go │ │ │ │ ├── item_items_item_delta_response.go │ │ │ │ ├── item_items_item_delta_with_token_request_builder.go │ │ │ │ ├── item_items_item_delta_with_token_response.go │ │ │ │ ├── item_items_item_follow_request_builder.go │ │ │ │ ├── item_items_item_get_activities_by_interval_request_builder.go │ │ │ │ ├── item_items_item_get_activities_by_interval_response.go │ │ │ │ ├── item_items_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_request_builder.go │ │ │ │ ├── item_items_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_response.go │ │ │ │ ├── item_items_item_invite_post_request_body.go │ │ │ │ ├── item_items_item_invite_request_builder.go │ │ │ │ ├── item_items_item_invite_response.go │ │ │ │ ├── item_items_item_list_item_request_builder.go │ │ │ │ ├── item_items_item_permissions_count_request_builder.go │ │ │ │ ├── item_items_item_permissions_item_grant_post_request_body.go │ │ │ │ ├── item_items_item_permissions_item_grant_request_builder.go │ │ │ │ ├── item_items_item_permissions_item_grant_response.go │ │ │ │ ├── item_items_item_permissions_permission_item_request_builder.go │ │ │ │ ├── item_items_item_permissions_request_builder.go │ │ │ │ ├── item_items_item_preview_post_request_body.go │ │ │ │ ├── item_items_item_preview_request_builder.go │ │ │ │ ├── item_items_item_restore_post_request_body.go │ │ │ │ ├── item_items_item_restore_request_builder.go │ │ │ │ ├── item_items_item_search_with_q_request_builder.go │ │ │ │ ├── item_items_item_search_with_q_response.go │ │ │ │ ├── item_items_item_subscriptions_count_request_builder.go │ │ │ │ ├── item_items_item_subscriptions_item_reauthorize_request_builder.go │ │ │ │ ├── item_items_item_subscriptions_request_builder.go │ │ │ │ ├── item_items_item_subscriptions_subscription_item_request_builder.go │ │ │ │ ├── item_items_item_thumbnails_count_request_builder.go │ │ │ │ ├── item_items_item_thumbnails_request_builder.go │ │ │ │ ├── item_items_item_thumbnails_thumbnail_set_item_request_builder.go │ │ │ │ ├── item_items_item_unfollow_request_builder.go │ │ │ │ ├── item_items_item_validate_permission_post_request_body.go │ │ │ │ ├── item_items_item_validate_permission_request_builder.go │ │ │ │ ├── item_items_item_versions_count_request_builder.go │ │ │ │ ├── item_items_item_versions_drive_item_version_item_request_builder.go │ │ │ │ ├── item_items_item_versions_item_content_request_builder.go │ │ │ │ ├── item_items_item_versions_item_restore_version_request_builder.go │ │ │ │ ├── item_items_item_versions_request_builder.go │ │ │ │ ├── item_items_item_workbook_application_calculate_post_request_body.go │ │ │ │ ├── item_items_item_workbook_application_calculate_request_builder.go │ │ │ │ ├── item_items_item_workbook_application_request_builder.go │ │ │ │ ├── item_items_item_workbook_close_session_request_builder.go │ │ │ │ ├── item_items_item_workbook_comments_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_comments_item_replies_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_comments_item_replies_request_builder.go │ │ │ │ ├── item_items_item_workbook_comments_item_replies_workbook_comment_reply_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_comments_request_builder.go │ │ │ │ ├── item_items_item_workbook_comments_workbook_comment_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_create_session_post_request_body.go │ │ │ │ ├── item_items_item_workbook_create_session_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_abs_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_abs_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_accr_int_m_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_accr_int_m_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_accr_int_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_accr_int_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_acos_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_acos_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_acosh_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_acosh_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_acot_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_acot_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_acoth_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_acoth_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_amor_degrc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_amor_degrc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_amor_linc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_amor_linc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_and_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_and_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_arabic_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_arabic_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_areas_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_areas_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_asc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_asc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_asin_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_asin_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_asinh_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_asinh_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_atan2_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_atan2_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_atan_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_atan_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_atanh_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_atanh_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_ave_dev_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_ave_dev_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_average_a_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_average_a_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_average_if_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_average_if_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_average_ifs_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_average_ifs_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_average_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_average_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_baht_text_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_baht_text_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_base_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_base_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bessel_i_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bessel_i_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bessel_j_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bessel_j_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bessel_k_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bessel_k_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bessel_y_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bessel_y_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_beta_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_beta_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_beta_inv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_beta_inv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bin2_dec_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bin2_dec_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bin2_hex_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bin2_hex_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bin2_oct_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bin2_oct_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_binom_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_binom_dist_range_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_binom_dist_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_binom_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_binom_inv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_binom_inv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bitand_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bitand_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bitlshift_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bitlshift_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bitor_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bitor_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bitrshift_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bitrshift_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_bitxor_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_bitxor_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_ceiling_math_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_ceiling_math_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_ceiling_precise_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_ceiling_precise_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_char_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_char_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_chi_sq_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_chi_sq_dist_r_t_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_chi_sq_dist_r_t_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_chi_sq_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_chi_sq_inv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_chi_sq_inv_r_t_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_chi_sq_inv_r_t_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_chi_sq_inv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_choose_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_choose_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_clean_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_clean_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_code_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_code_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_columns_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_columns_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_combin_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_combin_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_combina_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_combina_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_complex_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_complex_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_concatenate_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_concatenate_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_confidence_norm_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_confidence_norm_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_confidence_t_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_confidence_t_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_convert_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_convert_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_cos_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_cos_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_cosh_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_cosh_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_cot_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_cot_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_coth_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_coth_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_count_a_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_count_a_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_count_blank_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_count_blank_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_count_if_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_count_if_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_count_ifs_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_count_ifs_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_count_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_coup_day_bs_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_coup_day_bs_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_coup_days_nc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_coup_days_nc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_coup_days_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_coup_days_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_coup_ncd_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_coup_ncd_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_coup_num_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_coup_num_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_coup_pcd_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_coup_pcd_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_csc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_csc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_csch_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_csch_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_cum_i_pmt_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_cum_i_pmt_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_cum_princ_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_cum_princ_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_date_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_date_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_datevalue_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_datevalue_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_daverage_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_daverage_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_day_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_day_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_days360_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_days360_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_days_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_days_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_db_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_db_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dbcs_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dbcs_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dcount_a_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dcount_a_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dcount_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dcount_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_ddb_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_ddb_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dec2_bin_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dec2_bin_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dec2_hex_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dec2_hex_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dec2_oct_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dec2_oct_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_decimal_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_decimal_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_degrees_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_degrees_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_delta_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_delta_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dev_sq_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dev_sq_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dget_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dget_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_disc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_disc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dmax_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dmax_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dmin_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dmin_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dollar_de_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dollar_de_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dollar_fr_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dollar_fr_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dollar_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dollar_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dproduct_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dproduct_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dst_dev_p_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dst_dev_p_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dst_dev_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dst_dev_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dsum_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dsum_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_duration_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_duration_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dvar_p_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dvar_p_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_dvar_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_dvar_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_ecma_ceiling_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_ecma_ceiling_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_edate_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_edate_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_effect_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_effect_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_eo_month_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_eo_month_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_erf_c_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_erf_c_precise_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_erf_c_precise_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_erf_c_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_erf_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_erf_precise_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_erf_precise_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_erf_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_error_type_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_error_type_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_even_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_even_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_exact_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_exact_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_exp_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_exp_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_expon_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_expon_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_f_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_f_dist_r_t_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_f_dist_r_t_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_f_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_f_inv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_f_inv_r_t_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_f_inv_r_t_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_f_inv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_fact_double_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_fact_double_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_fact_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_fact_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_false_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_find_b_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_find_b_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_find_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_find_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_fisher_inv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_fisher_inv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_fisher_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_fisher_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_fixed_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_fixed_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_floor_math_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_floor_math_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_floor_precise_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_floor_precise_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_fv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_fv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_fvschedule_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_fvschedule_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_gamma_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_gamma_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_gamma_inv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_gamma_inv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_gamma_ln_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_gamma_ln_precise_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_gamma_ln_precise_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_gamma_ln_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_gamma_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_gamma_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_gauss_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_gauss_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_gcd_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_gcd_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_ge_step_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_ge_step_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_geo_mean_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_geo_mean_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_har_mean_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_har_mean_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_hex2_bin_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_hex2_bin_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_hex2_dec_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_hex2_dec_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_hex2_oct_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_hex2_oct_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_hlookup_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_hlookup_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_hour_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_hour_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_hyp_geom_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_hyp_geom_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_hyperlink_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_hyperlink_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_if_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_if_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_abs_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_abs_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_argument_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_argument_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_conjugate_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_conjugate_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_cos_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_cos_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_cosh_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_cosh_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_cot_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_cot_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_csc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_csc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_csch_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_csch_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_div_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_div_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_exp_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_exp_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_ln_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_ln_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_log10_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_log10_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_log2_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_log2_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_power_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_power_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_product_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_product_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_real_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_real_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_sec_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_sec_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_sech_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_sech_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_sin_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_sin_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_sinh_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_sinh_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_sqrt_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_sqrt_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_sub_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_sub_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_sum_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_sum_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_im_tan_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_im_tan_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_imaginary_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_imaginary_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_int_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_int_rate_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_int_rate_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_int_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_ipmt_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_ipmt_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_irr_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_irr_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_is_err_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_is_err_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_is_error_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_is_error_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_is_even_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_is_even_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_is_formula_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_is_formula_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_is_logical_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_is_logical_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_is_n_a_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_is_n_a_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_is_non_text_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_is_non_text_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_is_number_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_is_number_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_is_odd_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_is_odd_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_is_text_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_is_text_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_iso_ceiling_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_iso_ceiling_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_iso_week_num_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_iso_week_num_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_ispmt_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_ispmt_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_isref_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_isref_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_kurt_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_kurt_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_large_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_large_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_lcm_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_lcm_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_left_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_left_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_leftb_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_leftb_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_len_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_len_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_lenb_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_lenb_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_ln_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_ln_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_log10_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_log10_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_log_norm_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_log_norm_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_log_norm_inv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_log_norm_inv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_log_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_log_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_lookup_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_lookup_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_lower_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_lower_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_match_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_match_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_max_a_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_max_a_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_max_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_max_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_mduration_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_mduration_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_median_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_median_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_mid_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_mid_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_midb_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_midb_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_min_a_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_min_a_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_min_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_min_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_minute_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_minute_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_mirr_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_mirr_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_mod_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_mod_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_month_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_month_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_mround_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_mround_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_multi_nomial_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_multi_nomial_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_n_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_n_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_na_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_neg_binom_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_neg_binom_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_network_days_intl_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_network_days_intl_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_network_days_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_network_days_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_nominal_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_nominal_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_norm_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_norm_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_norm_inv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_norm_inv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_norm_s_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_norm_s_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_norm_s_inv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_norm_s_inv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_not_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_not_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_now_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_nper_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_nper_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_npv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_npv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_number_value_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_number_value_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_oct2_bin_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_oct2_bin_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_oct2_dec_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_oct2_dec_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_oct2_hex_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_oct2_hex_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_odd_f_price_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_odd_f_price_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_odd_f_yield_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_odd_f_yield_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_odd_l_price_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_odd_l_price_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_odd_l_yield_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_odd_l_yield_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_odd_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_odd_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_or_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_or_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_pduration_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_pduration_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_percent_rank_exc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_percent_rank_exc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_percent_rank_inc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_percent_rank_inc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_percentile_exc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_percentile_exc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_percentile_inc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_percentile_inc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_permut_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_permut_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_permutationa_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_permutationa_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_phi_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_phi_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_pi_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_pmt_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_pmt_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_poisson_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_poisson_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_power_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_power_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_ppmt_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_ppmt_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_price_disc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_price_disc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_price_mat_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_price_mat_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_price_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_price_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_product_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_product_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_proper_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_proper_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_pv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_pv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_quartile_exc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_quartile_exc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_quartile_inc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_quartile_inc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_quotient_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_quotient_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_radians_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_radians_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_rand_between_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_rand_between_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_rand_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_rank_avg_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_rank_avg_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_rank_eq_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_rank_eq_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_rate_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_rate_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_received_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_received_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_replace_b_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_replace_b_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_replace_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_replace_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_rept_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_rept_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_right_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_right_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_rightb_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_rightb_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_roman_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_roman_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_round_down_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_round_down_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_round_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_round_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_round_up_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_round_up_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_rows_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_rows_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_rri_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_rri_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sec_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sec_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sech_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sech_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_second_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_second_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_series_sum_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_series_sum_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sheet_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sheet_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sheets_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sheets_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sign_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sign_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sin_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sin_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sinh_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sinh_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_skew_p_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_skew_p_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_skew_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_skew_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sln_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sln_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_small_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_small_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sqrt_pi_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sqrt_pi_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sqrt_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sqrt_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_st_dev_a_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_st_dev_a_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_st_dev_p_a_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_st_dev_p_a_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_st_dev_p_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_st_dev_p_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_st_dev_s_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_st_dev_s_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_standardize_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_standardize_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_substitute_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_substitute_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_subtotal_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_subtotal_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sum_if_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sum_if_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sum_ifs_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sum_ifs_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sum_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sum_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_sum_sq_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_sum_sq_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_syd_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_syd_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_t_dist_2_t_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_t_dist_2_t_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_t_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_t_dist_r_t_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_t_dist_r_t_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_t_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_t_inv_2_t_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_t_inv_2_t_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_t_inv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_t_inv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_t_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_t_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_tan_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_tan_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_tanh_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_tanh_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_tbill_eq_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_tbill_eq_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_tbill_price_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_tbill_price_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_tbill_yield_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_tbill_yield_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_text_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_text_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_time_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_time_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_timevalue_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_timevalue_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_today_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_trim_mean_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_trim_mean_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_trim_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_trim_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_true_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_trunc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_trunc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_type_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_type_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_unichar_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_unichar_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_unicode_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_unicode_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_upper_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_upper_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_usdollar_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_usdollar_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_value_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_value_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_var_a_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_var_a_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_var_p_a_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_var_p_a_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_var_p_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_var_p_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_var_s_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_var_s_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_vdb_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_vdb_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_vlookup_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_vlookup_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_week_num_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_week_num_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_weekday_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_weekday_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_weibull_dist_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_weibull_dist_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_work_day_intl_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_work_day_intl_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_work_day_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_work_day_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_xirr_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_xirr_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_xnpv_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_xnpv_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_xor_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_xor_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_year_frac_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_year_frac_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_year_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_year_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_yield_disc_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_yield_disc_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_yield_mat_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_yield_mat_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_yield_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_yield_request_builder.go │ │ │ │ ├── item_items_item_workbook_functions_z_test_post_request_body.go │ │ │ │ ├── item_items_item_workbook_functions_z_test_request_builder.go │ │ │ │ ├── item_items_item_workbook_names_add_formula_local_post_request_body.go │ │ │ │ ├── item_items_item_workbook_names_add_formula_local_request_builder.go │ │ │ │ ├── item_items_item_workbook_names_add_post_request_body.go │ │ │ │ ├── item_items_item_workbook_names_add_request_builder.go │ │ │ │ ├── item_items_item_workbook_names_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_names_item_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_names_item_worksheet_request_builder.go │ │ │ │ ├── item_items_item_workbook_names_request_builder.go │ │ │ │ ├── item_items_item_workbook_names_workbook_named_item_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_operations_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_operations_request_builder.go │ │ │ │ ├── item_items_item_workbook_operations_workbook_operation_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_refresh_session_request_builder.go │ │ │ │ ├── item_items_item_workbook_request_builder.go │ │ │ │ ├── item_items_item_workbook_session_info_resource_with_key_request_builder.go │ │ │ │ ├── item_items_item_workbook_table_row_operation_result_with_key_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_add_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_add_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_count_response.go │ │ │ │ ├── item_items_item_workbook_tables_item_at_with_index_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_clear_filters_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_add_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_add_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_count_response.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_at_with_index_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_data_body_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_bottom_items_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_bottom_items_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_bottom_percent_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_bottom_percent_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_cell_color_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_cell_color_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_custom_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_custom_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_dynamic_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_dynamic_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_font_color_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_font_color_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_icon_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_icon_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_top_items_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_top_items_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_top_percent_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_top_percent_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_values_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_apply_values_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_header_row_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_item_total_row_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_columns_workbook_table_column_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_convert_to_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_data_body_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_header_row_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_reapply_filters_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_rows_add_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_rows_add_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_rows_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_rows_count_response.go │ │ │ │ ├── item_items_item_workbook_tables_item_rows_item_at_with_index_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_rows_item_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_rows_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_rows_workbook_table_row_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_sort_apply_post_request_body.go │ │ │ │ ├── item_items_item_workbook_tables_item_sort_apply_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_sort_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_sort_reapply_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_sort_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_total_row_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_item_worksheet_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_request_builder.go │ │ │ │ ├── item_items_item_workbook_tables_workbook_table_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_add_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_add_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_cell_with_row_with_column_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_add_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_add_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_count_response.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_at_with_index_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_format_font_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_format_line_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_format_line_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_major_gridlines_format_line_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_major_gridlines_format_line_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_major_gridlines_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_major_gridlines_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_minor_gridlines_format_line_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_minor_gridlines_format_line_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_minor_gridlines_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_minor_gridlines_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_title_format_font_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_title_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_category_axis_title_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_format_font_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_format_line_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_format_line_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_major_gridlines_format_line_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_major_gridlines_format_line_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_major_gridlines_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_major_gridlines_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_minor_gridlines_format_line_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_minor_gridlines_format_line_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_minor_gridlines_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_minor_gridlines_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_title_format_font_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_title_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_series_axis_title_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_format_font_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_format_line_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_format_line_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_major_gridlines_format_line_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_major_gridlines_format_line_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_major_gridlines_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_major_gridlines_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_minor_gridlines_format_line_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_minor_gridlines_format_line_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_minor_gridlines_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_minor_gridlines_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_title_format_font_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_title_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_axes_value_axis_title_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_data_labels_format_fill_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_data_labels_format_fill_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_data_labels_format_fill_set_solid_color_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_data_labels_format_fill_set_solid_color_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_data_labels_format_font_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_data_labels_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_data_labels_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_format_fill_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_format_fill_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_format_fill_set_solid_color_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_format_fill_set_solid_color_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_format_font_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_image_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_image_response.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_image_with_width_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_image_with_width_response.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_image_with_width_with_height_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_image_with_width_with_height_response.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_image_with_width_with_height_with_fitting_mode_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_image_with_width_with_height_with_fitting_mode_response.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_legend_format_fill_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_legend_format_fill_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_legend_format_fill_set_solid_color_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_legend_format_fill_set_solid_color_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_legend_format_font_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_legend_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_legend_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_count_response.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_at_with_index_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_format_fill_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_format_fill_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_format_fill_set_solid_color_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_format_fill_set_solid_color_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_format_line_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_format_line_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_points_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_points_count_response.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_points_item_at_with_index_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_points_item_format_fill_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_points_item_format_fill_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_points_item_format_fill_set_solid_color_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_points_item_format_fill_set_solid_color_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_points_item_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_points_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_item_points_workbook_chart_point_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_series_workbook_chart_series_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_set_data_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_set_data_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_set_position_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_set_position_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_title_format_fill_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_title_format_fill_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_title_format_fill_set_solid_color_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_title_format_fill_set_solid_color_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_title_format_font_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_title_format_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_title_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_with_name_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_item_worksheet_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_charts_workbook_chart_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_names_add_formula_local_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_names_add_formula_local_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_names_add_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_names_add_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_names_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_names_item_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_names_item_worksheet_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_names_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_names_workbook_named_item_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_pivot_tables_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_pivot_tables_item_refresh_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_pivot_tables_item_worksheet_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_pivot_tables_refresh_all_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_pivot_tables_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_pivot_tables_workbook_pivot_table_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_protection_protect_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_protection_protect_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_protection_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_protection_unprotect_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_range_with_address_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_add_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_add_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_count_response.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_at_with_index_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_clear_filters_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_add_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_add_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_count_response.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_at_with_index_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_data_body_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_bottom_items_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_bottom_items_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_bottom_percent_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_bottom_percent_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_cell_color_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_cell_color_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_custom_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_custom_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_dynamic_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_dynamic_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_font_color_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_font_color_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_icon_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_icon_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_top_items_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_top_items_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_top_percent_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_top_percent_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_values_filter_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_apply_values_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_filter_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_header_row_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_item_total_row_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_columns_workbook_table_column_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_convert_to_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_data_body_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_header_row_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_reapply_filters_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_rows_add_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_rows_add_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_rows_count_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_rows_count_response.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_rows_item_at_with_index_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_rows_item_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_rows_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_rows_workbook_table_row_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_sort_apply_post_request_body.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_sort_apply_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_sort_clear_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_sort_reapply_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_sort_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_total_row_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_item_worksheet_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_tables_workbook_table_item_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_used_range_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_item_used_range_with_values_only_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_request_builder.go │ │ │ │ ├── item_items_item_workbook_worksheets_workbook_worksheet_item_request_builder.go │ │ │ │ ├── item_items_request_builder.go │ │ │ │ ├── item_list_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_list_columns_count_request_builder.go │ │ │ │ ├── item_list_columns_item_source_column_request_builder.go │ │ │ │ ├── item_list_columns_request_builder.go │ │ │ │ ├── item_list_content_types_add_copy_from_content_type_hub_post_request_body.go │ │ │ │ ├── item_list_content_types_add_copy_from_content_type_hub_request_builder.go │ │ │ │ ├── item_list_content_types_add_copy_post_request_body.go │ │ │ │ ├── item_list_content_types_add_copy_request_builder.go │ │ │ │ ├── item_list_content_types_content_type_item_request_builder.go │ │ │ │ ├── item_list_content_types_count_request_builder.go │ │ │ │ ├── item_list_content_types_get_compatible_hub_content_types_request_builder.go │ │ │ │ ├── item_list_content_types_get_compatible_hub_content_types_response.go │ │ │ │ ├── item_list_content_types_item_associate_with_hub_sites_post_request_body.go │ │ │ │ ├── item_list_content_types_item_associate_with_hub_sites_request_builder.go │ │ │ │ ├── item_list_content_types_item_base_request_builder.go │ │ │ │ ├── item_list_content_types_item_base_types_content_type_item_request_builder.go │ │ │ │ ├── item_list_content_types_item_base_types_count_request_builder.go │ │ │ │ ├── item_list_content_types_item_base_types_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_links_column_link_item_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_links_count_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_links_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_positions_column_definition_item_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_positions_count_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_positions_request_builder.go │ │ │ │ ├── item_list_content_types_item_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_list_content_types_item_columns_count_request_builder.go │ │ │ │ ├── item_list_content_types_item_columns_item_source_column_request_builder.go │ │ │ │ ├── item_list_content_types_item_columns_request_builder.go │ │ │ │ ├── item_list_content_types_item_copy_to_default_content_location_post_request_body.go │ │ │ │ ├── item_list_content_types_item_copy_to_default_content_location_request_builder.go │ │ │ │ ├── item_list_content_types_item_is_published_request_builder.go │ │ │ │ ├── item_list_content_types_item_is_published_response.go │ │ │ │ ├── item_list_content_types_item_publish_request_builder.go │ │ │ │ ├── item_list_content_types_item_unpublish_request_builder.go │ │ │ │ ├── item_list_content_types_request_builder.go │ │ │ │ ├── item_list_drive_request_builder.go │ │ │ │ ├── item_list_items_count_request_builder.go │ │ │ │ ├── item_list_items_item_analytics_request_builder.go │ │ │ │ ├── item_list_items_item_document_set_versions_count_request_builder.go │ │ │ │ ├── item_list_items_item_document_set_versions_document_set_version_item_request_builder.go │ │ │ │ ├── item_list_items_item_document_set_versions_item_restore_request_builder.go │ │ │ │ ├── item_list_items_item_document_set_versions_request_builder.go │ │ │ │ ├── item_list_items_item_drive_item_content_request_builder.go │ │ │ │ ├── item_list_items_item_drive_item_request_builder.go │ │ │ │ ├── item_list_items_item_fields_request_builder.go │ │ │ │ ├── item_list_items_item_get_activities_by_interval_request_builder.go │ │ │ │ ├── item_list_items_item_get_activities_by_interval_response.go │ │ │ │ ├── item_list_items_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_request_builder.go │ │ │ │ ├── item_list_items_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_response.go │ │ │ │ ├── item_list_items_item_versions_count_request_builder.go │ │ │ │ ├── item_list_items_item_versions_item_fields_request_builder.go │ │ │ │ ├── item_list_items_item_versions_item_restore_version_request_builder.go │ │ │ │ ├── item_list_items_item_versions_list_item_version_item_request_builder.go │ │ │ │ ├── item_list_items_item_versions_request_builder.go │ │ │ │ ├── item_list_items_list_item_item_request_builder.go │ │ │ │ ├── item_list_items_request_builder.go │ │ │ │ ├── item_list_operations_count_request_builder.go │ │ │ │ ├── item_list_operations_request_builder.go │ │ │ │ ├── item_list_operations_rich_long_running_operation_item_request_builder.go │ │ │ │ ├── item_list_request_builder.go │ │ │ │ ├── item_list_subscriptions_count_request_builder.go │ │ │ │ ├── item_list_subscriptions_item_reauthorize_request_builder.go │ │ │ │ ├── item_list_subscriptions_request_builder.go │ │ │ │ ├── item_list_subscriptions_subscription_item_request_builder.go │ │ │ │ ├── item_recent_request_builder.go │ │ │ │ ├── item_recent_response.go │ │ │ │ ├── item_root_content_request_builder.go │ │ │ │ ├── item_root_request_builder.go │ │ │ │ ├── item_search_with_q_request_builder.go │ │ │ │ ├── item_search_with_q_response.go │ │ │ │ ├── item_shared_with_me_request_builder.go │ │ │ │ ├── item_shared_with_me_response.go │ │ │ │ ├── item_special_count_request_builder.go │ │ │ │ ├── item_special_drive_item_item_request_builder.go │ │ │ │ ├── item_special_item_content_request_builder.go │ │ │ │ └── item_special_request_builder.go │ │ │ ├── education/ │ │ │ │ ├── classes_count_request_builder.go │ │ │ │ ├── classes_delta_request_builder.go │ │ │ │ ├── classes_delta_response.go │ │ │ │ ├── classes_education_class_item_request_builder.go │ │ │ │ ├── classes_item_assignment_categories_count_request_builder.go │ │ │ │ ├── classes_item_assignment_categories_delta_request_builder.go │ │ │ │ ├── classes_item_assignment_categories_delta_response.go │ │ │ │ ├── classes_item_assignment_categories_education_category_item_request_builder.go │ │ │ │ ├── classes_item_assignment_categories_request_builder.go │ │ │ │ ├── classes_item_assignment_defaults_request_builder.go │ │ │ │ ├── classes_item_assignment_settings_request_builder.go │ │ │ │ ├── classes_item_assignments_count_request_builder.go │ │ │ │ ├── classes_item_assignments_delta_request_builder.go │ │ │ │ ├── classes_item_assignments_delta_response.go │ │ │ │ ├── classes_item_assignments_education_assignment_item_request_builder.go │ │ │ │ ├── classes_item_assignments_item_categories_count_request_builder.go │ │ │ │ ├── classes_item_assignments_item_categories_delta_request_builder.go │ │ │ │ ├── classes_item_assignments_item_categories_delta_response.go │ │ │ │ ├── classes_item_assignments_item_categories_education_category_item_request_builder.go │ │ │ │ ├── classes_item_assignments_item_categories_item_ref_request_builder.go │ │ │ │ ├── classes_item_assignments_item_categories_ref_request_builder.go │ │ │ │ ├── classes_item_assignments_item_categories_request_builder.go │ │ │ │ ├── classes_item_assignments_item_publish_request_builder.go │ │ │ │ ├── classes_item_assignments_item_resources_count_request_builder.go │ │ │ │ ├── classes_item_assignments_item_resources_education_assignment_resource_item_request_builder.go │ │ │ │ ├── classes_item_assignments_item_resources_request_builder.go │ │ │ │ ├── classes_item_assignments_item_rubric_ref_request_builder.go │ │ │ │ ├── classes_item_assignments_item_rubric_request_builder.go │ │ │ │ ├── classes_item_assignments_item_set_up_feedback_resources_folder_request_builder.go │ │ │ │ ├── classes_item_assignments_item_set_up_resources_folder_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_count_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_education_submission_item_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_outcomes_count_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_outcomes_education_outcome_item_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_outcomes_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_reassign_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_resources_count_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_resources_education_submission_resource_item_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_resources_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_return_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_set_up_resources_folder_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_submit_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_submitted_resources_count_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_submitted_resources_education_submission_resource_item_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_submitted_resources_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_item_unsubmit_request_builder.go │ │ │ │ ├── classes_item_assignments_item_submissions_request_builder.go │ │ │ │ ├── classes_item_assignments_request_builder.go │ │ │ │ ├── classes_item_group_request_builder.go │ │ │ │ ├── classes_item_members_count_request_builder.go │ │ │ │ ├── classes_item_members_education_user_item_request_builder.go │ │ │ │ ├── classes_item_members_item_ref_request_builder.go │ │ │ │ ├── classes_item_members_ref_request_builder.go │ │ │ │ ├── classes_item_members_request_builder.go │ │ │ │ ├── classes_item_schools_count_request_builder.go │ │ │ │ ├── classes_item_schools_education_school_item_request_builder.go │ │ │ │ ├── classes_item_schools_request_builder.go │ │ │ │ ├── classes_item_teachers_count_request_builder.go │ │ │ │ ├── classes_item_teachers_education_user_item_request_builder.go │ │ │ │ ├── classes_item_teachers_item_ref_request_builder.go │ │ │ │ ├── classes_item_teachers_ref_request_builder.go │ │ │ │ ├── classes_item_teachers_request_builder.go │ │ │ │ ├── classes_request_builder.go │ │ │ │ ├── education_request_builder.go │ │ │ │ ├── schools_count_request_builder.go │ │ │ │ ├── schools_delta_request_builder.go │ │ │ │ ├── schools_delta_response.go │ │ │ │ ├── schools_education_school_item_request_builder.go │ │ │ │ ├── schools_item_administrative_unit_request_builder.go │ │ │ │ ├── schools_item_classes_count_request_builder.go │ │ │ │ ├── schools_item_classes_education_class_item_request_builder.go │ │ │ │ ├── schools_item_classes_item_ref_request_builder.go │ │ │ │ ├── schools_item_classes_ref_request_builder.go │ │ │ │ ├── schools_item_classes_request_builder.go │ │ │ │ ├── schools_item_users_count_request_builder.go │ │ │ │ ├── schools_item_users_education_user_item_request_builder.go │ │ │ │ ├── schools_item_users_item_ref_request_builder.go │ │ │ │ ├── schools_item_users_ref_request_builder.go │ │ │ │ ├── schools_item_users_request_builder.go │ │ │ │ ├── schools_request_builder.go │ │ │ │ ├── users_count_request_builder.go │ │ │ │ ├── users_delta_request_builder.go │ │ │ │ ├── users_delta_response.go │ │ │ │ ├── users_education_user_item_request_builder.go │ │ │ │ ├── users_item_assignments_count_request_builder.go │ │ │ │ ├── users_item_assignments_delta_request_builder.go │ │ │ │ ├── users_item_assignments_delta_response.go │ │ │ │ ├── users_item_assignments_education_assignment_item_request_builder.go │ │ │ │ ├── users_item_assignments_item_categories_count_request_builder.go │ │ │ │ ├── users_item_assignments_item_categories_delta_request_builder.go │ │ │ │ ├── users_item_assignments_item_categories_delta_response.go │ │ │ │ ├── users_item_assignments_item_categories_education_category_item_request_builder.go │ │ │ │ ├── users_item_assignments_item_categories_item_ref_request_builder.go │ │ │ │ ├── users_item_assignments_item_categories_ref_request_builder.go │ │ │ │ ├── users_item_assignments_item_categories_request_builder.go │ │ │ │ ├── users_item_assignments_item_publish_request_builder.go │ │ │ │ ├── users_item_assignments_item_resources_count_request_builder.go │ │ │ │ ├── users_item_assignments_item_resources_education_assignment_resource_item_request_builder.go │ │ │ │ ├── users_item_assignments_item_resources_request_builder.go │ │ │ │ ├── users_item_assignments_item_rubric_ref_request_builder.go │ │ │ │ ├── users_item_assignments_item_rubric_request_builder.go │ │ │ │ ├── users_item_assignments_item_set_up_feedback_resources_folder_request_builder.go │ │ │ │ ├── users_item_assignments_item_set_up_resources_folder_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_count_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_education_submission_item_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_outcomes_count_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_outcomes_education_outcome_item_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_outcomes_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_reassign_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_resources_count_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_resources_education_submission_resource_item_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_resources_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_return_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_set_up_resources_folder_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_submit_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_submitted_resources_count_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_submitted_resources_education_submission_resource_item_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_submitted_resources_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_item_unsubmit_request_builder.go │ │ │ │ ├── users_item_assignments_item_submissions_request_builder.go │ │ │ │ ├── users_item_assignments_request_builder.go │ │ │ │ ├── users_item_classes_count_request_builder.go │ │ │ │ ├── users_item_classes_education_class_item_request_builder.go │ │ │ │ ├── users_item_classes_request_builder.go │ │ │ │ ├── users_item_rubrics_count_request_builder.go │ │ │ │ ├── users_item_rubrics_education_rubric_item_request_builder.go │ │ │ │ ├── users_item_rubrics_request_builder.go │ │ │ │ ├── users_item_schools_count_request_builder.go │ │ │ │ ├── users_item_schools_education_school_item_request_builder.go │ │ │ │ ├── users_item_schools_request_builder.go │ │ │ │ ├── users_item_taught_classes_count_request_builder.go │ │ │ │ ├── users_item_taught_classes_education_class_item_request_builder.go │ │ │ │ ├── users_item_taught_classes_request_builder.go │ │ │ │ ├── users_item_user_request_builder.go │ │ │ │ └── users_request_builder.go │ │ │ ├── employeeexperience/ │ │ │ │ ├── employee_experience_request_builder.go │ │ │ │ ├── learning_providers_count_request_builder.go │ │ │ │ ├── learning_providers_item_learning_contents_count_request_builder.go │ │ │ │ ├── learning_providers_item_learning_contents_learning_content_item_request_builder.go │ │ │ │ ├── learning_providers_item_learning_contents_request_builder.go │ │ │ │ ├── learning_providers_learning_provider_item_request_builder.go │ │ │ │ └── learning_providers_request_builder.go │ │ │ ├── external/ │ │ │ │ ├── connections_count_request_builder.go │ │ │ │ ├── connections_external_connection_item_request_builder.go │ │ │ │ ├── connections_item_groups_count_request_builder.go │ │ │ │ ├── connections_item_groups_external_group_item_request_builder.go │ │ │ │ ├── connections_item_groups_item_members_count_request_builder.go │ │ │ │ ├── connections_item_groups_item_members_identity_item_request_builder.go │ │ │ │ ├── connections_item_groups_item_members_request_builder.go │ │ │ │ ├── connections_item_groups_request_builder.go │ │ │ │ ├── connections_item_items_count_request_builder.go │ │ │ │ ├── connections_item_items_external_item_item_request_builder.go │ │ │ │ ├── connections_item_items_request_builder.go │ │ │ │ ├── connections_item_operations_connection_operation_item_request_builder.go │ │ │ │ ├── connections_item_operations_count_request_builder.go │ │ │ │ ├── connections_item_operations_request_builder.go │ │ │ │ ├── connections_item_schema_request_builder.go │ │ │ │ ├── connections_request_builder.go │ │ │ │ └── external_request_builder.go │ │ │ ├── graph_base_service_client.go │ │ │ ├── graph_request_adapter.go │ │ │ ├── graph_service_client.go │ │ │ ├── grouplifecyclepolicies/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── group_lifecycle_policies_request_builder.go │ │ │ │ ├── group_lifecycle_policy_item_request_builder.go │ │ │ │ ├── item_add_group_post_request_body.go │ │ │ │ ├── item_add_group_request_builder.go │ │ │ │ ├── item_add_group_response.go │ │ │ │ ├── item_remove_group_post_request_body.go │ │ │ │ ├── item_remove_group_request_builder.go │ │ │ │ └── item_remove_group_response.go │ │ │ ├── groups/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── group_item_request_builder.go │ │ │ │ ├── groups_request_builder.go │ │ │ │ ├── item_accepted_senders_count_request_builder.go │ │ │ │ ├── item_accepted_senders_directory_object_item_request_builder.go │ │ │ │ ├── item_accepted_senders_item_ref_request_builder.go │ │ │ │ ├── item_accepted_senders_ref_request_builder.go │ │ │ │ ├── item_accepted_senders_request_builder.go │ │ │ │ ├── item_add_favorite_request_builder.go │ │ │ │ ├── item_app_role_assignments_app_role_assignment_item_request_builder.go │ │ │ │ ├── item_app_role_assignments_count_request_builder.go │ │ │ │ ├── item_app_role_assignments_request_builder.go │ │ │ │ ├── item_assign_license_post_request_body.go │ │ │ │ ├── item_assign_license_request_builder.go │ │ │ │ ├── item_calendar_allowed_calendar_sharing_roles_with_user_request_builder.go │ │ │ │ ├── item_calendar_allowed_calendar_sharing_roles_with_user_response.go │ │ │ │ ├── item_calendar_calendar_permissions_calendar_permission_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_permissions_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_permissions_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_delta_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_delta_response.go │ │ │ │ ├── item_calendar_calendar_view_event_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_accept_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_accept_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_attachments_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_attachments_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_calendar_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_cancel_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_cancel_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_decline_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_decline_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_dismiss_reminder_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_extensions_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_extensions_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_forward_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_forward_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_delta_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_delta_response.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_event_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_accept_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_accept_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_attachments_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_attachments_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_calendar_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_cancel_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_cancel_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_decline_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_decline_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_dismiss_reminder_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_extensions_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_extensions_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_forward_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_forward_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_snooze_reminder_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_snooze_reminder_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_tentatively_accept_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_item_tentatively_accept_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_instances_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_snooze_reminder_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_snooze_reminder_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_item_tentatively_accept_post_request_body.go │ │ │ │ ├── item_calendar_calendar_view_item_tentatively_accept_request_builder.go │ │ │ │ ├── item_calendar_calendar_view_request_builder.go │ │ │ │ ├── item_calendar_events_count_request_builder.go │ │ │ │ ├── item_calendar_events_delta_request_builder.go │ │ │ │ ├── item_calendar_events_delta_response.go │ │ │ │ ├── item_calendar_events_event_item_request_builder.go │ │ │ │ ├── item_calendar_events_item_accept_post_request_body.go │ │ │ │ ├── item_calendar_events_item_accept_request_builder.go │ │ │ │ ├── item_calendar_events_item_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_calendar_events_item_attachments_count_request_builder.go │ │ │ │ ├── item_calendar_events_item_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_calendar_events_item_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_calendar_events_item_attachments_request_builder.go │ │ │ │ ├── item_calendar_events_item_calendar_request_builder.go │ │ │ │ ├── item_calendar_events_item_cancel_post_request_body.go │ │ │ │ ├── item_calendar_events_item_cancel_request_builder.go │ │ │ │ ├── item_calendar_events_item_decline_post_request_body.go │ │ │ │ ├── item_calendar_events_item_decline_request_builder.go │ │ │ │ ├── item_calendar_events_item_dismiss_reminder_request_builder.go │ │ │ │ ├── item_calendar_events_item_extensions_count_request_builder.go │ │ │ │ ├── item_calendar_events_item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_calendar_events_item_extensions_request_builder.go │ │ │ │ ├── item_calendar_events_item_forward_post_request_body.go │ │ │ │ ├── item_calendar_events_item_forward_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_count_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_delta_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_delta_response.go │ │ │ │ ├── item_calendar_events_item_instances_event_item_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_accept_post_request_body.go │ │ │ │ ├── item_calendar_events_item_instances_item_accept_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_attachments_count_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_calendar_events_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_attachments_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_calendar_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_cancel_post_request_body.go │ │ │ │ ├── item_calendar_events_item_instances_item_cancel_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_decline_post_request_body.go │ │ │ │ ├── item_calendar_events_item_instances_item_decline_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_dismiss_reminder_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_extensions_count_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_extensions_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_forward_post_request_body.go │ │ │ │ ├── item_calendar_events_item_instances_item_forward_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_snooze_reminder_post_request_body.go │ │ │ │ ├── item_calendar_events_item_instances_item_snooze_reminder_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_item_tentatively_accept_post_request_body.go │ │ │ │ ├── item_calendar_events_item_instances_item_tentatively_accept_request_builder.go │ │ │ │ ├── item_calendar_events_item_instances_request_builder.go │ │ │ │ ├── item_calendar_events_item_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_events_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_events_item_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_events_item_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_events_item_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_events_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_events_item_snooze_reminder_post_request_body.go │ │ │ │ ├── item_calendar_events_item_snooze_reminder_request_builder.go │ │ │ │ ├── item_calendar_events_item_tentatively_accept_post_request_body.go │ │ │ │ ├── item_calendar_events_item_tentatively_accept_request_builder.go │ │ │ │ ├── item_calendar_events_request_builder.go │ │ │ │ ├── item_calendar_get_schedule_post_request_body.go │ │ │ │ ├── item_calendar_get_schedule_request_builder.go │ │ │ │ ├── item_calendar_get_schedule_response.go │ │ │ │ ├── item_calendar_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_request_builder.go │ │ │ │ ├── item_calendar_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_view_count_request_builder.go │ │ │ │ ├── item_calendar_view_delta_request_builder.go │ │ │ │ ├── item_calendar_view_delta_response.go │ │ │ │ ├── item_calendar_view_event_item_request_builder.go │ │ │ │ ├── item_calendar_view_item_accept_post_request_body.go │ │ │ │ ├── item_calendar_view_item_accept_request_builder.go │ │ │ │ ├── item_calendar_view_item_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_calendar_view_item_attachments_count_request_builder.go │ │ │ │ ├── item_calendar_view_item_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_calendar_view_item_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_calendar_view_item_attachments_request_builder.go │ │ │ │ ├── item_calendar_view_item_calendar_request_builder.go │ │ │ │ ├── item_calendar_view_item_cancel_post_request_body.go │ │ │ │ ├── item_calendar_view_item_cancel_request_builder.go │ │ │ │ ├── item_calendar_view_item_decline_post_request_body.go │ │ │ │ ├── item_calendar_view_item_decline_request_builder.go │ │ │ │ ├── item_calendar_view_item_dismiss_reminder_request_builder.go │ │ │ │ ├── item_calendar_view_item_extensions_count_request_builder.go │ │ │ │ ├── item_calendar_view_item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_calendar_view_item_extensions_request_builder.go │ │ │ │ ├── item_calendar_view_item_forward_post_request_body.go │ │ │ │ ├── item_calendar_view_item_forward_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_count_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_delta_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_delta_response.go │ │ │ │ ├── item_calendar_view_item_instances_event_item_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_accept_post_request_body.go │ │ │ │ ├── item_calendar_view_item_instances_item_accept_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_attachments_count_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_calendar_view_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_attachments_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_calendar_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_cancel_post_request_body.go │ │ │ │ ├── item_calendar_view_item_instances_item_cancel_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_decline_post_request_body.go │ │ │ │ ├── item_calendar_view_item_instances_item_decline_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_dismiss_reminder_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_extensions_count_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_extensions_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_forward_post_request_body.go │ │ │ │ ├── item_calendar_view_item_instances_item_forward_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_snooze_reminder_post_request_body.go │ │ │ │ ├── item_calendar_view_item_instances_item_snooze_reminder_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_item_tentatively_accept_post_request_body.go │ │ │ │ ├── item_calendar_view_item_instances_item_tentatively_accept_request_builder.go │ │ │ │ ├── item_calendar_view_item_instances_request_builder.go │ │ │ │ ├── item_calendar_view_item_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_view_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_view_item_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_view_item_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_calendar_view_item_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_calendar_view_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_calendar_view_item_snooze_reminder_post_request_body.go │ │ │ │ ├── item_calendar_view_item_snooze_reminder_request_builder.go │ │ │ │ ├── item_calendar_view_item_tentatively_accept_post_request_body.go │ │ │ │ ├── item_calendar_view_item_tentatively_accept_request_builder.go │ │ │ │ ├── item_calendar_view_request_builder.go │ │ │ │ ├── item_check_granted_permissions_for_app_request_builder.go │ │ │ │ ├── item_check_granted_permissions_for_app_response.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_conversations_conversation_item_request_builder.go │ │ │ │ ├── item_conversations_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_conversation_thread_item_request_builder.go │ │ │ │ ├── item_conversations_item_threads_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_attachments_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_attachments_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_extensions_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_extensions_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_forward_post_request_body.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_forward_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_attachments_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_attachments_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_extensions_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_extensions_extension_item_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_extensions_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_forward_post_request_body.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_forward_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_reply_post_request_body.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_reply_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_in_reply_to_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_reply_post_request_body.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_reply_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_post_item_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_posts_request_builder.go │ │ │ │ ├── item_conversations_item_threads_item_reply_post_request_body.go │ │ │ │ ├── item_conversations_item_threads_item_reply_request_builder.go │ │ │ │ ├── item_conversations_item_threads_request_builder.go │ │ │ │ ├── item_conversations_request_builder.go │ │ │ │ ├── item_created_on_behalf_of_request_builder.go │ │ │ │ ├── item_drive_request_builder.go │ │ │ │ ├── item_drives_count_request_builder.go │ │ │ │ ├── item_drives_drive_item_request_builder.go │ │ │ │ ├── item_drives_request_builder.go │ │ │ │ ├── item_events_count_request_builder.go │ │ │ │ ├── item_events_delta_request_builder.go │ │ │ │ ├── item_events_delta_response.go │ │ │ │ ├── item_events_event_item_request_builder.go │ │ │ │ ├── item_events_item_accept_post_request_body.go │ │ │ │ ├── item_events_item_accept_request_builder.go │ │ │ │ ├── item_events_item_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_events_item_attachments_count_request_builder.go │ │ │ │ ├── item_events_item_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_events_item_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_events_item_attachments_request_builder.go │ │ │ │ ├── item_events_item_calendar_request_builder.go │ │ │ │ ├── item_events_item_cancel_post_request_body.go │ │ │ │ ├── item_events_item_cancel_request_builder.go │ │ │ │ ├── item_events_item_decline_post_request_body.go │ │ │ │ ├── item_events_item_decline_request_builder.go │ │ │ │ ├── item_events_item_dismiss_reminder_request_builder.go │ │ │ │ ├── item_events_item_extensions_count_request_builder.go │ │ │ │ ├── item_events_item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_events_item_extensions_request_builder.go │ │ │ │ ├── item_events_item_forward_post_request_body.go │ │ │ │ ├── item_events_item_forward_request_builder.go │ │ │ │ ├── item_events_item_instances_count_request_builder.go │ │ │ │ ├── item_events_item_instances_delta_request_builder.go │ │ │ │ ├── item_events_item_instances_delta_response.go │ │ │ │ ├── item_events_item_instances_event_item_request_builder.go │ │ │ │ ├── item_events_item_instances_item_accept_post_request_body.go │ │ │ │ ├── item_events_item_instances_item_accept_request_builder.go │ │ │ │ ├── item_events_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_events_item_instances_item_attachments_count_request_builder.go │ │ │ │ ├── item_events_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_events_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_events_item_instances_item_attachments_request_builder.go │ │ │ │ ├── item_events_item_instances_item_calendar_request_builder.go │ │ │ │ ├── item_events_item_instances_item_cancel_post_request_body.go │ │ │ │ ├── item_events_item_instances_item_cancel_request_builder.go │ │ │ │ ├── item_events_item_instances_item_decline_post_request_body.go │ │ │ │ ├── item_events_item_instances_item_decline_request_builder.go │ │ │ │ ├── item_events_item_instances_item_dismiss_reminder_request_builder.go │ │ │ │ ├── item_events_item_instances_item_extensions_count_request_builder.go │ │ │ │ ├── item_events_item_instances_item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_events_item_instances_item_extensions_request_builder.go │ │ │ │ ├── item_events_item_instances_item_forward_post_request_body.go │ │ │ │ ├── item_events_item_instances_item_forward_request_builder.go │ │ │ │ ├── item_events_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_events_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_events_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_events_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_events_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_events_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_events_item_instances_item_snooze_reminder_post_request_body.go │ │ │ │ ├── item_events_item_instances_item_snooze_reminder_request_builder.go │ │ │ │ ├── item_events_item_instances_item_tentatively_accept_post_request_body.go │ │ │ │ ├── item_events_item_instances_item_tentatively_accept_request_builder.go │ │ │ │ ├── item_events_item_instances_request_builder.go │ │ │ │ ├── item_events_item_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_events_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_events_item_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_events_item_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_events_item_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_events_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_events_item_snooze_reminder_post_request_body.go │ │ │ │ ├── item_events_item_snooze_reminder_request_builder.go │ │ │ │ ├── item_events_item_tentatively_accept_post_request_body.go │ │ │ │ ├── item_events_item_tentatively_accept_request_builder.go │ │ │ │ ├── item_events_request_builder.go │ │ │ │ ├── item_extensions_count_request_builder.go │ │ │ │ ├── item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_extensions_request_builder.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_group_lifecycle_policies_count_request_builder.go │ │ │ │ ├── item_group_lifecycle_policies_group_lifecycle_policy_item_request_builder.go │ │ │ │ ├── item_group_lifecycle_policies_item_add_group_post_request_body.go │ │ │ │ ├── item_group_lifecycle_policies_item_add_group_request_builder.go │ │ │ │ ├── item_group_lifecycle_policies_item_add_group_response.go │ │ │ │ ├── item_group_lifecycle_policies_item_remove_group_post_request_body.go │ │ │ │ ├── item_group_lifecycle_policies_item_remove_group_request_builder.go │ │ │ │ ├── item_group_lifecycle_policies_item_remove_group_response.go │ │ │ │ ├── item_group_lifecycle_policies_request_builder.go │ │ │ │ ├── item_member_of_count_request_builder.go │ │ │ │ ├── item_member_of_directory_object_item_request_builder.go │ │ │ │ ├── item_member_of_graph_administrative_unit_count_request_builder.go │ │ │ │ ├── item_member_of_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_member_of_graph_group_count_request_builder.go │ │ │ │ ├── item_member_of_graph_group_request_builder.go │ │ │ │ ├── item_member_of_item_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_member_of_item_graph_group_request_builder.go │ │ │ │ ├── item_member_of_request_builder.go │ │ │ │ ├── item_members_count_request_builder.go │ │ │ │ ├── item_members_directory_object_item_request_builder.go │ │ │ │ ├── item_members_graph_application_count_request_builder.go │ │ │ │ ├── item_members_graph_application_request_builder.go │ │ │ │ ├── item_members_graph_device_count_request_builder.go │ │ │ │ ├── item_members_graph_device_request_builder.go │ │ │ │ ├── item_members_graph_group_count_request_builder.go │ │ │ │ ├── item_members_graph_group_request_builder.go │ │ │ │ ├── item_members_graph_org_contact_count_request_builder.go │ │ │ │ ├── item_members_graph_org_contact_request_builder.go │ │ │ │ ├── item_members_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_members_graph_service_principal_request_builder.go │ │ │ │ ├── item_members_graph_user_count_request_builder.go │ │ │ │ ├── item_members_graph_user_request_builder.go │ │ │ │ ├── item_members_item_graph_application_request_builder.go │ │ │ │ ├── item_members_item_graph_device_request_builder.go │ │ │ │ ├── item_members_item_graph_group_request_builder.go │ │ │ │ ├── item_members_item_graph_org_contact_request_builder.go │ │ │ │ ├── item_members_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_members_item_graph_user_request_builder.go │ │ │ │ ├── item_members_item_ref_request_builder.go │ │ │ │ ├── item_members_ref_request_builder.go │ │ │ │ ├── item_members_request_builder.go │ │ │ │ ├── item_members_with_license_errors_count_request_builder.go │ │ │ │ ├── item_members_with_license_errors_directory_object_item_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_application_count_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_application_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_device_count_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_device_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_group_count_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_group_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_org_contact_count_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_org_contact_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_service_principal_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_user_count_request_builder.go │ │ │ │ ├── item_members_with_license_errors_graph_user_request_builder.go │ │ │ │ ├── item_members_with_license_errors_item_graph_application_request_builder.go │ │ │ │ ├── item_members_with_license_errors_item_graph_device_request_builder.go │ │ │ │ ├── item_members_with_license_errors_item_graph_group_request_builder.go │ │ │ │ ├── item_members_with_license_errors_item_graph_org_contact_request_builder.go │ │ │ │ ├── item_members_with_license_errors_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_members_with_license_errors_item_graph_user_request_builder.go │ │ │ │ ├── item_members_with_license_errors_request_builder.go │ │ │ │ ├── item_onenote_notebooks_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_get_notebook_from_web_url_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_get_notebook_from_web_url_request_builder.go │ │ │ │ ├── item_onenote_notebooks_get_recent_notebooks_with_include_personal_notebooks_request_builder.go │ │ │ │ ├── item_onenote_notebooks_get_recent_notebooks_with_include_personal_notebooks_response.go │ │ │ │ ├── item_onenote_notebooks_item_copy_notebook_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_copy_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_section_groups_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_section_groups_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_request_builder.go │ │ │ │ ├── item_onenote_notebooks_notebook_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_request_builder.go │ │ │ │ ├── item_onenote_operations_count_request_builder.go │ │ │ │ ├── item_onenote_operations_onenote_operation_item_request_builder.go │ │ │ │ ├── item_onenote_operations_request_builder.go │ │ │ │ ├── item_onenote_pages_count_request_builder.go │ │ │ │ ├── item_onenote_pages_item_content_request_builder.go │ │ │ │ ├── item_onenote_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_onenote_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_onenote_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_onenote_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_onenote_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_onenote_pages_item_preview_request_builder.go │ │ │ │ ├── item_onenote_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_onenote_pages_request_builder.go │ │ │ │ ├── item_onenote_request_builder.go │ │ │ │ ├── item_onenote_resources_count_request_builder.go │ │ │ │ ├── item_onenote_resources_item_content_request_builder.go │ │ │ │ ├── item_onenote_resources_onenote_resource_item_request_builder.go │ │ │ │ ├── item_onenote_resources_request_builder.go │ │ │ │ ├── item_onenote_section_groups_count_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_section_groups_count_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_section_groups_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_count_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_request_builder.go │ │ │ │ ├── item_onenote_section_groups_request_builder.go │ │ │ │ ├── item_onenote_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_onenote_sections_count_request_builder.go │ │ │ │ ├── item_onenote_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_onenote_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_onenote_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_onenote_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_onenote_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_onenote_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_request_builder.go │ │ │ │ ├── item_onenote_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_onenote_sections_request_builder.go │ │ │ │ ├── item_owners_count_request_builder.go │ │ │ │ ├── item_owners_directory_object_item_request_builder.go │ │ │ │ ├── item_owners_graph_application_count_request_builder.go │ │ │ │ ├── item_owners_graph_application_request_builder.go │ │ │ │ ├── item_owners_graph_device_count_request_builder.go │ │ │ │ ├── item_owners_graph_device_request_builder.go │ │ │ │ ├── item_owners_graph_group_count_request_builder.go │ │ │ │ ├── item_owners_graph_group_request_builder.go │ │ │ │ ├── item_owners_graph_org_contact_count_request_builder.go │ │ │ │ ├── item_owners_graph_org_contact_request_builder.go │ │ │ │ ├── item_owners_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_owners_graph_service_principal_request_builder.go │ │ │ │ ├── item_owners_graph_user_count_request_builder.go │ │ │ │ ├── item_owners_graph_user_request_builder.go │ │ │ │ ├── item_owners_item_graph_application_request_builder.go │ │ │ │ ├── item_owners_item_graph_device_request_builder.go │ │ │ │ ├── item_owners_item_graph_group_request_builder.go │ │ │ │ ├── item_owners_item_graph_org_contact_request_builder.go │ │ │ │ ├── item_owners_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_owners_item_graph_user_request_builder.go │ │ │ │ ├── item_owners_item_ref_request_builder.go │ │ │ │ ├── item_owners_ref_request_builder.go │ │ │ │ ├── item_owners_request_builder.go │ │ │ │ ├── item_permission_grants_count_request_builder.go │ │ │ │ ├── item_permission_grants_delta_request_builder.go │ │ │ │ ├── item_permission_grants_delta_response.go │ │ │ │ ├── item_permission_grants_get_available_extension_properties_post_request_body.go │ │ │ │ ├── item_permission_grants_get_available_extension_properties_request_builder.go │ │ │ │ ├── item_permission_grants_get_available_extension_properties_response.go │ │ │ │ ├── item_permission_grants_get_by_ids_post_request_body.go │ │ │ │ ├── item_permission_grants_get_by_ids_request_builder.go │ │ │ │ ├── item_permission_grants_get_by_ids_response.go │ │ │ │ ├── item_permission_grants_item_check_member_groups_post_request_body.go │ │ │ │ ├── item_permission_grants_item_check_member_groups_request_builder.go │ │ │ │ ├── item_permission_grants_item_check_member_groups_response.go │ │ │ │ ├── item_permission_grants_item_check_member_objects_post_request_body.go │ │ │ │ ├── item_permission_grants_item_check_member_objects_request_builder.go │ │ │ │ ├── item_permission_grants_item_check_member_objects_response.go │ │ │ │ ├── item_permission_grants_item_get_member_groups_post_request_body.go │ │ │ │ ├── item_permission_grants_item_get_member_groups_request_builder.go │ │ │ │ ├── item_permission_grants_item_get_member_groups_response.go │ │ │ │ ├── item_permission_grants_item_get_member_objects_post_request_body.go │ │ │ │ ├── item_permission_grants_item_get_member_objects_request_builder.go │ │ │ │ ├── item_permission_grants_item_get_member_objects_response.go │ │ │ │ ├── item_permission_grants_item_restore_request_builder.go │ │ │ │ ├── item_permission_grants_request_builder.go │ │ │ │ ├── item_permission_grants_resource_specific_permission_grant_item_request_builder.go │ │ │ │ ├── item_permission_grants_validate_properties_post_request_body.go │ │ │ │ ├── item_permission_grants_validate_properties_request_builder.go │ │ │ │ ├── item_photo_request_builder.go │ │ │ │ ├── item_photo_value_content_request_builder.go │ │ │ │ ├── item_photos_count_request_builder.go │ │ │ │ ├── item_photos_item_value_content_request_builder.go │ │ │ │ ├── item_photos_profile_photo_item_request_builder.go │ │ │ │ ├── item_photos_request_builder.go │ │ │ │ ├── item_planner_plans_count_request_builder.go │ │ │ │ ├── item_planner_plans_item_buckets_count_request_builder.go │ │ │ │ ├── item_planner_plans_item_buckets_item_tasks_count_request_builder.go │ │ │ │ ├── item_planner_plans_item_buckets_item_tasks_item_assigned_to_task_board_format_request_builder.go │ │ │ │ ├── item_planner_plans_item_buckets_item_tasks_item_bucket_task_board_format_request_builder.go │ │ │ │ ├── item_planner_plans_item_buckets_item_tasks_item_details_request_builder.go │ │ │ │ ├── item_planner_plans_item_buckets_item_tasks_item_progress_task_board_format_request_builder.go │ │ │ │ ├── item_planner_plans_item_buckets_item_tasks_planner_task_item_request_builder.go │ │ │ │ ├── item_planner_plans_item_buckets_item_tasks_request_builder.go │ │ │ │ ├── item_planner_plans_item_buckets_planner_bucket_item_request_builder.go │ │ │ │ ├── item_planner_plans_item_buckets_request_builder.go │ │ │ │ ├── item_planner_plans_item_details_request_builder.go │ │ │ │ ├── item_planner_plans_item_tasks_count_request_builder.go │ │ │ │ ├── item_planner_plans_item_tasks_item_assigned_to_task_board_format_request_builder.go │ │ │ │ ├── item_planner_plans_item_tasks_item_bucket_task_board_format_request_builder.go │ │ │ │ ├── item_planner_plans_item_tasks_item_details_request_builder.go │ │ │ │ ├── item_planner_plans_item_tasks_item_progress_task_board_format_request_builder.go │ │ │ │ ├── item_planner_plans_item_tasks_planner_task_item_request_builder.go │ │ │ │ ├── item_planner_plans_item_tasks_request_builder.go │ │ │ │ ├── item_planner_plans_planner_plan_item_request_builder.go │ │ │ │ ├── item_planner_plans_request_builder.go │ │ │ │ ├── item_planner_request_builder.go │ │ │ │ ├── item_rejected_senders_count_request_builder.go │ │ │ │ ├── item_rejected_senders_directory_object_item_request_builder.go │ │ │ │ ├── item_rejected_senders_item_ref_request_builder.go │ │ │ │ ├── item_rejected_senders_ref_request_builder.go │ │ │ │ ├── item_rejected_senders_request_builder.go │ │ │ │ ├── item_remove_favorite_request_builder.go │ │ │ │ ├── item_renew_request_builder.go │ │ │ │ ├── item_reset_unseen_count_request_builder.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── item_settings_count_request_builder.go │ │ │ │ ├── item_settings_group_setting_item_request_builder.go │ │ │ │ ├── item_settings_request_builder.go │ │ │ │ ├── item_sites_add_post_request_body.go │ │ │ │ ├── item_sites_add_request_builder.go │ │ │ │ ├── item_sites_add_response.go │ │ │ │ ├── item_sites_count_request_builder.go │ │ │ │ ├── item_sites_item_analytics_request_builder.go │ │ │ │ ├── item_sites_item_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_sites_item_columns_count_request_builder.go │ │ │ │ ├── item_sites_item_columns_item_source_column_request_builder.go │ │ │ │ ├── item_sites_item_columns_request_builder.go │ │ │ │ ├── item_sites_item_content_types_add_copy_from_content_type_hub_post_request_body.go │ │ │ │ ├── item_sites_item_content_types_add_copy_from_content_type_hub_request_builder.go │ │ │ │ ├── item_sites_item_content_types_add_copy_post_request_body.go │ │ │ │ ├── item_sites_item_content_types_add_copy_request_builder.go │ │ │ │ ├── item_sites_item_content_types_content_type_item_request_builder.go │ │ │ │ ├── item_sites_item_content_types_count_request_builder.go │ │ │ │ ├── item_sites_item_content_types_get_compatible_hub_content_types_request_builder.go │ │ │ │ ├── item_sites_item_content_types_get_compatible_hub_content_types_response.go │ │ │ │ ├── item_sites_item_content_types_item_associate_with_hub_sites_post_request_body.go │ │ │ │ ├── item_sites_item_content_types_item_associate_with_hub_sites_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_base_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_base_types_content_type_item_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_base_types_count_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_base_types_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_column_links_column_link_item_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_column_links_count_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_column_links_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_column_positions_column_definition_item_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_column_positions_count_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_column_positions_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_columns_count_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_columns_item_source_column_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_columns_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_copy_to_default_content_location_post_request_body.go │ │ │ │ ├── item_sites_item_content_types_item_copy_to_default_content_location_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_is_published_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_is_published_response.go │ │ │ │ ├── item_sites_item_content_types_item_publish_request_builder.go │ │ │ │ ├── item_sites_item_content_types_item_unpublish_request_builder.go │ │ │ │ ├── item_sites_item_content_types_request_builder.go │ │ │ │ ├── item_sites_item_drive_request_builder.go │ │ │ │ ├── item_sites_item_drives_count_request_builder.go │ │ │ │ ├── item_sites_item_drives_drive_item_request_builder.go │ │ │ │ ├── item_sites_item_drives_request_builder.go │ │ │ │ ├── item_sites_item_external_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_sites_item_external_columns_count_request_builder.go │ │ │ │ ├── item_sites_item_external_columns_request_builder.go │ │ │ │ ├── item_sites_item_get_activities_by_interval_request_builder.go │ │ │ │ ├── item_sites_item_get_activities_by_interval_response.go │ │ │ │ ├── item_sites_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_request_builder.go │ │ │ │ ├── item_sites_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_response.go │ │ │ │ ├── item_sites_item_get_applicable_content_types_for_list_with_list_id_request_builder.go │ │ │ │ ├── item_sites_item_get_applicable_content_types_for_list_with_list_id_response.go │ │ │ │ ├── item_sites_item_get_by_path_with_path_request_builder.go │ │ │ │ ├── item_sites_item_items_base_item_item_request_builder.go │ │ │ │ ├── item_sites_item_items_count_request_builder.go │ │ │ │ ├── item_sites_item_items_request_builder.go │ │ │ │ ├── item_sites_item_lists_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_columns_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_columns_item_source_column_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_columns_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_add_copy_from_content_type_hub_post_request_body.go │ │ │ │ ├── item_sites_item_lists_item_content_types_add_copy_from_content_type_hub_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_add_copy_post_request_body.go │ │ │ │ ├── item_sites_item_lists_item_content_types_add_copy_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_content_type_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_get_compatible_hub_content_types_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_get_compatible_hub_content_types_response.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_associate_with_hub_sites_post_request_body.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_associate_with_hub_sites_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_base_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_base_types_content_type_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_base_types_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_base_types_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_column_links_column_link_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_column_links_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_column_links_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_column_positions_column_definition_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_column_positions_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_column_positions_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_columns_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_columns_item_source_column_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_columns_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_copy_to_default_content_location_post_request_body.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_copy_to_default_content_location_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_is_published_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_is_published_response.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_publish_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_item_unpublish_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_content_types_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_drive_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_analytics_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_document_set_versions_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_document_set_versions_document_set_version_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_document_set_versions_item_restore_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_document_set_versions_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_drive_item_content_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_drive_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_fields_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_get_activities_by_interval_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_get_activities_by_interval_response.go │ │ │ │ ├── item_sites_item_lists_item_items_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_response.go │ │ │ │ ├── item_sites_item_lists_item_items_item_versions_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_versions_item_fields_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_versions_item_restore_version_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_versions_list_item_version_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_item_versions_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_list_item_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_items_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_operations_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_operations_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_operations_rich_long_running_operation_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_subscriptions_count_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_subscriptions_item_reauthorize_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_subscriptions_request_builder.go │ │ │ │ ├── item_sites_item_lists_item_subscriptions_subscription_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_list_item_request_builder.go │ │ │ │ ├── item_sites_item_lists_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_get_notebook_from_web_url_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_notebooks_get_notebook_from_web_url_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_get_recent_notebooks_with_include_personal_notebooks_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_get_recent_notebooks_with_include_personal_notebooks_response.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_copy_notebook_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_copy_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_parent_section_group_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_section_groups_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_section_groups_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_pages_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_item_sections_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_pages_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_item_sections_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_notebook_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_notebooks_request_builder.go │ │ │ │ ├── item_sites_item_onenote_operations_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_operations_onenote_operation_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_operations_request_builder.go │ │ │ │ ├── item_sites_item_onenote_pages_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_pages_item_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_sites_item_onenote_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_sites_item_onenote_pages_item_preview_request_builder.go │ │ │ │ ├── item_sites_item_onenote_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_pages_request_builder.go │ │ │ │ ├── item_sites_item_onenote_request_builder.go │ │ │ │ ├── item_sites_item_onenote_resources_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_resources_item_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_resources_onenote_resource_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_resources_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_parent_section_group_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_section_groups_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_section_groups_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_pages_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_item_sections_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_request_builder.go │ │ │ │ ├── item_sites_item_onenote_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_pages_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_sites_item_onenote_sections_request_builder.go │ │ │ │ ├── item_sites_item_operations_count_request_builder.go │ │ │ │ ├── item_sites_item_operations_request_builder.go │ │ │ │ ├── item_sites_item_operations_rich_long_running_operation_item_request_builder.go │ │ │ │ ├── item_sites_item_permissions_count_request_builder.go │ │ │ │ ├── item_sites_item_permissions_item_grant_post_request_body.go │ │ │ │ ├── item_sites_item_permissions_item_grant_request_builder.go │ │ │ │ ├── item_sites_item_permissions_item_grant_response.go │ │ │ │ ├── item_sites_item_permissions_permission_item_request_builder.go │ │ │ │ ├── item_sites_item_permissions_request_builder.go │ │ │ │ ├── item_sites_item_sites_count_request_builder.go │ │ │ │ ├── item_sites_item_sites_request_builder.go │ │ │ │ ├── item_sites_item_sites_site_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_group_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_parent_group_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_item_sets_set_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_groups_request_builder.go │ │ │ │ ├── item_sites_item_term_store_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_parent_group_sets_set_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_request_builder.go │ │ │ │ ├── item_sites_item_term_store_sets_set_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_group_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_parent_group_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_item_sets_set_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_groups_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_parent_group_sets_set_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_item_sets_set_item_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_request_builder.go │ │ │ │ ├── item_sites_item_term_stores_store_item_request_builder.go │ │ │ │ ├── item_sites_remove_post_request_body.go │ │ │ │ ├── item_sites_remove_request_builder.go │ │ │ │ ├── item_sites_remove_response.go │ │ │ │ ├── item_sites_request_builder.go │ │ │ │ ├── item_sites_site_item_request_builder.go │ │ │ │ ├── item_subscribe_by_mail_request_builder.go │ │ │ │ ├── item_team_all_channels_channel_item_request_builder.go │ │ │ │ ├── item_team_all_channels_count_request_builder.go │ │ │ │ ├── item_team_all_channels_request_builder.go │ │ │ │ ├── item_team_archive_post_request_body.go │ │ │ │ ├── item_team_archive_request_builder.go │ │ │ │ ├── item_team_channels_channel_item_request_builder.go │ │ │ │ ├── item_team_channels_count_request_builder.go │ │ │ │ ├── item_team_channels_get_all_messages_request_builder.go │ │ │ │ ├── item_team_channels_get_all_messages_response.go │ │ │ │ ├── item_team_channels_item_complete_migration_request_builder.go │ │ │ │ ├── item_team_channels_item_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_request_builder.go │ │ │ │ ├── item_team_channels_item_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_response.go │ │ │ │ ├── item_team_channels_item_files_folder_content_request_builder.go │ │ │ │ ├── item_team_channels_item_files_folder_request_builder.go │ │ │ │ ├── item_team_channels_item_members_add_post_request_body.go │ │ │ │ ├── item_team_channels_item_members_add_request_builder.go │ │ │ │ ├── item_team_channels_item_members_add_response.go │ │ │ │ ├── item_team_channels_item_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_team_channels_item_members_count_request_builder.go │ │ │ │ ├── item_team_channels_item_members_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_chat_message_item_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_count_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_delta_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_delta_response.go │ │ │ │ ├── item_team_channels_item_messages_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_hosted_contents_count_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_hosted_contents_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_replies_chat_message_item_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_replies_count_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_replies_delta_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_replies_delta_response.go │ │ │ │ ├── item_team_channels_item_messages_item_replies_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_replies_item_hosted_contents_count_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_replies_item_hosted_contents_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_replies_item_soft_delete_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_replies_item_undo_soft_delete_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_replies_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_soft_delete_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_item_undo_soft_delete_request_builder.go │ │ │ │ ├── item_team_channels_item_messages_request_builder.go │ │ │ │ ├── item_team_channels_item_provision_email_request_builder.go │ │ │ │ ├── item_team_channels_item_remove_email_request_builder.go │ │ │ │ ├── item_team_channels_item_shared_with_teams_count_request_builder.go │ │ │ │ ├── item_team_channels_item_shared_with_teams_item_allowed_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_team_channels_item_shared_with_teams_item_allowed_members_count_request_builder.go │ │ │ │ ├── item_team_channels_item_shared_with_teams_item_allowed_members_request_builder.go │ │ │ │ ├── item_team_channels_item_shared_with_teams_request_builder.go │ │ │ │ ├── item_team_channels_item_shared_with_teams_shared_with_channel_team_info_item_request_builder.go │ │ │ │ ├── item_team_channels_item_tabs_count_request_builder.go │ │ │ │ ├── item_team_channels_item_tabs_item_teams_app_request_builder.go │ │ │ │ ├── item_team_channels_item_tabs_request_builder.go │ │ │ │ ├── item_team_channels_item_tabs_teams_tab_item_request_builder.go │ │ │ │ ├── item_team_channels_request_builder.go │ │ │ │ ├── item_team_clone_post_request_body.go │ │ │ │ ├── item_team_clone_request_builder.go │ │ │ │ ├── item_team_complete_migration_request_builder.go │ │ │ │ ├── item_team_group_request_builder.go │ │ │ │ ├── item_team_incoming_channels_channel_item_request_builder.go │ │ │ │ ├── item_team_incoming_channels_count_request_builder.go │ │ │ │ ├── item_team_incoming_channels_request_builder.go │ │ │ │ ├── item_team_installed_apps_count_request_builder.go │ │ │ │ ├── item_team_installed_apps_item_teams_app_definition_request_builder.go │ │ │ │ ├── item_team_installed_apps_item_teams_app_request_builder.go │ │ │ │ ├── item_team_installed_apps_item_upgrade_request_builder.go │ │ │ │ ├── item_team_installed_apps_request_builder.go │ │ │ │ ├── item_team_installed_apps_teams_app_installation_item_request_builder.go │ │ │ │ ├── item_team_members_add_post_request_body.go │ │ │ │ ├── item_team_members_add_request_builder.go │ │ │ │ ├── item_team_members_add_response.go │ │ │ │ ├── item_team_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_team_members_count_request_builder.go │ │ │ │ ├── item_team_members_request_builder.go │ │ │ │ ├── item_team_operations_count_request_builder.go │ │ │ │ ├── item_team_operations_request_builder.go │ │ │ │ ├── item_team_operations_teams_async_operation_item_request_builder.go │ │ │ │ ├── item_team_photo_request_builder.go │ │ │ │ ├── item_team_photo_value_content_request_builder.go │ │ │ │ ├── item_team_primary_channel_complete_migration_request_builder.go │ │ │ │ ├── item_team_primary_channel_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_request_builder.go │ │ │ │ ├── item_team_primary_channel_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_response.go │ │ │ │ ├── item_team_primary_channel_files_folder_content_request_builder.go │ │ │ │ ├── item_team_primary_channel_files_folder_request_builder.go │ │ │ │ ├── item_team_primary_channel_members_add_post_request_body.go │ │ │ │ ├── item_team_primary_channel_members_add_request_builder.go │ │ │ │ ├── item_team_primary_channel_members_add_response.go │ │ │ │ ├── item_team_primary_channel_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_team_primary_channel_members_count_request_builder.go │ │ │ │ ├── item_team_primary_channel_members_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_chat_message_item_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_count_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_delta_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_delta_response.go │ │ │ │ ├── item_team_primary_channel_messages_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_hosted_contents_count_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_hosted_contents_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_replies_chat_message_item_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_replies_count_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_replies_delta_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_replies_delta_response.go │ │ │ │ ├── item_team_primary_channel_messages_item_replies_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_replies_item_hosted_contents_count_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_replies_item_hosted_contents_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_replies_item_soft_delete_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_replies_item_undo_soft_delete_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_replies_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_soft_delete_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_item_undo_soft_delete_request_builder.go │ │ │ │ ├── item_team_primary_channel_messages_request_builder.go │ │ │ │ ├── item_team_primary_channel_provision_email_request_builder.go │ │ │ │ ├── item_team_primary_channel_remove_email_request_builder.go │ │ │ │ ├── item_team_primary_channel_request_builder.go │ │ │ │ ├── item_team_primary_channel_shared_with_teams_count_request_builder.go │ │ │ │ ├── item_team_primary_channel_shared_with_teams_item_allowed_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_team_primary_channel_shared_with_teams_item_allowed_members_count_request_builder.go │ │ │ │ ├── item_team_primary_channel_shared_with_teams_item_allowed_members_request_builder.go │ │ │ │ ├── item_team_primary_channel_shared_with_teams_request_builder.go │ │ │ │ ├── item_team_primary_channel_shared_with_teams_shared_with_channel_team_info_item_request_builder.go │ │ │ │ ├── item_team_primary_channel_tabs_count_request_builder.go │ │ │ │ ├── item_team_primary_channel_tabs_item_teams_app_request_builder.go │ │ │ │ ├── item_team_primary_channel_tabs_request_builder.go │ │ │ │ ├── item_team_primary_channel_tabs_teams_tab_item_request_builder.go │ │ │ │ ├── item_team_request_builder.go │ │ │ │ ├── item_team_schedule_offer_shift_requests_count_request_builder.go │ │ │ │ ├── item_team_schedule_offer_shift_requests_offer_shift_request_item_request_builder.go │ │ │ │ ├── item_team_schedule_offer_shift_requests_request_builder.go │ │ │ │ ├── item_team_schedule_open_shift_change_requests_count_request_builder.go │ │ │ │ ├── item_team_schedule_open_shift_change_requests_open_shift_change_request_item_request_builder.go │ │ │ │ ├── item_team_schedule_open_shift_change_requests_request_builder.go │ │ │ │ ├── item_team_schedule_open_shifts_count_request_builder.go │ │ │ │ ├── item_team_schedule_open_shifts_open_shift_item_request_builder.go │ │ │ │ ├── item_team_schedule_open_shifts_request_builder.go │ │ │ │ ├── item_team_schedule_request_builder.go │ │ │ │ ├── item_team_schedule_scheduling_groups_count_request_builder.go │ │ │ │ ├── item_team_schedule_scheduling_groups_request_builder.go │ │ │ │ ├── item_team_schedule_scheduling_groups_scheduling_group_item_request_builder.go │ │ │ │ ├── item_team_schedule_share_post_request_body.go │ │ │ │ ├── item_team_schedule_share_request_builder.go │ │ │ │ ├── item_team_schedule_shifts_count_request_builder.go │ │ │ │ ├── item_team_schedule_shifts_request_builder.go │ │ │ │ ├── item_team_schedule_shifts_shift_item_request_builder.go │ │ │ │ ├── item_team_schedule_swap_shifts_change_requests_count_request_builder.go │ │ │ │ ├── item_team_schedule_swap_shifts_change_requests_request_builder.go │ │ │ │ ├── item_team_schedule_swap_shifts_change_requests_swap_shifts_change_request_item_request_builder.go │ │ │ │ ├── item_team_schedule_time_off_reasons_count_request_builder.go │ │ │ │ ├── item_team_schedule_time_off_reasons_request_builder.go │ │ │ │ ├── item_team_schedule_time_off_reasons_time_off_reason_item_request_builder.go │ │ │ │ ├── item_team_schedule_time_off_requests_count_request_builder.go │ │ │ │ ├── item_team_schedule_time_off_requests_request_builder.go │ │ │ │ ├── item_team_schedule_time_off_requests_time_off_request_item_request_builder.go │ │ │ │ ├── item_team_schedule_times_off_count_request_builder.go │ │ │ │ ├── item_team_schedule_times_off_request_builder.go │ │ │ │ ├── item_team_schedule_times_off_time_off_item_request_builder.go │ │ │ │ ├── item_team_send_activity_notification_post_request_body.go │ │ │ │ ├── item_team_send_activity_notification_request_builder.go │ │ │ │ ├── item_team_tags_count_request_builder.go │ │ │ │ ├── item_team_tags_item_members_count_request_builder.go │ │ │ │ ├── item_team_tags_item_members_request_builder.go │ │ │ │ ├── item_team_tags_item_members_teamwork_tag_member_item_request_builder.go │ │ │ │ ├── item_team_tags_request_builder.go │ │ │ │ ├── item_team_tags_teamwork_tag_item_request_builder.go │ │ │ │ ├── item_team_template_request_builder.go │ │ │ │ ├── item_team_unarchive_request_builder.go │ │ │ │ ├── item_threads_conversation_thread_item_request_builder.go │ │ │ │ ├── item_threads_count_request_builder.go │ │ │ │ ├── item_threads_item_posts_count_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_attachments_count_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_threads_item_posts_item_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_attachments_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_extensions_count_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_extensions_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_forward_post_request_body.go │ │ │ │ ├── item_threads_item_posts_item_forward_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_attachments_attachment_item_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_attachments_count_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_attachments_create_upload_session_post_request_body.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_attachments_create_upload_session_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_attachments_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_extensions_count_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_extensions_extension_item_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_extensions_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_forward_post_request_body.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_forward_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_reply_post_request_body.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_reply_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_in_reply_to_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_multi_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_multi_value_extended_properties_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_reply_post_request_body.go │ │ │ │ ├── item_threads_item_posts_item_reply_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_single_value_extended_properties_count_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_single_value_extended_properties_request_builder.go │ │ │ │ ├── item_threads_item_posts_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ │ ├── item_threads_item_posts_post_item_request_builder.go │ │ │ │ ├── item_threads_item_posts_request_builder.go │ │ │ │ ├── item_threads_item_reply_post_request_body.go │ │ │ │ ├── item_threads_item_reply_request_builder.go │ │ │ │ ├── item_threads_request_builder.go │ │ │ │ ├── item_transitive_member_of_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_directory_object_item_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_administrative_unit_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_group_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_group_request_builder.go │ │ │ │ ├── item_transitive_member_of_item_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_transitive_member_of_item_graph_group_request_builder.go │ │ │ │ ├── item_transitive_member_of_request_builder.go │ │ │ │ ├── item_transitive_members_count_request_builder.go │ │ │ │ ├── item_transitive_members_directory_object_item_request_builder.go │ │ │ │ ├── item_transitive_members_graph_application_count_request_builder.go │ │ │ │ ├── item_transitive_members_graph_application_request_builder.go │ │ │ │ ├── item_transitive_members_graph_device_count_request_builder.go │ │ │ │ ├── item_transitive_members_graph_device_request_builder.go │ │ │ │ ├── item_transitive_members_graph_group_count_request_builder.go │ │ │ │ ├── item_transitive_members_graph_group_request_builder.go │ │ │ │ ├── item_transitive_members_graph_org_contact_count_request_builder.go │ │ │ │ ├── item_transitive_members_graph_org_contact_request_builder.go │ │ │ │ ├── item_transitive_members_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_transitive_members_graph_service_principal_request_builder.go │ │ │ │ ├── item_transitive_members_graph_user_count_request_builder.go │ │ │ │ ├── item_transitive_members_graph_user_request_builder.go │ │ │ │ ├── item_transitive_members_item_graph_application_request_builder.go │ │ │ │ ├── item_transitive_members_item_graph_device_request_builder.go │ │ │ │ ├── item_transitive_members_item_graph_group_request_builder.go │ │ │ │ ├── item_transitive_members_item_graph_org_contact_request_builder.go │ │ │ │ ├── item_transitive_members_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_transitive_members_item_graph_user_request_builder.go │ │ │ │ ├── item_transitive_members_request_builder.go │ │ │ │ ├── item_unsubscribe_by_mail_request_builder.go │ │ │ │ ├── item_validate_properties_post_request_body.go │ │ │ │ ├── item_validate_properties_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── groupsettings/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── group_setting_item_request_builder.go │ │ │ │ └── group_settings_request_builder.go │ │ │ ├── groupsettingtemplates/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── group_setting_template_item_request_builder.go │ │ │ │ ├── group_setting_templates_request_builder.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── identity/ │ │ │ │ ├── api_connectors_count_request_builder.go │ │ │ │ ├── api_connectors_identity_api_connector_item_request_builder.go │ │ │ │ ├── api_connectors_item_upload_client_certificate_post_request_body.go │ │ │ │ ├── api_connectors_item_upload_client_certificate_request_builder.go │ │ │ │ ├── api_connectors_request_builder.go │ │ │ │ ├── b2x_user_flows_b2x_identity_user_flow_item_request_builder.go │ │ │ │ ├── b2x_user_flows_count_request_builder.go │ │ │ │ ├── b2x_user_flows_item_identity_providers_count_request_builder.go │ │ │ │ ├── b2x_user_flows_item_identity_providers_identity_provider_item_request_builder.go │ │ │ │ ├── b2x_user_flows_item_identity_providers_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_count_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_item_default_pages_count_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_item_default_pages_item_value_content_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_item_default_pages_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_item_default_pages_user_flow_language_page_item_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_item_overrides_pages_count_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_item_overrides_pages_item_value_content_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_item_overrides_pages_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_item_overrides_pages_user_flow_language_page_item_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_request_builder.go │ │ │ │ ├── b2x_user_flows_item_languages_user_flow_language_configuration_item_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_attribute_assignments_count_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_attribute_assignments_get_order_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_attribute_assignments_identity_user_flow_attribute_assignment_item_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_attribute_assignments_item_user_attribute_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_attribute_assignments_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_attribute_assignments_set_order_post_request_body.go │ │ │ │ ├── b2x_user_flows_item_user_attribute_assignments_set_order_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_flow_identity_providers_count_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_flow_identity_providers_identity_provider_base_item_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_flow_identity_providers_item_ref_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_flow_identity_providers_ref_request_builder.go │ │ │ │ ├── b2x_user_flows_item_user_flow_identity_providers_request_builder.go │ │ │ │ ├── b2x_user_flows_request_builder.go │ │ │ │ ├── conditional_access_authentication_context_class_references_authentication_context_class_reference_item_request_builder.go │ │ │ │ ├── conditional_access_authentication_context_class_references_count_request_builder.go │ │ │ │ ├── conditional_access_authentication_context_class_references_request_builder.go │ │ │ │ ├── conditional_access_named_locations_count_request_builder.go │ │ │ │ ├── conditional_access_named_locations_named_location_item_request_builder.go │ │ │ │ ├── conditional_access_named_locations_request_builder.go │ │ │ │ ├── conditional_access_policies_conditional_access_policy_item_request_builder.go │ │ │ │ ├── conditional_access_policies_count_request_builder.go │ │ │ │ ├── conditional_access_policies_request_builder.go │ │ │ │ ├── conditional_access_request_builder.go │ │ │ │ ├── conditional_access_templates_conditional_access_template_item_request_builder.go │ │ │ │ ├── conditional_access_templates_count_request_builder.go │ │ │ │ ├── conditional_access_templates_request_builder.go │ │ │ │ ├── identity_providers_available_provider_types_request_builder.go │ │ │ │ ├── identity_providers_available_provider_types_response.go │ │ │ │ ├── identity_providers_count_request_builder.go │ │ │ │ ├── identity_providers_identity_provider_base_item_request_builder.go │ │ │ │ ├── identity_providers_request_builder.go │ │ │ │ ├── identity_request_builder.go │ │ │ │ ├── user_flow_attributes_count_request_builder.go │ │ │ │ ├── user_flow_attributes_identity_user_flow_attribute_item_request_builder.go │ │ │ │ └── user_flow_attributes_request_builder.go │ │ │ ├── identitygovernance/ │ │ │ │ ├── access_reviews_definitions_access_review_schedule_definition_item_request_builder.go │ │ │ │ ├── access_reviews_definitions_count_request_builder.go │ │ │ │ ├── access_reviews_definitions_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── access_reviews_definitions_filter_by_current_user_with_on_response.go │ │ │ │ ├── access_reviews_definitions_item_instances_access_review_instance_item_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_count_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_filter_by_current_user_with_on_response.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_accept_recommendations_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_apply_decisions_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_batch_record_decisions_post_request_body.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_batch_record_decisions_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_contacted_reviewers_access_review_reviewer_item_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_contacted_reviewers_count_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_contacted_reviewers_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_decisions_access_review_instance_decision_item_item_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_decisions_count_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_decisions_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_decisions_filter_by_current_user_with_on_response.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_decisions_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_reset_decisions_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_send_reminder_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_access_review_stage_item_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_count_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_filter_by_current_user_with_on_response.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_item_decisions_access_review_instance_decision_item_item_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_item_decisions_count_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_item_decisions_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_item_decisions_filter_by_current_user_with_on_response.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_item_decisions_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_item_stop_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stages_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_item_stop_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_instances_request_builder.go │ │ │ │ ├── access_reviews_definitions_item_stop_request_builder.go │ │ │ │ ├── access_reviews_definitions_request_builder.go │ │ │ │ ├── access_reviews_history_definitions_access_review_history_definition_item_request_builder.go │ │ │ │ ├── access_reviews_history_definitions_count_request_builder.go │ │ │ │ ├── access_reviews_history_definitions_item_instances_access_review_history_instance_item_request_builder.go │ │ │ │ ├── access_reviews_history_definitions_item_instances_count_request_builder.go │ │ │ │ ├── access_reviews_history_definitions_item_instances_item_generate_download_uri_request_builder.go │ │ │ │ ├── access_reviews_history_definitions_item_instances_request_builder.go │ │ │ │ ├── access_reviews_history_definitions_request_builder.go │ │ │ │ ├── access_reviews_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_app_consent_request_item_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_count_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_filter_by_current_user_with_on_response.go │ │ │ │ ├── app_consent_app_consent_requests_item_user_consent_requests_count_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_item_user_consent_requests_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_item_user_consent_requests_filter_by_current_user_with_on_response.go │ │ │ │ ├── app_consent_app_consent_requests_item_user_consent_requests_item_approval_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_item_user_consent_requests_item_approval_stages_approval_stage_item_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_item_user_consent_requests_item_approval_stages_count_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_item_user_consent_requests_item_approval_stages_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_item_user_consent_requests_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_item_user_consent_requests_user_consent_request_item_request_builder.go │ │ │ │ ├── app_consent_app_consent_requests_request_builder.go │ │ │ │ ├── app_consent_request_builder.go │ │ │ │ ├── entitlement_management_access_package_assignment_approvals_approval_item_request_builder.go │ │ │ │ ├── entitlement_management_access_package_assignment_approvals_count_request_builder.go │ │ │ │ ├── entitlement_management_access_package_assignment_approvals_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_access_package_assignment_approvals_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_access_package_assignment_approvals_item_stages_approval_stage_item_request_builder.go │ │ │ │ ├── entitlement_management_access_package_assignment_approvals_item_stages_count_request_builder.go │ │ │ │ ├── entitlement_management_access_package_assignment_approvals_item_stages_request_builder.go │ │ │ │ ├── entitlement_management_access_package_assignment_approvals_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_access_package_item_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_count_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_access_packages_item_access_packages_incompatible_with_access_package_item_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_access_packages_incompatible_with_count_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_access_packages_incompatible_with_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_assignment_policies_access_package_assignment_policy_item_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_assignment_policies_count_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_assignment_policies_item_access_package_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_assignment_policies_item_catalog_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_assignment_policies_item_questions_access_package_question_item_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_assignment_policies_item_questions_count_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_assignment_policies_item_questions_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_assignment_policies_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_catalog_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_get_applicable_policy_requirements_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_get_applicable_policy_requirements_response.go │ │ │ │ ├── entitlement_management_access_packages_item_incompatible_access_packages_access_package_item_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_incompatible_access_packages_count_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_incompatible_access_packages_item_ref_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_incompatible_access_packages_ref_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_incompatible_access_packages_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_incompatible_groups_count_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_incompatible_groups_group_item_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_incompatible_groups_item_ref_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_incompatible_groups_ref_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_item_incompatible_groups_request_builder.go │ │ │ │ ├── entitlement_management_access_packages_request_builder.go │ │ │ │ ├── entitlement_management_assignment_policies_access_package_assignment_policy_item_request_builder.go │ │ │ │ ├── entitlement_management_assignment_policies_count_request_builder.go │ │ │ │ ├── entitlement_management_assignment_policies_item_access_package_request_builder.go │ │ │ │ ├── entitlement_management_assignment_policies_item_catalog_request_builder.go │ │ │ │ ├── entitlement_management_assignment_policies_item_questions_access_package_question_item_request_builder.go │ │ │ │ ├── entitlement_management_assignment_policies_item_questions_count_request_builder.go │ │ │ │ ├── entitlement_management_assignment_policies_item_questions_request_builder.go │ │ │ │ ├── entitlement_management_assignment_policies_request_builder.go │ │ │ │ ├── entitlement_management_assignment_requests_access_package_assignment_request_item_request_builder.go │ │ │ │ ├── entitlement_management_assignment_requests_count_request_builder.go │ │ │ │ ├── entitlement_management_assignment_requests_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_assignment_requests_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_assignment_requests_item_access_package_request_builder.go │ │ │ │ ├── entitlement_management_assignment_requests_item_assignment_request_builder.go │ │ │ │ ├── entitlement_management_assignment_requests_item_cancel_request_builder.go │ │ │ │ ├── entitlement_management_assignment_requests_item_reprocess_request_builder.go │ │ │ │ ├── entitlement_management_assignment_requests_item_requestor_request_builder.go │ │ │ │ ├── entitlement_management_assignment_requests_request_builder.go │ │ │ │ ├── entitlement_management_assignments_access_package_assignment_item_request_builder.go │ │ │ │ ├── entitlement_management_assignments_additional_access_request_builder.go │ │ │ │ ├── entitlement_management_assignments_additional_access_response.go │ │ │ │ ├── entitlement_management_assignments_additional_access_with_access_package_id_with_incompatible_access_package_id_request_builder.go │ │ │ │ ├── entitlement_management_assignments_additional_access_with_access_package_id_with_incompatible_access_package_id_response.go │ │ │ │ ├── entitlement_management_assignments_count_request_builder.go │ │ │ │ ├── entitlement_management_assignments_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_assignments_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_assignments_item_access_package_request_builder.go │ │ │ │ ├── entitlement_management_assignments_item_assignment_policy_request_builder.go │ │ │ │ ├── entitlement_management_assignments_item_reprocess_request_builder.go │ │ │ │ ├── entitlement_management_assignments_item_target_request_builder.go │ │ │ │ ├── entitlement_management_assignments_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_access_package_catalog_item_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_count_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_access_package_item_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_count_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_access_packages_incompatible_with_access_package_item_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_access_packages_incompatible_with_count_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_access_packages_incompatible_with_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_assignment_policies_access_package_assignment_policy_item_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_assignment_policies_count_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_assignment_policies_item_access_package_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_assignment_policies_item_catalog_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_assignment_policies_item_questions_access_package_question_item_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_assignment_policies_item_questions_count_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_assignment_policies_item_questions_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_assignment_policies_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_catalog_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_get_applicable_policy_requirements_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_get_applicable_policy_requirements_response.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_incompatible_access_packages_access_package_item_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_incompatible_access_packages_count_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_incompatible_access_packages_item_ref_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_incompatible_access_packages_ref_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_incompatible_access_packages_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_incompatible_groups_count_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_incompatible_groups_group_item_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_incompatible_groups_item_ref_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_incompatible_groups_ref_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_item_incompatible_groups_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_item_access_packages_request_builder.go │ │ │ │ ├── entitlement_management_catalogs_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_connected_organization_item_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_count_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_count_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_delta_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_delta_response.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_directory_object_item_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_get_available_extension_properties_post_request_body.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_get_available_extension_properties_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_get_available_extension_properties_response.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_get_by_ids_post_request_body.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_get_by_ids_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_get_by_ids_response.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_item_ref_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_ref_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_validate_properties_post_request_body.go │ │ │ │ ├── entitlement_management_connected_organizations_item_external_sponsors_validate_properties_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_count_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_delta_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_delta_response.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_directory_object_item_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_get_available_extension_properties_post_request_body.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_get_available_extension_properties_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_get_available_extension_properties_response.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_get_by_ids_post_request_body.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_get_by_ids_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_get_by_ids_response.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_item_ref_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_ref_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_validate_properties_post_request_body.go │ │ │ │ ├── entitlement_management_connected_organizations_item_internal_sponsors_validate_properties_request_builder.go │ │ │ │ ├── entitlement_management_connected_organizations_request_builder.go │ │ │ │ ├── entitlement_management_request_builder.go │ │ │ │ ├── entitlement_management_settings_request_builder.go │ │ │ │ ├── identity_governance_request_builder.go │ │ │ │ ├── terms_of_use_agreement_acceptances_agreement_acceptance_item_request_builder.go │ │ │ │ ├── terms_of_use_agreement_acceptances_count_request_builder.go │ │ │ │ ├── terms_of_use_agreement_acceptances_request_builder.go │ │ │ │ ├── terms_of_use_agreements_agreement_item_request_builder.go │ │ │ │ ├── terms_of_use_agreements_count_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_acceptances_agreement_acceptance_item_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_acceptances_count_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_acceptances_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_file_localizations_agreement_file_localization_item_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_file_localizations_count_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_file_localizations_item_versions_agreement_file_version_item_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_file_localizations_item_versions_count_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_file_localizations_item_versions_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_file_localizations_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_file_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_files_agreement_file_localization_item_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_files_count_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_files_item_versions_agreement_file_version_item_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_files_item_versions_count_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_files_item_versions_request_builder.go │ │ │ │ ├── terms_of_use_agreements_item_files_request_builder.go │ │ │ │ ├── terms_of_use_agreements_request_builder.go │ │ │ │ └── terms_of_use_request_builder.go │ │ │ ├── identityprotection/ │ │ │ │ ├── identity_protection_request_builder.go │ │ │ │ ├── risk_detections_count_request_builder.go │ │ │ │ ├── risk_detections_request_builder.go │ │ │ │ ├── risk_detections_risk_detection_item_request_builder.go │ │ │ │ ├── risky_service_principals_confirm_compromised_post_request_body.go │ │ │ │ ├── risky_service_principals_confirm_compromised_request_builder.go │ │ │ │ ├── risky_service_principals_count_request_builder.go │ │ │ │ ├── risky_service_principals_dismiss_post_request_body.go │ │ │ │ ├── risky_service_principals_dismiss_request_builder.go │ │ │ │ ├── risky_service_principals_item_history_count_request_builder.go │ │ │ │ ├── risky_service_principals_item_history_request_builder.go │ │ │ │ ├── risky_service_principals_item_history_risky_service_principal_history_item_item_request_builder.go │ │ │ │ ├── risky_service_principals_request_builder.go │ │ │ │ ├── risky_service_principals_risky_service_principal_item_request_builder.go │ │ │ │ ├── risky_users_confirm_compromised_post_request_body.go │ │ │ │ ├── risky_users_confirm_compromised_request_builder.go │ │ │ │ ├── risky_users_count_request_builder.go │ │ │ │ ├── risky_users_dismiss_post_request_body.go │ │ │ │ ├── risky_users_dismiss_request_builder.go │ │ │ │ ├── risky_users_item_history_count_request_builder.go │ │ │ │ ├── risky_users_item_history_request_builder.go │ │ │ │ ├── risky_users_item_history_risky_user_history_item_item_request_builder.go │ │ │ │ ├── risky_users_request_builder.go │ │ │ │ ├── risky_users_risky_user_item_request_builder.go │ │ │ │ ├── service_principal_risk_detections_count_request_builder.go │ │ │ │ ├── service_principal_risk_detections_request_builder.go │ │ │ │ └── service_principal_risk_detections_service_principal_risk_detection_item_request_builder.go │ │ │ ├── identityproviders/ │ │ │ │ ├── available_provider_types_request_builder.go │ │ │ │ ├── available_provider_types_response.go │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── identity_provider_item_request_builder.go │ │ │ │ └── identity_providers_request_builder.go │ │ │ ├── informationprotection/ │ │ │ │ ├── bitlocker_recovery_keys_bitlocker_recovery_key_item_request_builder.go │ │ │ │ ├── bitlocker_recovery_keys_count_request_builder.go │ │ │ │ ├── bitlocker_recovery_keys_request_builder.go │ │ │ │ ├── bitlocker_request_builder.go │ │ │ │ ├── information_protection_request_builder.go │ │ │ │ ├── threat_assessment_requests_count_request_builder.go │ │ │ │ ├── threat_assessment_requests_item_results_count_request_builder.go │ │ │ │ ├── threat_assessment_requests_item_results_request_builder.go │ │ │ │ ├── threat_assessment_requests_item_results_threat_assessment_result_item_request_builder.go │ │ │ │ ├── threat_assessment_requests_request_builder.go │ │ │ │ └── threat_assessment_requests_threat_assessment_request_item_request_builder.go │ │ │ ├── invitations/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── invitation_item_request_builder.go │ │ │ │ ├── invitations_request_builder.go │ │ │ │ └── item_invited_user_request_builder.go │ │ │ ├── kiota-lock.json │ │ │ ├── localizations/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── item_background_image_request_builder.go │ │ │ │ ├── item_banner_logo_request_builder.go │ │ │ │ ├── item_square_logo_request_builder.go │ │ │ │ ├── localizations_request_builder.go │ │ │ │ └── organizational_branding_localization_item_request_builder.go │ │ │ ├── models/ │ │ │ │ ├── aad_user_conversation_member.go │ │ │ │ ├── aad_user_conversation_member_collection_response.go │ │ │ │ ├── aad_user_conversation_member_result.go │ │ │ │ ├── aad_user_notification_recipient.go │ │ │ │ ├── access_action.go │ │ │ │ ├── access_package.go │ │ │ │ ├── access_package_answer.go │ │ │ │ ├── access_package_answer_choice.go │ │ │ │ ├── access_package_answer_choice_collection_response.go │ │ │ │ ├── access_package_answer_collection_response.go │ │ │ │ ├── access_package_answer_string.go │ │ │ │ ├── access_package_approval_stage.go │ │ │ │ ├── access_package_approval_stage_collection_response.go │ │ │ │ ├── access_package_assignment.go │ │ │ │ ├── access_package_assignment_approval_settings.go │ │ │ │ ├── access_package_assignment_collection_response.go │ │ │ │ ├── access_package_assignment_policy.go │ │ │ │ ├── access_package_assignment_policy_collection_response.go │ │ │ │ ├── access_package_assignment_request.go │ │ │ │ ├── access_package_assignment_request_collection_response.go │ │ │ │ ├── access_package_assignment_request_requirements.go │ │ │ │ ├── access_package_assignment_requestor_settings.go │ │ │ │ ├── access_package_assignment_review_settings.go │ │ │ │ ├── access_package_assignment_state.go │ │ │ │ ├── access_package_automatic_request_settings.go │ │ │ │ ├── access_package_catalog.go │ │ │ │ ├── access_package_catalog_collection_response.go │ │ │ │ ├── access_package_catalog_state.go │ │ │ │ ├── access_package_catalog_type.go │ │ │ │ ├── access_package_collection_response.go │ │ │ │ ├── access_package_external_user_lifecycle_action.go │ │ │ │ ├── access_package_localized_text.go │ │ │ │ ├── access_package_localized_text_collection_response.go │ │ │ │ ├── access_package_multiple_choice_question.go │ │ │ │ ├── access_package_multiple_choice_question_collection_response.go │ │ │ │ ├── access_package_question.go │ │ │ │ ├── access_package_question_collection_response.go │ │ │ │ ├── access_package_request_state.go │ │ │ │ ├── access_package_request_type.go │ │ │ │ ├── access_package_subject.go │ │ │ │ ├── access_package_subject_type.go │ │ │ │ ├── access_package_text_input_question.go │ │ │ │ ├── access_package_text_input_question_collection_response.go │ │ │ │ ├── access_review_apply_action.go │ │ │ │ ├── access_review_apply_action_collection_response.go │ │ │ │ ├── access_review_expiration_behavior.go │ │ │ │ ├── access_review_history_decision_filter.go │ │ │ │ ├── access_review_history_definition.go │ │ │ │ ├── access_review_history_definition_collection_response.go │ │ │ │ ├── access_review_history_instance.go │ │ │ │ ├── access_review_history_instance_collection_response.go │ │ │ │ ├── access_review_history_schedule_settings.go │ │ │ │ ├── access_review_history_status.go │ │ │ │ ├── access_review_inactive_users_query_scope.go │ │ │ │ ├── access_review_instance.go │ │ │ │ ├── access_review_instance_collection_response.go │ │ │ │ ├── access_review_instance_decision_item.go │ │ │ │ ├── access_review_instance_decision_item_access_package_assignment_policy_resource.go │ │ │ │ ├── access_review_instance_decision_item_azure_role_resource.go │ │ │ │ ├── access_review_instance_decision_item_collection_response.go │ │ │ │ ├── access_review_instance_decision_item_resource.go │ │ │ │ ├── access_review_instance_decision_item_service_principal_resource.go │ │ │ │ ├── access_review_notification_recipient_item.go │ │ │ │ ├── access_review_notification_recipient_item_collection_response.go │ │ │ │ ├── access_review_notification_recipient_query_scope.go │ │ │ │ ├── access_review_notification_recipient_scope.go │ │ │ │ ├── access_review_query_scope.go │ │ │ │ ├── access_review_reviewer.go │ │ │ │ ├── access_review_reviewer_collection_response.go │ │ │ │ ├── access_review_reviewer_scope.go │ │ │ │ ├── access_review_reviewer_scope_collection_response.go │ │ │ │ ├── access_review_schedule_definition.go │ │ │ │ ├── access_review_schedule_definition_collection_response.go │ │ │ │ ├── access_review_schedule_settings.go │ │ │ │ ├── access_review_scope.go │ │ │ │ ├── access_review_scope_collection_response.go │ │ │ │ ├── access_review_set.go │ │ │ │ ├── access_review_stage.go │ │ │ │ ├── access_review_stage_collection_response.go │ │ │ │ ├── access_review_stage_settings.go │ │ │ │ ├── access_review_stage_settings_collection_response.go │ │ │ │ ├── action_result_part.go │ │ │ │ ├── action_state.go │ │ │ │ ├── activity_based_timeout_policy.go │ │ │ │ ├── activity_based_timeout_policy_collection_response.go │ │ │ │ ├── activity_domain.go │ │ │ │ ├── activity_history_item.go │ │ │ │ ├── activity_history_item_collection_response.go │ │ │ │ ├── activity_type.go │ │ │ │ ├── add_in.go │ │ │ │ ├── add_in_collection_response.go │ │ │ │ ├── add_large_gallery_view_operation.go │ │ │ │ ├── add_large_gallery_view_operation_collection_response.go │ │ │ │ ├── admin.go │ │ │ │ ├── admin_consent_request_policy.go │ │ │ │ ├── administrative_unit.go │ │ │ │ ├── administrative_unit_collection_response.go │ │ │ │ ├── advanced_config_state.go │ │ │ │ ├── aggregation_option.go │ │ │ │ ├── aggregation_option_collection_response.go │ │ │ │ ├── agreement.go │ │ │ │ ├── agreement_acceptance.go │ │ │ │ ├── agreement_acceptance_collection_response.go │ │ │ │ ├── agreement_acceptance_state.go │ │ │ │ ├── agreement_collection_response.go │ │ │ │ ├── agreement_file.go │ │ │ │ ├── agreement_file_data.go │ │ │ │ ├── agreement_file_localization.go │ │ │ │ ├── agreement_file_localization_collection_response.go │ │ │ │ ├── agreement_file_properties.go │ │ │ │ ├── agreement_file_version.go │ │ │ │ ├── agreement_file_version_collection_response.go │ │ │ │ ├── album.go │ │ │ │ ├── alert.go │ │ │ │ ├── alert_collection_response.go │ │ │ │ ├── alert_detection.go │ │ │ │ ├── alert_detection_collection_response.go │ │ │ │ ├── alert_feedback.go │ │ │ │ ├── alert_history_state.go │ │ │ │ ├── alert_history_state_collection_response.go │ │ │ │ ├── alert_severity.go │ │ │ │ ├── alert_status.go │ │ │ │ ├── alert_trigger.go │ │ │ │ ├── alert_trigger_collection_response.go │ │ │ │ ├── all_devices_assignment_target.go │ │ │ │ ├── all_licensed_users_assignment_target.go │ │ │ │ ├── allow_invites_from.go │ │ │ │ ├── allowed_target_scope.go │ │ │ │ ├── alteration_response.go │ │ │ │ ├── altered_query_token.go │ │ │ │ ├── altered_query_token_collection_response.go │ │ │ │ ├── alternative_security_id.go │ │ │ │ ├── alternative_security_id_collection_response.go │ │ │ │ ├── android_compliance_policy.go │ │ │ │ ├── android_compliance_policy_collection_response.go │ │ │ │ ├── android_custom_configuration.go │ │ │ │ ├── android_custom_configuration_collection_response.go │ │ │ │ ├── android_general_device_configuration.go │ │ │ │ ├── android_general_device_configuration_collection_response.go │ │ │ │ ├── android_lob_app.go │ │ │ │ ├── android_lob_app_collection_response.go │ │ │ │ ├── android_managed_app_protection.go │ │ │ │ ├── android_managed_app_protection_collection_response.go │ │ │ │ ├── android_managed_app_registration.go │ │ │ │ ├── android_managed_app_registration_collection_response.go │ │ │ │ ├── android_minimum_operating_system.go │ │ │ │ ├── android_mobile_app_identifier.go │ │ │ │ ├── android_required_password_type.go │ │ │ │ ├── android_store_app.go │ │ │ │ ├── android_store_app_collection_response.go │ │ │ │ ├── android_work_profile_compliance_policy.go │ │ │ │ ├── android_work_profile_compliance_policy_collection_response.go │ │ │ │ ├── android_work_profile_cross_profile_data_sharing_type.go │ │ │ │ ├── android_work_profile_custom_configuration.go │ │ │ │ ├── android_work_profile_custom_configuration_collection_response.go │ │ │ │ ├── android_work_profile_default_app_permission_policy_type.go │ │ │ │ ├── android_work_profile_general_device_configuration.go │ │ │ │ ├── android_work_profile_general_device_configuration_collection_response.go │ │ │ │ ├── android_work_profile_required_password_type.go │ │ │ │ ├── anonymous_guest_conversation_member.go │ │ │ │ ├── anonymous_guest_conversation_member_collection_response.go │ │ │ │ ├── answer_input_type.go │ │ │ │ ├── api_application.go │ │ │ │ ├── api_authentication_configuration_base.go │ │ │ │ ├── app_catalogs.go │ │ │ │ ├── app_configuration_setting_item.go │ │ │ │ ├── app_configuration_setting_item_collection_response.go │ │ │ │ ├── app_consent_approval_route.go │ │ │ │ ├── app_consent_request.go │ │ │ │ ├── app_consent_request_collection_response.go │ │ │ │ ├── app_consent_request_scope.go │ │ │ │ ├── app_consent_request_scope_collection_response.go │ │ │ │ ├── app_credential_restriction_type.go │ │ │ │ ├── app_hosted_media_config.go │ │ │ │ ├── app_identity.go │ │ │ │ ├── app_key_credential_restriction_type.go │ │ │ │ ├── app_list_item.go │ │ │ │ ├── app_list_item_collection_response.go │ │ │ │ ├── app_list_type.go │ │ │ │ ├── app_locker_application_control_type.go │ │ │ │ ├── app_management_configuration.go │ │ │ │ ├── app_management_policy.go │ │ │ │ ├── app_management_policy_collection_response.go │ │ │ │ ├── app_role.go │ │ │ │ ├── app_role_assignment.go │ │ │ │ ├── app_role_assignment_collection_response.go │ │ │ │ ├── app_role_collection_response.go │ │ │ │ ├── app_scope.go │ │ │ │ ├── apple_device_features_configuration_base.go │ │ │ │ ├── apple_device_features_configuration_base_collection_response.go │ │ │ │ ├── apple_managed_identity_provider.go │ │ │ │ ├── apple_managed_identity_provider_collection_response.go │ │ │ │ ├── apple_push_notification_certificate.go │ │ │ │ ├── application.go │ │ │ │ ├── application_collection_response.go │ │ │ │ ├── application_enforced_restrictions_session_control.go │ │ │ │ ├── application_guard_block_clipboard_sharing_type.go │ │ │ │ ├── application_guard_block_file_transfer_type.go │ │ │ │ ├── application_service_principal.go │ │ │ │ ├── application_template.go │ │ │ │ ├── application_template_collection_response.go │ │ │ │ ├── application_type.go │ │ │ │ ├── applied_conditional_access_policy.go │ │ │ │ ├── applied_conditional_access_policy_collection_response.go │ │ │ │ ├── applied_conditional_access_policy_result.go │ │ │ │ ├── approval.go │ │ │ │ ├── approval_collection_response.go │ │ │ │ ├── approval_settings.go │ │ │ │ ├── approval_stage.go │ │ │ │ ├── approval_stage_collection_response.go │ │ │ │ ├── archived_print_job.go │ │ │ │ ├── assigned_label.go │ │ │ │ ├── assigned_label_collection_response.go │ │ │ │ ├── assigned_license.go │ │ │ │ ├── assigned_license_collection_response.go │ │ │ │ ├── assigned_plan.go │ │ │ │ ├── assigned_plan_collection_response.go │ │ │ │ ├── assigned_training_info.go │ │ │ │ ├── assigned_training_info_collection_response.go │ │ │ │ ├── assignment_order.go │ │ │ │ ├── associated_team_info.go │ │ │ │ ├── associated_team_info_collection_response.go │ │ │ │ ├── attachment.go │ │ │ │ ├── attachment_base.go │ │ │ │ ├── attachment_base_collection_response.go │ │ │ │ ├── attachment_collection_response.go │ │ │ │ ├── attachment_info.go │ │ │ │ ├── attachment_item.go │ │ │ │ ├── attachment_session.go │ │ │ │ ├── attachment_session_collection_response.go │ │ │ │ ├── attachment_type.go │ │ │ │ ├── attack_simulation_repeat_offender.go │ │ │ │ ├── attack_simulation_root.go │ │ │ │ ├── attack_simulation_simulation_user_coverage.go │ │ │ │ ├── attack_simulation_training_user_coverage.go │ │ │ │ ├── attack_simulation_user.go │ │ │ │ ├── attendance_interval.go │ │ │ │ ├── attendance_interval_collection_response.go │ │ │ │ ├── attendance_record.go │ │ │ │ ├── attendance_record_collection_response.go │ │ │ │ ├── attendee.go │ │ │ │ ├── attendee_availability.go │ │ │ │ ├── attendee_availability_collection_response.go │ │ │ │ ├── attendee_base.go │ │ │ │ ├── attendee_collection_response.go │ │ │ │ ├── attendee_type.go │ │ │ │ ├── attestation_level.go │ │ │ │ ├── attribute_rule_members.go │ │ │ │ ├── audio.go │ │ │ │ ├── audio_conferencing.go │ │ │ │ ├── audio_routing_group.go │ │ │ │ ├── audio_routing_group_collection_response.go │ │ │ │ ├── audit_activity_initiator.go │ │ │ │ ├── audit_actor.go │ │ │ │ ├── audit_event.go │ │ │ │ ├── audit_event_collection_response.go │ │ │ │ ├── audit_log_root.go │ │ │ │ ├── audit_property.go │ │ │ │ ├── audit_property_collection_response.go │ │ │ │ ├── audit_resource.go │ │ │ │ ├── audit_resource_collection_response.go │ │ │ │ ├── authentication.go │ │ │ │ ├── authentication_context_class_reference.go │ │ │ │ ├── authentication_context_class_reference_collection_response.go │ │ │ │ ├── authentication_flows_policy.go │ │ │ │ ├── authentication_method.go │ │ │ │ ├── authentication_method_collection_response.go │ │ │ │ ├── authentication_method_configuration.go │ │ │ │ ├── authentication_method_configuration_collection_response.go │ │ │ │ ├── authentication_method_feature_configuration.go │ │ │ │ ├── authentication_method_key_strength.go │ │ │ │ ├── authentication_method_sign_in_state.go │ │ │ │ ├── authentication_method_state.go │ │ │ │ ├── authentication_method_target.go │ │ │ │ ├── authentication_method_target_collection_response.go │ │ │ │ ├── authentication_method_target_type.go │ │ │ │ ├── authentication_methods_policy.go │ │ │ │ ├── authentication_methods_registration_campaign.go │ │ │ │ ├── authentication_methods_registration_campaign_include_target.go │ │ │ │ ├── authentication_methods_registration_campaign_include_target_collection_response.go │ │ │ │ ├── authentication_phone_type.go │ │ │ │ ├── authentication_protocol.go │ │ │ │ ├── authored_note.go │ │ │ │ ├── authored_note_collection_response.go │ │ │ │ ├── authorization_info.go │ │ │ │ ├── authorization_policy.go │ │ │ │ ├── authorization_policy_collection_response.go │ │ │ │ ├── auto_restart_notification_dismissal_method.go │ │ │ │ ├── automatic_replies_mail_tips.go │ │ │ │ ├── automatic_replies_setting.go │ │ │ │ ├── automatic_replies_status.go │ │ │ │ ├── automatic_update_mode.go │ │ │ │ ├── availability_item.go │ │ │ │ ├── availability_item_collection_response.go │ │ │ │ ├── average_comparative_score.go │ │ │ │ ├── average_comparative_score_collection_response.go │ │ │ │ ├── azure_active_directory_tenant.go │ │ │ │ ├── azure_communication_services_user_conversation_member.go │ │ │ │ ├── azure_communication_services_user_conversation_member_collection_response.go │ │ │ │ ├── b2x_identity_user_flow.go │ │ │ │ ├── b2x_identity_user_flow_collection_response.go │ │ │ │ ├── base_collection_pagination_count_response.go │ │ │ │ ├── base_delta_function_response.go │ │ │ │ ├── base_item.go │ │ │ │ ├── base_item_collection_response.go │ │ │ │ ├── base_item_version.go │ │ │ │ ├── basic_authentication.go │ │ │ │ ├── bit_locker_encryption_method.go │ │ │ │ ├── bit_locker_removable_drive_policy.go │ │ │ │ ├── bitlocker.go │ │ │ │ ├── bitlocker_recovery_key.go │ │ │ │ ├── bitlocker_recovery_key_collection_response.go │ │ │ │ ├── body_type.go │ │ │ │ ├── booking_appointment.go │ │ │ │ ├── booking_appointment_collection_response.go │ │ │ │ ├── booking_business.go │ │ │ │ ├── booking_business_collection_response.go │ │ │ │ ├── booking_currency.go │ │ │ │ ├── booking_currency_collection_response.go │ │ │ │ ├── booking_custom_question.go │ │ │ │ ├── booking_custom_question_collection_response.go │ │ │ │ ├── booking_customer.go │ │ │ │ ├── booking_customer_base.go │ │ │ │ ├── booking_customer_base_collection_response.go │ │ │ │ ├── booking_customer_collection_response.go │ │ │ │ ├── booking_customer_information.go │ │ │ │ ├── booking_customer_information_base.go │ │ │ │ ├── booking_customer_information_base_collection_response.go │ │ │ │ ├── booking_price_type.go │ │ │ │ ├── booking_question_answer.go │ │ │ │ ├── booking_question_answer_collection_response.go │ │ │ │ ├── booking_question_assignment.go │ │ │ │ ├── booking_question_assignment_collection_response.go │ │ │ │ ├── booking_reminder.go │ │ │ │ ├── booking_reminder_collection_response.go │ │ │ │ ├── booking_reminder_recipients.go │ │ │ │ ├── booking_scheduling_policy.go │ │ │ │ ├── booking_service.go │ │ │ │ ├── booking_service_collection_response.go │ │ │ │ ├── booking_staff_member.go │ │ │ │ ├── booking_staff_member_base.go │ │ │ │ ├── booking_staff_member_base_collection_response.go │ │ │ │ ├── booking_staff_member_collection_response.go │ │ │ │ ├── booking_staff_role.go │ │ │ │ ├── booking_type.go │ │ │ │ ├── booking_work_hours.go │ │ │ │ ├── booking_work_hours_collection_response.go │ │ │ │ ├── booking_work_time_slot.go │ │ │ │ ├── booking_work_time_slot_collection_response.go │ │ │ │ ├── bookings_availability_status.go │ │ │ │ ├── boolean_column.go │ │ │ │ ├── broadcast_meeting_audience.go │ │ │ │ ├── broadcast_meeting_caption_settings.go │ │ │ │ ├── broadcast_meeting_settings.go │ │ │ │ ├── bucket_aggregation_definition.go │ │ │ │ ├── bucket_aggregation_range.go │ │ │ │ ├── bucket_aggregation_range_collection_response.go │ │ │ │ ├── bucket_aggregation_sort_property.go │ │ │ │ ├── built_in_identity_provider.go │ │ │ │ ├── built_in_identity_provider_collection_response.go │ │ │ │ ├── bundle.go │ │ │ │ ├── calculated_column.go │ │ │ │ ├── calendar.go │ │ │ │ ├── calendar_collection_response.go │ │ │ │ ├── calendar_color.go │ │ │ │ ├── calendar_group.go │ │ │ │ ├── calendar_group_collection_response.go │ │ │ │ ├── calendar_permission.go │ │ │ │ ├── calendar_permission_collection_response.go │ │ │ │ ├── calendar_role_type.go │ │ │ │ ├── calendar_sharing_action.go │ │ │ │ ├── calendar_sharing_action_importance.go │ │ │ │ ├── calendar_sharing_action_type.go │ │ │ │ ├── calendar_sharing_message.go │ │ │ │ ├── calendar_sharing_message_action.go │ │ │ │ ├── calendar_sharing_message_action_collection_response.go │ │ │ │ ├── calendar_sharing_message_collection_response.go │ │ │ │ ├── call.go │ │ │ │ ├── call_collection_response.go │ │ │ │ ├── call_direction.go │ │ │ │ ├── call_ended_event_message_detail.go │ │ │ │ ├── call_media_state.go │ │ │ │ ├── call_options.go │ │ │ │ ├── call_participant_info.go │ │ │ │ ├── call_participant_info_collection_response.go │ │ │ │ ├── call_recording_event_message_detail.go │ │ │ │ ├── call_recording_status.go │ │ │ │ ├── call_route.go │ │ │ │ ├── call_route_collection_response.go │ │ │ │ ├── call_started_event_message_detail.go │ │ │ │ ├── call_state.go │ │ │ │ ├── call_transcript_event_message_detail.go │ │ │ │ ├── call_transcription_info.go │ │ │ │ ├── call_transcription_state.go │ │ │ │ ├── callrecords/ │ │ │ │ │ ├── audio_codec.go │ │ │ │ │ ├── call_record.go │ │ │ │ │ ├── call_record_collection_response.go │ │ │ │ │ ├── call_type.go │ │ │ │ │ ├── client_platform.go │ │ │ │ │ ├── client_user_agent.go │ │ │ │ │ ├── device_info.go │ │ │ │ │ ├── direct_routing_log_row.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── failure_info.go │ │ │ │ │ ├── failure_stage.go │ │ │ │ │ ├── feedback_token_set.go │ │ │ │ │ ├── media.go │ │ │ │ │ ├── media_collection_response.go │ │ │ │ │ ├── media_stream.go │ │ │ │ │ ├── media_stream_collection_response.go │ │ │ │ │ ├── media_stream_direction.go │ │ │ │ │ ├── modality.go │ │ │ │ │ ├── network_connection_type.go │ │ │ │ │ ├── network_info.go │ │ │ │ │ ├── network_transport_protocol.go │ │ │ │ │ ├── participant_endpoint.go │ │ │ │ │ ├── product_family.go │ │ │ │ │ ├── pstn_call_duration_source.go │ │ │ │ │ ├── pstn_call_log_row.go │ │ │ │ │ ├── segment.go │ │ │ │ │ ├── segment_collection_response.go │ │ │ │ │ ├── service_endpoint.go │ │ │ │ │ ├── service_role.go │ │ │ │ │ ├── service_user_agent.go │ │ │ │ │ ├── session.go │ │ │ │ │ ├── session_collection_response.go │ │ │ │ │ ├── trace_route_hop.go │ │ │ │ │ ├── trace_route_hop_collection_response.go │ │ │ │ │ ├── user_agent.go │ │ │ │ │ ├── user_feedback.go │ │ │ │ │ ├── user_feedback_rating.go │ │ │ │ │ ├── video_codec.go │ │ │ │ │ ├── wifi_band.go │ │ │ │ │ └── wifi_radio_type.go │ │ │ │ ├── cancel_media_processing_operation.go │ │ │ │ ├── cancel_media_processing_operation_collection_response.go │ │ │ │ ├── category_color.go │ │ │ │ ├── certificate_authority.go │ │ │ │ ├── certificate_authority_collection_response.go │ │ │ │ ├── certificate_based_auth_configuration.go │ │ │ │ ├── certificate_based_auth_configuration_collection_response.go │ │ │ │ ├── certificate_status.go │ │ │ │ ├── certification.go │ │ │ │ ├── certification_control.go │ │ │ │ ├── certification_control_collection_response.go │ │ │ │ ├── change_notification.go │ │ │ │ ├── change_notification_collection_response.go │ │ │ │ ├── change_notification_encrypted_content.go │ │ │ │ ├── change_tracked_entity.go │ │ │ │ ├── change_type.go │ │ │ │ ├── channel.go │ │ │ │ ├── channel_added_event_message_detail.go │ │ │ │ ├── channel_collection_response.go │ │ │ │ ├── channel_deleted_event_message_detail.go │ │ │ │ ├── channel_description_updated_event_message_detail.go │ │ │ │ ├── channel_identity.go │ │ │ │ ├── channel_members_notification_recipient.go │ │ │ │ ├── channel_membership_type.go │ │ │ │ ├── channel_renamed_event_message_detail.go │ │ │ │ ├── channel_set_as_favorite_by_default_event_message_detail.go │ │ │ │ ├── channel_unset_as_favorite_by_default_event_message_detail.go │ │ │ │ ├── chat.go │ │ │ │ ├── chat_collection_response.go │ │ │ │ ├── chat_info.go │ │ │ │ ├── chat_members_notification_recipient.go │ │ │ │ ├── chat_message.go │ │ │ │ ├── chat_message_attachment.go │ │ │ │ ├── chat_message_attachment_collection_response.go │ │ │ │ ├── chat_message_collection_response.go │ │ │ │ ├── chat_message_from_identity_set.go │ │ │ │ ├── chat_message_hosted_content.go │ │ │ │ ├── chat_message_hosted_content_collection_response.go │ │ │ │ ├── chat_message_importance.go │ │ │ │ ├── chat_message_info.go │ │ │ │ ├── chat_message_mention.go │ │ │ │ ├── chat_message_mention_collection_response.go │ │ │ │ ├── chat_message_mentioned_identity_set.go │ │ │ │ ├── chat_message_policy_violation.go │ │ │ │ ├── chat_message_policy_violation_dlp_action_types.go │ │ │ │ ├── chat_message_policy_violation_policy_tip.go │ │ │ │ ├── chat_message_policy_violation_user_action_types.go │ │ │ │ ├── chat_message_policy_violation_verdict_details_types.go │ │ │ │ ├── chat_message_reaction.go │ │ │ │ ├── chat_message_reaction_collection_response.go │ │ │ │ ├── chat_message_reaction_identity_set.go │ │ │ │ ├── chat_message_type.go │ │ │ │ ├── chat_renamed_event_message_detail.go │ │ │ │ ├── chat_type.go │ │ │ │ ├── chat_viewpoint.go │ │ │ │ ├── checklist_item.go │ │ │ │ ├── checklist_item_collection_response.go │ │ │ │ ├── choice_column.go │ │ │ │ ├── claims_mapping_policy.go │ │ │ │ ├── claims_mapping_policy_collection_response.go │ │ │ │ ├── client_certificate_authentication.go │ │ │ │ ├── clonable_team_parts.go │ │ │ │ ├── cloud_app_security_session_control.go │ │ │ │ ├── cloud_app_security_session_control_type.go │ │ │ │ ├── cloud_app_security_state.go │ │ │ │ ├── cloud_app_security_state_collection_response.go │ │ │ │ ├── cloud_communications.go │ │ │ │ ├── column_definition.go │ │ │ │ ├── column_definition_collection_response.go │ │ │ │ ├── column_link.go │ │ │ │ ├── column_link_collection_response.go │ │ │ │ ├── column_types.go │ │ │ │ ├── column_validation.go │ │ │ │ ├── comms_notification.go │ │ │ │ ├── comms_notification_collection_response.go │ │ │ │ ├── comms_operation.go │ │ │ │ ├── comms_operation_collection_response.go │ │ │ │ ├── compliance.go │ │ │ │ ├── compliance_information.go │ │ │ │ ├── compliance_information_collection_response.go │ │ │ │ ├── compliance_management_partner.go │ │ │ │ ├── compliance_management_partner_assignment.go │ │ │ │ ├── compliance_management_partner_assignment_collection_response.go │ │ │ │ ├── compliance_management_partner_collection_response.go │ │ │ │ ├── compliance_state.go │ │ │ │ ├── compliance_status.go │ │ │ │ ├── conditional_access_all_external_tenants.go │ │ │ │ ├── conditional_access_applications.go │ │ │ │ ├── conditional_access_client_app.go │ │ │ │ ├── conditional_access_client_applications.go │ │ │ │ ├── conditional_access_condition_set.go │ │ │ │ ├── conditional_access_device_platform.go │ │ │ │ ├── conditional_access_devices.go │ │ │ │ ├── conditional_access_enumerated_external_tenants.go │ │ │ │ ├── conditional_access_external_tenants.go │ │ │ │ ├── conditional_access_external_tenants_membership_kind.go │ │ │ │ ├── conditional_access_filter.go │ │ │ │ ├── conditional_access_grant_control.go │ │ │ │ ├── conditional_access_grant_controls.go │ │ │ │ ├── conditional_access_guest_or_external_user_types.go │ │ │ │ ├── conditional_access_guests_or_external_users.go │ │ │ │ ├── conditional_access_locations.go │ │ │ │ ├── conditional_access_platforms.go │ │ │ │ ├── conditional_access_policy.go │ │ │ │ ├── conditional_access_policy_collection_response.go │ │ │ │ ├── conditional_access_policy_detail.go │ │ │ │ ├── conditional_access_policy_state.go │ │ │ │ ├── conditional_access_root.go │ │ │ │ ├── conditional_access_session_control.go │ │ │ │ ├── conditional_access_session_controls.go │ │ │ │ ├── conditional_access_status.go │ │ │ │ ├── conditional_access_template.go │ │ │ │ ├── conditional_access_template_collection_response.go │ │ │ │ ├── conditional_access_users.go │ │ │ │ ├── configuration_manager_client_enabled_features.go │ │ │ │ ├── configuration_manager_collection_assignment_target.go │ │ │ │ ├── connected_organization.go │ │ │ │ ├── connected_organization_collection_response.go │ │ │ │ ├── connected_organization_members.go │ │ │ │ ├── connected_organization_state.go │ │ │ │ ├── connection_direction.go │ │ │ │ ├── connection_status.go │ │ │ │ ├── contact.go │ │ │ │ ├── contact_collection_response.go │ │ │ │ ├── contact_folder.go │ │ │ │ ├── contact_folder_collection_response.go │ │ │ │ ├── contact_relationship.go │ │ │ │ ├── content_approval_status_column.go │ │ │ │ ├── content_sharing_session.go │ │ │ │ ├── content_sharing_session_collection_response.go │ │ │ │ ├── content_type.go │ │ │ │ ├── content_type_collection_response.go │ │ │ │ ├── content_type_info.go │ │ │ │ ├── content_type_info_collection_response.go │ │ │ │ ├── content_type_order.go │ │ │ │ ├── contract.go │ │ │ │ ├── contract_collection_response.go │ │ │ │ ├── control_score.go │ │ │ │ ├── control_score_collection_response.go │ │ │ │ ├── conversation.go │ │ │ │ ├── conversation_collection_response.go │ │ │ │ ├── conversation_member.go │ │ │ │ ├── conversation_member_collection_response.go │ │ │ │ ├── conversation_member_role_updated_event_message_detail.go │ │ │ │ ├── conversation_thread.go │ │ │ │ ├── conversation_thread_collection_response.go │ │ │ │ ├── convert_id_result.go │ │ │ │ ├── copy_notebook_model.go │ │ │ │ ├── country_lookup_method_type.go │ │ │ │ ├── country_named_location.go │ │ │ │ ├── country_named_location_collection_response.go │ │ │ │ ├── cross_cloud_azure_active_directory_tenant.go │ │ │ │ ├── cross_tenant_access_policy.go │ │ │ │ ├── cross_tenant_access_policy_b2_b_setting.go │ │ │ │ ├── cross_tenant_access_policy_collection_response.go │ │ │ │ ├── cross_tenant_access_policy_configuration_default.go │ │ │ │ ├── cross_tenant_access_policy_configuration_partner.go │ │ │ │ ├── cross_tenant_access_policy_configuration_partner_collection_response.go │ │ │ │ ├── cross_tenant_access_policy_inbound_trust.go │ │ │ │ ├── cross_tenant_access_policy_target.go │ │ │ │ ├── cross_tenant_access_policy_target_collection_response.go │ │ │ │ ├── cross_tenant_access_policy_target_configuration.go │ │ │ │ ├── cross_tenant_access_policy_target_configuration_access_type.go │ │ │ │ ├── cross_tenant_access_policy_target_type.go │ │ │ │ ├── currency_column.go │ │ │ │ ├── custom_time_zone.go │ │ │ │ ├── data_policy_operation.go │ │ │ │ ├── data_policy_operation_collection_response.go │ │ │ │ ├── data_policy_operation_status.go │ │ │ │ ├── data_subject.go │ │ │ │ ├── data_subject_type.go │ │ │ │ ├── date_time_column.go │ │ │ │ ├── date_time_time_zone.go │ │ │ │ ├── day_of_week.go │ │ │ │ ├── daylight_time_zone_offset.go │ │ │ │ ├── default_column_value.go │ │ │ │ ├── default_managed_app_protection.go │ │ │ │ ├── default_managed_app_protection_collection_response.go │ │ │ │ ├── default_user_role_permissions.go │ │ │ │ ├── defender_cloud_block_level_type.go │ │ │ │ ├── defender_detected_malware_actions.go │ │ │ │ ├── defender_monitor_file_activity.go │ │ │ │ ├── defender_prompt_for_sample_submission.go │ │ │ │ ├── defender_scan_type.go │ │ │ │ ├── defender_threat_action.go │ │ │ │ ├── delegate_meeting_message_delivery_options.go │ │ │ │ ├── delegated_admin_access_assignment.go │ │ │ │ ├── delegated_admin_access_assignment_collection_response.go │ │ │ │ ├── delegated_admin_access_assignment_status.go │ │ │ │ ├── delegated_admin_access_container.go │ │ │ │ ├── delegated_admin_access_container_type.go │ │ │ │ ├── delegated_admin_access_details.go │ │ │ │ ├── delegated_admin_customer.go │ │ │ │ ├── delegated_admin_customer_collection_response.go │ │ │ │ ├── delegated_admin_relationship.go │ │ │ │ ├── delegated_admin_relationship_collection_response.go │ │ │ │ ├── delegated_admin_relationship_customer_participant.go │ │ │ │ ├── delegated_admin_relationship_operation.go │ │ │ │ ├── delegated_admin_relationship_operation_collection_response.go │ │ │ │ ├── delegated_admin_relationship_operation_type.go │ │ │ │ ├── delegated_admin_relationship_request.go │ │ │ │ ├── delegated_admin_relationship_request_action.go │ │ │ │ ├── delegated_admin_relationship_request_collection_response.go │ │ │ │ ├── delegated_admin_relationship_request_status.go │ │ │ │ ├── delegated_admin_relationship_status.go │ │ │ │ ├── delegated_admin_service_management_detail.go │ │ │ │ ├── delegated_admin_service_management_detail_collection_response.go │ │ │ │ ├── delegated_permission_classification.go │ │ │ │ ├── delegated_permission_classification_collection_response.go │ │ │ │ ├── delete_user_from_shared_apple_device_action_result.go │ │ │ │ ├── deleted.go │ │ │ │ ├── deleted_team.go │ │ │ │ ├── deleted_team_collection_response.go │ │ │ │ ├── details_info.go │ │ │ │ ├── detected_app.go │ │ │ │ ├── detected_app_collection_response.go │ │ │ │ ├── detected_app_platform_type.go │ │ │ │ ├── device.go │ │ │ │ ├── device_action_result.go │ │ │ │ ├── device_action_result_collection_response.go │ │ │ │ ├── device_and_app_management_assignment_target.go │ │ │ │ ├── device_and_app_management_data.go │ │ │ │ ├── device_and_app_management_role_assignment.go │ │ │ │ ├── device_and_app_management_role_assignment_collection_response.go │ │ │ │ ├── device_and_app_management_role_definition.go │ │ │ │ ├── device_and_app_management_role_definition_collection_response.go │ │ │ │ ├── device_app_management.go │ │ │ │ ├── device_category.go │ │ │ │ ├── device_category_collection_response.go │ │ │ │ ├── device_collection_response.go │ │ │ │ ├── device_compliance_action_item.go │ │ │ │ ├── device_compliance_action_item_collection_response.go │ │ │ │ ├── device_compliance_action_type.go │ │ │ │ ├── device_compliance_device_overview.go │ │ │ │ ├── device_compliance_device_status.go │ │ │ │ ├── device_compliance_device_status_collection_response.go │ │ │ │ ├── device_compliance_policy.go │ │ │ │ ├── device_compliance_policy_assignment.go │ │ │ │ ├── device_compliance_policy_assignment_collection_response.go │ │ │ │ ├── device_compliance_policy_collection_response.go │ │ │ │ ├── device_compliance_policy_device_state_summary.go │ │ │ │ ├── device_compliance_policy_setting_state.go │ │ │ │ ├── device_compliance_policy_setting_state_collection_response.go │ │ │ │ ├── device_compliance_policy_setting_state_summary.go │ │ │ │ ├── device_compliance_policy_setting_state_summary_collection_response.go │ │ │ │ ├── device_compliance_policy_state.go │ │ │ │ ├── device_compliance_policy_state_collection_response.go │ │ │ │ ├── device_compliance_scheduled_action_for_rule.go │ │ │ │ ├── device_compliance_scheduled_action_for_rule_collection_response.go │ │ │ │ ├── device_compliance_setting_state.go │ │ │ │ ├── device_compliance_setting_state_collection_response.go │ │ │ │ ├── device_compliance_user_overview.go │ │ │ │ ├── device_compliance_user_status.go │ │ │ │ ├── device_compliance_user_status_collection_response.go │ │ │ │ ├── device_configuration.go │ │ │ │ ├── device_configuration_assignment.go │ │ │ │ ├── device_configuration_assignment_collection_response.go │ │ │ │ ├── device_configuration_collection_response.go │ │ │ │ ├── device_configuration_device_overview.go │ │ │ │ ├── device_configuration_device_state_summary.go │ │ │ │ ├── device_configuration_device_status.go │ │ │ │ ├── device_configuration_device_status_collection_response.go │ │ │ │ ├── device_configuration_setting_state.go │ │ │ │ ├── device_configuration_setting_state_collection_response.go │ │ │ │ ├── device_configuration_state.go │ │ │ │ ├── device_configuration_state_collection_response.go │ │ │ │ ├── device_configuration_user_overview.go │ │ │ │ ├── device_configuration_user_status.go │ │ │ │ ├── device_configuration_user_status_collection_response.go │ │ │ │ ├── device_detail.go │ │ │ │ ├── device_enrollment_configuration.go │ │ │ │ ├── device_enrollment_configuration_collection_response.go │ │ │ │ ├── device_enrollment_failure_reason.go │ │ │ │ ├── device_enrollment_limit_configuration.go │ │ │ │ ├── device_enrollment_limit_configuration_collection_response.go │ │ │ │ ├── device_enrollment_platform_restriction.go │ │ │ │ ├── device_enrollment_platform_restrictions_configuration.go │ │ │ │ ├── device_enrollment_platform_restrictions_configuration_collection_response.go │ │ │ │ ├── device_enrollment_type.go │ │ │ │ ├── device_enrollment_windows_hello_for_business_configuration.go │ │ │ │ ├── device_enrollment_windows_hello_for_business_configuration_collection_response.go │ │ │ │ ├── device_exchange_access_state_summary.go │ │ │ │ ├── device_geo_location.go │ │ │ │ ├── device_health_attestation_state.go │ │ │ │ ├── device_install_state.go │ │ │ │ ├── device_install_state_collection_response.go │ │ │ │ ├── device_management.go │ │ │ │ ├── device_management_exchange_access_state.go │ │ │ │ ├── device_management_exchange_access_state_reason.go │ │ │ │ ├── device_management_exchange_connector.go │ │ │ │ ├── device_management_exchange_connector_collection_response.go │ │ │ │ ├── device_management_exchange_connector_status.go │ │ │ │ ├── device_management_exchange_connector_sync_type.go │ │ │ │ ├── device_management_exchange_connector_type.go │ │ │ │ ├── device_management_export_job.go │ │ │ │ ├── device_management_export_job_collection_response.go │ │ │ │ ├── device_management_export_job_localization_type.go │ │ │ │ ├── device_management_partner.go │ │ │ │ ├── device_management_partner_app_type.go │ │ │ │ ├── device_management_partner_assignment.go │ │ │ │ ├── device_management_partner_assignment_collection_response.go │ │ │ │ ├── device_management_partner_collection_response.go │ │ │ │ ├── device_management_partner_tenant_state.go │ │ │ │ ├── device_management_report_file_format.go │ │ │ │ ├── device_management_report_status.go │ │ │ │ ├── device_management_reports.go │ │ │ │ ├── device_management_settings.go │ │ │ │ ├── device_management_subscription_state.go │ │ │ │ ├── device_management_troubleshooting_event.go │ │ │ │ ├── device_management_troubleshooting_event_collection_response.go │ │ │ │ ├── device_operating_system_summary.go │ │ │ │ ├── device_registration_state.go │ │ │ │ ├── device_threat_protection_level.go │ │ │ │ ├── diagnostic_data_submission_mode.go │ │ │ │ ├── dictionary.go │ │ │ │ ├── directory.go │ │ │ │ ├── directory_audit.go │ │ │ │ ├── directory_audit_collection_response.go │ │ │ │ ├── directory_object.go │ │ │ │ ├── directory_object_collection_response.go │ │ │ │ ├── directory_object_partner_reference.go │ │ │ │ ├── directory_object_partner_reference_collection_response.go │ │ │ │ ├── directory_role.go │ │ │ │ ├── directory_role_collection_response.go │ │ │ │ ├── directory_role_template.go │ │ │ │ ├── directory_role_template_collection_response.go │ │ │ │ ├── disable_and_delete_user_apply_action.go │ │ │ │ ├── disk_type.go │ │ │ │ ├── display_name_localization.go │ │ │ │ ├── display_name_localization_collection_response.go │ │ │ │ ├── document_set.go │ │ │ │ ├── document_set_content.go │ │ │ │ ├── document_set_content_collection_response.go │ │ │ │ ├── document_set_version.go │ │ │ │ ├── document_set_version_collection_response.go │ │ │ │ ├── document_set_version_item.go │ │ │ │ ├── document_set_version_item_collection_response.go │ │ │ │ ├── domain.go │ │ │ │ ├── domain_collection_response.go │ │ │ │ ├── domain_dns_cname_record.go │ │ │ │ ├── domain_dns_cname_record_collection_response.go │ │ │ │ ├── domain_dns_mx_record.go │ │ │ │ ├── domain_dns_mx_record_collection_response.go │ │ │ │ ├── domain_dns_record.go │ │ │ │ ├── domain_dns_record_collection_response.go │ │ │ │ ├── domain_dns_srv_record.go │ │ │ │ ├── domain_dns_srv_record_collection_response.go │ │ │ │ ├── domain_dns_txt_record.go │ │ │ │ ├── domain_dns_txt_record_collection_response.go │ │ │ │ ├── domain_dns_unavailable_record.go │ │ │ │ ├── domain_dns_unavailable_record_collection_response.go │ │ │ │ ├── domain_identity_source.go │ │ │ │ ├── domain_state.go │ │ │ │ ├── drive.go │ │ │ │ ├── drive_collection_response.go │ │ │ │ ├── drive_item.go │ │ │ │ ├── drive_item_collection_response.go │ │ │ │ ├── drive_item_uploadable_properties.go │ │ │ │ ├── drive_item_version.go │ │ │ │ ├── drive_item_version_collection_response.go │ │ │ │ ├── drive_recipient.go │ │ │ │ ├── e_book_install_summary.go │ │ │ │ ├── edge_cookie_policy.go │ │ │ │ ├── edge_search_engine.go │ │ │ │ ├── edge_search_engine_base.go │ │ │ │ ├── edge_search_engine_custom.go │ │ │ │ ├── edge_search_engine_type.go │ │ │ │ ├── edition_upgrade_configuration.go │ │ │ │ ├── edition_upgrade_configuration_collection_response.go │ │ │ │ ├── edition_upgrade_license_type.go │ │ │ │ ├── education_add_to_calendar_options.go │ │ │ │ ├── education_added_student_action.go │ │ │ │ ├── education_assignment.go │ │ │ │ ├── education_assignment_class_recipient.go │ │ │ │ ├── education_assignment_collection_response.go │ │ │ │ ├── education_assignment_defaults.go │ │ │ │ ├── education_assignment_grade.go │ │ │ │ ├── education_assignment_grade_type.go │ │ │ │ ├── education_assignment_group_recipient.go │ │ │ │ ├── education_assignment_individual_recipient.go │ │ │ │ ├── education_assignment_points_grade.go │ │ │ │ ├── education_assignment_points_grade_type.go │ │ │ │ ├── education_assignment_recipient.go │ │ │ │ ├── education_assignment_resource.go │ │ │ │ ├── education_assignment_resource_collection_response.go │ │ │ │ ├── education_assignment_settings.go │ │ │ │ ├── education_assignment_status.go │ │ │ │ ├── education_category.go │ │ │ │ ├── education_category_collection_response.go │ │ │ │ ├── education_class.go │ │ │ │ ├── education_class_collection_response.go │ │ │ │ ├── education_course.go │ │ │ │ ├── education_excel_resource.go │ │ │ │ ├── education_external_resource.go │ │ │ │ ├── education_external_source.go │ │ │ │ ├── education_feedback.go │ │ │ │ ├── education_feedback_outcome.go │ │ │ │ ├── education_feedback_outcome_collection_response.go │ │ │ │ ├── education_feedback_resource_outcome.go │ │ │ │ ├── education_feedback_resource_outcome_collection_response.go │ │ │ │ ├── education_feedback_resource_outcome_status.go │ │ │ │ ├── education_file_resource.go │ │ │ │ ├── education_gender.go │ │ │ │ ├── education_item_body.go │ │ │ │ ├── education_link_resource.go │ │ │ │ ├── education_media_resource.go │ │ │ │ ├── education_on_premises_info.go │ │ │ │ ├── education_organization.go │ │ │ │ ├── education_outcome.go │ │ │ │ ├── education_outcome_collection_response.go │ │ │ │ ├── education_points_outcome.go │ │ │ │ ├── education_points_outcome_collection_response.go │ │ │ │ ├── education_power_point_resource.go │ │ │ │ ├── education_resource.go │ │ │ │ ├── education_root.go │ │ │ │ ├── education_rubric.go │ │ │ │ ├── education_rubric_collection_response.go │ │ │ │ ├── education_rubric_outcome.go │ │ │ │ ├── education_rubric_outcome_collection_response.go │ │ │ │ ├── education_school.go │ │ │ │ ├── education_school_collection_response.go │ │ │ │ ├── education_student.go │ │ │ │ ├── education_submission.go │ │ │ │ ├── education_submission_collection_response.go │ │ │ │ ├── education_submission_individual_recipient.go │ │ │ │ ├── education_submission_recipient.go │ │ │ │ ├── education_submission_resource.go │ │ │ │ ├── education_submission_resource_collection_response.go │ │ │ │ ├── education_submission_status.go │ │ │ │ ├── education_teacher.go │ │ │ │ ├── education_teams_app_resource.go │ │ │ │ ├── education_term.go │ │ │ │ ├── education_user.go │ │ │ │ ├── education_user_collection_response.go │ │ │ │ ├── education_user_role.go │ │ │ │ ├── education_word_resource.go │ │ │ │ ├── email_address.go │ │ │ │ ├── email_address_collection_response.go │ │ │ │ ├── email_authentication_method.go │ │ │ │ ├── email_authentication_method_collection_response.go │ │ │ │ ├── email_authentication_method_configuration.go │ │ │ │ ├── email_authentication_method_configuration_collection_response.go │ │ │ │ ├── email_file_assessment_request.go │ │ │ │ ├── email_file_assessment_request_collection_response.go │ │ │ │ ├── email_identity.go │ │ │ │ ├── email_role.go │ │ │ │ ├── employee_experience.go │ │ │ │ ├── employee_org_data.go │ │ │ │ ├── enablement.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpoint_collection_response.go │ │ │ │ ├── endpoint_type.go │ │ │ │ ├── enrollment_configuration_assignment.go │ │ │ │ ├── enrollment_configuration_assignment_collection_response.go │ │ │ │ ├── enrollment_state.go │ │ │ │ ├── enrollment_troubleshooting_event.go │ │ │ │ ├── enrollment_troubleshooting_event_collection_response.go │ │ │ │ ├── enterprise_code_signing_certificate.go │ │ │ │ ├── entitlement_management.go │ │ │ │ ├── entitlement_management_schedule.go │ │ │ │ ├── entitlement_management_settings.go │ │ │ │ ├── entity.go │ │ │ │ ├── entity_type.go │ │ │ │ ├── event.go │ │ │ │ ├── event_collection_response.go │ │ │ │ ├── event_message.go │ │ │ │ ├── event_message_collection_response.go │ │ │ │ ├── event_message_detail.go │ │ │ │ ├── event_message_request.go │ │ │ │ ├── event_message_request_collection_response.go │ │ │ │ ├── event_message_response.go │ │ │ │ ├── event_message_response_collection_response.go │ │ │ │ ├── event_type.go │ │ │ │ ├── exchange_id_format.go │ │ │ │ ├── exclude_target.go │ │ │ │ ├── exclude_target_collection_response.go │ │ │ │ ├── exclusion_group_assignment_target.go │ │ │ │ ├── expiration_pattern.go │ │ │ │ ├── expiration_pattern_type.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_collection_response.go │ │ │ │ ├── extension_property.go │ │ │ │ ├── extension_property_collection_response.go │ │ │ │ ├── extension_schema_property.go │ │ │ │ ├── extension_schema_property_collection_response.go │ │ │ │ ├── external_audience_scope.go │ │ │ │ ├── external_domain_federation.go │ │ │ │ ├── external_domain_name.go │ │ │ │ ├── external_domain_name_collection_response.go │ │ │ │ ├── external_email_otp_state.go │ │ │ │ ├── external_link.go │ │ │ │ ├── external_sponsors.go │ │ │ │ ├── externalconnectors/ │ │ │ │ │ ├── access_type.go │ │ │ │ │ ├── acl.go │ │ │ │ │ ├── acl_collection_response.go │ │ │ │ │ ├── acl_type.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── connection_operation.go │ │ │ │ │ ├── connection_operation_collection_response.go │ │ │ │ │ ├── connection_operation_status.go │ │ │ │ │ ├── connection_state.go │ │ │ │ │ ├── external.go │ │ │ │ │ ├── external_connection.go │ │ │ │ │ ├── external_connection_collection_response.go │ │ │ │ │ ├── external_group.go │ │ │ │ │ ├── external_group_collection_response.go │ │ │ │ │ ├── external_item.go │ │ │ │ │ ├── external_item_collection_response.go │ │ │ │ │ ├── external_item_content.go │ │ │ │ │ ├── external_item_content_type.go │ │ │ │ │ ├── identity.go │ │ │ │ │ ├── identity_collection_response.go │ │ │ │ │ ├── identity_type.go │ │ │ │ │ ├── label.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── property.go │ │ │ │ │ ├── property_collection_response.go │ │ │ │ │ ├── property_type.go │ │ │ │ │ └── schema.go │ │ │ │ ├── feature_rollout_policy.go │ │ │ │ ├── feature_rollout_policy_collection_response.go │ │ │ │ ├── feature_target.go │ │ │ │ ├── feature_target_type.go │ │ │ │ ├── federated_identity_credential.go │ │ │ │ ├── federated_identity_credential_collection_response.go │ │ │ │ ├── federated_idp_mfa_behavior.go │ │ │ │ ├── fido2_authentication_method.go │ │ │ │ ├── fido2_authentication_method_collection_response.go │ │ │ │ ├── fido2_authentication_method_configuration.go │ │ │ │ ├── fido2_authentication_method_configuration_collection_response.go │ │ │ │ ├── fido2_key_restrictions.go │ │ │ │ ├── fido2_restriction_enforcement_type.go │ │ │ │ ├── field_value_set.go │ │ │ │ ├── file.go │ │ │ │ ├── file_assessment_request.go │ │ │ │ ├── file_assessment_request_collection_response.go │ │ │ │ ├── file_attachment.go │ │ │ │ ├── file_attachment_collection_response.go │ │ │ │ ├── file_hash.go │ │ │ │ ├── file_hash_type.go │ │ │ │ ├── file_security_state.go │ │ │ │ ├── file_security_state_collection_response.go │ │ │ │ ├── file_system_info.go │ │ │ │ ├── filter_mode.go │ │ │ │ ├── firewall_certificate_revocation_list_check_method_type.go │ │ │ │ ├── firewall_packet_queueing_method_type.go │ │ │ │ ├── firewall_pre_shared_key_encoding_method_type.go │ │ │ │ ├── folder.go │ │ │ │ ├── folder_view.go │ │ │ │ ├── followup_flag.go │ │ │ │ ├── followup_flag_status.go │ │ │ │ ├── free_busy_error.go │ │ │ │ ├── free_busy_status.go │ │ │ │ ├── generic_error.go │ │ │ │ ├── geo_coordinates.go │ │ │ │ ├── geolocation_column.go │ │ │ │ ├── giphy_rating_type.go │ │ │ │ ├── group.go │ │ │ │ ├── group_assignment_target.go │ │ │ │ ├── group_collection_response.go │ │ │ │ ├── group_lifecycle_policy.go │ │ │ │ ├── group_lifecycle_policy_collection_response.go │ │ │ │ ├── group_members.go │ │ │ │ ├── group_setting.go │ │ │ │ ├── group_setting_collection_response.go │ │ │ │ ├── group_setting_template.go │ │ │ │ ├── group_setting_template_collection_response.go │ │ │ │ ├── group_type.go │ │ │ │ ├── hashes.go │ │ │ │ ├── home_realm_discovery_policy.go │ │ │ │ ├── home_realm_discovery_policy_collection_response.go │ │ │ │ ├── host_security_state.go │ │ │ │ ├── host_security_state_collection_response.go │ │ │ │ ├── hyperlink_or_picture_column.go │ │ │ │ ├── i_pv4_cidr_range.go │ │ │ │ ├── i_pv4_range.go │ │ │ │ ├── i_pv6_cidr_range.go │ │ │ │ ├── i_pv6_range.go │ │ │ │ ├── identity.go │ │ │ │ ├── identity_api_connector.go │ │ │ │ ├── identity_api_connector_collection_response.go │ │ │ │ ├── identity_built_in_user_flow_attribute.go │ │ │ │ ├── identity_built_in_user_flow_attribute_collection_response.go │ │ │ │ ├── identity_container.go │ │ │ │ ├── identity_custom_user_flow_attribute.go │ │ │ │ ├── identity_custom_user_flow_attribute_collection_response.go │ │ │ │ ├── identity_governance.go │ │ │ │ ├── identity_protection_root.go │ │ │ │ ├── identity_provider.go │ │ │ │ ├── identity_provider_base.go │ │ │ │ ├── identity_provider_base_collection_response.go │ │ │ │ ├── identity_provider_collection_response.go │ │ │ │ ├── identity_security_defaults_enforcement_policy.go │ │ │ │ ├── identity_security_defaults_enforcement_policy_collection_response.go │ │ │ │ ├── identity_set.go │ │ │ │ ├── identity_set_collection_response.go │ │ │ │ ├── identity_source.go │ │ │ │ ├── identity_source_collection_response.go │ │ │ │ ├── identity_user_flow.go │ │ │ │ ├── identity_user_flow_attribute.go │ │ │ │ ├── identity_user_flow_attribute_assignment.go │ │ │ │ ├── identity_user_flow_attribute_assignment_collection_response.go │ │ │ │ ├── identity_user_flow_attribute_collection_response.go │ │ │ │ ├── identity_user_flow_attribute_data_type.go │ │ │ │ ├── identity_user_flow_attribute_input_type.go │ │ │ │ ├── identity_user_flow_attribute_type.go │ │ │ │ ├── image.go │ │ │ │ ├── image_info.go │ │ │ │ ├── implicit_grant_settings.go │ │ │ │ ├── importance.go │ │ │ │ ├── imported_windows_autopilot_device_identity.go │ │ │ │ ├── imported_windows_autopilot_device_identity_collection_response.go │ │ │ │ ├── imported_windows_autopilot_device_identity_import_status.go │ │ │ │ ├── imported_windows_autopilot_device_identity_state.go │ │ │ │ ├── imported_windows_autopilot_device_identity_upload.go │ │ │ │ ├── imported_windows_autopilot_device_identity_upload_status.go │ │ │ │ ├── incoming_call_options.go │ │ │ │ ├── incoming_context.go │ │ │ │ ├── incomplete_data.go │ │ │ │ ├── inference_classification.go │ │ │ │ ├── inference_classification_override.go │ │ │ │ ├── inference_classification_override_collection_response.go │ │ │ │ ├── inference_classification_type.go │ │ │ │ ├── information_protection.go │ │ │ │ ├── informational_url.go │ │ │ │ ├── initiator.go │ │ │ │ ├── initiator_type.go │ │ │ │ ├── insight_identity.go │ │ │ │ ├── install_intent.go │ │ │ │ ├── install_state.go │ │ │ │ ├── integer_range.go │ │ │ │ ├── integer_range_collection_response.go │ │ │ │ ├── internal_domain_federation.go │ │ │ │ ├── internal_domain_federation_collection_response.go │ │ │ │ ├── internal_sponsors.go │ │ │ │ ├── internet_message_header.go │ │ │ │ ├── internet_message_header_collection_response.go │ │ │ │ ├── internet_site_security_level.go │ │ │ │ ├── intune_brand.go │ │ │ │ ├── investigation_security_state.go │ │ │ │ ├── investigation_security_state_collection_response.go │ │ │ │ ├── invitation.go │ │ │ │ ├── invitation_collection_response.go │ │ │ │ ├── invitation_participant_info.go │ │ │ │ ├── invitation_participant_info_collection_response.go │ │ │ │ ├── invite_participants_operation.go │ │ │ │ ├── invite_participants_operation_collection_response.go │ │ │ │ ├── invited_user_message_info.go │ │ │ │ ├── ios_certificate_profile.go │ │ │ │ ├── ios_certificate_profile_collection_response.go │ │ │ │ ├── ios_compliance_policy.go │ │ │ │ ├── ios_compliance_policy_collection_response.go │ │ │ │ ├── ios_custom_configuration.go │ │ │ │ ├── ios_custom_configuration_collection_response.go │ │ │ │ ├── ios_device_features_configuration.go │ │ │ │ ├── ios_device_features_configuration_collection_response.go │ │ │ │ ├── ios_device_type.go │ │ │ │ ├── ios_general_device_configuration.go │ │ │ │ ├── ios_general_device_configuration_collection_response.go │ │ │ │ ├── ios_home_screen_app.go │ │ │ │ ├── ios_home_screen_app_collection_response.go │ │ │ │ ├── ios_home_screen_folder.go │ │ │ │ ├── ios_home_screen_folder_page.go │ │ │ │ ├── ios_home_screen_folder_page_collection_response.go │ │ │ │ ├── ios_home_screen_item.go │ │ │ │ ├── ios_home_screen_item_collection_response.go │ │ │ │ ├── ios_home_screen_page.go │ │ │ │ ├── ios_home_screen_page_collection_response.go │ │ │ │ ├── ios_lob_app.go │ │ │ │ ├── ios_lob_app_assignment_settings.go │ │ │ │ ├── ios_lob_app_collection_response.go │ │ │ │ ├── ios_lob_app_provisioning_configuration_assignment.go │ │ │ │ ├── ios_managed_app_protection.go │ │ │ │ ├── ios_managed_app_protection_collection_response.go │ │ │ │ ├── ios_managed_app_registration.go │ │ │ │ ├── ios_managed_app_registration_collection_response.go │ │ │ │ ├── ios_minimum_operating_system.go │ │ │ │ ├── ios_mobile_app_configuration.go │ │ │ │ ├── ios_mobile_app_configuration_collection_response.go │ │ │ │ ├── ios_mobile_app_identifier.go │ │ │ │ ├── ios_network_usage_rule.go │ │ │ │ ├── ios_network_usage_rule_collection_response.go │ │ │ │ ├── ios_notification_alert_type.go │ │ │ │ ├── ios_notification_settings.go │ │ │ │ ├── ios_notification_settings_collection_response.go │ │ │ │ ├── ios_store_app.go │ │ │ │ ├── ios_store_app_assignment_settings.go │ │ │ │ ├── ios_store_app_collection_response.go │ │ │ │ ├── ios_update_configuration.go │ │ │ │ ├── ios_update_configuration_collection_response.go │ │ │ │ ├── ios_update_device_status.go │ │ │ │ ├── ios_update_device_status_collection_response.go │ │ │ │ ├── ios_updates_install_status.go │ │ │ │ ├── ios_vpp_app.go │ │ │ │ ├── ios_vpp_app_assignment_settings.go │ │ │ │ ├── ios_vpp_app_collection_response.go │ │ │ │ ├── ios_vpp_e_book.go │ │ │ │ ├── ios_vpp_e_book_assignment.go │ │ │ │ ├── ios_vpp_e_book_assignment_collection_response.go │ │ │ │ ├── ios_vpp_e_book_collection_response.go │ │ │ │ ├── iosi_pad_o_s_web_clip.go │ │ │ │ ├── iosi_pad_o_s_web_clip_collection_response.go │ │ │ │ ├── ip_named_location.go │ │ │ │ ├── ip_named_location_collection_response.go │ │ │ │ ├── ip_range.go │ │ │ │ ├── ip_range_collection_response.go │ │ │ │ ├── item_action_stat.go │ │ │ │ ├── item_activity.go │ │ │ │ ├── item_activity_collection_response.go │ │ │ │ ├── item_activity_stat.go │ │ │ │ ├── item_activity_stat_collection_response.go │ │ │ │ ├── item_analytics.go │ │ │ │ ├── item_attachment.go │ │ │ │ ├── item_attachment_collection_response.go │ │ │ │ ├── item_body.go │ │ │ │ ├── item_preview_info.go │ │ │ │ ├── item_reference.go │ │ │ │ ├── join_meeting_id_meeting_info.go │ │ │ │ ├── join_meeting_id_settings.go │ │ │ │ ├── json.go │ │ │ │ ├── key_credential.go │ │ │ │ ├── key_credential_collection_response.go │ │ │ │ ├── key_credential_configuration.go │ │ │ │ ├── key_credential_configuration_collection_response.go │ │ │ │ ├── key_value.go │ │ │ │ ├── key_value_collection_response.go │ │ │ │ ├── key_value_pair.go │ │ │ │ ├── key_value_pair_collection_response.go │ │ │ │ ├── learning_content.go │ │ │ │ ├── learning_content_collection_response.go │ │ │ │ ├── learning_provider.go │ │ │ │ ├── learning_provider_collection_response.go │ │ │ │ ├── license_assignment_state.go │ │ │ │ ├── license_assignment_state_collection_response.go │ │ │ │ ├── license_details.go │ │ │ │ ├── license_details_collection_response.go │ │ │ │ ├── license_processing_state.go │ │ │ │ ├── license_units_detail.go │ │ │ │ ├── lifecycle_event_type.go │ │ │ │ ├── linked_resource.go │ │ │ │ ├── linked_resource_collection_response.go │ │ │ │ ├── list.go │ │ │ │ ├── list_collection_response.go │ │ │ │ ├── list_info.go │ │ │ │ ├── list_item.go │ │ │ │ ├── list_item_collection_response.go │ │ │ │ ├── list_item_version.go │ │ │ │ ├── list_item_version_collection_response.go │ │ │ │ ├── lobby_bypass_scope.go │ │ │ │ ├── lobby_bypass_settings.go │ │ │ │ ├── locale_info.go │ │ │ │ ├── localized_notification_message.go │ │ │ │ ├── localized_notification_message_collection_response.go │ │ │ │ ├── locate_device_action_result.go │ │ │ │ ├── location.go │ │ │ │ ├── location_collection_response.go │ │ │ │ ├── location_constraint.go │ │ │ │ ├── location_constraint_item.go │ │ │ │ ├── location_constraint_item_collection_response.go │ │ │ │ ├── location_type.go │ │ │ │ ├── location_unique_id_type.go │ │ │ │ ├── logon_type.go │ │ │ │ ├── long_running_operation.go │ │ │ │ ├── long_running_operation_collection_response.go │ │ │ │ ├── long_running_operation_status.go │ │ │ │ ├── lookup_column.go │ │ │ │ ├── mac_o_s_compliance_policy.go │ │ │ │ ├── mac_o_s_compliance_policy_collection_response.go │ │ │ │ ├── mac_o_s_custom_configuration.go │ │ │ │ ├── mac_o_s_custom_configuration_collection_response.go │ │ │ │ ├── mac_o_s_device_features_configuration.go │ │ │ │ ├── mac_o_s_device_features_configuration_collection_response.go │ │ │ │ ├── mac_o_s_general_device_configuration.go │ │ │ │ ├── mac_o_s_general_device_configuration_collection_response.go │ │ │ │ ├── mac_o_s_lob_app.go │ │ │ │ ├── mac_o_s_lob_app_collection_response.go │ │ │ │ ├── mac_o_s_lob_child_app.go │ │ │ │ ├── mac_o_s_lob_child_app_collection_response.go │ │ │ │ ├── mac_o_s_microsoft_edge_app.go │ │ │ │ ├── mac_o_s_microsoft_edge_app_collection_response.go │ │ │ │ ├── mac_o_s_minimum_operating_system.go │ │ │ │ ├── mac_o_s_office_suite_app.go │ │ │ │ ├── mac_o_s_office_suite_app_collection_response.go │ │ │ │ ├── mac_os_lob_app_assignment_settings.go │ │ │ │ ├── mail_assessment_request.go │ │ │ │ ├── mail_assessment_request_collection_response.go │ │ │ │ ├── mail_destination_routing_reason.go │ │ │ │ ├── mail_folder.go │ │ │ │ ├── mail_folder_collection_response.go │ │ │ │ ├── mail_search_folder.go │ │ │ │ ├── mail_search_folder_collection_response.go │ │ │ │ ├── mail_tips.go │ │ │ │ ├── mail_tips_error.go │ │ │ │ ├── mail_tips_type.go │ │ │ │ ├── mailbox_settings.go │ │ │ │ ├── malware.go │ │ │ │ ├── malware_state.go │ │ │ │ ├── malware_state_collection_response.go │ │ │ │ ├── managed_android_lob_app.go │ │ │ │ ├── managed_android_lob_app_collection_response.go │ │ │ │ ├── managed_android_store_app.go │ │ │ │ ├── managed_android_store_app_collection_response.go │ │ │ │ ├── managed_app.go │ │ │ │ ├── managed_app_availability.go │ │ │ │ ├── managed_app_clipboard_sharing_level.go │ │ │ │ ├── managed_app_collection_response.go │ │ │ │ ├── managed_app_configuration.go │ │ │ │ ├── managed_app_configuration_collection_response.go │ │ │ │ ├── managed_app_data_encryption_type.go │ │ │ │ ├── managed_app_data_storage_location.go │ │ │ │ ├── managed_app_data_transfer_level.go │ │ │ │ ├── managed_app_diagnostic_status.go │ │ │ │ ├── managed_app_flagged_reason.go │ │ │ │ ├── managed_app_operation.go │ │ │ │ ├── managed_app_operation_collection_response.go │ │ │ │ ├── managed_app_pin_character_set.go │ │ │ │ ├── managed_app_policy.go │ │ │ │ ├── managed_app_policy_collection_response.go │ │ │ │ ├── managed_app_policy_deployment_summary.go │ │ │ │ ├── managed_app_policy_deployment_summary_per_app.go │ │ │ │ ├── managed_app_policy_deployment_summary_per_app_collection_response.go │ │ │ │ ├── managed_app_protection.go │ │ │ │ ├── managed_app_protection_collection_response.go │ │ │ │ ├── managed_app_registration.go │ │ │ │ ├── managed_app_registration_collection_response.go │ │ │ │ ├── managed_app_status.go │ │ │ │ ├── managed_app_status_collection_response.go │ │ │ │ ├── managed_app_status_raw.go │ │ │ │ ├── managed_app_status_raw_collection_response.go │ │ │ │ ├── managed_browser_type.go │ │ │ │ ├── managed_device.go │ │ │ │ ├── managed_device_collection_response.go │ │ │ │ ├── managed_device_mobile_app_configuration.go │ │ │ │ ├── managed_device_mobile_app_configuration_assignment.go │ │ │ │ ├── managed_device_mobile_app_configuration_assignment_collection_response.go │ │ │ │ ├── managed_device_mobile_app_configuration_collection_response.go │ │ │ │ ├── managed_device_mobile_app_configuration_device_status.go │ │ │ │ ├── managed_device_mobile_app_configuration_device_status_collection_response.go │ │ │ │ ├── managed_device_mobile_app_configuration_device_summary.go │ │ │ │ ├── managed_device_mobile_app_configuration_user_status.go │ │ │ │ ├── managed_device_mobile_app_configuration_user_status_collection_response.go │ │ │ │ ├── managed_device_mobile_app_configuration_user_summary.go │ │ │ │ ├── managed_device_overview.go │ │ │ │ ├── managed_device_owner_type.go │ │ │ │ ├── managed_device_partner_reported_health_state.go │ │ │ │ ├── managed_e_book.go │ │ │ │ ├── managed_e_book_assignment.go │ │ │ │ ├── managed_e_book_assignment_collection_response.go │ │ │ │ ├── managed_e_book_collection_response.go │ │ │ │ ├── managed_i_o_s_lob_app.go │ │ │ │ ├── managed_i_o_s_lob_app_collection_response.go │ │ │ │ ├── managed_i_o_s_store_app.go │ │ │ │ ├── managed_i_o_s_store_app_collection_response.go │ │ │ │ ├── managed_mobile_app.go │ │ │ │ ├── managed_mobile_app_collection_response.go │ │ │ │ ├── managed_mobile_lob_app.go │ │ │ │ ├── managed_mobile_lob_app_collection_response.go │ │ │ │ ├── management_agent_type.go │ │ │ │ ├── mdm_app_config_key_type.go │ │ │ │ ├── mdm_authority.go │ │ │ │ ├── mdm_windows_information_protection_policy.go │ │ │ │ ├── mdm_windows_information_protection_policy_collection_response.go │ │ │ │ ├── media_config.go │ │ │ │ ├── media_content_rating_australia.go │ │ │ │ ├── media_content_rating_canada.go │ │ │ │ ├── media_content_rating_france.go │ │ │ │ ├── media_content_rating_germany.go │ │ │ │ ├── media_content_rating_ireland.go │ │ │ │ ├── media_content_rating_japan.go │ │ │ │ ├── media_content_rating_new_zealand.go │ │ │ │ ├── media_content_rating_united_kingdom.go │ │ │ │ ├── media_content_rating_united_states.go │ │ │ │ ├── media_direction.go │ │ │ │ ├── media_info.go │ │ │ │ ├── media_info_collection_response.go │ │ │ │ ├── media_prompt.go │ │ │ │ ├── media_state.go │ │ │ │ ├── media_stream.go │ │ │ │ ├── media_stream_collection_response.go │ │ │ │ ├── meeting_attendance_report.go │ │ │ │ ├── meeting_attendance_report_collection_response.go │ │ │ │ ├── meeting_chat_mode.go │ │ │ │ ├── meeting_info.go │ │ │ │ ├── meeting_message_type.go │ │ │ │ ├── meeting_participant_info.go │ │ │ │ ├── meeting_participant_info_collection_response.go │ │ │ │ ├── meeting_participants.go │ │ │ │ ├── meeting_policy_updated_event_message_detail.go │ │ │ │ ├── meeting_request_type.go │ │ │ │ ├── meeting_time_suggestion.go │ │ │ │ ├── meeting_time_suggestion_collection_response.go │ │ │ │ ├── meeting_time_suggestions_result.go │ │ │ │ ├── members_added_event_message_detail.go │ │ │ │ ├── members_deleted_event_message_detail.go │ │ │ │ ├── members_joined_event_message_detail.go │ │ │ │ ├── members_left_event_message_detail.go │ │ │ │ ├── message.go │ │ │ │ ├── message_action_flag.go │ │ │ │ ├── message_collection_response.go │ │ │ │ ├── message_pinned_event_message_detail.go │ │ │ │ ├── message_rule.go │ │ │ │ ├── message_rule_actions.go │ │ │ │ ├── message_rule_collection_response.go │ │ │ │ ├── message_rule_predicates.go │ │ │ │ ├── message_security_state.go │ │ │ │ ├── message_security_state_collection_response.go │ │ │ │ ├── message_unpinned_event_message_detail.go │ │ │ │ ├── microsoft_account_user_conversation_member.go │ │ │ │ ├── microsoft_account_user_conversation_member_collection_response.go │ │ │ │ ├── microsoft_authenticator_authentication_method.go │ │ │ │ ├── microsoft_authenticator_authentication_method_collection_response.go │ │ │ │ ├── microsoft_authenticator_authentication_method_configuration.go │ │ │ │ ├── microsoft_authenticator_authentication_method_configuration_collection_response.go │ │ │ │ ├── microsoft_authenticator_authentication_method_target.go │ │ │ │ ├── microsoft_authenticator_authentication_method_target_collection_response.go │ │ │ │ ├── microsoft_authenticator_authentication_mode.go │ │ │ │ ├── microsoft_authenticator_feature_settings.go │ │ │ │ ├── microsoft_edge_channel.go │ │ │ │ ├── microsoft_store_for_business_app.go │ │ │ │ ├── microsoft_store_for_business_app_assignment_settings.go │ │ │ │ ├── microsoft_store_for_business_app_collection_response.go │ │ │ │ ├── microsoft_store_for_business_license_type.go │ │ │ │ ├── mime_content.go │ │ │ │ ├── miracast_channel.go │ │ │ │ ├── mobile_app.go │ │ │ │ ├── mobile_app_assignment.go │ │ │ │ ├── mobile_app_assignment_collection_response.go │ │ │ │ ├── mobile_app_assignment_settings.go │ │ │ │ ├── mobile_app_category.go │ │ │ │ ├── mobile_app_category_collection_response.go │ │ │ │ ├── mobile_app_collection_response.go │ │ │ │ ├── mobile_app_content.go │ │ │ │ ├── mobile_app_content_collection_response.go │ │ │ │ ├── mobile_app_content_file.go │ │ │ │ ├── mobile_app_content_file_collection_response.go │ │ │ │ ├── mobile_app_content_file_upload_state.go │ │ │ │ ├── mobile_app_identifier.go │ │ │ │ ├── mobile_app_install_time_settings.go │ │ │ │ ├── mobile_app_publishing_state.go │ │ │ │ ├── mobile_contained_app.go │ │ │ │ ├── mobile_contained_app_collection_response.go │ │ │ │ ├── mobile_lob_app.go │ │ │ │ ├── mobile_lob_app_collection_response.go │ │ │ │ ├── mobile_threat_defense_connector.go │ │ │ │ ├── mobile_threat_defense_connector_collection_response.go │ │ │ │ ├── mobile_threat_partner_tenant_state.go │ │ │ │ ├── modality.go │ │ │ │ ├── modified_property.go │ │ │ │ ├── modified_property_collection_response.go │ │ │ │ ├── multi_value_legacy_extended_property.go │ │ │ │ ├── multi_value_legacy_extended_property_collection_response.go │ │ │ │ ├── mute_participant_operation.go │ │ │ │ ├── mute_participant_operation_collection_response.go │ │ │ │ ├── named_location.go │ │ │ │ ├── named_location_collection_response.go │ │ │ │ ├── network_connection.go │ │ │ │ ├── network_connection_collection_response.go │ │ │ │ ├── notebook.go │ │ │ │ ├── notebook_collection_response.go │ │ │ │ ├── notebook_links.go │ │ │ │ ├── notification_message_template.go │ │ │ │ ├── notification_message_template_collection_response.go │ │ │ │ ├── notification_template_branding_options.go │ │ │ │ ├── number_column.go │ │ │ │ ├── o_auth2_permission_grant.go │ │ │ │ ├── o_auth2_permission_grant_collection_response.go │ │ │ │ ├── object_identity.go │ │ │ │ ├── object_identity_collection_response.go │ │ │ │ ├── odataerrors/ │ │ │ │ │ ├── error_details.go │ │ │ │ │ ├── inner_error.go │ │ │ │ │ ├── main_error.go │ │ │ │ │ └── o_data_error.go │ │ │ │ ├── offer_shift_request.go │ │ │ │ ├── offer_shift_request_collection_response.go │ │ │ │ ├── office_graph_insights.go │ │ │ │ ├── oma_setting.go │ │ │ │ ├── oma_setting_base64.go │ │ │ │ ├── oma_setting_boolean.go │ │ │ │ ├── oma_setting_collection_response.go │ │ │ │ ├── oma_setting_date_time.go │ │ │ │ ├── oma_setting_floating_point.go │ │ │ │ ├── oma_setting_integer.go │ │ │ │ ├── oma_setting_string.go │ │ │ │ ├── oma_setting_string_xml.go │ │ │ │ ├── on_premises_accidental_deletion_prevention.go │ │ │ │ ├── on_premises_conditional_access_settings.go │ │ │ │ ├── on_premises_directory_synchronization.go │ │ │ │ ├── on_premises_directory_synchronization_collection_response.go │ │ │ │ ├── on_premises_directory_synchronization_configuration.go │ │ │ │ ├── on_premises_directory_synchronization_deletion_prevention_type.go │ │ │ │ ├── on_premises_directory_synchronization_feature.go │ │ │ │ ├── on_premises_extension_attributes.go │ │ │ │ ├── on_premises_provisioning_error.go │ │ │ │ ├── on_premises_provisioning_error_collection_response.go │ │ │ │ ├── onenote.go │ │ │ │ ├── onenote_entity_base_model.go │ │ │ │ ├── onenote_entity_hierarchy_model.go │ │ │ │ ├── onenote_entity_schema_object_model.go │ │ │ │ ├── onenote_operation.go │ │ │ │ ├── onenote_operation_collection_response.go │ │ │ │ ├── onenote_operation_error.go │ │ │ │ ├── onenote_page.go │ │ │ │ ├── onenote_page_collection_response.go │ │ │ │ ├── onenote_page_preview.go │ │ │ │ ├── onenote_page_preview_links.go │ │ │ │ ├── onenote_patch_action_type.go │ │ │ │ ├── onenote_patch_content_command.go │ │ │ │ ├── onenote_patch_insert_position.go │ │ │ │ ├── onenote_resource.go │ │ │ │ ├── onenote_resource_collection_response.go │ │ │ │ ├── onenote_section.go │ │ │ │ ├── onenote_section_collection_response.go │ │ │ │ ├── onenote_source_service.go │ │ │ │ ├── onenote_user_role.go │ │ │ │ ├── online_meeting.go │ │ │ │ ├── online_meeting_collection_response.go │ │ │ │ ├── online_meeting_info.go │ │ │ │ ├── online_meeting_presenters.go │ │ │ │ ├── online_meeting_provider_type.go │ │ │ │ ├── online_meeting_role.go │ │ │ │ ├── open_shift.go │ │ │ │ ├── open_shift_change_request.go │ │ │ │ ├── open_shift_change_request_collection_response.go │ │ │ │ ├── open_shift_collection_response.go │ │ │ │ ├── open_shift_item.go │ │ │ │ ├── open_type_extension.go │ │ │ │ ├── open_type_extension_collection_response.go │ │ │ │ ├── operation.go │ │ │ │ ├── operation_error.go │ │ │ │ ├── operation_result.go │ │ │ │ ├── operation_status.go │ │ │ │ ├── optional_claim.go │ │ │ │ ├── optional_claim_collection_response.go │ │ │ │ ├── optional_claims.go │ │ │ │ ├── org_contact.go │ │ │ │ ├── org_contact_collection_response.go │ │ │ │ ├── organization.go │ │ │ │ ├── organization_collection_response.go │ │ │ │ ├── organizational_branding.go │ │ │ │ ├── organizational_branding_localization.go │ │ │ │ ├── organizational_branding_localization_collection_response.go │ │ │ │ ├── organizational_branding_properties.go │ │ │ │ ├── organizer_meeting_info.go │ │ │ │ ├── outgoing_call_options.go │ │ │ │ ├── outlook_category.go │ │ │ │ ├── outlook_category_collection_response.go │ │ │ │ ├── outlook_geo_coordinates.go │ │ │ │ ├── outlook_item.go │ │ │ │ ├── outlook_user.go │ │ │ │ ├── package_escaped.go │ │ │ │ ├── package_escapedable.go │ │ │ │ ├── page_links.go │ │ │ │ ├── parental_control_settings.go │ │ │ │ ├── participant.go │ │ │ │ ├── participant_collection_response.go │ │ │ │ ├── participant_info.go │ │ │ │ ├── participant_joining_notification.go │ │ │ │ ├── participant_left_notification.go │ │ │ │ ├── partner_tenant_type.go │ │ │ │ ├── password_authentication_method.go │ │ │ │ ├── password_authentication_method_collection_response.go │ │ │ │ ├── password_credential.go │ │ │ │ ├── password_credential_collection_response.go │ │ │ │ ├── password_credential_configuration.go │ │ │ │ ├── password_credential_configuration_collection_response.go │ │ │ │ ├── password_profile.go │ │ │ │ ├── password_reset_response.go │ │ │ │ ├── patterned_recurrence.go │ │ │ │ ├── payload_delivery_platform.go │ │ │ │ ├── pending_content_update.go │ │ │ │ ├── pending_operations.go │ │ │ │ ├── permission.go │ │ │ │ ├── permission_classification_type.go │ │ │ │ ├── permission_collection_response.go │ │ │ │ ├── permission_grant_condition_set.go │ │ │ │ ├── permission_grant_condition_set_collection_response.go │ │ │ │ ├── permission_grant_policy.go │ │ │ │ ├── permission_grant_policy_collection_response.go │ │ │ │ ├── permission_scope.go │ │ │ │ ├── permission_scope_collection_response.go │ │ │ │ ├── permission_type.go │ │ │ │ ├── persistent_browser_session_control.go │ │ │ │ ├── persistent_browser_session_mode.go │ │ │ │ ├── person.go │ │ │ │ ├── person_collection_response.go │ │ │ │ ├── person_or_group_column.go │ │ │ │ ├── person_type.go │ │ │ │ ├── phone.go │ │ │ │ ├── phone_authentication_method.go │ │ │ │ ├── phone_authentication_method_collection_response.go │ │ │ │ ├── phone_collection_response.go │ │ │ │ ├── phone_type.go │ │ │ │ ├── photo.go │ │ │ │ ├── physical_address.go │ │ │ │ ├── physical_address_collection_response.go │ │ │ │ ├── physical_office_address.go │ │ │ │ ├── physical_office_address_collection_response.go │ │ │ │ ├── pinned_chat_message_info.go │ │ │ │ ├── pinned_chat_message_info_collection_response.go │ │ │ │ ├── pkcs12_certificate.go │ │ │ │ ├── pkcs12_certificate_information.go │ │ │ │ ├── pkcs12_certificate_information_collection_response.go │ │ │ │ ├── place.go │ │ │ │ ├── place_collection_response.go │ │ │ │ ├── planner.go │ │ │ │ ├── planner_applied_categories.go │ │ │ │ ├── planner_assigned_to_task_board_task_format.go │ │ │ │ ├── planner_assignments.go │ │ │ │ ├── planner_bucket.go │ │ │ │ ├── planner_bucket_collection_response.go │ │ │ │ ├── planner_bucket_task_board_task_format.go │ │ │ │ ├── planner_category_descriptions.go │ │ │ │ ├── planner_checklist_items.go │ │ │ │ ├── planner_container_type.go │ │ │ │ ├── planner_external_references.go │ │ │ │ ├── planner_group.go │ │ │ │ ├── planner_order_hints_by_assignee.go │ │ │ │ ├── planner_plan.go │ │ │ │ ├── planner_plan_collection_response.go │ │ │ │ ├── planner_plan_container.go │ │ │ │ ├── planner_plan_details.go │ │ │ │ ├── planner_preview_type.go │ │ │ │ ├── planner_progress_task_board_task_format.go │ │ │ │ ├── planner_task.go │ │ │ │ ├── planner_task_collection_response.go │ │ │ │ ├── planner_task_details.go │ │ │ │ ├── planner_user.go │ │ │ │ ├── planner_user_ids.go │ │ │ │ ├── play_prompt_operation.go │ │ │ │ ├── play_prompt_operation_collection_response.go │ │ │ │ ├── policy_base.go │ │ │ │ ├── policy_base_collection_response.go │ │ │ │ ├── policy_platform_type.go │ │ │ │ ├── policy_root.go │ │ │ │ ├── post.go │ │ │ │ ├── post_collection_response.go │ │ │ │ ├── post_type.go │ │ │ │ ├── pre_authorized_application.go │ │ │ │ ├── pre_authorized_application_collection_response.go │ │ │ │ ├── prerelease_features.go │ │ │ │ ├── presence.go │ │ │ │ ├── presence_collection_response.go │ │ │ │ ├── principal_resource_memberships_scope.go │ │ │ │ ├── print.go │ │ │ │ ├── print_certificate_signing_request.go │ │ │ │ ├── print_color_mode.go │ │ │ │ ├── print_connector.go │ │ │ │ ├── print_connector_collection_response.go │ │ │ │ ├── print_document.go │ │ │ │ ├── print_document_collection_response.go │ │ │ │ ├── print_duplex_mode.go │ │ │ │ ├── print_event.go │ │ │ │ ├── print_finishing.go │ │ │ │ ├── print_job.go │ │ │ │ ├── print_job_collection_response.go │ │ │ │ ├── print_job_configuration.go │ │ │ │ ├── print_job_processing_state.go │ │ │ │ ├── print_job_state_detail.go │ │ │ │ ├── print_job_status.go │ │ │ │ ├── print_margin.go │ │ │ │ ├── print_multipage_layout.go │ │ │ │ ├── print_operation.go │ │ │ │ ├── print_operation_collection_response.go │ │ │ │ ├── print_operation_processing_state.go │ │ │ │ ├── print_operation_status.go │ │ │ │ ├── print_orientation.go │ │ │ │ ├── print_quality.go │ │ │ │ ├── print_scaling.go │ │ │ │ ├── print_service.go │ │ │ │ ├── print_service_collection_response.go │ │ │ │ ├── print_service_endpoint.go │ │ │ │ ├── print_service_endpoint_collection_response.go │ │ │ │ ├── print_settings.go │ │ │ │ ├── print_task.go │ │ │ │ ├── print_task_collection_response.go │ │ │ │ ├── print_task_definition.go │ │ │ │ ├── print_task_definition_collection_response.go │ │ │ │ ├── print_task_processing_state.go │ │ │ │ ├── print_task_status.go │ │ │ │ ├── print_task_trigger.go │ │ │ │ ├── print_task_trigger_collection_response.go │ │ │ │ ├── print_usage.go │ │ │ │ ├── print_usage_by_printer.go │ │ │ │ ├── print_usage_by_printer_collection_response.go │ │ │ │ ├── print_usage_by_user.go │ │ │ │ ├── print_usage_by_user_collection_response.go │ │ │ │ ├── printer.go │ │ │ │ ├── printer_base.go │ │ │ │ ├── printer_capabilities.go │ │ │ │ ├── printer_collection_response.go │ │ │ │ ├── printer_create_operation.go │ │ │ │ ├── printer_create_operation_collection_response.go │ │ │ │ ├── printer_defaults.go │ │ │ │ ├── printer_feed_orientation.go │ │ │ │ ├── printer_location.go │ │ │ │ ├── printer_processing_state.go │ │ │ │ ├── printer_processing_state_detail.go │ │ │ │ ├── printer_share.go │ │ │ │ ├── printer_share_collection_response.go │ │ │ │ ├── printer_status.go │ │ │ │ ├── privacy.go │ │ │ │ ├── privacy_profile.go │ │ │ │ ├── process.go │ │ │ │ ├── process_collection_response.go │ │ │ │ ├── process_integrity_level.go │ │ │ │ ├── profile_photo.go │ │ │ │ ├── profile_photo_collection_response.go │ │ │ │ ├── prompt.go │ │ │ │ ├── prompt_login_behavior.go │ │ │ │ ├── provision_channel_email_result.go │ │ │ │ ├── provisioned_identity.go │ │ │ │ ├── provisioned_plan.go │ │ │ │ ├── provisioned_plan_collection_response.go │ │ │ │ ├── provisioning_action.go │ │ │ │ ├── provisioning_error_info.go │ │ │ │ ├── provisioning_object_summary.go │ │ │ │ ├── provisioning_object_summary_collection_response.go │ │ │ │ ├── provisioning_result.go │ │ │ │ ├── provisioning_service_principal.go │ │ │ │ ├── provisioning_status_error_category.go │ │ │ │ ├── provisioning_status_info.go │ │ │ │ ├── provisioning_step.go │ │ │ │ ├── provisioning_step_collection_response.go │ │ │ │ ├── provisioning_step_type.go │ │ │ │ ├── provisioning_system.go │ │ │ │ ├── proxied_domain.go │ │ │ │ ├── proxied_domain_collection_response.go │ │ │ │ ├── public_client_application.go │ │ │ │ ├── public_error.go │ │ │ │ ├── public_error_detail.go │ │ │ │ ├── public_error_detail_collection_response.go │ │ │ │ ├── public_inner_error.go │ │ │ │ ├── publication_facet.go │ │ │ │ ├── quota.go │ │ │ │ ├── rating_apps_type.go │ │ │ │ ├── rating_australia_movies_type.go │ │ │ │ ├── rating_australia_television_type.go │ │ │ │ ├── rating_canada_movies_type.go │ │ │ │ ├── rating_canada_television_type.go │ │ │ │ ├── rating_france_movies_type.go │ │ │ │ ├── rating_france_television_type.go │ │ │ │ ├── rating_germany_movies_type.go │ │ │ │ ├── rating_germany_television_type.go │ │ │ │ ├── rating_ireland_movies_type.go │ │ │ │ ├── rating_ireland_television_type.go │ │ │ │ ├── rating_japan_movies_type.go │ │ │ │ ├── rating_japan_television_type.go │ │ │ │ ├── rating_new_zealand_movies_type.go │ │ │ │ ├── rating_new_zealand_television_type.go │ │ │ │ ├── rating_united_kingdom_movies_type.go │ │ │ │ ├── rating_united_kingdom_television_type.go │ │ │ │ ├── rating_united_states_movies_type.go │ │ │ │ ├── rating_united_states_television_type.go │ │ │ │ ├── rbac_application.go │ │ │ │ ├── recent_notebook.go │ │ │ │ ├── recent_notebook_links.go │ │ │ │ ├── recipient.go │ │ │ │ ├── recipient_collection_response.go │ │ │ │ ├── recipient_scope_type.go │ │ │ │ ├── recommended_action.go │ │ │ │ ├── recommended_action_collection_response.go │ │ │ │ ├── record_operation.go │ │ │ │ ├── record_operation_collection_response.go │ │ │ │ ├── recording_info.go │ │ │ │ ├── recording_status.go │ │ │ │ ├── recurrence_pattern.go │ │ │ │ ├── recurrence_pattern_type.go │ │ │ │ ├── recurrence_range.go │ │ │ │ ├── recurrence_range_type.go │ │ │ │ ├── redirect_uri_settings.go │ │ │ │ ├── redirect_uri_settings_collection_response.go │ │ │ │ ├── reference_attachment.go │ │ │ │ ├── reference_attachment_collection_response.go │ │ │ │ ├── reference_create.go │ │ │ │ ├── reference_update.go │ │ │ │ ├── registration_enforcement.go │ │ │ │ ├── registry_hive.go │ │ │ │ ├── registry_key_state.go │ │ │ │ ├── registry_key_state_collection_response.go │ │ │ │ ├── registry_operation.go │ │ │ │ ├── registry_value_type.go │ │ │ │ ├── reject_reason.go │ │ │ │ ├── related_contact.go │ │ │ │ ├── related_contact_collection_response.go │ │ │ │ ├── reminder.go │ │ │ │ ├── remote_assistance_onboarding_status.go │ │ │ │ ├── remote_assistance_partner.go │ │ │ │ ├── remote_assistance_partner_collection_response.go │ │ │ │ ├── remote_item.go │ │ │ │ ├── remote_lock_action_result.go │ │ │ │ ├── remove_access_apply_action.go │ │ │ │ ├── report.go │ │ │ │ ├── report_root.go │ │ │ │ ├── request.go │ │ │ │ ├── request_schedule.go │ │ │ │ ├── request_signature_verification.go │ │ │ │ ├── requestor_manager.go │ │ │ │ ├── required_password_type.go │ │ │ │ ├── required_resource_access.go │ │ │ │ ├── required_resource_access_collection_response.go │ │ │ │ ├── reset_passcode_action_result.go │ │ │ │ ├── resource_access.go │ │ │ │ ├── resource_access_collection_response.go │ │ │ │ ├── resource_action.go │ │ │ │ ├── resource_action_collection_response.go │ │ │ │ ├── resource_data.go │ │ │ │ ├── resource_operation.go │ │ │ │ ├── resource_operation_collection_response.go │ │ │ │ ├── resource_permission.go │ │ │ │ ├── resource_permission_collection_response.go │ │ │ │ ├── resource_reference.go │ │ │ │ ├── resource_specific_permission.go │ │ │ │ ├── resource_specific_permission_collection_response.go │ │ │ │ ├── resource_specific_permission_grant.go │ │ │ │ ├── resource_specific_permission_grant_collection_response.go │ │ │ │ ├── resource_visualization.go │ │ │ │ ├── response_status.go │ │ │ │ ├── response_type.go │ │ │ │ ├── result_info.go │ │ │ │ ├── result_template_dictionary.go │ │ │ │ ├── result_template_option.go │ │ │ │ ├── rgb_color.go │ │ │ │ ├── rich_long_running_operation.go │ │ │ │ ├── rich_long_running_operation_collection_response.go │ │ │ │ ├── risk_detail.go │ │ │ │ ├── risk_detection.go │ │ │ │ ├── risk_detection_collection_response.go │ │ │ │ ├── risk_detection_timing_type.go │ │ │ │ ├── risk_event_type.go │ │ │ │ ├── risk_level.go │ │ │ │ ├── risk_service_principal_activity.go │ │ │ │ ├── risk_state.go │ │ │ │ ├── risk_user_activity.go │ │ │ │ ├── risky_service_principal.go │ │ │ │ ├── risky_service_principal_collection_response.go │ │ │ │ ├── risky_service_principal_history_item.go │ │ │ │ ├── risky_service_principal_history_item_collection_response.go │ │ │ │ ├── risky_user.go │ │ │ │ ├── risky_user_collection_response.go │ │ │ │ ├── risky_user_history_item.go │ │ │ │ ├── risky_user_history_item_collection_response.go │ │ │ │ ├── role_assignment.go │ │ │ │ ├── role_assignment_collection_response.go │ │ │ │ ├── role_definition.go │ │ │ │ ├── role_definition_collection_response.go │ │ │ │ ├── role_management.go │ │ │ │ ├── role_permission.go │ │ │ │ ├── role_permission_collection_response.go │ │ │ │ ├── room.go │ │ │ │ ├── room_collection_response.go │ │ │ │ ├── room_list.go │ │ │ │ ├── room_list_collection_response.go │ │ │ │ ├── root.go │ │ │ │ ├── routing_mode.go │ │ │ │ ├── routing_type.go │ │ │ │ ├── rubric_criterion.go │ │ │ │ ├── rubric_criterion_collection_response.go │ │ │ │ ├── rubric_level.go │ │ │ │ ├── rubric_level_collection_response.go │ │ │ │ ├── rubric_quality.go │ │ │ │ ├── rubric_quality_collection_response.go │ │ │ │ ├── rubric_quality_feedback_model.go │ │ │ │ ├── rubric_quality_feedback_model_collection_response.go │ │ │ │ ├── rubric_quality_selected_column_model.go │ │ │ │ ├── rubric_quality_selected_column_model_collection_response.go │ │ │ │ ├── run_as_account_type.go │ │ │ │ ├── safe_search_filter_type.go │ │ │ │ ├── saml_or_ws_fed_external_domain_federation.go │ │ │ │ ├── saml_or_ws_fed_external_domain_federation_collection_response.go │ │ │ │ ├── saml_or_ws_fed_provider.go │ │ │ │ ├── saml_or_ws_fed_provider_collection_response.go │ │ │ │ ├── saml_single_sign_on_settings.go │ │ │ │ ├── schedule.go │ │ │ │ ├── schedule_change_request.go │ │ │ │ ├── schedule_change_request_actor.go │ │ │ │ ├── schedule_change_state.go │ │ │ │ ├── schedule_entity.go │ │ │ │ ├── schedule_entity_theme.go │ │ │ │ ├── schedule_information.go │ │ │ │ ├── schedule_item.go │ │ │ │ ├── schedule_item_collection_response.go │ │ │ │ ├── scheduling_group.go │ │ │ │ ├── scheduling_group_collection_response.go │ │ │ │ ├── schema_extension.go │ │ │ │ ├── schema_extension_collection_response.go │ │ │ │ ├── scoped_role_membership.go │ │ │ │ ├── scoped_role_membership_collection_response.go │ │ │ │ ├── scored_email_address.go │ │ │ │ ├── scored_email_address_collection_response.go │ │ │ │ ├── screen_sharing_role.go │ │ │ │ ├── search_aggregation.go │ │ │ │ ├── search_aggregation_collection_response.go │ │ │ │ ├── search_alteration.go │ │ │ │ ├── search_alteration_options.go │ │ │ │ ├── search_alteration_type.go │ │ │ │ ├── search_bucket.go │ │ │ │ ├── search_bucket_collection_response.go │ │ │ │ ├── search_content.go │ │ │ │ ├── search_entity.go │ │ │ │ ├── search_hit.go │ │ │ │ ├── search_hit_collection_response.go │ │ │ │ ├── search_hits_container.go │ │ │ │ ├── search_hits_container_collection_response.go │ │ │ │ ├── search_query.go │ │ │ │ ├── search_request.go │ │ │ │ ├── search_response.go │ │ │ │ ├── search_result.go │ │ │ │ ├── section_group.go │ │ │ │ ├── section_group_collection_response.go │ │ │ │ ├── section_links.go │ │ │ │ ├── secure_score.go │ │ │ │ ├── secure_score_collection_response.go │ │ │ │ ├── secure_score_control_profile.go │ │ │ │ ├── secure_score_control_profile_collection_response.go │ │ │ │ ├── secure_score_control_state_update.go │ │ │ │ ├── secure_score_control_state_update_collection_response.go │ │ │ │ ├── security/ │ │ │ │ │ ├── additional_data_options.go │ │ │ │ │ ├── alert.go │ │ │ │ │ ├── alert_classification.go │ │ │ │ │ ├── alert_collection_response.go │ │ │ │ │ ├── alert_comment.go │ │ │ │ │ ├── alert_comment_collection_response.go │ │ │ │ │ ├── alert_determination.go │ │ │ │ │ ├── alert_evidence.go │ │ │ │ │ ├── alert_evidence_collection_response.go │ │ │ │ │ ├── alert_severity.go │ │ │ │ │ ├── alert_status.go │ │ │ │ │ ├── analyzed_message_evidence.go │ │ │ │ │ ├── case_action.go │ │ │ │ │ ├── case_escaped.go │ │ │ │ │ ├── case_escapedable.go │ │ │ │ │ ├── case_operation.go │ │ │ │ │ ├── case_operation_collection_response.go │ │ │ │ │ ├── case_operation_status.go │ │ │ │ │ ├── case_status.go │ │ │ │ │ ├── cases_root.go │ │ │ │ │ ├── child_selectability.go │ │ │ │ │ ├── cloud_application_evidence.go │ │ │ │ │ ├── data_set.go │ │ │ │ │ ├── data_source.go │ │ │ │ │ ├── data_source_collection_response.go │ │ │ │ │ ├── data_source_container.go │ │ │ │ │ ├── data_source_container_status.go │ │ │ │ │ ├── data_source_hold_status.go │ │ │ │ │ ├── data_source_scopes.go │ │ │ │ │ ├── defender_av_status.go │ │ │ │ │ ├── detection_source.go │ │ │ │ │ ├── detection_status.go │ │ │ │ │ ├── device_evidence.go │ │ │ │ │ ├── device_health_status.go │ │ │ │ │ ├── device_risk_score.go │ │ │ │ │ ├── ediscovery_add_to_review_set_operation.go │ │ │ │ │ ├── ediscovery_add_to_review_set_operation_collection_response.go │ │ │ │ │ ├── ediscovery_case.go │ │ │ │ │ ├── ediscovery_case_collection_response.go │ │ │ │ │ ├── ediscovery_case_settings.go │ │ │ │ │ ├── ediscovery_custodian.go │ │ │ │ │ ├── ediscovery_custodian_collection_response.go │ │ │ │ │ ├── ediscovery_estimate_operation.go │ │ │ │ │ ├── ediscovery_estimate_operation_collection_response.go │ │ │ │ │ ├── ediscovery_hold_operation.go │ │ │ │ │ ├── ediscovery_hold_operation_collection_response.go │ │ │ │ │ ├── ediscovery_index_operation.go │ │ │ │ │ ├── ediscovery_index_operation_collection_response.go │ │ │ │ │ ├── ediscovery_noncustodial_data_source.go │ │ │ │ │ ├── ediscovery_noncustodial_data_source_collection_response.go │ │ │ │ │ ├── ediscovery_purge_data_operation.go │ │ │ │ │ ├── ediscovery_purge_data_operation_collection_response.go │ │ │ │ │ ├── ediscovery_review_set.go │ │ │ │ │ ├── ediscovery_review_set_collection_response.go │ │ │ │ │ ├── ediscovery_review_set_query.go │ │ │ │ │ ├── ediscovery_review_set_query_collection_response.go │ │ │ │ │ ├── ediscovery_review_tag.go │ │ │ │ │ ├── ediscovery_review_tag_collection_response.go │ │ │ │ │ ├── ediscovery_search.go │ │ │ │ │ ├── ediscovery_search_collection_response.go │ │ │ │ │ ├── ediscovery_tag_operation.go │ │ │ │ │ ├── ediscovery_tag_operation_collection_response.go │ │ │ │ │ ├── email_sender.go │ │ │ │ │ ├── evidence_remediation_status.go │ │ │ │ │ ├── evidence_role.go │ │ │ │ │ ├── evidence_verdict.go │ │ │ │ │ ├── file_details.go │ │ │ │ │ ├── file_evidence.go │ │ │ │ │ ├── hunting_query_results.go │ │ │ │ │ ├── hunting_row_result.go │ │ │ │ │ ├── hunting_row_result_collection_response.go │ │ │ │ │ ├── incident.go │ │ │ │ │ ├── incident_collection_response.go │ │ │ │ │ ├── incident_status.go │ │ │ │ │ ├── ip_evidence.go │ │ │ │ │ ├── logged_on_user.go │ │ │ │ │ ├── logged_on_user_collection_response.go │ │ │ │ │ ├── mail_cluster_evidence.go │ │ │ │ │ ├── mailbox_evidence.go │ │ │ │ │ ├── oauth_application_evidence.go │ │ │ │ │ ├── ocr_settings.go │ │ │ │ │ ├── onboarding_status.go │ │ │ │ │ ├── process_evidence.go │ │ │ │ │ ├── purge_areas.go │ │ │ │ │ ├── purge_type.go │ │ │ │ │ ├── redundancy_detection_settings.go │ │ │ │ │ ├── registry_key_evidence.go │ │ │ │ │ ├── registry_value_evidence.go │ │ │ │ │ ├── search.go │ │ │ │ │ ├── security_group_evidence.go │ │ │ │ │ ├── service_source.go │ │ │ │ │ ├── single_property_schema.go │ │ │ │ │ ├── single_property_schema_collection_response.go │ │ │ │ │ ├── site_source.go │ │ │ │ │ ├── site_source_collection_response.go │ │ │ │ │ ├── source_type.go │ │ │ │ │ ├── tag.go │ │ │ │ │ ├── topic_modeling_settings.go │ │ │ │ │ ├── unified_group_source.go │ │ │ │ │ ├── unified_group_source_collection_response.go │ │ │ │ │ ├── url_evidence.go │ │ │ │ │ ├── user_account.go │ │ │ │ │ ├── user_evidence.go │ │ │ │ │ ├── user_source.go │ │ │ │ │ ├── user_source_collection_response.go │ │ │ │ │ ├── vm_cloud_provider.go │ │ │ │ │ └── vm_metadata.go │ │ │ │ ├── security.go │ │ │ │ ├── security_network_protocol.go │ │ │ │ ├── security_reports_root.go │ │ │ │ ├── security_resource.go │ │ │ │ ├── security_resource_collection_response.go │ │ │ │ ├── security_resource_type.go │ │ │ │ ├── security_vendor_information.go │ │ │ │ ├── selection_likelihood_info.go │ │ │ │ ├── self_service_sign_up_authentication_flow_configuration.go │ │ │ │ ├── self_signed_certificate.go │ │ │ │ ├── sensitivity.go │ │ │ │ ├── service_announcement.go │ │ │ │ ├── service_announcement_attachment.go │ │ │ │ ├── service_announcement_attachment_collection_response.go │ │ │ │ ├── service_announcement_base.go │ │ │ │ ├── service_health.go │ │ │ │ ├── service_health_classification_type.go │ │ │ │ ├── service_health_collection_response.go │ │ │ │ ├── service_health_issue.go │ │ │ │ ├── service_health_issue_collection_response.go │ │ │ │ ├── service_health_issue_post.go │ │ │ │ ├── service_health_issue_post_collection_response.go │ │ │ │ ├── service_health_origin.go │ │ │ │ ├── service_health_status.go │ │ │ │ ├── service_hosted_media_config.go │ │ │ │ ├── service_plan_info.go │ │ │ │ ├── service_plan_info_collection_response.go │ │ │ │ ├── service_principal.go │ │ │ │ ├── service_principal_collection_response.go │ │ │ │ ├── service_principal_identity.go │ │ │ │ ├── service_principal_risk_detection.go │ │ │ │ ├── service_principal_risk_detection_collection_response.go │ │ │ │ ├── service_update_category.go │ │ │ │ ├── service_update_message.go │ │ │ │ ├── service_update_message_collection_response.go │ │ │ │ ├── service_update_message_viewpoint.go │ │ │ │ ├── service_update_severity.go │ │ │ │ ├── setting_source.go │ │ │ │ ├── setting_source_collection_response.go │ │ │ │ ├── setting_source_type.go │ │ │ │ ├── setting_state_device_summary.go │ │ │ │ ├── setting_state_device_summary_collection_response.go │ │ │ │ ├── setting_template_value.go │ │ │ │ ├── setting_template_value_collection_response.go │ │ │ │ ├── setting_value.go │ │ │ │ ├── setting_value_collection_response.go │ │ │ │ ├── share_point_identity.go │ │ │ │ ├── share_point_identity_set.go │ │ │ │ ├── share_point_identity_set_collection_response.go │ │ │ │ ├── share_point_one_drive_options.go │ │ │ │ ├── shared.go │ │ │ │ ├── shared_drive_item.go │ │ │ │ ├── shared_drive_item_collection_response.go │ │ │ │ ├── shared_insight.go │ │ │ │ ├── shared_insight_collection_response.go │ │ │ │ ├── shared_p_c_account_deletion_policy_type.go │ │ │ │ ├── shared_p_c_account_manager_policy.go │ │ │ │ ├── shared_p_c_allowed_account_type.go │ │ │ │ ├── shared_p_c_configuration.go │ │ │ │ ├── shared_p_c_configuration_collection_response.go │ │ │ │ ├── shared_with_channel_team_info.go │ │ │ │ ├── shared_with_channel_team_info_collection_response.go │ │ │ │ ├── sharepoint_ids.go │ │ │ │ ├── sharing_detail.go │ │ │ │ ├── sharing_detail_collection_response.go │ │ │ │ ├── sharing_invitation.go │ │ │ │ ├── sharing_link.go │ │ │ │ ├── shift.go │ │ │ │ ├── shift_activity.go │ │ │ │ ├── shift_activity_collection_response.go │ │ │ │ ├── shift_availability.go │ │ │ │ ├── shift_availability_collection_response.go │ │ │ │ ├── shift_collection_response.go │ │ │ │ ├── shift_item.go │ │ │ │ ├── shift_preferences.go │ │ │ │ ├── sign_in.go │ │ │ │ ├── sign_in_collection_response.go │ │ │ │ ├── sign_in_frequency_authentication_type.go │ │ │ │ ├── sign_in_frequency_interval.go │ │ │ │ ├── sign_in_frequency_session_control.go │ │ │ │ ├── sign_in_location.go │ │ │ │ ├── sign_in_status.go │ │ │ │ ├── signin_frequency_type.go │ │ │ │ ├── signing_certificate_update_status.go │ │ │ │ ├── simulation.go │ │ │ │ ├── simulation_attack_technique.go │ │ │ │ ├── simulation_attack_type.go │ │ │ │ ├── simulation_automation.go │ │ │ │ ├── simulation_automation_collection_response.go │ │ │ │ ├── simulation_automation_run.go │ │ │ │ ├── simulation_automation_run_collection_response.go │ │ │ │ ├── simulation_automation_run_status.go │ │ │ │ ├── simulation_automation_status.go │ │ │ │ ├── simulation_collection_response.go │ │ │ │ ├── simulation_event.go │ │ │ │ ├── simulation_event_collection_response.go │ │ │ │ ├── simulation_events_content.go │ │ │ │ ├── simulation_report.go │ │ │ │ ├── simulation_report_overview.go │ │ │ │ ├── simulation_status.go │ │ │ │ ├── single_service_principal.go │ │ │ │ ├── single_user.go │ │ │ │ ├── single_value_legacy_extended_property.go │ │ │ │ ├── single_value_legacy_extended_property_collection_response.go │ │ │ │ ├── site.go │ │ │ │ ├── site_collection.go │ │ │ │ ├── site_collection_response.go │ │ │ │ ├── site_security_level.go │ │ │ │ ├── size_range.go │ │ │ │ ├── skype_for_business_user_conversation_member.go │ │ │ │ ├── skype_for_business_user_conversation_member_collection_response.go │ │ │ │ ├── skype_user_conversation_member.go │ │ │ │ ├── skype_user_conversation_member_collection_response.go │ │ │ │ ├── social_identity_provider.go │ │ │ │ ├── social_identity_provider_collection_response.go │ │ │ │ ├── software_oath_authentication_method.go │ │ │ │ ├── software_oath_authentication_method_collection_response.go │ │ │ │ ├── software_update_status_summary.go │ │ │ │ ├── solutions_root.go │ │ │ │ ├── sort_property.go │ │ │ │ ├── sort_property_collection_response.go │ │ │ │ ├── spa_application.go │ │ │ │ ├── special_folder.go │ │ │ │ ├── staff_availability_item.go │ │ │ │ ├── staged_feature_name.go │ │ │ │ ├── standard_time_zone_offset.go │ │ │ │ ├── start_hold_music_operation.go │ │ │ │ ├── start_hold_music_operation_collection_response.go │ │ │ │ ├── state_management_setting.go │ │ │ │ ├── status.go │ │ │ │ ├── stop_hold_music_operation.go │ │ │ │ ├── stop_hold_music_operation_collection_response.go │ │ │ │ ├── storage_plan_information.go │ │ │ │ ├── string_collection_response.go │ │ │ │ ├── sts_policy.go │ │ │ │ ├── sts_policy_collection_response.go │ │ │ │ ├── subject_rights_request.go │ │ │ │ ├── subject_rights_request_collection_response.go │ │ │ │ ├── subject_rights_request_detail.go │ │ │ │ ├── subject_rights_request_history.go │ │ │ │ ├── subject_rights_request_history_collection_response.go │ │ │ │ ├── subject_rights_request_stage.go │ │ │ │ ├── subject_rights_request_stage_detail.go │ │ │ │ ├── subject_rights_request_stage_detail_collection_response.go │ │ │ │ ├── subject_rights_request_stage_status.go │ │ │ │ ├── subject_rights_request_status.go │ │ │ │ ├── subject_rights_request_type.go │ │ │ │ ├── subject_set.go │ │ │ │ ├── subject_set_collection_response.go │ │ │ │ ├── subscribe_to_tone_operation.go │ │ │ │ ├── subscribe_to_tone_operation_collection_response.go │ │ │ │ ├── subscribed_sku.go │ │ │ │ ├── subscribed_sku_collection_response.go │ │ │ │ ├── subscription.go │ │ │ │ ├── subscription_collection_response.go │ │ │ │ ├── swap_shifts_change_request.go │ │ │ │ ├── swap_shifts_change_request_collection_response.go │ │ │ │ ├── system_facet.go │ │ │ │ ├── tab_updated_event_message_detail.go │ │ │ │ ├── target_application_owners.go │ │ │ │ ├── target_manager.go │ │ │ │ ├── target_resource.go │ │ │ │ ├── target_resource_collection_response.go │ │ │ │ ├── targeted_managed_app_configuration.go │ │ │ │ ├── targeted_managed_app_configuration_collection_response.go │ │ │ │ ├── targeted_managed_app_group_type.go │ │ │ │ ├── targeted_managed_app_policy_assignment.go │ │ │ │ ├── targeted_managed_app_policy_assignment_collection_response.go │ │ │ │ ├── targeted_managed_app_protection.go │ │ │ │ ├── targeted_managed_app_protection_collection_response.go │ │ │ │ ├── task_file_attachment.go │ │ │ │ ├── task_file_attachment_collection_response.go │ │ │ │ ├── task_status.go │ │ │ │ ├── team.go │ │ │ │ ├── team_archived_event_message_detail.go │ │ │ │ ├── team_collection_response.go │ │ │ │ ├── team_created_event_message_detail.go │ │ │ │ ├── team_description_updated_event_message_detail.go │ │ │ │ ├── team_fun_settings.go │ │ │ │ ├── team_guest_settings.go │ │ │ │ ├── team_info.go │ │ │ │ ├── team_joining_disabled_event_message_detail.go │ │ │ │ ├── team_joining_enabled_event_message_detail.go │ │ │ │ ├── team_member_settings.go │ │ │ │ ├── team_members_notification_recipient.go │ │ │ │ ├── team_messaging_settings.go │ │ │ │ ├── team_renamed_event_message_detail.go │ │ │ │ ├── team_specialization.go │ │ │ │ ├── team_summary.go │ │ │ │ ├── team_unarchived_event_message_detail.go │ │ │ │ ├── team_visibility_type.go │ │ │ │ ├── teams_app.go │ │ │ │ ├── teams_app_collection_response.go │ │ │ │ ├── teams_app_definition.go │ │ │ │ ├── teams_app_definition_collection_response.go │ │ │ │ ├── teams_app_distribution_method.go │ │ │ │ ├── teams_app_installation.go │ │ │ │ ├── teams_app_installation_collection_response.go │ │ │ │ ├── teams_app_installed_event_message_detail.go │ │ │ │ ├── teams_app_publishing_state.go │ │ │ │ ├── teams_app_removed_event_message_detail.go │ │ │ │ ├── teams_app_upgraded_event_message_detail.go │ │ │ │ ├── teams_async_operation.go │ │ │ │ ├── teams_async_operation_collection_response.go │ │ │ │ ├── teams_async_operation_status.go │ │ │ │ ├── teams_async_operation_type.go │ │ │ │ ├── teams_tab.go │ │ │ │ ├── teams_tab_collection_response.go │ │ │ │ ├── teams_tab_configuration.go │ │ │ │ ├── teams_template.go │ │ │ │ ├── teams_template_collection_response.go │ │ │ │ ├── teamwork.go │ │ │ │ ├── teamwork_activity_topic.go │ │ │ │ ├── teamwork_activity_topic_source.go │ │ │ │ ├── teamwork_application_identity.go │ │ │ │ ├── teamwork_application_identity_type.go │ │ │ │ ├── teamwork_bot.go │ │ │ │ ├── teamwork_call_event_type.go │ │ │ │ ├── teamwork_conversation_identity.go │ │ │ │ ├── teamwork_conversation_identity_type.go │ │ │ │ ├── teamwork_hosted_content.go │ │ │ │ ├── teamwork_notification_recipient.go │ │ │ │ ├── teamwork_online_meeting_info.go │ │ │ │ ├── teamwork_tag.go │ │ │ │ ├── teamwork_tag_collection_response.go │ │ │ │ ├── teamwork_tag_identity.go │ │ │ │ ├── teamwork_tag_member.go │ │ │ │ ├── teamwork_tag_member_collection_response.go │ │ │ │ ├── teamwork_tag_type.go │ │ │ │ ├── teamwork_user_identity.go │ │ │ │ ├── teamwork_user_identity_collection_response.go │ │ │ │ ├── teamwork_user_identity_type.go │ │ │ │ ├── telecom_expense_management_partner.go │ │ │ │ ├── telecom_expense_management_partner_collection_response.go │ │ │ │ ├── teleconference_device_audio_quality.go │ │ │ │ ├── teleconference_device_media_quality.go │ │ │ │ ├── teleconference_device_media_quality_collection_response.go │ │ │ │ ├── teleconference_device_quality.go │ │ │ │ ├── teleconference_device_screen_sharing_quality.go │ │ │ │ ├── teleconference_device_video_quality.go │ │ │ │ ├── template_scenarios.go │ │ │ │ ├── temporary_access_pass_authentication_method.go │ │ │ │ ├── temporary_access_pass_authentication_method_collection_response.go │ │ │ │ ├── temporary_access_pass_authentication_method_configuration.go │ │ │ │ ├── temporary_access_pass_authentication_method_configuration_collection_response.go │ │ │ │ ├── tenant_app_management_policy.go │ │ │ │ ├── tenant_app_management_policy_collection_response.go │ │ │ │ ├── tenant_relationship.go │ │ │ │ ├── term_column.go │ │ │ │ ├── terms_and_conditions.go │ │ │ │ ├── terms_and_conditions_acceptance_status.go │ │ │ │ ├── terms_and_conditions_acceptance_status_collection_response.go │ │ │ │ ├── terms_and_conditions_assignment.go │ │ │ │ ├── terms_and_conditions_assignment_collection_response.go │ │ │ │ ├── terms_and_conditions_collection_response.go │ │ │ │ ├── terms_expiration.go │ │ │ │ ├── terms_of_use_container.go │ │ │ │ ├── termstore/ │ │ │ │ │ ├── group.go │ │ │ │ │ ├── group_collection_response.go │ │ │ │ │ ├── localized_description.go │ │ │ │ │ ├── localized_description_collection_response.go │ │ │ │ │ ├── localized_label.go │ │ │ │ │ ├── localized_label_collection_response.go │ │ │ │ │ ├── localized_name.go │ │ │ │ │ ├── localized_name_collection_response.go │ │ │ │ │ ├── relation.go │ │ │ │ │ ├── relation_collection_response.go │ │ │ │ │ ├── relation_type.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── set_collection_response.go │ │ │ │ │ ├── store.go │ │ │ │ │ ├── store_collection_response.go │ │ │ │ │ ├── term.go │ │ │ │ │ ├── term_collection_response.go │ │ │ │ │ └── term_group_scope.go │ │ │ │ ├── text_column.go │ │ │ │ ├── threat_assessment_content_type.go │ │ │ │ ├── threat_assessment_request.go │ │ │ │ ├── threat_assessment_request_collection_response.go │ │ │ │ ├── threat_assessment_request_source.go │ │ │ │ ├── threat_assessment_result.go │ │ │ │ ├── threat_assessment_result_collection_response.go │ │ │ │ ├── threat_assessment_result_type.go │ │ │ │ ├── threat_assessment_status.go │ │ │ │ ├── threat_category.go │ │ │ │ ├── threat_expected_assessment.go │ │ │ │ ├── thumbnail.go │ │ │ │ ├── thumbnail_column.go │ │ │ │ ├── thumbnail_set.go │ │ │ │ ├── thumbnail_set_collection_response.go │ │ │ │ ├── ticket_info.go │ │ │ │ ├── time_constraint.go │ │ │ │ ├── time_off.go │ │ │ │ ├── time_off_collection_response.go │ │ │ │ ├── time_off_item.go │ │ │ │ ├── time_off_reason.go │ │ │ │ ├── time_off_reason_collection_response.go │ │ │ │ ├── time_off_reason_icon_type.go │ │ │ │ ├── time_off_request.go │ │ │ │ ├── time_off_request_collection_response.go │ │ │ │ ├── time_range.go │ │ │ │ ├── time_range_collection_response.go │ │ │ │ ├── time_slot.go │ │ │ │ ├── time_slot_collection_response.go │ │ │ │ ├── time_zone_base.go │ │ │ │ ├── time_zone_information.go │ │ │ │ ├── todo.go │ │ │ │ ├── todo_task.go │ │ │ │ ├── todo_task_collection_response.go │ │ │ │ ├── todo_task_list.go │ │ │ │ ├── todo_task_list_collection_response.go │ │ │ │ ├── token_issuance_policy.go │ │ │ │ ├── token_issuance_policy_collection_response.go │ │ │ │ ├── token_issuer_type.go │ │ │ │ ├── token_lifetime_policy.go │ │ │ │ ├── token_lifetime_policy_collection_response.go │ │ │ │ ├── token_meeting_info.go │ │ │ │ ├── tone.go │ │ │ │ ├── tone_info.go │ │ │ │ ├── training_events_content.go │ │ │ │ ├── training_status.go │ │ │ │ ├── trending.go │ │ │ │ ├── trending_collection_response.go │ │ │ │ ├── unified_approval_stage.go │ │ │ │ ├── unified_approval_stage_collection_response.go │ │ │ │ ├── unified_role.go │ │ │ │ ├── unified_role_assignment.go │ │ │ │ ├── unified_role_assignment_collection_response.go │ │ │ │ ├── unified_role_assignment_schedule.go │ │ │ │ ├── unified_role_assignment_schedule_collection_response.go │ │ │ │ ├── unified_role_assignment_schedule_instance.go │ │ │ │ ├── unified_role_assignment_schedule_instance_collection_response.go │ │ │ │ ├── unified_role_assignment_schedule_request.go │ │ │ │ ├── unified_role_assignment_schedule_request_collection_response.go │ │ │ │ ├── unified_role_collection_response.go │ │ │ │ ├── unified_role_definition.go │ │ │ │ ├── unified_role_definition_collection_response.go │ │ │ │ ├── unified_role_eligibility_schedule.go │ │ │ │ ├── unified_role_eligibility_schedule_collection_response.go │ │ │ │ ├── unified_role_eligibility_schedule_instance.go │ │ │ │ ├── unified_role_eligibility_schedule_instance_collection_response.go │ │ │ │ ├── unified_role_eligibility_schedule_request.go │ │ │ │ ├── unified_role_eligibility_schedule_request_collection_response.go │ │ │ │ ├── unified_role_management_policy.go │ │ │ │ ├── unified_role_management_policy_approval_rule.go │ │ │ │ ├── unified_role_management_policy_approval_rule_collection_response.go │ │ │ │ ├── unified_role_management_policy_assignment.go │ │ │ │ ├── unified_role_management_policy_assignment_collection_response.go │ │ │ │ ├── unified_role_management_policy_authentication_context_rule.go │ │ │ │ ├── unified_role_management_policy_authentication_context_rule_collection_response.go │ │ │ │ ├── unified_role_management_policy_collection_response.go │ │ │ │ ├── unified_role_management_policy_enablement_rule.go │ │ │ │ ├── unified_role_management_policy_enablement_rule_collection_response.go │ │ │ │ ├── unified_role_management_policy_expiration_rule.go │ │ │ │ ├── unified_role_management_policy_expiration_rule_collection_response.go │ │ │ │ ├── unified_role_management_policy_notification_rule.go │ │ │ │ ├── unified_role_management_policy_notification_rule_collection_response.go │ │ │ │ ├── unified_role_management_policy_rule.go │ │ │ │ ├── unified_role_management_policy_rule_collection_response.go │ │ │ │ ├── unified_role_management_policy_rule_target.go │ │ │ │ ├── unified_role_management_policy_rule_target_operations.go │ │ │ │ ├── unified_role_permission.go │ │ │ │ ├── unified_role_permission_collection_response.go │ │ │ │ ├── unified_role_schedule_base.go │ │ │ │ ├── unified_role_schedule_instance_base.go │ │ │ │ ├── unified_role_schedule_request_actions.go │ │ │ │ ├── unmute_participant_operation.go │ │ │ │ ├── unmute_participant_operation_collection_response.go │ │ │ │ ├── update_recording_status_operation.go │ │ │ │ ├── update_recording_status_operation_collection_response.go │ │ │ │ ├── update_windows_device_account_action_parameter.go │ │ │ │ ├── upload_session.go │ │ │ │ ├── uri_click_security_state.go │ │ │ │ ├── uri_click_security_state_collection_response.go │ │ │ │ ├── url_assessment_request.go │ │ │ │ ├── url_assessment_request_collection_response.go │ │ │ │ ├── usage_details.go │ │ │ │ ├── used_insight.go │ │ │ │ ├── used_insight_collection_response.go │ │ │ │ ├── user.go │ │ │ │ ├── user_account_security_type.go │ │ │ │ ├── user_activity.go │ │ │ │ ├── user_activity_collection_response.go │ │ │ │ ├── user_attribute_values_item.go │ │ │ │ ├── user_attribute_values_item_collection_response.go │ │ │ │ ├── user_collection_response.go │ │ │ │ ├── user_consent_request.go │ │ │ │ ├── user_consent_request_collection_response.go │ │ │ │ ├── user_experience_analytics_device_performance.go │ │ │ │ ├── user_experience_analytics_health_state.go │ │ │ │ ├── user_flow_api_connector_configuration.go │ │ │ │ ├── user_flow_language_configuration.go │ │ │ │ ├── user_flow_language_configuration_collection_response.go │ │ │ │ ├── user_flow_language_page.go │ │ │ │ ├── user_flow_language_page_collection_response.go │ │ │ │ ├── user_flow_type.go │ │ │ │ ├── user_identity.go │ │ │ │ ├── user_install_state_summary.go │ │ │ │ ├── user_install_state_summary_collection_response.go │ │ │ │ ├── user_purpose.go │ │ │ │ ├── user_scope_teams_app_installation.go │ │ │ │ ├── user_scope_teams_app_installation_collection_response.go │ │ │ │ ├── user_security_state.go │ │ │ │ ├── user_security_state_collection_response.go │ │ │ │ ├── user_settings.go │ │ │ │ ├── user_simulation_details.go │ │ │ │ ├── user_simulation_details_collection_response.go │ │ │ │ ├── user_simulation_event_info.go │ │ │ │ ├── user_simulation_event_info_collection_response.go │ │ │ │ ├── user_teamwork.go │ │ │ │ ├── user_training_content_event_info.go │ │ │ │ ├── user_training_event_info.go │ │ │ │ ├── user_training_event_info_collection_response.go │ │ │ │ ├── user_training_status_info.go │ │ │ │ ├── user_training_status_info_collection_response.go │ │ │ │ ├── verified_domain.go │ │ │ │ ├── verified_domain_collection_response.go │ │ │ │ ├── verified_publisher.go │ │ │ │ ├── video.go │ │ │ │ ├── visibility_setting.go │ │ │ │ ├── visual_info.go │ │ │ │ ├── volume_type.go │ │ │ │ ├── vpp_licensing_type.go │ │ │ │ ├── vpp_token.go │ │ │ │ ├── vpp_token_account_type.go │ │ │ │ ├── vpp_token_collection_response.go │ │ │ │ ├── vpp_token_state.go │ │ │ │ ├── vpp_token_sync_status.go │ │ │ │ ├── vulnerability_state.go │ │ │ │ ├── vulnerability_state_collection_response.go │ │ │ │ ├── weak_algorithms.go │ │ │ │ ├── web_app.go │ │ │ │ ├── web_app_collection_response.go │ │ │ │ ├── web_application.go │ │ │ │ ├── web_browser_cookie_settings.go │ │ │ │ ├── website.go │ │ │ │ ├── website_collection_response.go │ │ │ │ ├── website_type.go │ │ │ │ ├── week_index.go │ │ │ │ ├── weekly_schedule.go │ │ │ │ ├── welcome_screen_meeting_information.go │ │ │ │ ├── wellknown_list_name.go │ │ │ │ ├── win32_lob_app.go │ │ │ │ ├── win32_lob_app_assignment_settings.go │ │ │ │ ├── win32_lob_app_collection_response.go │ │ │ │ ├── win32_lob_app_delivery_optimization_priority.go │ │ │ │ ├── win32_lob_app_file_system_operation_type.go │ │ │ │ ├── win32_lob_app_file_system_rule.go │ │ │ │ ├── win32_lob_app_install_experience.go │ │ │ │ ├── win32_lob_app_msi_information.go │ │ │ │ ├── win32_lob_app_msi_package_type.go │ │ │ │ ├── win32_lob_app_notification.go │ │ │ │ ├── win32_lob_app_power_shell_script_rule.go │ │ │ │ ├── win32_lob_app_power_shell_script_rule_operation_type.go │ │ │ │ ├── win32_lob_app_product_code_rule.go │ │ │ │ ├── win32_lob_app_registry_rule.go │ │ │ │ ├── win32_lob_app_registry_rule_operation_type.go │ │ │ │ ├── win32_lob_app_restart_behavior.go │ │ │ │ ├── win32_lob_app_restart_settings.go │ │ │ │ ├── win32_lob_app_return_code.go │ │ │ │ ├── win32_lob_app_return_code_collection_response.go │ │ │ │ ├── win32_lob_app_return_code_type.go │ │ │ │ ├── win32_lob_app_rule.go │ │ │ │ ├── win32_lob_app_rule_collection_response.go │ │ │ │ ├── win32_lob_app_rule_operator.go │ │ │ │ ├── win32_lob_app_rule_type.go │ │ │ │ ├── windows10_compliance_policy.go │ │ │ │ ├── windows10_compliance_policy_collection_response.go │ │ │ │ ├── windows10_custom_configuration.go │ │ │ │ ├── windows10_custom_configuration_collection_response.go │ │ │ │ ├── windows10_edition_type.go │ │ │ │ ├── windows10_endpoint_protection_configuration.go │ │ │ │ ├── windows10_endpoint_protection_configuration_collection_response.go │ │ │ │ ├── windows10_enterprise_modern_app_management_configuration.go │ │ │ │ ├── windows10_enterprise_modern_app_management_configuration_collection_response.go │ │ │ │ ├── windows10_general_configuration.go │ │ │ │ ├── windows10_general_configuration_collection_response.go │ │ │ │ ├── windows10_mobile_compliance_policy.go │ │ │ │ ├── windows10_mobile_compliance_policy_collection_response.go │ │ │ │ ├── windows10_network_proxy_server.go │ │ │ │ ├── windows10_secure_assessment_configuration.go │ │ │ │ ├── windows10_secure_assessment_configuration_collection_response.go │ │ │ │ ├── windows10_team_general_configuration.go │ │ │ │ ├── windows10_team_general_configuration_collection_response.go │ │ │ │ ├── windows81_compliance_policy.go │ │ │ │ ├── windows81_compliance_policy_collection_response.go │ │ │ │ ├── windows81_general_configuration.go │ │ │ │ ├── windows81_general_configuration_collection_response.go │ │ │ │ ├── windows_app_x_app_assignment_settings.go │ │ │ │ ├── windows_architecture.go │ │ │ │ ├── windows_autopilot_device_identity.go │ │ │ │ ├── windows_autopilot_device_identity_collection_response.go │ │ │ │ ├── windows_defender_advanced_threat_protection_configuration.go │ │ │ │ ├── windows_defender_advanced_threat_protection_configuration_collection_response.go │ │ │ │ ├── windows_defender_scan_action_result.go │ │ │ │ ├── windows_delivery_optimization_mode.go │ │ │ │ ├── windows_device_a_d_account.go │ │ │ │ ├── windows_device_account.go │ │ │ │ ├── windows_device_azure_a_d_account.go │ │ │ │ ├── windows_device_type.go │ │ │ │ ├── windows_firewall_network_profile.go │ │ │ │ ├── windows_hello_for_business_authentication_method.go │ │ │ │ ├── windows_hello_for_business_authentication_method_collection_response.go │ │ │ │ ├── windows_hello_for_business_pin_usage.go │ │ │ │ ├── windows_information_protection.go │ │ │ │ ├── windows_information_protection_app.go │ │ │ │ ├── windows_information_protection_app_collection_response.go │ │ │ │ ├── windows_information_protection_app_learning_summary.go │ │ │ │ ├── windows_information_protection_app_learning_summary_collection_response.go │ │ │ │ ├── windows_information_protection_app_locker_file.go │ │ │ │ ├── windows_information_protection_app_locker_file_collection_response.go │ │ │ │ ├── windows_information_protection_collection_response.go │ │ │ │ ├── windows_information_protection_data_recovery_certificate.go │ │ │ │ ├── windows_information_protection_desktop_app.go │ │ │ │ ├── windows_information_protection_enforcement_level.go │ │ │ │ ├── windows_information_protection_i_p_range_collection.go │ │ │ │ ├── windows_information_protection_i_p_range_collection_collection_response.go │ │ │ │ ├── windows_information_protection_network_learning_summary.go │ │ │ │ ├── windows_information_protection_network_learning_summary_collection_response.go │ │ │ │ ├── windows_information_protection_pin_character_requirements.go │ │ │ │ ├── windows_information_protection_policy.go │ │ │ │ ├── windows_information_protection_policy_collection_response.go │ │ │ │ ├── windows_information_protection_proxied_domain_collection.go │ │ │ │ ├── windows_information_protection_proxied_domain_collection_collection_response.go │ │ │ │ ├── windows_information_protection_resource_collection.go │ │ │ │ ├── windows_information_protection_resource_collection_collection_response.go │ │ │ │ ├── windows_information_protection_store_app.go │ │ │ │ ├── windows_microsoft_edge_app.go │ │ │ │ ├── windows_microsoft_edge_app_collection_response.go │ │ │ │ ├── windows_minimum_operating_system.go │ │ │ │ ├── windows_mobile_m_s_i.go │ │ │ │ ├── windows_mobile_m_s_i_collection_response.go │ │ │ │ ├── windows_phone81_compliance_policy.go │ │ │ │ ├── windows_phone81_compliance_policy_collection_response.go │ │ │ │ ├── windows_phone81_custom_configuration.go │ │ │ │ ├── windows_phone81_custom_configuration_collection_response.go │ │ │ │ ├── windows_phone81_general_configuration.go │ │ │ │ ├── windows_phone81_general_configuration_collection_response.go │ │ │ │ ├── windows_spotlight_enablement_settings.go │ │ │ │ ├── windows_start_menu_app_list_visibility_type.go │ │ │ │ ├── windows_start_menu_mode_type.go │ │ │ │ ├── windows_universal_app_x.go │ │ │ │ ├── windows_universal_app_x_app_assignment_settings.go │ │ │ │ ├── windows_universal_app_x_collection_response.go │ │ │ │ ├── windows_universal_app_x_contained_app.go │ │ │ │ ├── windows_universal_app_x_contained_app_collection_response.go │ │ │ │ ├── windows_update_active_hours_install.go │ │ │ │ ├── windows_update_for_business_configuration.go │ │ │ │ ├── windows_update_for_business_configuration_collection_response.go │ │ │ │ ├── windows_update_for_business_update_weeks.go │ │ │ │ ├── windows_update_install_schedule_type.go │ │ │ │ ├── windows_update_notification_display_option.go │ │ │ │ ├── windows_update_scheduled_install.go │ │ │ │ ├── windows_update_type.go │ │ │ │ ├── windows_user_account_control_settings.go │ │ │ │ ├── windows_web_app.go │ │ │ │ ├── windows_web_app_collection_response.go │ │ │ │ ├── workbook.go │ │ │ │ ├── workbook_application.go │ │ │ │ ├── workbook_chart.go │ │ │ │ ├── workbook_chart_area_format.go │ │ │ │ ├── workbook_chart_axes.go │ │ │ │ ├── workbook_chart_axis.go │ │ │ │ ├── workbook_chart_axis_format.go │ │ │ │ ├── workbook_chart_axis_title.go │ │ │ │ ├── workbook_chart_axis_title_format.go │ │ │ │ ├── workbook_chart_collection_response.go │ │ │ │ ├── workbook_chart_data_label_format.go │ │ │ │ ├── workbook_chart_data_labels.go │ │ │ │ ├── workbook_chart_fill.go │ │ │ │ ├── workbook_chart_font.go │ │ │ │ ├── workbook_chart_gridlines.go │ │ │ │ ├── workbook_chart_gridlines_format.go │ │ │ │ ├── workbook_chart_legend.go │ │ │ │ ├── workbook_chart_legend_format.go │ │ │ │ ├── workbook_chart_line_format.go │ │ │ │ ├── workbook_chart_point.go │ │ │ │ ├── workbook_chart_point_collection_response.go │ │ │ │ ├── workbook_chart_point_format.go │ │ │ │ ├── workbook_chart_series.go │ │ │ │ ├── workbook_chart_series_collection_response.go │ │ │ │ ├── workbook_chart_series_format.go │ │ │ │ ├── workbook_chart_title.go │ │ │ │ ├── workbook_chart_title_format.go │ │ │ │ ├── workbook_comment.go │ │ │ │ ├── workbook_comment_collection_response.go │ │ │ │ ├── workbook_comment_reply.go │ │ │ │ ├── workbook_comment_reply_collection_response.go │ │ │ │ ├── workbook_filter.go │ │ │ │ ├── workbook_filter_criteria.go │ │ │ │ ├── workbook_format_protection.go │ │ │ │ ├── workbook_function_result.go │ │ │ │ ├── workbook_functions.go │ │ │ │ ├── workbook_icon.go │ │ │ │ ├── workbook_named_item.go │ │ │ │ ├── workbook_named_item_collection_response.go │ │ │ │ ├── workbook_operation.go │ │ │ │ ├── workbook_operation_collection_response.go │ │ │ │ ├── workbook_operation_error.go │ │ │ │ ├── workbook_operation_status.go │ │ │ │ ├── workbook_pivot_table.go │ │ │ │ ├── workbook_pivot_table_collection_response.go │ │ │ │ ├── workbook_range.go │ │ │ │ ├── workbook_range_border.go │ │ │ │ ├── workbook_range_border_collection_response.go │ │ │ │ ├── workbook_range_fill.go │ │ │ │ ├── workbook_range_font.go │ │ │ │ ├── workbook_range_format.go │ │ │ │ ├── workbook_range_sort.go │ │ │ │ ├── workbook_range_view.go │ │ │ │ ├── workbook_range_view_collection_response.go │ │ │ │ ├── workbook_session_info.go │ │ │ │ ├── workbook_sort_field.go │ │ │ │ ├── workbook_sort_field_collection_response.go │ │ │ │ ├── workbook_table.go │ │ │ │ ├── workbook_table_collection_response.go │ │ │ │ ├── workbook_table_column.go │ │ │ │ ├── workbook_table_column_collection_response.go │ │ │ │ ├── workbook_table_row.go │ │ │ │ ├── workbook_table_row_collection_response.go │ │ │ │ ├── workbook_table_sort.go │ │ │ │ ├── workbook_worksheet.go │ │ │ │ ├── workbook_worksheet_collection_response.go │ │ │ │ ├── workbook_worksheet_protection.go │ │ │ │ ├── workbook_worksheet_protection_options.go │ │ │ │ ├── workforce_integration.go │ │ │ │ ├── workforce_integration_collection_response.go │ │ │ │ ├── workforce_integration_encryption.go │ │ │ │ ├── workforce_integration_encryption_protocol.go │ │ │ │ ├── workforce_integration_supported_entities.go │ │ │ │ ├── working_hours.go │ │ │ │ ├── x509_certificate_authentication_method_configuration.go │ │ │ │ ├── x509_certificate_authentication_method_configuration_collection_response.go │ │ │ │ ├── x509_certificate_authentication_mode.go │ │ │ │ ├── x509_certificate_authentication_mode_configuration.go │ │ │ │ ├── x509_certificate_rule.go │ │ │ │ ├── x509_certificate_rule_collection_response.go │ │ │ │ ├── x509_certificate_rule_type.go │ │ │ │ ├── x509_certificate_user_binding.go │ │ │ │ └── x509_certificate_user_binding_collection_response.go │ │ │ ├── oauth2permissiongrants/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── o_auth2_permission_grant_item_request_builder.go │ │ │ │ └── oauth2_permission_grants_request_builder.go │ │ │ ├── organization/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── item_branding_background_image_request_builder.go │ │ │ │ ├── item_branding_banner_logo_request_builder.go │ │ │ │ ├── item_branding_localizations_count_request_builder.go │ │ │ │ ├── item_branding_localizations_item_background_image_request_builder.go │ │ │ │ ├── item_branding_localizations_item_banner_logo_request_builder.go │ │ │ │ ├── item_branding_localizations_item_square_logo_request_builder.go │ │ │ │ ├── item_branding_localizations_organizational_branding_localization_item_request_builder.go │ │ │ │ ├── item_branding_localizations_request_builder.go │ │ │ │ ├── item_branding_request_builder.go │ │ │ │ ├── item_branding_square_logo_request_builder.go │ │ │ │ ├── item_certificate_based_auth_configuration_certificate_based_auth_configuration_item_request_builder.go │ │ │ │ ├── item_certificate_based_auth_configuration_count_request_builder.go │ │ │ │ ├── item_certificate_based_auth_configuration_request_builder.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_extensions_count_request_builder.go │ │ │ │ ├── item_extensions_extension_item_request_builder.go │ │ │ │ ├── item_extensions_request_builder.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── item_set_mobile_device_management_authority_request_builder.go │ │ │ │ ├── item_set_mobile_device_management_authority_response.go │ │ │ │ ├── organization_item_request_builder.go │ │ │ │ ├── organization_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── permissiongrants/ │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── permission_grants_request_builder.go │ │ │ │ ├── resource_specific_permission_grant_item_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── places/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── graph_room_count_request_builder.go │ │ │ │ ├── graph_room_request_builder.go │ │ │ │ ├── item_graph_room_request_builder.go │ │ │ │ ├── place_item_request_builder.go │ │ │ │ └── places_request_builder.go │ │ │ ├── planner/ │ │ │ │ ├── buckets_count_request_builder.go │ │ │ │ ├── buckets_item_tasks_count_request_builder.go │ │ │ │ ├── buckets_item_tasks_item_assigned_to_task_board_format_request_builder.go │ │ │ │ ├── buckets_item_tasks_item_bucket_task_board_format_request_builder.go │ │ │ │ ├── buckets_item_tasks_item_details_request_builder.go │ │ │ │ ├── buckets_item_tasks_item_progress_task_board_format_request_builder.go │ │ │ │ ├── buckets_item_tasks_planner_task_item_request_builder.go │ │ │ │ ├── buckets_item_tasks_request_builder.go │ │ │ │ ├── buckets_planner_bucket_item_request_builder.go │ │ │ │ ├── buckets_request_builder.go │ │ │ │ ├── planner_request_builder.go │ │ │ │ ├── plans_count_request_builder.go │ │ │ │ ├── plans_item_buckets_count_request_builder.go │ │ │ │ ├── plans_item_buckets_item_tasks_count_request_builder.go │ │ │ │ ├── plans_item_buckets_item_tasks_item_assigned_to_task_board_format_request_builder.go │ │ │ │ ├── plans_item_buckets_item_tasks_item_bucket_task_board_format_request_builder.go │ │ │ │ ├── plans_item_buckets_item_tasks_item_details_request_builder.go │ │ │ │ ├── plans_item_buckets_item_tasks_item_progress_task_board_format_request_builder.go │ │ │ │ ├── plans_item_buckets_item_tasks_planner_task_item_request_builder.go │ │ │ │ ├── plans_item_buckets_item_tasks_request_builder.go │ │ │ │ ├── plans_item_buckets_planner_bucket_item_request_builder.go │ │ │ │ ├── plans_item_buckets_request_builder.go │ │ │ │ ├── plans_item_details_request_builder.go │ │ │ │ ├── plans_item_tasks_count_request_builder.go │ │ │ │ ├── plans_item_tasks_item_assigned_to_task_board_format_request_builder.go │ │ │ │ ├── plans_item_tasks_item_bucket_task_board_format_request_builder.go │ │ │ │ ├── plans_item_tasks_item_details_request_builder.go │ │ │ │ ├── plans_item_tasks_item_progress_task_board_format_request_builder.go │ │ │ │ ├── plans_item_tasks_planner_task_item_request_builder.go │ │ │ │ ├── plans_item_tasks_request_builder.go │ │ │ │ ├── plans_planner_plan_item_request_builder.go │ │ │ │ ├── plans_request_builder.go │ │ │ │ ├── tasks_count_request_builder.go │ │ │ │ ├── tasks_item_assigned_to_task_board_format_request_builder.go │ │ │ │ ├── tasks_item_bucket_task_board_format_request_builder.go │ │ │ │ ├── tasks_item_details_request_builder.go │ │ │ │ ├── tasks_item_progress_task_board_format_request_builder.go │ │ │ │ ├── tasks_planner_task_item_request_builder.go │ │ │ │ └── tasks_request_builder.go │ │ │ ├── policies/ │ │ │ │ ├── activity_based_timeout_policies_activity_based_timeout_policy_item_request_builder.go │ │ │ │ ├── activity_based_timeout_policies_count_request_builder.go │ │ │ │ ├── activity_based_timeout_policies_request_builder.go │ │ │ │ ├── admin_consent_request_policy_request_builder.go │ │ │ │ ├── app_management_policies_app_management_policy_item_request_builder.go │ │ │ │ ├── app_management_policies_count_request_builder.go │ │ │ │ ├── app_management_policies_item_applies_to_count_request_builder.go │ │ │ │ ├── app_management_policies_item_applies_to_directory_object_item_request_builder.go │ │ │ │ ├── app_management_policies_item_applies_to_request_builder.go │ │ │ │ ├── app_management_policies_request_builder.go │ │ │ │ ├── authentication_flows_policy_request_builder.go │ │ │ │ ├── authentication_methods_policy_authentication_method_configurations_authentication_method_configuration_item_request_builder.go │ │ │ │ ├── authentication_methods_policy_authentication_method_configurations_count_request_builder.go │ │ │ │ ├── authentication_methods_policy_authentication_method_configurations_request_builder.go │ │ │ │ ├── authentication_methods_policy_request_builder.go │ │ │ │ ├── authorization_policy_request_builder.go │ │ │ │ ├── claims_mapping_policies_claims_mapping_policy_item_request_builder.go │ │ │ │ ├── claims_mapping_policies_count_request_builder.go │ │ │ │ ├── claims_mapping_policies_request_builder.go │ │ │ │ ├── conditional_access_policies_conditional_access_policy_item_request_builder.go │ │ │ │ ├── conditional_access_policies_count_request_builder.go │ │ │ │ ├── conditional_access_policies_request_builder.go │ │ │ │ ├── cross_tenant_access_policy_default_request_builder.go │ │ │ │ ├── cross_tenant_access_policy_default_reset_to_system_default_request_builder.go │ │ │ │ ├── cross_tenant_access_policy_partners_count_request_builder.go │ │ │ │ ├── cross_tenant_access_policy_partners_cross_tenant_access_policy_configuration_partner_tenant_item_request_builder.go │ │ │ │ ├── cross_tenant_access_policy_partners_request_builder.go │ │ │ │ ├── cross_tenant_access_policy_request_builder.go │ │ │ │ ├── default_app_management_policy_request_builder.go │ │ │ │ ├── feature_rollout_policies_count_request_builder.go │ │ │ │ ├── feature_rollout_policies_feature_rollout_policy_item_request_builder.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_count_request_builder.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_delta_request_builder.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_delta_response.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_directory_object_item_request_builder.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_get_available_extension_properties_post_request_body.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_get_available_extension_properties_request_builder.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_get_available_extension_properties_response.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_get_by_ids_post_request_body.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_get_by_ids_request_builder.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_get_by_ids_response.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_item_ref_request_builder.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_ref_request_builder.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_request_builder.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_validate_properties_post_request_body.go │ │ │ │ ├── feature_rollout_policies_item_applies_to_validate_properties_request_builder.go │ │ │ │ ├── feature_rollout_policies_request_builder.go │ │ │ │ ├── home_realm_discovery_policies_count_request_builder.go │ │ │ │ ├── home_realm_discovery_policies_home_realm_discovery_policy_item_request_builder.go │ │ │ │ ├── home_realm_discovery_policies_request_builder.go │ │ │ │ ├── identity_security_defaults_enforcement_policy_request_builder.go │ │ │ │ ├── permission_grant_policies_count_request_builder.go │ │ │ │ ├── permission_grant_policies_item_excludes_count_request_builder.go │ │ │ │ ├── permission_grant_policies_item_excludes_permission_grant_condition_set_item_request_builder.go │ │ │ │ ├── permission_grant_policies_item_excludes_request_builder.go │ │ │ │ ├── permission_grant_policies_item_includes_count_request_builder.go │ │ │ │ ├── permission_grant_policies_item_includes_permission_grant_condition_set_item_request_builder.go │ │ │ │ ├── permission_grant_policies_item_includes_request_builder.go │ │ │ │ ├── permission_grant_policies_permission_grant_policy_item_request_builder.go │ │ │ │ ├── permission_grant_policies_request_builder.go │ │ │ │ ├── policies_request_builder.go │ │ │ │ ├── role_management_policies_count_request_builder.go │ │ │ │ ├── role_management_policies_item_effective_rules_count_request_builder.go │ │ │ │ ├── role_management_policies_item_effective_rules_request_builder.go │ │ │ │ ├── role_management_policies_item_effective_rules_unified_role_management_policy_rule_item_request_builder.go │ │ │ │ ├── role_management_policies_item_rules_count_request_builder.go │ │ │ │ ├── role_management_policies_item_rules_request_builder.go │ │ │ │ ├── role_management_policies_item_rules_unified_role_management_policy_rule_item_request_builder.go │ │ │ │ ├── role_management_policies_request_builder.go │ │ │ │ ├── role_management_policies_unified_role_management_policy_item_request_builder.go │ │ │ │ ├── role_management_policy_assignments_count_request_builder.go │ │ │ │ ├── role_management_policy_assignments_item_policy_request_builder.go │ │ │ │ ├── role_management_policy_assignments_request_builder.go │ │ │ │ ├── role_management_policy_assignments_unified_role_management_policy_assignment_item_request_builder.go │ │ │ │ ├── token_issuance_policies_count_request_builder.go │ │ │ │ ├── token_issuance_policies_request_builder.go │ │ │ │ ├── token_issuance_policies_token_issuance_policy_item_request_builder.go │ │ │ │ ├── token_lifetime_policies_count_request_builder.go │ │ │ │ ├── token_lifetime_policies_request_builder.go │ │ │ │ └── token_lifetime_policies_token_lifetime_policy_item_request_builder.go │ │ │ ├── print/ │ │ │ │ ├── connectors_count_request_builder.go │ │ │ │ ├── connectors_print_connector_item_request_builder.go │ │ │ │ ├── connectors_request_builder.go │ │ │ │ ├── operations_count_request_builder.go │ │ │ │ ├── operations_print_operation_item_request_builder.go │ │ │ │ ├── operations_request_builder.go │ │ │ │ ├── print_request_builder.go │ │ │ │ ├── printers_count_request_builder.go │ │ │ │ ├── printers_create_post_request_body.go │ │ │ │ ├── printers_create_request_builder.go │ │ │ │ ├── printers_item_connectors_count_request_builder.go │ │ │ │ ├── printers_item_connectors_print_connector_item_request_builder.go │ │ │ │ ├── printers_item_connectors_request_builder.go │ │ │ │ ├── printers_item_restore_factory_defaults_request_builder.go │ │ │ │ ├── printers_item_shares_count_request_builder.go │ │ │ │ ├── printers_item_shares_printer_share_item_request_builder.go │ │ │ │ ├── printers_item_shares_request_builder.go │ │ │ │ ├── printers_item_task_triggers_count_request_builder.go │ │ │ │ ├── printers_item_task_triggers_item_definition_request_builder.go │ │ │ │ ├── printers_item_task_triggers_print_task_trigger_item_request_builder.go │ │ │ │ ├── printers_item_task_triggers_request_builder.go │ │ │ │ ├── printers_printer_item_request_builder.go │ │ │ │ ├── printers_request_builder.go │ │ │ │ ├── services_count_request_builder.go │ │ │ │ ├── services_item_endpoints_count_request_builder.go │ │ │ │ ├── services_item_endpoints_print_service_endpoint_item_request_builder.go │ │ │ │ ├── services_item_endpoints_request_builder.go │ │ │ │ ├── services_print_service_item_request_builder.go │ │ │ │ ├── services_request_builder.go │ │ │ │ ├── shares_count_request_builder.go │ │ │ │ ├── shares_item_allowed_groups_count_request_builder.go │ │ │ │ ├── shares_item_allowed_groups_group_item_request_builder.go │ │ │ │ ├── shares_item_allowed_groups_item_ref_request_builder.go │ │ │ │ ├── shares_item_allowed_groups_ref_request_builder.go │ │ │ │ ├── shares_item_allowed_groups_request_builder.go │ │ │ │ ├── shares_item_allowed_users_count_request_builder.go │ │ │ │ ├── shares_item_allowed_users_item_ref_request_builder.go │ │ │ │ ├── shares_item_allowed_users_ref_request_builder.go │ │ │ │ ├── shares_item_allowed_users_request_builder.go │ │ │ │ ├── shares_item_allowed_users_user_item_request_builder.go │ │ │ │ ├── shares_item_printer_request_builder.go │ │ │ │ ├── shares_printer_share_item_request_builder.go │ │ │ │ ├── shares_request_builder.go │ │ │ │ ├── task_definitions_count_request_builder.go │ │ │ │ ├── task_definitions_item_tasks_count_request_builder.go │ │ │ │ ├── task_definitions_item_tasks_item_definition_request_builder.go │ │ │ │ ├── task_definitions_item_tasks_item_trigger_request_builder.go │ │ │ │ ├── task_definitions_item_tasks_print_task_item_request_builder.go │ │ │ │ ├── task_definitions_item_tasks_request_builder.go │ │ │ │ ├── task_definitions_print_task_definition_item_request_builder.go │ │ │ │ └── task_definitions_request_builder.go │ │ │ ├── privacy/ │ │ │ │ ├── privacy_request_builder.go │ │ │ │ ├── subject_rights_requests_count_request_builder.go │ │ │ │ ├── subject_rights_requests_item_get_final_attachment_request_builder.go │ │ │ │ ├── subject_rights_requests_item_get_final_report_request_builder.go │ │ │ │ ├── subject_rights_requests_item_notes_authored_note_item_request_builder.go │ │ │ │ ├── subject_rights_requests_item_notes_count_request_builder.go │ │ │ │ ├── subject_rights_requests_item_notes_request_builder.go │ │ │ │ ├── subject_rights_requests_item_team_request_builder.go │ │ │ │ ├── subject_rights_requests_request_builder.go │ │ │ │ └── subject_rights_requests_subject_rights_request_item_request_builder.go │ │ │ ├── reports/ │ │ │ │ ├── daily_print_usage_by_printer_count_request_builder.go │ │ │ │ ├── daily_print_usage_by_printer_print_usage_by_printer_item_request_builder.go │ │ │ │ ├── daily_print_usage_by_printer_request_builder.go │ │ │ │ ├── daily_print_usage_by_user_count_request_builder.go │ │ │ │ ├── daily_print_usage_by_user_print_usage_by_user_item_request_builder.go │ │ │ │ ├── daily_print_usage_by_user_request_builder.go │ │ │ │ ├── device_configuration_device_activity_request_builder.go │ │ │ │ ├── device_configuration_user_activity_request_builder.go │ │ │ │ ├── get_email_activity_counts_with_period_request_builder.go │ │ │ │ ├── get_email_activity_user_counts_with_period_request_builder.go │ │ │ │ ├── get_email_activity_user_detail_with_date_request_builder.go │ │ │ │ ├── get_email_activity_user_detail_with_period_request_builder.go │ │ │ │ ├── get_email_app_usage_apps_user_counts_with_period_request_builder.go │ │ │ │ ├── get_email_app_usage_user_counts_with_period_request_builder.go │ │ │ │ ├── get_email_app_usage_user_detail_with_date_request_builder.go │ │ │ │ ├── get_email_app_usage_user_detail_with_period_request_builder.go │ │ │ │ ├── get_email_app_usage_versions_user_counts_with_period_request_builder.go │ │ │ │ ├── get_group_archived_print_jobs_with_group_id_with_start_date_time_with_end_date_time_request_builder.go │ │ │ │ ├── get_group_archived_print_jobs_with_group_id_with_start_date_time_with_end_date_time_response.go │ │ │ │ ├── get_m365_app_platform_user_counts_with_period_request_builder.go │ │ │ │ ├── get_m365_app_user_counts_with_period_request_builder.go │ │ │ │ ├── get_m365_app_user_detail_with_date_request_builder.go │ │ │ │ ├── get_m365_app_user_detail_with_period_request_builder.go │ │ │ │ ├── get_mailbox_usage_detail_with_period_request_builder.go │ │ │ │ ├── get_mailbox_usage_mailbox_counts_with_period_request_builder.go │ │ │ │ ├── get_mailbox_usage_quota_status_mailbox_counts_with_period_request_builder.go │ │ │ │ ├── get_mailbox_usage_storage_with_period_request_builder.go │ │ │ │ ├── get_office365_activation_counts_request_builder.go │ │ │ │ ├── get_office365_activations_user_counts_request_builder.go │ │ │ │ ├── get_office365_activations_user_detail_request_builder.go │ │ │ │ ├── get_office365_active_user_counts_with_period_request_builder.go │ │ │ │ ├── get_office365_active_user_detail_with_date_request_builder.go │ │ │ │ ├── get_office365_active_user_detail_with_period_request_builder.go │ │ │ │ ├── get_office365_groups_activity_counts_with_period_request_builder.go │ │ │ │ ├── get_office365_groups_activity_detail_with_date_request_builder.go │ │ │ │ ├── get_office365_groups_activity_detail_with_period_request_builder.go │ │ │ │ ├── get_office365_groups_activity_file_counts_with_period_request_builder.go │ │ │ │ ├── get_office365_groups_activity_group_counts_with_period_request_builder.go │ │ │ │ ├── get_office365_groups_activity_storage_with_period_request_builder.go │ │ │ │ ├── get_office365_services_user_counts_with_period_request_builder.go │ │ │ │ ├── get_one_drive_activity_file_counts_with_period_request_builder.go │ │ │ │ ├── get_one_drive_activity_user_counts_with_period_request_builder.go │ │ │ │ ├── get_one_drive_activity_user_detail_with_date_request_builder.go │ │ │ │ ├── get_one_drive_activity_user_detail_with_period_request_builder.go │ │ │ │ ├── get_one_drive_usage_account_counts_with_period_request_builder.go │ │ │ │ ├── get_one_drive_usage_account_detail_with_date_request_builder.go │ │ │ │ ├── get_one_drive_usage_account_detail_with_period_request_builder.go │ │ │ │ ├── get_one_drive_usage_file_counts_with_period_request_builder.go │ │ │ │ ├── get_one_drive_usage_storage_with_period_request_builder.go │ │ │ │ ├── get_printer_archived_print_jobs_with_printer_id_with_start_date_time_with_end_date_time_request_builder.go │ │ │ │ ├── get_printer_archived_print_jobs_with_printer_id_with_start_date_time_with_end_date_time_response.go │ │ │ │ ├── get_share_point_activity_file_counts_with_period_request_builder.go │ │ │ │ ├── get_share_point_activity_pages_with_period_request_builder.go │ │ │ │ ├── get_share_point_activity_user_counts_with_period_request_builder.go │ │ │ │ ├── get_share_point_activity_user_detail_with_date_request_builder.go │ │ │ │ ├── get_share_point_activity_user_detail_with_period_request_builder.go │ │ │ │ ├── get_share_point_site_usage_detail_with_date_request_builder.go │ │ │ │ ├── get_share_point_site_usage_detail_with_period_request_builder.go │ │ │ │ ├── get_share_point_site_usage_file_counts_with_period_request_builder.go │ │ │ │ ├── get_share_point_site_usage_pages_with_period_request_builder.go │ │ │ │ ├── get_share_point_site_usage_site_counts_with_period_request_builder.go │ │ │ │ ├── get_share_point_site_usage_storage_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_activity_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_activity_user_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_activity_user_detail_with_date_request_builder.go │ │ │ │ ├── get_skype_for_business_activity_user_detail_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_device_usage_distribution_user_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_device_usage_user_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_device_usage_user_detail_with_date_request_builder.go │ │ │ │ ├── get_skype_for_business_device_usage_user_detail_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_organizer_activity_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_organizer_activity_minute_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_organizer_activity_user_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_participant_activity_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_participant_activity_minute_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_participant_activity_user_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_peer_to_peer_activity_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_peer_to_peer_activity_minute_counts_with_period_request_builder.go │ │ │ │ ├── get_skype_for_business_peer_to_peer_activity_user_counts_with_period_request_builder.go │ │ │ │ ├── get_teams_device_usage_distribution_user_counts_with_period_request_builder.go │ │ │ │ ├── get_teams_device_usage_user_counts_with_period_request_builder.go │ │ │ │ ├── get_teams_device_usage_user_detail_with_date_request_builder.go │ │ │ │ ├── get_teams_device_usage_user_detail_with_period_request_builder.go │ │ │ │ ├── get_teams_user_activity_counts_with_period_request_builder.go │ │ │ │ ├── get_teams_user_activity_user_counts_with_period_request_builder.go │ │ │ │ ├── get_teams_user_activity_user_detail_with_date_request_builder.go │ │ │ │ ├── get_teams_user_activity_user_detail_with_period_request_builder.go │ │ │ │ ├── get_user_archived_print_jobs_with_user_id_with_start_date_time_with_end_date_time_request_builder.go │ │ │ │ ├── get_user_archived_print_jobs_with_user_id_with_start_date_time_with_end_date_time_response.go │ │ │ │ ├── get_yammer_activity_counts_with_period_request_builder.go │ │ │ │ ├── get_yammer_activity_user_counts_with_period_request_builder.go │ │ │ │ ├── get_yammer_activity_user_detail_with_date_request_builder.go │ │ │ │ ├── get_yammer_activity_user_detail_with_period_request_builder.go │ │ │ │ ├── get_yammer_device_usage_distribution_user_counts_with_period_request_builder.go │ │ │ │ ├── get_yammer_device_usage_user_counts_with_period_request_builder.go │ │ │ │ ├── get_yammer_device_usage_user_detail_with_date_request_builder.go │ │ │ │ ├── get_yammer_device_usage_user_detail_with_period_request_builder.go │ │ │ │ ├── get_yammer_groups_activity_counts_with_period_request_builder.go │ │ │ │ ├── get_yammer_groups_activity_detail_with_date_request_builder.go │ │ │ │ ├── get_yammer_groups_activity_detail_with_period_request_builder.go │ │ │ │ ├── get_yammer_groups_activity_group_counts_with_period_request_builder.go │ │ │ │ ├── managed_device_enrollment_failure_details_request_builder.go │ │ │ │ ├── managed_device_enrollment_failure_details_with_skip_with_top_with_filter_with_skip_token_request_builder.go │ │ │ │ ├── managed_device_enrollment_top_failures_request_builder.go │ │ │ │ ├── managed_device_enrollment_top_failures_with_period_request_builder.go │ │ │ │ ├── monthly_print_usage_by_printer_count_request_builder.go │ │ │ │ ├── monthly_print_usage_by_printer_print_usage_by_printer_item_request_builder.go │ │ │ │ ├── monthly_print_usage_by_printer_request_builder.go │ │ │ │ ├── monthly_print_usage_by_user_count_request_builder.go │ │ │ │ ├── monthly_print_usage_by_user_print_usage_by_user_item_request_builder.go │ │ │ │ ├── monthly_print_usage_by_user_request_builder.go │ │ │ │ ├── reports_request_builder.go │ │ │ │ ├── security_get_attack_simulation_repeat_offenders_request_builder.go │ │ │ │ ├── security_get_attack_simulation_repeat_offenders_response.go │ │ │ │ ├── security_get_attack_simulation_simulation_user_coverage_request_builder.go │ │ │ │ ├── security_get_attack_simulation_simulation_user_coverage_response.go │ │ │ │ ├── security_get_attack_simulation_training_user_coverage_request_builder.go │ │ │ │ ├── security_get_attack_simulation_training_user_coverage_response.go │ │ │ │ └── security_request_builder.go │ │ │ ├── rolemanagement/ │ │ │ │ ├── directory_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_instances_count_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_instances_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_instances_filter_by_current_user_with_on_response.go │ │ │ │ ├── directory_role_assignment_schedule_instances_item_activated_using_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_instances_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_instances_unified_role_assignment_schedule_instance_item_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_count_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_filter_by_current_user_with_on_response.go │ │ │ │ ├── directory_role_assignment_schedule_requests_item_activated_using_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_item_app_scope_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_item_cancel_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_item_directory_scope_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_item_principal_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_item_role_definition_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_item_target_schedule_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_request_builder.go │ │ │ │ ├── directory_role_assignment_schedule_requests_unified_role_assignment_schedule_request_item_request_builder.go │ │ │ │ ├── directory_role_assignment_schedules_count_request_builder.go │ │ │ │ ├── directory_role_assignment_schedules_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── directory_role_assignment_schedules_filter_by_current_user_with_on_response.go │ │ │ │ ├── directory_role_assignment_schedules_item_activated_using_request_builder.go │ │ │ │ ├── directory_role_assignment_schedules_request_builder.go │ │ │ │ ├── directory_role_assignment_schedules_unified_role_assignment_schedule_item_request_builder.go │ │ │ │ ├── directory_role_assignments_count_request_builder.go │ │ │ │ ├── directory_role_assignments_item_app_scope_request_builder.go │ │ │ │ ├── directory_role_assignments_item_directory_scope_request_builder.go │ │ │ │ ├── directory_role_assignments_item_principal_request_builder.go │ │ │ │ ├── directory_role_assignments_item_role_definition_request_builder.go │ │ │ │ ├── directory_role_assignments_request_builder.go │ │ │ │ ├── directory_role_assignments_unified_role_assignment_item_request_builder.go │ │ │ │ ├── directory_role_definitions_count_request_builder.go │ │ │ │ ├── directory_role_definitions_item_inherits_permissions_from_count_request_builder.go │ │ │ │ ├── directory_role_definitions_item_inherits_permissions_from_request_builder.go │ │ │ │ ├── directory_role_definitions_item_inherits_permissions_from_unified_role_definition_item_request_builder.go │ │ │ │ ├── directory_role_definitions_request_builder.go │ │ │ │ ├── directory_role_definitions_unified_role_definition_item_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_instances_count_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_instances_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_instances_filter_by_current_user_with_on_response.go │ │ │ │ ├── directory_role_eligibility_schedule_instances_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_instances_unified_role_eligibility_schedule_instance_item_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_count_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_filter_by_current_user_with_on_response.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_item_app_scope_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_item_cancel_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_item_directory_scope_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_item_principal_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_item_role_definition_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_item_target_schedule_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedule_requests_unified_role_eligibility_schedule_request_item_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedules_count_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedules_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedules_filter_by_current_user_with_on_response.go │ │ │ │ ├── directory_role_eligibility_schedules_request_builder.go │ │ │ │ ├── directory_role_eligibility_schedules_unified_role_eligibility_schedule_item_request_builder.go │ │ │ │ ├── entitlement_management_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_instances_count_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_instances_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_instances_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_instances_item_activated_using_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_instances_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_instances_unified_role_assignment_schedule_instance_item_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_count_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_item_activated_using_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_item_app_scope_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_item_cancel_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_item_directory_scope_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_item_principal_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_item_role_definition_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_item_target_schedule_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedule_requests_unified_role_assignment_schedule_request_item_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedules_count_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedules_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedules_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_role_assignment_schedules_item_activated_using_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedules_request_builder.go │ │ │ │ ├── entitlement_management_role_assignment_schedules_unified_role_assignment_schedule_item_request_builder.go │ │ │ │ ├── entitlement_management_role_assignments_count_request_builder.go │ │ │ │ ├── entitlement_management_role_assignments_item_app_scope_request_builder.go │ │ │ │ ├── entitlement_management_role_assignments_item_directory_scope_request_builder.go │ │ │ │ ├── entitlement_management_role_assignments_item_principal_request_builder.go │ │ │ │ ├── entitlement_management_role_assignments_item_role_definition_request_builder.go │ │ │ │ ├── entitlement_management_role_assignments_request_builder.go │ │ │ │ ├── entitlement_management_role_assignments_unified_role_assignment_item_request_builder.go │ │ │ │ ├── entitlement_management_role_definitions_count_request_builder.go │ │ │ │ ├── entitlement_management_role_definitions_item_inherits_permissions_from_count_request_builder.go │ │ │ │ ├── entitlement_management_role_definitions_item_inherits_permissions_from_request_builder.go │ │ │ │ ├── entitlement_management_role_definitions_item_inherits_permissions_from_unified_role_definition_item_request_builder.go │ │ │ │ ├── entitlement_management_role_definitions_request_builder.go │ │ │ │ ├── entitlement_management_role_definitions_unified_role_definition_item_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_instances_count_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_instances_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_instances_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_instances_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_instances_unified_role_eligibility_schedule_instance_item_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_count_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_item_app_scope_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_item_cancel_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_item_directory_scope_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_item_principal_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_item_role_definition_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_item_target_schedule_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedule_requests_unified_role_eligibility_schedule_request_item_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedules_count_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedules_filter_by_current_user_with_on_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedules_filter_by_current_user_with_on_response.go │ │ │ │ ├── entitlement_management_role_eligibility_schedules_request_builder.go │ │ │ │ ├── entitlement_management_role_eligibility_schedules_unified_role_eligibility_schedule_item_request_builder.go │ │ │ │ └── role_management_request_builder.go │ │ │ ├── schemaextensions/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── schema_extension_item_request_builder.go │ │ │ │ └── schema_extensions_request_builder.go │ │ │ ├── scopedrolememberships/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── scoped_role_membership_item_request_builder.go │ │ │ │ └── scoped_role_memberships_request_builder.go │ │ │ ├── search/ │ │ │ │ ├── query_post_request_body.go │ │ │ │ ├── query_request_builder.go │ │ │ │ ├── query_response.go │ │ │ │ └── search_request_builder.go │ │ │ ├── security/ │ │ │ │ ├── alerts_alert_item_request_builder.go │ │ │ │ ├── alerts_count_request_builder.go │ │ │ │ ├── alerts_request_builder.go │ │ │ │ ├── alerts_v2_alert_item_request_builder.go │ │ │ │ ├── alerts_v2_count_request_builder.go │ │ │ │ ├── alerts_v2_request_builder.go │ │ │ │ ├── attack_simulation_request_builder.go │ │ │ │ ├── attack_simulation_simulation_automations_count_request_builder.go │ │ │ │ ├── attack_simulation_simulation_automations_item_runs_count_request_builder.go │ │ │ │ ├── attack_simulation_simulation_automations_item_runs_request_builder.go │ │ │ │ ├── attack_simulation_simulation_automations_item_runs_simulation_automation_run_item_request_builder.go │ │ │ │ ├── attack_simulation_simulation_automations_request_builder.go │ │ │ │ ├── attack_simulation_simulation_automations_simulation_automation_item_request_builder.go │ │ │ │ ├── attack_simulation_simulations_count_request_builder.go │ │ │ │ ├── attack_simulation_simulations_request_builder.go │ │ │ │ ├── attack_simulation_simulations_simulation_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_ediscovery_case_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_ediscovery_custodian_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_last_index_operation_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_security_activate_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_security_apply_hold_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_security_release_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_security_remove_hold_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_security_update_index_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_site_sources_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_site_sources_item_site_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_site_sources_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_site_sources_site_source_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_unified_group_sources_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_unified_group_sources_item_group_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_unified_group_sources_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_unified_group_sources_unified_group_source_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_user_sources_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_user_sources_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_item_user_sources_user_source_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_security_apply_hold_apply_hold_post_request_body.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_security_apply_hold_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_security_remove_hold_remove_hold_post_request_body.go │ │ │ │ ├── cases_ediscovery_cases_item_custodians_security_remove_hold_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_ediscovery_noncustodial_data_source_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_item_data_source_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_item_last_index_operation_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_item_security_apply_hold_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_item_security_release_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_item_security_remove_hold_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_item_security_update_index_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_security_apply_hold_apply_hold_post_request_body.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_security_apply_hold_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_security_remove_hold_remove_hold_post_request_body.go │ │ │ │ ├── cases_ediscovery_cases_item_noncustodial_data_sources_security_remove_hold_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_operations_case_operation_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_operations_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_operations_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_review_sets_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_review_sets_ediscovery_review_set_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_review_sets_item_queries_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_review_sets_item_queries_ediscovery_review_set_query_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_review_sets_item_queries_item_security_apply_tags_apply_tags_post_request_body.go │ │ │ │ ├── cases_ediscovery_cases_item_review_sets_item_queries_item_security_apply_tags_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_review_sets_item_queries_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_review_sets_item_security_add_to_review_set_add_to_review_set_post_request_body.go │ │ │ │ ├── cases_ediscovery_cases_item_review_sets_item_security_add_to_review_set_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_review_sets_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_ediscovery_search_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_add_to_review_set_operation_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_additional_sources_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_additional_sources_data_source_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_additional_sources_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_custodian_sources_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_custodian_sources_data_source_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_custodian_sources_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_last_estimate_statistics_operation_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_noncustodial_sources_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_noncustodial_sources_ediscovery_noncustodial_data_source_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_noncustodial_sources_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_security_estimate_statistics_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_security_purge_data_purge_data_post_request_body.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_item_security_purge_data_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_searches_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_security_close_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_security_reopen_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_settings_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_settings_security_reset_to_default_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_tags_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_tags_ediscovery_review_tag_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_tags_item_child_tags_count_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_tags_item_child_tags_ediscovery_review_tag_item_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_tags_item_child_tags_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_tags_item_parent_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_tags_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_item_tags_security_as_hierarchy_as_hierarchy_response.go │ │ │ │ ├── cases_ediscovery_cases_item_tags_security_as_hierarchy_request_builder.go │ │ │ │ ├── cases_ediscovery_cases_request_builder.go │ │ │ │ ├── cases_request_builder.go │ │ │ │ ├── incidents_count_request_builder.go │ │ │ │ ├── incidents_incident_item_request_builder.go │ │ │ │ ├── incidents_item_alerts_alert_item_request_builder.go │ │ │ │ ├── incidents_item_alerts_count_request_builder.go │ │ │ │ ├── incidents_item_alerts_request_builder.go │ │ │ │ ├── incidents_request_builder.go │ │ │ │ ├── secure_score_control_profiles_count_request_builder.go │ │ │ │ ├── secure_score_control_profiles_request_builder.go │ │ │ │ ├── secure_score_control_profiles_secure_score_control_profile_item_request_builder.go │ │ │ │ ├── secure_scores_count_request_builder.go │ │ │ │ ├── secure_scores_request_builder.go │ │ │ │ ├── secure_scores_secure_score_item_request_builder.go │ │ │ │ ├── security_request_builder.go │ │ │ │ ├── security_run_hunting_query_request_builder.go │ │ │ │ └── security_run_hunting_query_run_hunting_query_post_request_body.go │ │ │ ├── serviceprincipals/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── delta_request_builder.go │ │ │ │ ├── delta_response.go │ │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ │ ├── get_available_extension_properties_response.go │ │ │ │ ├── get_by_ids_post_request_body.go │ │ │ │ ├── get_by_ids_request_builder.go │ │ │ │ ├── get_by_ids_response.go │ │ │ │ ├── item_add_key_post_request_body.go │ │ │ │ ├── item_add_key_request_builder.go │ │ │ │ ├── item_add_password_post_request_body.go │ │ │ │ ├── item_add_password_request_builder.go │ │ │ │ ├── item_add_token_signing_certificate_post_request_body.go │ │ │ │ ├── item_add_token_signing_certificate_request_builder.go │ │ │ │ ├── item_app_management_policies_app_management_policy_item_request_builder.go │ │ │ │ ├── item_app_management_policies_count_request_builder.go │ │ │ │ ├── item_app_management_policies_request_builder.go │ │ │ │ ├── item_app_role_assigned_to_app_role_assignment_item_request_builder.go │ │ │ │ ├── item_app_role_assigned_to_count_request_builder.go │ │ │ │ ├── item_app_role_assigned_to_request_builder.go │ │ │ │ ├── item_app_role_assignments_app_role_assignment_item_request_builder.go │ │ │ │ ├── item_app_role_assignments_count_request_builder.go │ │ │ │ ├── item_app_role_assignments_request_builder.go │ │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ │ ├── item_check_member_groups_response.go │ │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ │ ├── item_check_member_objects_response.go │ │ │ │ ├── item_claims_mapping_policies_claims_mapping_policy_item_request_builder.go │ │ │ │ ├── item_claims_mapping_policies_count_request_builder.go │ │ │ │ ├── item_claims_mapping_policies_item_ref_request_builder.go │ │ │ │ ├── item_claims_mapping_policies_ref_request_builder.go │ │ │ │ ├── item_claims_mapping_policies_request_builder.go │ │ │ │ ├── item_created_objects_count_request_builder.go │ │ │ │ ├── item_created_objects_directory_object_item_request_builder.go │ │ │ │ ├── item_created_objects_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_created_objects_graph_service_principal_request_builder.go │ │ │ │ ├── item_created_objects_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_created_objects_request_builder.go │ │ │ │ ├── item_delegated_permission_classifications_count_request_builder.go │ │ │ │ ├── item_delegated_permission_classifications_delegated_permission_classification_item_request_builder.go │ │ │ │ ├── item_delegated_permission_classifications_request_builder.go │ │ │ │ ├── item_endpoints_count_request_builder.go │ │ │ │ ├── item_endpoints_endpoint_item_request_builder.go │ │ │ │ ├── item_endpoints_request_builder.go │ │ │ │ ├── item_federated_identity_credentials_count_request_builder.go │ │ │ │ ├── item_federated_identity_credentials_federated_identity_credential_item_request_builder.go │ │ │ │ ├── item_federated_identity_credentials_request_builder.go │ │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ │ ├── item_get_member_groups_response.go │ │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ │ ├── item_get_member_objects_response.go │ │ │ │ ├── item_home_realm_discovery_policies_count_request_builder.go │ │ │ │ ├── item_home_realm_discovery_policies_home_realm_discovery_policy_item_request_builder.go │ │ │ │ ├── item_home_realm_discovery_policies_item_ref_request_builder.go │ │ │ │ ├── item_home_realm_discovery_policies_ref_request_builder.go │ │ │ │ ├── item_home_realm_discovery_policies_request_builder.go │ │ │ │ ├── item_member_of_count_request_builder.go │ │ │ │ ├── item_member_of_directory_object_item_request_builder.go │ │ │ │ ├── item_member_of_graph_administrative_unit_count_request_builder.go │ │ │ │ ├── item_member_of_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_member_of_graph_group_count_request_builder.go │ │ │ │ ├── item_member_of_graph_group_request_builder.go │ │ │ │ ├── item_member_of_item_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_member_of_item_graph_group_request_builder.go │ │ │ │ ├── item_member_of_request_builder.go │ │ │ │ ├── item_oauth2_permission_grants_count_request_builder.go │ │ │ │ ├── item_oauth2_permission_grants_o_auth2_permission_grant_item_request_builder.go │ │ │ │ ├── item_oauth2_permission_grants_request_builder.go │ │ │ │ ├── item_owned_objects_count_request_builder.go │ │ │ │ ├── item_owned_objects_directory_object_item_request_builder.go │ │ │ │ ├── item_owned_objects_graph_app_role_assignment_count_request_builder.go │ │ │ │ ├── item_owned_objects_graph_app_role_assignment_request_builder.go │ │ │ │ ├── item_owned_objects_graph_application_count_request_builder.go │ │ │ │ ├── item_owned_objects_graph_application_request_builder.go │ │ │ │ ├── item_owned_objects_graph_endpoint_count_request_builder.go │ │ │ │ ├── item_owned_objects_graph_endpoint_request_builder.go │ │ │ │ ├── item_owned_objects_graph_group_count_request_builder.go │ │ │ │ ├── item_owned_objects_graph_group_request_builder.go │ │ │ │ ├── item_owned_objects_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_owned_objects_graph_service_principal_request_builder.go │ │ │ │ ├── item_owned_objects_item_graph_app_role_assignment_request_builder.go │ │ │ │ ├── item_owned_objects_item_graph_application_request_builder.go │ │ │ │ ├── item_owned_objects_item_graph_endpoint_request_builder.go │ │ │ │ ├── item_owned_objects_item_graph_group_request_builder.go │ │ │ │ ├── item_owned_objects_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_owned_objects_request_builder.go │ │ │ │ ├── item_owners_count_request_builder.go │ │ │ │ ├── item_owners_directory_object_item_request_builder.go │ │ │ │ ├── item_owners_graph_app_role_assignment_count_request_builder.go │ │ │ │ ├── item_owners_graph_app_role_assignment_request_builder.go │ │ │ │ ├── item_owners_graph_endpoint_count_request_builder.go │ │ │ │ ├── item_owners_graph_endpoint_request_builder.go │ │ │ │ ├── item_owners_graph_service_principal_count_request_builder.go │ │ │ │ ├── item_owners_graph_service_principal_request_builder.go │ │ │ │ ├── item_owners_graph_user_count_request_builder.go │ │ │ │ ├── item_owners_graph_user_request_builder.go │ │ │ │ ├── item_owners_item_graph_app_role_assignment_request_builder.go │ │ │ │ ├── item_owners_item_graph_endpoint_request_builder.go │ │ │ │ ├── item_owners_item_graph_service_principal_request_builder.go │ │ │ │ ├── item_owners_item_graph_user_request_builder.go │ │ │ │ ├── item_owners_item_ref_request_builder.go │ │ │ │ ├── item_owners_ref_request_builder.go │ │ │ │ ├── item_owners_request_builder.go │ │ │ │ ├── item_remove_key_post_request_body.go │ │ │ │ ├── item_remove_key_request_builder.go │ │ │ │ ├── item_remove_password_post_request_body.go │ │ │ │ ├── item_remove_password_request_builder.go │ │ │ │ ├── item_restore_request_builder.go │ │ │ │ ├── item_token_issuance_policies_count_request_builder.go │ │ │ │ ├── item_token_issuance_policies_request_builder.go │ │ │ │ ├── item_token_issuance_policies_token_issuance_policy_item_request_builder.go │ │ │ │ ├── item_token_lifetime_policies_count_request_builder.go │ │ │ │ ├── item_token_lifetime_policies_request_builder.go │ │ │ │ ├── item_token_lifetime_policies_token_lifetime_policy_item_request_builder.go │ │ │ │ ├── item_transitive_member_of_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_directory_object_item_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_administrative_unit_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_group_count_request_builder.go │ │ │ │ ├── item_transitive_member_of_graph_group_request_builder.go │ │ │ │ ├── item_transitive_member_of_item_graph_administrative_unit_request_builder.go │ │ │ │ ├── item_transitive_member_of_item_graph_group_request_builder.go │ │ │ │ ├── item_transitive_member_of_request_builder.go │ │ │ │ ├── service_principal_item_request_builder.go │ │ │ │ ├── service_principals_request_builder.go │ │ │ │ ├── validate_properties_post_request_body.go │ │ │ │ └── validate_properties_request_builder.go │ │ │ ├── shares/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── item_drive_item_content_request_builder.go │ │ │ │ ├── item_drive_item_request_builder.go │ │ │ │ ├── item_items_count_request_builder.go │ │ │ │ ├── item_items_drive_item_item_request_builder.go │ │ │ │ ├── item_items_item_content_request_builder.go │ │ │ │ ├── item_items_request_builder.go │ │ │ │ ├── item_list_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_list_columns_count_request_builder.go │ │ │ │ ├── item_list_columns_item_source_column_request_builder.go │ │ │ │ ├── item_list_columns_request_builder.go │ │ │ │ ├── item_list_content_types_add_copy_from_content_type_hub_post_request_body.go │ │ │ │ ├── item_list_content_types_add_copy_from_content_type_hub_request_builder.go │ │ │ │ ├── item_list_content_types_add_copy_post_request_body.go │ │ │ │ ├── item_list_content_types_add_copy_request_builder.go │ │ │ │ ├── item_list_content_types_content_type_item_request_builder.go │ │ │ │ ├── item_list_content_types_count_request_builder.go │ │ │ │ ├── item_list_content_types_get_compatible_hub_content_types_request_builder.go │ │ │ │ ├── item_list_content_types_get_compatible_hub_content_types_response.go │ │ │ │ ├── item_list_content_types_item_associate_with_hub_sites_post_request_body.go │ │ │ │ ├── item_list_content_types_item_associate_with_hub_sites_request_builder.go │ │ │ │ ├── item_list_content_types_item_base_request_builder.go │ │ │ │ ├── item_list_content_types_item_base_types_content_type_item_request_builder.go │ │ │ │ ├── item_list_content_types_item_base_types_count_request_builder.go │ │ │ │ ├── item_list_content_types_item_base_types_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_links_column_link_item_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_links_count_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_links_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_positions_column_definition_item_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_positions_count_request_builder.go │ │ │ │ ├── item_list_content_types_item_column_positions_request_builder.go │ │ │ │ ├── item_list_content_types_item_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_list_content_types_item_columns_count_request_builder.go │ │ │ │ ├── item_list_content_types_item_columns_item_source_column_request_builder.go │ │ │ │ ├── item_list_content_types_item_columns_request_builder.go │ │ │ │ ├── item_list_content_types_item_copy_to_default_content_location_post_request_body.go │ │ │ │ ├── item_list_content_types_item_copy_to_default_content_location_request_builder.go │ │ │ │ ├── item_list_content_types_item_is_published_request_builder.go │ │ │ │ ├── item_list_content_types_item_is_published_response.go │ │ │ │ ├── item_list_content_types_item_publish_request_builder.go │ │ │ │ ├── item_list_content_types_item_unpublish_request_builder.go │ │ │ │ ├── item_list_content_types_request_builder.go │ │ │ │ ├── item_list_drive_request_builder.go │ │ │ │ ├── item_list_item_request_builder.go │ │ │ │ ├── item_list_items_count_request_builder.go │ │ │ │ ├── item_list_items_item_analytics_request_builder.go │ │ │ │ ├── item_list_items_item_document_set_versions_count_request_builder.go │ │ │ │ ├── item_list_items_item_document_set_versions_document_set_version_item_request_builder.go │ │ │ │ ├── item_list_items_item_document_set_versions_item_restore_request_builder.go │ │ │ │ ├── item_list_items_item_document_set_versions_request_builder.go │ │ │ │ ├── item_list_items_item_drive_item_content_request_builder.go │ │ │ │ ├── item_list_items_item_drive_item_request_builder.go │ │ │ │ ├── item_list_items_item_fields_request_builder.go │ │ │ │ ├── item_list_items_item_get_activities_by_interval_request_builder.go │ │ │ │ ├── item_list_items_item_get_activities_by_interval_response.go │ │ │ │ ├── item_list_items_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_request_builder.go │ │ │ │ ├── item_list_items_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_response.go │ │ │ │ ├── item_list_items_item_versions_count_request_builder.go │ │ │ │ ├── item_list_items_item_versions_item_fields_request_builder.go │ │ │ │ ├── item_list_items_item_versions_item_restore_version_request_builder.go │ │ │ │ ├── item_list_items_item_versions_list_item_version_item_request_builder.go │ │ │ │ ├── item_list_items_item_versions_request_builder.go │ │ │ │ ├── item_list_items_list_item_item_request_builder.go │ │ │ │ ├── item_list_items_request_builder.go │ │ │ │ ├── item_list_operations_count_request_builder.go │ │ │ │ ├── item_list_operations_request_builder.go │ │ │ │ ├── item_list_operations_rich_long_running_operation_item_request_builder.go │ │ │ │ ├── item_list_request_builder.go │ │ │ │ ├── item_list_subscriptions_count_request_builder.go │ │ │ │ ├── item_list_subscriptions_item_reauthorize_request_builder.go │ │ │ │ ├── item_list_subscriptions_request_builder.go │ │ │ │ ├── item_list_subscriptions_subscription_item_request_builder.go │ │ │ │ ├── item_permission_grant_post_request_body.go │ │ │ │ ├── item_permission_grant_request_builder.go │ │ │ │ ├── item_permission_grant_response.go │ │ │ │ ├── item_permission_request_builder.go │ │ │ │ ├── item_root_content_request_builder.go │ │ │ │ ├── item_root_request_builder.go │ │ │ │ ├── item_site_request_builder.go │ │ │ │ ├── shared_drive_item_item_request_builder.go │ │ │ │ └── shares_request_builder.go │ │ │ ├── sites/ │ │ │ │ ├── add_post_request_body.go │ │ │ │ ├── add_request_builder.go │ │ │ │ ├── add_response.go │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── item_analytics_request_builder.go │ │ │ │ ├── item_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_columns_count_request_builder.go │ │ │ │ ├── item_columns_item_source_column_request_builder.go │ │ │ │ ├── item_columns_request_builder.go │ │ │ │ ├── item_content_types_add_copy_from_content_type_hub_post_request_body.go │ │ │ │ ├── item_content_types_add_copy_from_content_type_hub_request_builder.go │ │ │ │ ├── item_content_types_add_copy_post_request_body.go │ │ │ │ ├── item_content_types_add_copy_request_builder.go │ │ │ │ ├── item_content_types_content_type_item_request_builder.go │ │ │ │ ├── item_content_types_count_request_builder.go │ │ │ │ ├── item_content_types_get_compatible_hub_content_types_request_builder.go │ │ │ │ ├── item_content_types_get_compatible_hub_content_types_response.go │ │ │ │ ├── item_content_types_item_associate_with_hub_sites_post_request_body.go │ │ │ │ ├── item_content_types_item_associate_with_hub_sites_request_builder.go │ │ │ │ ├── item_content_types_item_base_request_builder.go │ │ │ │ ├── item_content_types_item_base_types_content_type_item_request_builder.go │ │ │ │ ├── item_content_types_item_base_types_count_request_builder.go │ │ │ │ ├── item_content_types_item_base_types_request_builder.go │ │ │ │ ├── item_content_types_item_column_links_column_link_item_request_builder.go │ │ │ │ ├── item_content_types_item_column_links_count_request_builder.go │ │ │ │ ├── item_content_types_item_column_links_request_builder.go │ │ │ │ ├── item_content_types_item_column_positions_column_definition_item_request_builder.go │ │ │ │ ├── item_content_types_item_column_positions_count_request_builder.go │ │ │ │ ├── item_content_types_item_column_positions_request_builder.go │ │ │ │ ├── item_content_types_item_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_content_types_item_columns_count_request_builder.go │ │ │ │ ├── item_content_types_item_columns_item_source_column_request_builder.go │ │ │ │ ├── item_content_types_item_columns_request_builder.go │ │ │ │ ├── item_content_types_item_copy_to_default_content_location_post_request_body.go │ │ │ │ ├── item_content_types_item_copy_to_default_content_location_request_builder.go │ │ │ │ ├── item_content_types_item_is_published_request_builder.go │ │ │ │ ├── item_content_types_item_is_published_response.go │ │ │ │ ├── item_content_types_item_publish_request_builder.go │ │ │ │ ├── item_content_types_item_unpublish_request_builder.go │ │ │ │ ├── item_content_types_request_builder.go │ │ │ │ ├── item_drive_request_builder.go │ │ │ │ ├── item_drives_count_request_builder.go │ │ │ │ ├── item_drives_drive_item_request_builder.go │ │ │ │ ├── item_drives_request_builder.go │ │ │ │ ├── item_external_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_external_columns_count_request_builder.go │ │ │ │ ├── item_external_columns_request_builder.go │ │ │ │ ├── item_get_activities_by_interval_request_builder.go │ │ │ │ ├── item_get_activities_by_interval_response.go │ │ │ │ ├── item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_request_builder.go │ │ │ │ ├── item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_response.go │ │ │ │ ├── item_get_applicable_content_types_for_list_with_list_id_request_builder.go │ │ │ │ ├── item_get_applicable_content_types_for_list_with_list_id_response.go │ │ │ │ ├── item_get_by_path_with_path_request_builder.go │ │ │ │ ├── item_items_base_item_item_request_builder.go │ │ │ │ ├── item_items_count_request_builder.go │ │ │ │ ├── item_items_request_builder.go │ │ │ │ ├── item_lists_count_request_builder.go │ │ │ │ ├── item_lists_item_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_lists_item_columns_count_request_builder.go │ │ │ │ ├── item_lists_item_columns_item_source_column_request_builder.go │ │ │ │ ├── item_lists_item_columns_request_builder.go │ │ │ │ ├── item_lists_item_content_types_add_copy_from_content_type_hub_post_request_body.go │ │ │ │ ├── item_lists_item_content_types_add_copy_from_content_type_hub_request_builder.go │ │ │ │ ├── item_lists_item_content_types_add_copy_post_request_body.go │ │ │ │ ├── item_lists_item_content_types_add_copy_request_builder.go │ │ │ │ ├── item_lists_item_content_types_content_type_item_request_builder.go │ │ │ │ ├── item_lists_item_content_types_count_request_builder.go │ │ │ │ ├── item_lists_item_content_types_get_compatible_hub_content_types_request_builder.go │ │ │ │ ├── item_lists_item_content_types_get_compatible_hub_content_types_response.go │ │ │ │ ├── item_lists_item_content_types_item_associate_with_hub_sites_post_request_body.go │ │ │ │ ├── item_lists_item_content_types_item_associate_with_hub_sites_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_base_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_base_types_content_type_item_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_base_types_count_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_base_types_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_column_links_column_link_item_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_column_links_count_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_column_links_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_column_positions_column_definition_item_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_column_positions_count_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_column_positions_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_columns_column_definition_item_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_columns_count_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_columns_item_source_column_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_columns_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_copy_to_default_content_location_post_request_body.go │ │ │ │ ├── item_lists_item_content_types_item_copy_to_default_content_location_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_is_published_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_is_published_response.go │ │ │ │ ├── item_lists_item_content_types_item_publish_request_builder.go │ │ │ │ ├── item_lists_item_content_types_item_unpublish_request_builder.go │ │ │ │ ├── item_lists_item_content_types_request_builder.go │ │ │ │ ├── item_lists_item_drive_request_builder.go │ │ │ │ ├── item_lists_item_items_count_request_builder.go │ │ │ │ ├── item_lists_item_items_item_analytics_request_builder.go │ │ │ │ ├── item_lists_item_items_item_document_set_versions_count_request_builder.go │ │ │ │ ├── item_lists_item_items_item_document_set_versions_document_set_version_item_request_builder.go │ │ │ │ ├── item_lists_item_items_item_document_set_versions_item_restore_request_builder.go │ │ │ │ ├── item_lists_item_items_item_document_set_versions_request_builder.go │ │ │ │ ├── item_lists_item_items_item_drive_item_content_request_builder.go │ │ │ │ ├── item_lists_item_items_item_drive_item_request_builder.go │ │ │ │ ├── item_lists_item_items_item_fields_request_builder.go │ │ │ │ ├── item_lists_item_items_item_get_activities_by_interval_request_builder.go │ │ │ │ ├── item_lists_item_items_item_get_activities_by_interval_response.go │ │ │ │ ├── item_lists_item_items_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_request_builder.go │ │ │ │ ├── item_lists_item_items_item_get_activities_by_interval_with_start_date_time_with_end_date_time_with_interval_response.go │ │ │ │ ├── item_lists_item_items_item_versions_count_request_builder.go │ │ │ │ ├── item_lists_item_items_item_versions_item_fields_request_builder.go │ │ │ │ ├── item_lists_item_items_item_versions_item_restore_version_request_builder.go │ │ │ │ ├── item_lists_item_items_item_versions_list_item_version_item_request_builder.go │ │ │ │ ├── item_lists_item_items_item_versions_request_builder.go │ │ │ │ ├── item_lists_item_items_list_item_item_request_builder.go │ │ │ │ ├── item_lists_item_items_request_builder.go │ │ │ │ ├── item_lists_item_operations_count_request_builder.go │ │ │ │ ├── item_lists_item_operations_request_builder.go │ │ │ │ ├── item_lists_item_operations_rich_long_running_operation_item_request_builder.go │ │ │ │ ├── item_lists_item_subscriptions_count_request_builder.go │ │ │ │ ├── item_lists_item_subscriptions_item_reauthorize_request_builder.go │ │ │ │ ├── item_lists_item_subscriptions_request_builder.go │ │ │ │ ├── item_lists_item_subscriptions_subscription_item_request_builder.go │ │ │ │ ├── item_lists_list_item_request_builder.go │ │ │ │ ├── item_lists_request_builder.go │ │ │ │ ├── item_onenote_notebooks_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_get_notebook_from_web_url_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_get_notebook_from_web_url_request_builder.go │ │ │ │ ├── item_onenote_notebooks_get_recent_notebooks_with_include_personal_notebooks_request_builder.go │ │ │ │ ├── item_onenote_notebooks_get_recent_notebooks_with_include_personal_notebooks_response.go │ │ │ │ ├── item_onenote_notebooks_item_copy_notebook_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_copy_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_section_groups_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_section_groups_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_item_sections_request_builder.go │ │ │ │ ├── item_onenote_notebooks_notebook_item_request_builder.go │ │ │ │ ├── item_onenote_notebooks_request_builder.go │ │ │ │ ├── item_onenote_operations_count_request_builder.go │ │ │ │ ├── item_onenote_operations_onenote_operation_item_request_builder.go │ │ │ │ ├── item_onenote_operations_request_builder.go │ │ │ │ ├── item_onenote_pages_count_request_builder.go │ │ │ │ ├── item_onenote_pages_item_content_request_builder.go │ │ │ │ ├── item_onenote_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_onenote_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_onenote_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_onenote_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_onenote_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_onenote_pages_item_preview_request_builder.go │ │ │ │ ├── item_onenote_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_onenote_pages_request_builder.go │ │ │ │ ├── item_onenote_request_builder.go │ │ │ │ ├── item_onenote_resources_count_request_builder.go │ │ │ │ ├── item_onenote_resources_item_content_request_builder.go │ │ │ │ ├── item_onenote_resources_onenote_resource_item_request_builder.go │ │ │ │ ├── item_onenote_resources_request_builder.go │ │ │ │ ├── item_onenote_section_groups_count_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_section_groups_count_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_section_groups_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_count_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_onenote_section_groups_item_sections_request_builder.go │ │ │ │ ├── item_onenote_section_groups_request_builder.go │ │ │ │ ├── item_onenote_section_groups_section_group_item_request_builder.go │ │ │ │ ├── item_onenote_sections_count_request_builder.go │ │ │ │ ├── item_onenote_sections_item_copy_to_notebook_post_request_body.go │ │ │ │ ├── item_onenote_sections_item_copy_to_notebook_request_builder.go │ │ │ │ ├── item_onenote_sections_item_copy_to_section_group_post_request_body.go │ │ │ │ ├── item_onenote_sections_item_copy_to_section_group_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_count_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_content_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ │ ├── item_onenote_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ │ ├── item_onenote_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_parent_section_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_item_preview_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_onenote_page_item_request_builder.go │ │ │ │ ├── item_onenote_sections_item_pages_request_builder.go │ │ │ │ ├── item_onenote_sections_item_parent_notebook_request_builder.go │ │ │ │ ├── item_onenote_sections_item_parent_section_group_request_builder.go │ │ │ │ ├── item_onenote_sections_onenote_section_item_request_builder.go │ │ │ │ ├── item_onenote_sections_request_builder.go │ │ │ │ ├── item_operations_count_request_builder.go │ │ │ │ ├── item_operations_request_builder.go │ │ │ │ ├── item_operations_rich_long_running_operation_item_request_builder.go │ │ │ │ ├── item_permissions_count_request_builder.go │ │ │ │ ├── item_permissions_item_grant_post_request_body.go │ │ │ │ ├── item_permissions_item_grant_request_builder.go │ │ │ │ ├── item_permissions_item_grant_response.go │ │ │ │ ├── item_permissions_permission_item_request_builder.go │ │ │ │ ├── item_permissions_request_builder.go │ │ │ │ ├── item_sites_count_request_builder.go │ │ │ │ ├── item_sites_request_builder.go │ │ │ │ ├── item_sites_site_item_request_builder.go │ │ │ │ ├── item_term_store_groups_count_request_builder.go │ │ │ │ ├── item_term_store_groups_group_item_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_count_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_count_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_parent_group_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_relations_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_request_builder.go │ │ │ │ ├── item_term_store_groups_item_sets_set_item_request_builder.go │ │ │ │ ├── item_term_store_groups_request_builder.go │ │ │ │ ├── item_term_store_request_builder.go │ │ │ │ ├── item_term_store_sets_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_request_builder.go │ │ │ │ ├── item_term_store_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_relations_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_request_builder.go │ │ │ │ ├── item_term_store_sets_item_parent_group_sets_set_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_relations_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_request_builder.go │ │ │ │ ├── item_term_store_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_term_store_sets_request_builder.go │ │ │ │ ├── item_term_store_sets_set_item_request_builder.go │ │ │ │ ├── item_term_stores_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_group_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_parent_group_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_item_sets_set_item_request_builder.go │ │ │ │ ├── item_term_stores_item_groups_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_parent_group_sets_set_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_children_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_children_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_children_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_children_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_children_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_children_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_children_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_children_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_children_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_children_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_relations_count_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_relations_item_from_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_relations_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_relations_item_to_term_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_relations_relation_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_relations_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_item_set_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_item_terms_term_item_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_request_builder.go │ │ │ │ ├── item_term_stores_item_sets_set_item_request_builder.go │ │ │ │ ├── item_term_stores_request_builder.go │ │ │ │ ├── item_term_stores_store_item_request_builder.go │ │ │ │ ├── remove_post_request_body.go │ │ │ │ ├── remove_request_builder.go │ │ │ │ ├── remove_response.go │ │ │ │ ├── site_item_request_builder.go │ │ │ │ └── sites_request_builder.go │ │ │ ├── solutions/ │ │ │ │ ├── booking_businesses_booking_business_item_request_builder.go │ │ │ │ ├── booking_businesses_count_request_builder.go │ │ │ │ ├── booking_businesses_item_appointments_booking_appointment_item_request_builder.go │ │ │ │ ├── booking_businesses_item_appointments_count_request_builder.go │ │ │ │ ├── booking_businesses_item_appointments_item_cancel_post_request_body.go │ │ │ │ ├── booking_businesses_item_appointments_item_cancel_request_builder.go │ │ │ │ ├── booking_businesses_item_appointments_request_builder.go │ │ │ │ ├── booking_businesses_item_calendar_view_booking_appointment_item_request_builder.go │ │ │ │ ├── booking_businesses_item_calendar_view_count_request_builder.go │ │ │ │ ├── booking_businesses_item_calendar_view_item_cancel_post_request_body.go │ │ │ │ ├── booking_businesses_item_calendar_view_item_cancel_request_builder.go │ │ │ │ ├── booking_businesses_item_calendar_view_request_builder.go │ │ │ │ ├── booking_businesses_item_custom_questions_booking_custom_question_item_request_builder.go │ │ │ │ ├── booking_businesses_item_custom_questions_count_request_builder.go │ │ │ │ ├── booking_businesses_item_custom_questions_request_builder.go │ │ │ │ ├── booking_businesses_item_customers_booking_customer_base_item_request_builder.go │ │ │ │ ├── booking_businesses_item_customers_count_request_builder.go │ │ │ │ ├── booking_businesses_item_customers_request_builder.go │ │ │ │ ├── booking_businesses_item_get_staff_availability_post_request_body.go │ │ │ │ ├── booking_businesses_item_get_staff_availability_request_builder.go │ │ │ │ ├── booking_businesses_item_get_staff_availability_response.go │ │ │ │ ├── booking_businesses_item_publish_request_builder.go │ │ │ │ ├── booking_businesses_item_services_booking_service_item_request_builder.go │ │ │ │ ├── booking_businesses_item_services_count_request_builder.go │ │ │ │ ├── booking_businesses_item_services_request_builder.go │ │ │ │ ├── booking_businesses_item_staff_members_booking_staff_member_base_item_request_builder.go │ │ │ │ ├── booking_businesses_item_staff_members_count_request_builder.go │ │ │ │ ├── booking_businesses_item_staff_members_request_builder.go │ │ │ │ ├── booking_businesses_item_unpublish_request_builder.go │ │ │ │ ├── booking_businesses_request_builder.go │ │ │ │ ├── booking_currencies_booking_currency_item_request_builder.go │ │ │ │ ├── booking_currencies_count_request_builder.go │ │ │ │ ├── booking_currencies_request_builder.go │ │ │ │ └── solutions_request_builder.go │ │ │ ├── subscribedskus/ │ │ │ │ ├── subscribed_sku_item_request_builder.go │ │ │ │ └── subscribed_skus_request_builder.go │ │ │ ├── subscriptions/ │ │ │ │ ├── item_reauthorize_request_builder.go │ │ │ │ ├── subscription_item_request_builder.go │ │ │ │ └── subscriptions_request_builder.go │ │ │ ├── teams/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── get_all_messages_request_builder.go │ │ │ │ ├── get_all_messages_response.go │ │ │ │ ├── item_all_channels_channel_item_request_builder.go │ │ │ │ ├── item_all_channels_count_request_builder.go │ │ │ │ ├── item_all_channels_request_builder.go │ │ │ │ ├── item_archive_post_request_body.go │ │ │ │ ├── item_archive_request_builder.go │ │ │ │ ├── item_channels_channel_item_request_builder.go │ │ │ │ ├── item_channels_count_request_builder.go │ │ │ │ ├── item_channels_get_all_messages_request_builder.go │ │ │ │ ├── item_channels_get_all_messages_response.go │ │ │ │ ├── item_channels_item_complete_migration_request_builder.go │ │ │ │ ├── item_channels_item_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_request_builder.go │ │ │ │ ├── item_channels_item_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_response.go │ │ │ │ ├── item_channels_item_files_folder_content_request_builder.go │ │ │ │ ├── item_channels_item_files_folder_request_builder.go │ │ │ │ ├── item_channels_item_members_add_post_request_body.go │ │ │ │ ├── item_channels_item_members_add_request_builder.go │ │ │ │ ├── item_channels_item_members_add_response.go │ │ │ │ ├── item_channels_item_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_channels_item_members_count_request_builder.go │ │ │ │ ├── item_channels_item_members_request_builder.go │ │ │ │ ├── item_channels_item_messages_chat_message_item_request_builder.go │ │ │ │ ├── item_channels_item_messages_count_request_builder.go │ │ │ │ ├── item_channels_item_messages_delta_request_builder.go │ │ │ │ ├── item_channels_item_messages_delta_response.go │ │ │ │ ├── item_channels_item_messages_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_hosted_contents_count_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_hosted_contents_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_replies_chat_message_item_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_replies_count_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_replies_delta_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_replies_delta_response.go │ │ │ │ ├── item_channels_item_messages_item_replies_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_replies_item_hosted_contents_count_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_replies_item_hosted_contents_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_replies_item_soft_delete_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_replies_item_undo_soft_delete_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_replies_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_soft_delete_request_builder.go │ │ │ │ ├── item_channels_item_messages_item_undo_soft_delete_request_builder.go │ │ │ │ ├── item_channels_item_messages_request_builder.go │ │ │ │ ├── item_channels_item_provision_email_request_builder.go │ │ │ │ ├── item_channels_item_remove_email_request_builder.go │ │ │ │ ├── item_channels_item_shared_with_teams_count_request_builder.go │ │ │ │ ├── item_channels_item_shared_with_teams_item_allowed_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_channels_item_shared_with_teams_item_allowed_members_count_request_builder.go │ │ │ │ ├── item_channels_item_shared_with_teams_item_allowed_members_request_builder.go │ │ │ │ ├── item_channels_item_shared_with_teams_request_builder.go │ │ │ │ ├── item_channels_item_shared_with_teams_shared_with_channel_team_info_item_request_builder.go │ │ │ │ ├── item_channels_item_tabs_count_request_builder.go │ │ │ │ ├── item_channels_item_tabs_item_teams_app_request_builder.go │ │ │ │ ├── item_channels_item_tabs_request_builder.go │ │ │ │ ├── item_channels_item_tabs_teams_tab_item_request_builder.go │ │ │ │ ├── item_channels_request_builder.go │ │ │ │ ├── item_clone_post_request_body.go │ │ │ │ ├── item_clone_request_builder.go │ │ │ │ ├── item_complete_migration_request_builder.go │ │ │ │ ├── item_group_request_builder.go │ │ │ │ ├── item_incoming_channels_channel_item_request_builder.go │ │ │ │ ├── item_incoming_channels_count_request_builder.go │ │ │ │ ├── item_incoming_channels_request_builder.go │ │ │ │ ├── item_installed_apps_count_request_builder.go │ │ │ │ ├── item_installed_apps_item_teams_app_definition_request_builder.go │ │ │ │ ├── item_installed_apps_item_teams_app_request_builder.go │ │ │ │ ├── item_installed_apps_item_upgrade_request_builder.go │ │ │ │ ├── item_installed_apps_request_builder.go │ │ │ │ ├── item_installed_apps_teams_app_installation_item_request_builder.go │ │ │ │ ├── item_members_add_post_request_body.go │ │ │ │ ├── item_members_add_request_builder.go │ │ │ │ ├── item_members_add_response.go │ │ │ │ ├── item_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_members_count_request_builder.go │ │ │ │ ├── item_members_request_builder.go │ │ │ │ ├── item_operations_count_request_builder.go │ │ │ │ ├── item_operations_request_builder.go │ │ │ │ ├── item_operations_teams_async_operation_item_request_builder.go │ │ │ │ ├── item_photo_request_builder.go │ │ │ │ ├── item_photo_value_content_request_builder.go │ │ │ │ ├── item_primary_channel_complete_migration_request_builder.go │ │ │ │ ├── item_primary_channel_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_request_builder.go │ │ │ │ ├── item_primary_channel_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_response.go │ │ │ │ ├── item_primary_channel_files_folder_content_request_builder.go │ │ │ │ ├── item_primary_channel_files_folder_request_builder.go │ │ │ │ ├── item_primary_channel_members_add_post_request_body.go │ │ │ │ ├── item_primary_channel_members_add_request_builder.go │ │ │ │ ├── item_primary_channel_members_add_response.go │ │ │ │ ├── item_primary_channel_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_primary_channel_members_count_request_builder.go │ │ │ │ ├── item_primary_channel_members_request_builder.go │ │ │ │ ├── item_primary_channel_messages_chat_message_item_request_builder.go │ │ │ │ ├── item_primary_channel_messages_count_request_builder.go │ │ │ │ ├── item_primary_channel_messages_delta_request_builder.go │ │ │ │ ├── item_primary_channel_messages_delta_response.go │ │ │ │ ├── item_primary_channel_messages_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_hosted_contents_count_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_hosted_contents_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_replies_chat_message_item_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_replies_count_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_replies_delta_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_replies_delta_response.go │ │ │ │ ├── item_primary_channel_messages_item_replies_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_replies_item_hosted_contents_count_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_replies_item_hosted_contents_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_replies_item_soft_delete_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_replies_item_undo_soft_delete_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_replies_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_soft_delete_request_builder.go │ │ │ │ ├── item_primary_channel_messages_item_undo_soft_delete_request_builder.go │ │ │ │ ├── item_primary_channel_messages_request_builder.go │ │ │ │ ├── item_primary_channel_provision_email_request_builder.go │ │ │ │ ├── item_primary_channel_remove_email_request_builder.go │ │ │ │ ├── item_primary_channel_request_builder.go │ │ │ │ ├── item_primary_channel_shared_with_teams_count_request_builder.go │ │ │ │ ├── item_primary_channel_shared_with_teams_item_allowed_members_conversation_member_item_request_builder.go │ │ │ │ ├── item_primary_channel_shared_with_teams_item_allowed_members_count_request_builder.go │ │ │ │ ├── item_primary_channel_shared_with_teams_item_allowed_members_request_builder.go │ │ │ │ ├── item_primary_channel_shared_with_teams_request_builder.go │ │ │ │ ├── item_primary_channel_shared_with_teams_shared_with_channel_team_info_item_request_builder.go │ │ │ │ ├── item_primary_channel_tabs_count_request_builder.go │ │ │ │ ├── item_primary_channel_tabs_item_teams_app_request_builder.go │ │ │ │ ├── item_primary_channel_tabs_request_builder.go │ │ │ │ ├── item_primary_channel_tabs_teams_tab_item_request_builder.go │ │ │ │ ├── item_schedule_offer_shift_requests_count_request_builder.go │ │ │ │ ├── item_schedule_offer_shift_requests_offer_shift_request_item_request_builder.go │ │ │ │ ├── item_schedule_offer_shift_requests_request_builder.go │ │ │ │ ├── item_schedule_open_shift_change_requests_count_request_builder.go │ │ │ │ ├── item_schedule_open_shift_change_requests_open_shift_change_request_item_request_builder.go │ │ │ │ ├── item_schedule_open_shift_change_requests_request_builder.go │ │ │ │ ├── item_schedule_open_shifts_count_request_builder.go │ │ │ │ ├── item_schedule_open_shifts_open_shift_item_request_builder.go │ │ │ │ ├── item_schedule_open_shifts_request_builder.go │ │ │ │ ├── item_schedule_request_builder.go │ │ │ │ ├── item_schedule_scheduling_groups_count_request_builder.go │ │ │ │ ├── item_schedule_scheduling_groups_request_builder.go │ │ │ │ ├── item_schedule_scheduling_groups_scheduling_group_item_request_builder.go │ │ │ │ ├── item_schedule_share_post_request_body.go │ │ │ │ ├── item_schedule_share_request_builder.go │ │ │ │ ├── item_schedule_shifts_count_request_builder.go │ │ │ │ ├── item_schedule_shifts_request_builder.go │ │ │ │ ├── item_schedule_shifts_shift_item_request_builder.go │ │ │ │ ├── item_schedule_swap_shifts_change_requests_count_request_builder.go │ │ │ │ ├── item_schedule_swap_shifts_change_requests_request_builder.go │ │ │ │ ├── item_schedule_swap_shifts_change_requests_swap_shifts_change_request_item_request_builder.go │ │ │ │ ├── item_schedule_time_off_reasons_count_request_builder.go │ │ │ │ ├── item_schedule_time_off_reasons_request_builder.go │ │ │ │ ├── item_schedule_time_off_reasons_time_off_reason_item_request_builder.go │ │ │ │ ├── item_schedule_time_off_requests_count_request_builder.go │ │ │ │ ├── item_schedule_time_off_requests_request_builder.go │ │ │ │ ├── item_schedule_time_off_requests_time_off_request_item_request_builder.go │ │ │ │ ├── item_schedule_times_off_count_request_builder.go │ │ │ │ ├── item_schedule_times_off_request_builder.go │ │ │ │ ├── item_schedule_times_off_time_off_item_request_builder.go │ │ │ │ ├── item_send_activity_notification_post_request_body.go │ │ │ │ ├── item_send_activity_notification_request_builder.go │ │ │ │ ├── item_tags_count_request_builder.go │ │ │ │ ├── item_tags_item_members_count_request_builder.go │ │ │ │ ├── item_tags_item_members_request_builder.go │ │ │ │ ├── item_tags_item_members_teamwork_tag_member_item_request_builder.go │ │ │ │ ├── item_tags_request_builder.go │ │ │ │ ├── item_tags_teamwork_tag_item_request_builder.go │ │ │ │ ├── item_template_request_builder.go │ │ │ │ ├── item_unarchive_request_builder.go │ │ │ │ ├── team_item_request_builder.go │ │ │ │ └── teams_request_builder.go │ │ │ ├── teamstemplates/ │ │ │ │ ├── count_request_builder.go │ │ │ │ ├── teams_template_item_request_builder.go │ │ │ │ └── teams_templates_request_builder.go │ │ │ ├── teamwork/ │ │ │ │ ├── deleted_teams_count_request_builder.go │ │ │ │ ├── deleted_teams_deleted_team_item_request_builder.go │ │ │ │ ├── deleted_teams_get_all_messages_request_builder.go │ │ │ │ ├── deleted_teams_get_all_messages_response.go │ │ │ │ ├── deleted_teams_item_channels_channel_item_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_count_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_get_all_messages_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_get_all_messages_response.go │ │ │ │ ├── deleted_teams_item_channels_item_complete_migration_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_response.go │ │ │ │ ├── deleted_teams_item_channels_item_files_folder_content_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_files_folder_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_members_add_post_request_body.go │ │ │ │ ├── deleted_teams_item_channels_item_members_add_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_members_add_response.go │ │ │ │ ├── deleted_teams_item_channels_item_members_conversation_member_item_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_members_count_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_members_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_chat_message_item_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_count_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_delta_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_delta_response.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_hosted_contents_count_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_hosted_contents_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_replies_chat_message_item_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_replies_count_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_replies_delta_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_replies_delta_response.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_replies_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_replies_item_hosted_contents_count_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_replies_item_hosted_contents_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_replies_item_soft_delete_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_replies_item_undo_soft_delete_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_replies_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_soft_delete_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_item_undo_soft_delete_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_messages_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_provision_email_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_remove_email_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_shared_with_teams_count_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_shared_with_teams_item_allowed_members_conversation_member_item_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_shared_with_teams_item_allowed_members_count_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_shared_with_teams_item_allowed_members_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_shared_with_teams_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_shared_with_teams_shared_with_channel_team_info_item_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_tabs_count_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_tabs_item_teams_app_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_tabs_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_item_tabs_teams_tab_item_request_builder.go │ │ │ │ ├── deleted_teams_item_channels_request_builder.go │ │ │ │ ├── deleted_teams_request_builder.go │ │ │ │ ├── send_activity_notification_to_recipients_post_request_body.go │ │ │ │ ├── send_activity_notification_to_recipients_request_builder.go │ │ │ │ ├── teamwork_request_builder.go │ │ │ │ ├── workforce_integrations_count_request_builder.go │ │ │ │ ├── workforce_integrations_request_builder.go │ │ │ │ └── workforce_integrations_workforce_integration_item_request_builder.go │ │ │ ├── tenantrelationships/ │ │ │ │ ├── delegated_admin_customers_count_request_builder.go │ │ │ │ ├── delegated_admin_customers_delegated_admin_customer_item_request_builder.go │ │ │ │ ├── delegated_admin_customers_item_service_management_details_count_request_builder.go │ │ │ │ ├── delegated_admin_customers_item_service_management_details_delegated_admin_service_management_detail_item_request_builder.go │ │ │ │ ├── delegated_admin_customers_item_service_management_details_request_builder.go │ │ │ │ ├── delegated_admin_customers_request_builder.go │ │ │ │ ├── delegated_admin_relationships_count_request_builder.go │ │ │ │ ├── delegated_admin_relationships_delegated_admin_relationship_item_request_builder.go │ │ │ │ ├── delegated_admin_relationships_item_access_assignments_count_request_builder.go │ │ │ │ ├── delegated_admin_relationships_item_access_assignments_delegated_admin_access_assignment_item_request_builder.go │ │ │ │ ├── delegated_admin_relationships_item_access_assignments_request_builder.go │ │ │ │ ├── delegated_admin_relationships_item_operations_count_request_builder.go │ │ │ │ ├── delegated_admin_relationships_item_operations_delegated_admin_relationship_operation_item_request_builder.go │ │ │ │ ├── delegated_admin_relationships_item_operations_request_builder.go │ │ │ │ ├── delegated_admin_relationships_item_requests_count_request_builder.go │ │ │ │ ├── delegated_admin_relationships_item_requests_delegated_admin_relationship_request_item_request_builder.go │ │ │ │ ├── delegated_admin_relationships_item_requests_request_builder.go │ │ │ │ ├── delegated_admin_relationships_request_builder.go │ │ │ │ └── tenant_relationships_request_builder.go │ │ │ └── users/ │ │ │ ├── count_request_builder.go │ │ │ ├── delta_request_builder.go │ │ │ ├── delta_response.go │ │ │ ├── get_available_extension_properties_post_request_body.go │ │ │ ├── get_available_extension_properties_request_builder.go │ │ │ ├── get_available_extension_properties_response.go │ │ │ ├── get_by_ids_post_request_body.go │ │ │ ├── get_by_ids_request_builder.go │ │ │ ├── get_by_ids_response.go │ │ │ ├── item_activities_count_request_builder.go │ │ │ ├── item_activities_item_history_items_activity_history_item_item_request_builder.go │ │ │ ├── item_activities_item_history_items_count_request_builder.go │ │ │ ├── item_activities_item_history_items_item_activity_request_builder.go │ │ │ ├── item_activities_item_history_items_request_builder.go │ │ │ ├── item_activities_recent_request_builder.go │ │ │ ├── item_activities_recent_response.go │ │ │ ├── item_activities_request_builder.go │ │ │ ├── item_activities_user_activity_item_request_builder.go │ │ │ ├── item_agreement_acceptances_agreement_acceptance_item_request_builder.go │ │ │ ├── item_agreement_acceptances_count_request_builder.go │ │ │ ├── item_agreement_acceptances_request_builder.go │ │ │ ├── item_app_role_assignments_app_role_assignment_item_request_builder.go │ │ │ ├── item_app_role_assignments_count_request_builder.go │ │ │ ├── item_app_role_assignments_request_builder.go │ │ │ ├── item_assign_license_post_request_body.go │ │ │ ├── item_assign_license_request_builder.go │ │ │ ├── item_authentication_email_methods_count_request_builder.go │ │ │ ├── item_authentication_email_methods_email_authentication_method_item_request_builder.go │ │ │ ├── item_authentication_email_methods_request_builder.go │ │ │ ├── item_authentication_fido2_methods_count_request_builder.go │ │ │ ├── item_authentication_fido2_methods_fido2_authentication_method_item_request_builder.go │ │ │ ├── item_authentication_fido2_methods_request_builder.go │ │ │ ├── item_authentication_methods_authentication_method_item_request_builder.go │ │ │ ├── item_authentication_methods_count_request_builder.go │ │ │ ├── item_authentication_methods_item_reset_password_post_request_body.go │ │ │ ├── item_authentication_methods_item_reset_password_request_builder.go │ │ │ ├── item_authentication_methods_request_builder.go │ │ │ ├── item_authentication_microsoft_authenticator_methods_count_request_builder.go │ │ │ ├── item_authentication_microsoft_authenticator_methods_item_device_request_builder.go │ │ │ ├── item_authentication_microsoft_authenticator_methods_microsoft_authenticator_authentication_method_item_request_builder.go │ │ │ ├── item_authentication_microsoft_authenticator_methods_request_builder.go │ │ │ ├── item_authentication_operations_count_request_builder.go │ │ │ ├── item_authentication_operations_long_running_operation_item_request_builder.go │ │ │ ├── item_authentication_operations_request_builder.go │ │ │ ├── item_authentication_password_methods_count_request_builder.go │ │ │ ├── item_authentication_password_methods_password_authentication_method_item_request_builder.go │ │ │ ├── item_authentication_password_methods_request_builder.go │ │ │ ├── item_authentication_phone_methods_count_request_builder.go │ │ │ ├── item_authentication_phone_methods_item_disable_sms_sign_in_request_builder.go │ │ │ ├── item_authentication_phone_methods_item_enable_sms_sign_in_request_builder.go │ │ │ ├── item_authentication_phone_methods_phone_authentication_method_item_request_builder.go │ │ │ ├── item_authentication_phone_methods_request_builder.go │ │ │ ├── item_authentication_request_builder.go │ │ │ ├── item_authentication_software_oath_methods_count_request_builder.go │ │ │ ├── item_authentication_software_oath_methods_request_builder.go │ │ │ ├── item_authentication_software_oath_methods_software_oath_authentication_method_item_request_builder.go │ │ │ ├── item_authentication_temporary_access_pass_methods_count_request_builder.go │ │ │ ├── item_authentication_temporary_access_pass_methods_request_builder.go │ │ │ ├── item_authentication_temporary_access_pass_methods_temporary_access_pass_authentication_method_item_request_builder.go │ │ │ ├── item_authentication_windows_hello_for_business_methods_count_request_builder.go │ │ │ ├── item_authentication_windows_hello_for_business_methods_item_device_request_builder.go │ │ │ ├── item_authentication_windows_hello_for_business_methods_request_builder.go │ │ │ ├── item_authentication_windows_hello_for_business_methods_windows_hello_for_business_authentication_method_item_request_builder.go │ │ │ ├── item_calendar_allowed_calendar_sharing_roles_with_user_request_builder.go │ │ │ ├── item_calendar_allowed_calendar_sharing_roles_with_user_response.go │ │ │ ├── item_calendar_calendar_permissions_calendar_permission_item_request_builder.go │ │ │ ├── item_calendar_calendar_permissions_count_request_builder.go │ │ │ ├── item_calendar_calendar_permissions_request_builder.go │ │ │ ├── item_calendar_calendar_view_count_request_builder.go │ │ │ ├── item_calendar_calendar_view_delta_request_builder.go │ │ │ ├── item_calendar_calendar_view_delta_response.go │ │ │ ├── item_calendar_calendar_view_event_item_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_accept_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_accept_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_attachments_count_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_attachments_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_calendar_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_cancel_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_cancel_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_decline_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_decline_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_extensions_count_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_extensions_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_forward_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_forward_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_count_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_delta_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_delta_response.go │ │ │ ├── item_calendar_calendar_view_item_instances_event_item_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_accept_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_accept_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_attachments_count_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_attachments_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_calendar_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_cancel_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_cancel_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_decline_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_decline_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_extensions_count_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_extensions_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_forward_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_forward_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_instances_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_instances_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendar_calendar_view_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendar_calendar_view_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendar_calendar_view_request_builder.go │ │ │ ├── item_calendar_events_count_request_builder.go │ │ │ ├── item_calendar_events_delta_request_builder.go │ │ │ ├── item_calendar_events_delta_response.go │ │ │ ├── item_calendar_events_event_item_request_builder.go │ │ │ ├── item_calendar_events_item_accept_post_request_body.go │ │ │ ├── item_calendar_events_item_accept_request_builder.go │ │ │ ├── item_calendar_events_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendar_events_item_attachments_count_request_builder.go │ │ │ ├── item_calendar_events_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendar_events_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendar_events_item_attachments_request_builder.go │ │ │ ├── item_calendar_events_item_calendar_request_builder.go │ │ │ ├── item_calendar_events_item_cancel_post_request_body.go │ │ │ ├── item_calendar_events_item_cancel_request_builder.go │ │ │ ├── item_calendar_events_item_decline_post_request_body.go │ │ │ ├── item_calendar_events_item_decline_request_builder.go │ │ │ ├── item_calendar_events_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendar_events_item_extensions_count_request_builder.go │ │ │ ├── item_calendar_events_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendar_events_item_extensions_request_builder.go │ │ │ ├── item_calendar_events_item_forward_post_request_body.go │ │ │ ├── item_calendar_events_item_forward_request_builder.go │ │ │ ├── item_calendar_events_item_instances_count_request_builder.go │ │ │ ├── item_calendar_events_item_instances_delta_request_builder.go │ │ │ ├── item_calendar_events_item_instances_delta_response.go │ │ │ ├── item_calendar_events_item_instances_event_item_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_accept_post_request_body.go │ │ │ ├── item_calendar_events_item_instances_item_accept_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_attachments_count_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendar_events_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_attachments_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_calendar_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_cancel_post_request_body.go │ │ │ ├── item_calendar_events_item_instances_item_cancel_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_decline_post_request_body.go │ │ │ ├── item_calendar_events_item_instances_item_decline_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_extensions_count_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_extensions_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_forward_post_request_body.go │ │ │ ├── item_calendar_events_item_instances_item_forward_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendar_events_item_instances_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendar_events_item_instances_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendar_events_item_instances_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendar_events_item_instances_request_builder.go │ │ │ ├── item_calendar_events_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_events_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_events_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_events_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_events_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_events_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_events_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendar_events_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendar_events_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendar_events_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendar_events_request_builder.go │ │ │ ├── item_calendar_get_schedule_post_request_body.go │ │ │ ├── item_calendar_get_schedule_request_builder.go │ │ │ ├── item_calendar_get_schedule_response.go │ │ │ ├── item_calendar_groups_calendar_group_item_request_builder.go │ │ │ ├── item_calendar_groups_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_calendar_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_allowed_calendar_sharing_roles_with_user_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_allowed_calendar_sharing_roles_with_user_response.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_permissions_calendar_permission_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_permissions_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_permissions_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_delta_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_delta_response.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_event_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_accept_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_accept_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_attachments_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_attachments_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_calendar_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_cancel_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_cancel_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_decline_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_decline_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_extensions_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_extensions_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_forward_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_forward_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_delta_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_delta_response.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_event_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_accept_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_accept_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_attachments_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_attachments_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_calendar_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_cancel_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_cancel_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_decline_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_decline_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_extensions_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_extensions_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_forward_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_forward_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_instances_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_calendar_view_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_delta_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_delta_response.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_event_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_accept_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_accept_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_attachments_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_attachments_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_calendar_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_cancel_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_cancel_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_decline_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_decline_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_extensions_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_extensions_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_forward_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_forward_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_delta_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_delta_response.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_event_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_accept_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_accept_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_attachments_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_attachments_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_calendar_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_cancel_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_cancel_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_decline_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_decline_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_extensions_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_extensions_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_forward_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_forward_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_instances_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_events_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_get_schedule_post_request_body.go │ │ │ ├── item_calendar_groups_item_calendars_item_get_schedule_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_get_schedule_response.go │ │ │ ├── item_calendar_groups_item_calendars_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_groups_item_calendars_request_builder.go │ │ │ ├── item_calendar_groups_request_builder.go │ │ │ ├── item_calendar_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_request_builder.go │ │ │ ├── item_calendar_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_view_count_request_builder.go │ │ │ ├── item_calendar_view_delta_request_builder.go │ │ │ ├── item_calendar_view_delta_response.go │ │ │ ├── item_calendar_view_event_item_request_builder.go │ │ │ ├── item_calendar_view_item_accept_post_request_body.go │ │ │ ├── item_calendar_view_item_accept_request_builder.go │ │ │ ├── item_calendar_view_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendar_view_item_attachments_count_request_builder.go │ │ │ ├── item_calendar_view_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendar_view_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendar_view_item_attachments_request_builder.go │ │ │ ├── item_calendar_view_item_calendar_request_builder.go │ │ │ ├── item_calendar_view_item_cancel_post_request_body.go │ │ │ ├── item_calendar_view_item_cancel_request_builder.go │ │ │ ├── item_calendar_view_item_decline_post_request_body.go │ │ │ ├── item_calendar_view_item_decline_request_builder.go │ │ │ ├── item_calendar_view_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendar_view_item_extensions_count_request_builder.go │ │ │ ├── item_calendar_view_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendar_view_item_extensions_request_builder.go │ │ │ ├── item_calendar_view_item_forward_post_request_body.go │ │ │ ├── item_calendar_view_item_forward_request_builder.go │ │ │ ├── item_calendar_view_item_instances_count_request_builder.go │ │ │ ├── item_calendar_view_item_instances_delta_request_builder.go │ │ │ ├── item_calendar_view_item_instances_delta_response.go │ │ │ ├── item_calendar_view_item_instances_event_item_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_accept_post_request_body.go │ │ │ ├── item_calendar_view_item_instances_item_accept_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_attachments_count_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendar_view_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_attachments_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_calendar_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_cancel_post_request_body.go │ │ │ ├── item_calendar_view_item_instances_item_cancel_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_decline_post_request_body.go │ │ │ ├── item_calendar_view_item_instances_item_decline_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_extensions_count_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_extensions_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_forward_post_request_body.go │ │ │ ├── item_calendar_view_item_instances_item_forward_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendar_view_item_instances_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendar_view_item_instances_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendar_view_item_instances_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendar_view_item_instances_request_builder.go │ │ │ ├── item_calendar_view_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_view_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_view_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_view_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendar_view_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendar_view_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendar_view_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendar_view_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendar_view_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendar_view_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendar_view_request_builder.go │ │ │ ├── item_calendars_calendar_item_request_builder.go │ │ │ ├── item_calendars_count_request_builder.go │ │ │ ├── item_calendars_item_allowed_calendar_sharing_roles_with_user_request_builder.go │ │ │ ├── item_calendars_item_allowed_calendar_sharing_roles_with_user_response.go │ │ │ ├── item_calendars_item_calendar_permissions_calendar_permission_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_permissions_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_permissions_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_delta_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_delta_response.go │ │ │ ├── item_calendars_item_calendar_view_event_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_accept_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_accept_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_attachments_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_attachments_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_calendar_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_cancel_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_cancel_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_decline_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_decline_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_extensions_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_extensions_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_forward_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_forward_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_delta_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_delta_response.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_event_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_accept_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_accept_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_attachments_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_attachments_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_calendar_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_cancel_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_cancel_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_decline_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_decline_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_extensions_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_extensions_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_forward_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_forward_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_instances_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendars_item_calendar_view_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendars_item_calendar_view_request_builder.go │ │ │ ├── item_calendars_item_events_count_request_builder.go │ │ │ ├── item_calendars_item_events_delta_request_builder.go │ │ │ ├── item_calendars_item_events_delta_response.go │ │ │ ├── item_calendars_item_events_event_item_request_builder.go │ │ │ ├── item_calendars_item_events_item_accept_post_request_body.go │ │ │ ├── item_calendars_item_events_item_accept_request_builder.go │ │ │ ├── item_calendars_item_events_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendars_item_events_item_attachments_count_request_builder.go │ │ │ ├── item_calendars_item_events_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendars_item_events_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendars_item_events_item_attachments_request_builder.go │ │ │ ├── item_calendars_item_events_item_calendar_request_builder.go │ │ │ ├── item_calendars_item_events_item_cancel_post_request_body.go │ │ │ ├── item_calendars_item_events_item_cancel_request_builder.go │ │ │ ├── item_calendars_item_events_item_decline_post_request_body.go │ │ │ ├── item_calendars_item_events_item_decline_request_builder.go │ │ │ ├── item_calendars_item_events_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendars_item_events_item_extensions_count_request_builder.go │ │ │ ├── item_calendars_item_events_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendars_item_events_item_extensions_request_builder.go │ │ │ ├── item_calendars_item_events_item_forward_post_request_body.go │ │ │ ├── item_calendars_item_events_item_forward_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_count_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_delta_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_delta_response.go │ │ │ ├── item_calendars_item_events_item_instances_event_item_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_accept_post_request_body.go │ │ │ ├── item_calendars_item_events_item_instances_item_accept_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_attachments_count_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_calendars_item_events_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_attachments_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_calendar_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_cancel_post_request_body.go │ │ │ ├── item_calendars_item_events_item_instances_item_cancel_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_decline_post_request_body.go │ │ │ ├── item_calendars_item_events_item_instances_item_decline_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_dismiss_reminder_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_extensions_count_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_extensions_extension_item_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_extensions_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_forward_post_request_body.go │ │ │ ├── item_calendars_item_events_item_instances_item_forward_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendars_item_events_item_instances_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendars_item_events_item_instances_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendars_item_events_item_instances_request_builder.go │ │ │ ├── item_calendars_item_events_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendars_item_events_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendars_item_events_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendars_item_events_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendars_item_events_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendars_item_events_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendars_item_events_item_snooze_reminder_post_request_body.go │ │ │ ├── item_calendars_item_events_item_snooze_reminder_request_builder.go │ │ │ ├── item_calendars_item_events_item_tentatively_accept_post_request_body.go │ │ │ ├── item_calendars_item_events_item_tentatively_accept_request_builder.go │ │ │ ├── item_calendars_item_events_request_builder.go │ │ │ ├── item_calendars_item_get_schedule_post_request_body.go │ │ │ ├── item_calendars_item_get_schedule_request_builder.go │ │ │ ├── item_calendars_item_get_schedule_response.go │ │ │ ├── item_calendars_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendars_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendars_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_calendars_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_calendars_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_calendars_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_calendars_request_builder.go │ │ │ ├── item_change_password_post_request_body.go │ │ │ ├── item_change_password_request_builder.go │ │ │ ├── item_chats_chat_item_request_builder.go │ │ │ ├── item_chats_count_request_builder.go │ │ │ ├── item_chats_get_all_messages_request_builder.go │ │ │ ├── item_chats_get_all_messages_response.go │ │ │ ├── item_chats_item_hide_for_user_post_request_body.go │ │ │ ├── item_chats_item_hide_for_user_request_builder.go │ │ │ ├── item_chats_item_installed_apps_count_request_builder.go │ │ │ ├── item_chats_item_installed_apps_item_teams_app_definition_request_builder.go │ │ │ ├── item_chats_item_installed_apps_item_teams_app_request_builder.go │ │ │ ├── item_chats_item_installed_apps_item_upgrade_request_builder.go │ │ │ ├── item_chats_item_installed_apps_request_builder.go │ │ │ ├── item_chats_item_installed_apps_teams_app_installation_item_request_builder.go │ │ │ ├── item_chats_item_last_message_preview_request_builder.go │ │ │ ├── item_chats_item_mark_chat_read_for_user_post_request_body.go │ │ │ ├── item_chats_item_mark_chat_read_for_user_request_builder.go │ │ │ ├── item_chats_item_mark_chat_unread_for_user_post_request_body.go │ │ │ ├── item_chats_item_mark_chat_unread_for_user_request_builder.go │ │ │ ├── item_chats_item_members_add_post_request_body.go │ │ │ ├── item_chats_item_members_add_request_builder.go │ │ │ ├── item_chats_item_members_add_response.go │ │ │ ├── item_chats_item_members_conversation_member_item_request_builder.go │ │ │ ├── item_chats_item_members_count_request_builder.go │ │ │ ├── item_chats_item_members_request_builder.go │ │ │ ├── item_chats_item_messages_chat_message_item_request_builder.go │ │ │ ├── item_chats_item_messages_count_request_builder.go │ │ │ ├── item_chats_item_messages_delta_request_builder.go │ │ │ ├── item_chats_item_messages_delta_response.go │ │ │ ├── item_chats_item_messages_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ ├── item_chats_item_messages_item_hosted_contents_count_request_builder.go │ │ │ ├── item_chats_item_messages_item_hosted_contents_request_builder.go │ │ │ ├── item_chats_item_messages_item_replies_chat_message_item_request_builder.go │ │ │ ├── item_chats_item_messages_item_replies_count_request_builder.go │ │ │ ├── item_chats_item_messages_item_replies_delta_request_builder.go │ │ │ ├── item_chats_item_messages_item_replies_delta_response.go │ │ │ ├── item_chats_item_messages_item_replies_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ ├── item_chats_item_messages_item_replies_item_hosted_contents_count_request_builder.go │ │ │ ├── item_chats_item_messages_item_replies_item_hosted_contents_request_builder.go │ │ │ ├── item_chats_item_messages_item_replies_item_soft_delete_request_builder.go │ │ │ ├── item_chats_item_messages_item_replies_item_undo_soft_delete_request_builder.go │ │ │ ├── item_chats_item_messages_item_replies_request_builder.go │ │ │ ├── item_chats_item_messages_item_soft_delete_request_builder.go │ │ │ ├── item_chats_item_messages_item_undo_soft_delete_request_builder.go │ │ │ ├── item_chats_item_messages_request_builder.go │ │ │ ├── item_chats_item_pinned_messages_count_request_builder.go │ │ │ ├── item_chats_item_pinned_messages_item_message_request_builder.go │ │ │ ├── item_chats_item_pinned_messages_pinned_chat_message_info_item_request_builder.go │ │ │ ├── item_chats_item_pinned_messages_request_builder.go │ │ │ ├── item_chats_item_send_activity_notification_post_request_body.go │ │ │ ├── item_chats_item_send_activity_notification_request_builder.go │ │ │ ├── item_chats_item_tabs_count_request_builder.go │ │ │ ├── item_chats_item_tabs_item_teams_app_request_builder.go │ │ │ ├── item_chats_item_tabs_request_builder.go │ │ │ ├── item_chats_item_tabs_teams_tab_item_request_builder.go │ │ │ ├── item_chats_item_unhide_for_user_post_request_body.go │ │ │ ├── item_chats_item_unhide_for_user_request_builder.go │ │ │ ├── item_chats_request_builder.go │ │ │ ├── item_check_member_groups_post_request_body.go │ │ │ ├── item_check_member_groups_request_builder.go │ │ │ ├── item_check_member_groups_response.go │ │ │ ├── item_check_member_objects_post_request_body.go │ │ │ ├── item_check_member_objects_request_builder.go │ │ │ ├── item_check_member_objects_response.go │ │ │ ├── item_contact_folders_contact_folder_item_request_builder.go │ │ │ ├── item_contact_folders_count_request_builder.go │ │ │ ├── item_contact_folders_delta_request_builder.go │ │ │ ├── item_contact_folders_delta_response.go │ │ │ ├── item_contact_folders_item_child_folders_contact_folder_item_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_count_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_delta_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_delta_response.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_contact_item_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_count_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_delta_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_delta_response.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_extensions_count_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_extensions_extension_item_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_extensions_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_photo_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_photo_value_content_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_contacts_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_contact_folders_item_child_folders_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_contact_item_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_count_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_delta_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_delta_response.go │ │ │ ├── item_contact_folders_item_contacts_item_extensions_count_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_item_extensions_extension_item_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_item_extensions_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_item_photo_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_item_photo_value_content_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_contact_folders_item_contacts_request_builder.go │ │ │ ├── item_contact_folders_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_contact_folders_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_contact_folders_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_contact_folders_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_contact_folders_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_contact_folders_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_contact_folders_request_builder.go │ │ │ ├── item_contacts_contact_item_request_builder.go │ │ │ ├── item_contacts_count_request_builder.go │ │ │ ├── item_contacts_delta_request_builder.go │ │ │ ├── item_contacts_delta_response.go │ │ │ ├── item_contacts_item_extensions_count_request_builder.go │ │ │ ├── item_contacts_item_extensions_extension_item_request_builder.go │ │ │ ├── item_contacts_item_extensions_request_builder.go │ │ │ ├── item_contacts_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_contacts_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_contacts_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_contacts_item_photo_request_builder.go │ │ │ ├── item_contacts_item_photo_value_content_request_builder.go │ │ │ ├── item_contacts_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_contacts_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_contacts_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_contacts_request_builder.go │ │ │ ├── item_created_objects_count_request_builder.go │ │ │ ├── item_created_objects_directory_object_item_request_builder.go │ │ │ ├── item_created_objects_graph_service_principal_count_request_builder.go │ │ │ ├── item_created_objects_graph_service_principal_request_builder.go │ │ │ ├── item_created_objects_item_graph_service_principal_request_builder.go │ │ │ ├── item_created_objects_request_builder.go │ │ │ ├── item_device_management_troubleshooting_events_count_request_builder.go │ │ │ ├── item_device_management_troubleshooting_events_device_management_troubleshooting_event_item_request_builder.go │ │ │ ├── item_device_management_troubleshooting_events_request_builder.go │ │ │ ├── item_direct_reports_count_request_builder.go │ │ │ ├── item_direct_reports_directory_object_item_request_builder.go │ │ │ ├── item_direct_reports_graph_org_contact_count_request_builder.go │ │ │ ├── item_direct_reports_graph_org_contact_request_builder.go │ │ │ ├── item_direct_reports_graph_user_count_request_builder.go │ │ │ ├── item_direct_reports_graph_user_request_builder.go │ │ │ ├── item_direct_reports_item_graph_org_contact_request_builder.go │ │ │ ├── item_direct_reports_item_graph_user_request_builder.go │ │ │ ├── item_direct_reports_request_builder.go │ │ │ ├── item_drive_request_builder.go │ │ │ ├── item_drives_count_request_builder.go │ │ │ ├── item_drives_drive_item_request_builder.go │ │ │ ├── item_drives_request_builder.go │ │ │ ├── item_events_count_request_builder.go │ │ │ ├── item_events_delta_request_builder.go │ │ │ ├── item_events_delta_response.go │ │ │ ├── item_events_event_item_request_builder.go │ │ │ ├── item_events_item_accept_post_request_body.go │ │ │ ├── item_events_item_accept_request_builder.go │ │ │ ├── item_events_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_events_item_attachments_count_request_builder.go │ │ │ ├── item_events_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_events_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_events_item_attachments_request_builder.go │ │ │ ├── item_events_item_calendar_request_builder.go │ │ │ ├── item_events_item_cancel_post_request_body.go │ │ │ ├── item_events_item_cancel_request_builder.go │ │ │ ├── item_events_item_decline_post_request_body.go │ │ │ ├── item_events_item_decline_request_builder.go │ │ │ ├── item_events_item_dismiss_reminder_request_builder.go │ │ │ ├── item_events_item_extensions_count_request_builder.go │ │ │ ├── item_events_item_extensions_extension_item_request_builder.go │ │ │ ├── item_events_item_extensions_request_builder.go │ │ │ ├── item_events_item_forward_post_request_body.go │ │ │ ├── item_events_item_forward_request_builder.go │ │ │ ├── item_events_item_instances_count_request_builder.go │ │ │ ├── item_events_item_instances_delta_request_builder.go │ │ │ ├── item_events_item_instances_delta_response.go │ │ │ ├── item_events_item_instances_event_item_request_builder.go │ │ │ ├── item_events_item_instances_item_accept_post_request_body.go │ │ │ ├── item_events_item_instances_item_accept_request_builder.go │ │ │ ├── item_events_item_instances_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_events_item_instances_item_attachments_count_request_builder.go │ │ │ ├── item_events_item_instances_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_events_item_instances_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_events_item_instances_item_attachments_request_builder.go │ │ │ ├── item_events_item_instances_item_calendar_request_builder.go │ │ │ ├── item_events_item_instances_item_cancel_post_request_body.go │ │ │ ├── item_events_item_instances_item_cancel_request_builder.go │ │ │ ├── item_events_item_instances_item_decline_post_request_body.go │ │ │ ├── item_events_item_instances_item_decline_request_builder.go │ │ │ ├── item_events_item_instances_item_dismiss_reminder_request_builder.go │ │ │ ├── item_events_item_instances_item_extensions_count_request_builder.go │ │ │ ├── item_events_item_instances_item_extensions_extension_item_request_builder.go │ │ │ ├── item_events_item_instances_item_extensions_request_builder.go │ │ │ ├── item_events_item_instances_item_forward_post_request_body.go │ │ │ ├── item_events_item_instances_item_forward_request_builder.go │ │ │ ├── item_events_item_instances_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_events_item_instances_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_events_item_instances_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_events_item_instances_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_events_item_instances_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_events_item_instances_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_events_item_instances_item_snooze_reminder_post_request_body.go │ │ │ ├── item_events_item_instances_item_snooze_reminder_request_builder.go │ │ │ ├── item_events_item_instances_item_tentatively_accept_post_request_body.go │ │ │ ├── item_events_item_instances_item_tentatively_accept_request_builder.go │ │ │ ├── item_events_item_instances_request_builder.go │ │ │ ├── item_events_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_events_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_events_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_events_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_events_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_events_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_events_item_snooze_reminder_post_request_body.go │ │ │ ├── item_events_item_snooze_reminder_request_builder.go │ │ │ ├── item_events_item_tentatively_accept_post_request_body.go │ │ │ ├── item_events_item_tentatively_accept_request_builder.go │ │ │ ├── item_events_request_builder.go │ │ │ ├── item_export_device_and_app_management_data_request_builder.go │ │ │ ├── item_export_device_and_app_management_data_with_skip_with_top_request_builder.go │ │ │ ├── item_export_personal_data_post_request_body.go │ │ │ ├── item_export_personal_data_request_builder.go │ │ │ ├── item_extensions_count_request_builder.go │ │ │ ├── item_extensions_extension_item_request_builder.go │ │ │ ├── item_extensions_request_builder.go │ │ │ ├── item_find_meeting_times_post_request_body.go │ │ │ ├── item_find_meeting_times_request_builder.go │ │ │ ├── item_followed_sites_count_request_builder.go │ │ │ ├── item_followed_sites_request_builder.go │ │ │ ├── item_followed_sites_site_item_request_builder.go │ │ │ ├── item_get_mail_tips_post_request_body.go │ │ │ ├── item_get_mail_tips_request_builder.go │ │ │ ├── item_get_mail_tips_response.go │ │ │ ├── item_get_managed_app_diagnostic_statuses_request_builder.go │ │ │ ├── item_get_managed_app_diagnostic_statuses_response.go │ │ │ ├── item_get_managed_app_policies_request_builder.go │ │ │ ├── item_get_managed_app_policies_response.go │ │ │ ├── item_get_managed_devices_with_app_failures_request_builder.go │ │ │ ├── item_get_managed_devices_with_app_failures_response.go │ │ │ ├── item_get_member_groups_post_request_body.go │ │ │ ├── item_get_member_groups_request_builder.go │ │ │ ├── item_get_member_groups_response.go │ │ │ ├── item_get_member_objects_post_request_body.go │ │ │ ├── item_get_member_objects_request_builder.go │ │ │ ├── item_get_member_objects_response.go │ │ │ ├── item_inference_classification_overrides_count_request_builder.go │ │ │ ├── item_inference_classification_overrides_inference_classification_override_item_request_builder.go │ │ │ ├── item_inference_classification_overrides_request_builder.go │ │ │ ├── item_inference_classification_request_builder.go │ │ │ ├── item_insights_request_builder.go │ │ │ ├── item_insights_shared_count_request_builder.go │ │ │ ├── item_insights_shared_item_last_shared_method_request_builder.go │ │ │ ├── item_insights_shared_item_resource_request_builder.go │ │ │ ├── item_insights_shared_request_builder.go │ │ │ ├── item_insights_shared_shared_insight_item_request_builder.go │ │ │ ├── item_insights_trending_count_request_builder.go │ │ │ ├── item_insights_trending_item_resource_request_builder.go │ │ │ ├── item_insights_trending_request_builder.go │ │ │ ├── item_insights_trending_trending_item_request_builder.go │ │ │ ├── item_insights_used_count_request_builder.go │ │ │ ├── item_insights_used_item_resource_request_builder.go │ │ │ ├── item_insights_used_request_builder.go │ │ │ ├── item_insights_used_used_insight_item_request_builder.go │ │ │ ├── item_joined_teams_count_request_builder.go │ │ │ ├── item_joined_teams_get_all_messages_request_builder.go │ │ │ ├── item_joined_teams_get_all_messages_response.go │ │ │ ├── item_joined_teams_item_all_channels_channel_item_request_builder.go │ │ │ ├── item_joined_teams_item_all_channels_count_request_builder.go │ │ │ ├── item_joined_teams_item_all_channels_request_builder.go │ │ │ ├── item_joined_teams_item_archive_post_request_body.go │ │ │ ├── item_joined_teams_item_archive_request_builder.go │ │ │ ├── item_joined_teams_item_channels_channel_item_request_builder.go │ │ │ ├── item_joined_teams_item_channels_count_request_builder.go │ │ │ ├── item_joined_teams_item_channels_get_all_messages_request_builder.go │ │ │ ├── item_joined_teams_item_channels_get_all_messages_response.go │ │ │ ├── item_joined_teams_item_channels_item_complete_migration_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_response.go │ │ │ ├── item_joined_teams_item_channels_item_files_folder_content_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_files_folder_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_members_add_post_request_body.go │ │ │ ├── item_joined_teams_item_channels_item_members_add_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_members_add_response.go │ │ │ ├── item_joined_teams_item_channels_item_members_conversation_member_item_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_members_count_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_members_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_chat_message_item_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_count_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_delta_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_delta_response.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_hosted_contents_count_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_hosted_contents_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_replies_chat_message_item_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_replies_count_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_replies_delta_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_replies_delta_response.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_replies_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_replies_item_hosted_contents_count_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_replies_item_hosted_contents_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_replies_item_soft_delete_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_replies_item_undo_soft_delete_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_replies_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_soft_delete_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_item_undo_soft_delete_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_messages_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_provision_email_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_remove_email_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_shared_with_teams_count_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_shared_with_teams_item_allowed_members_conversation_member_item_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_shared_with_teams_item_allowed_members_count_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_shared_with_teams_item_allowed_members_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_shared_with_teams_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_shared_with_teams_shared_with_channel_team_info_item_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_tabs_count_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_tabs_item_teams_app_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_tabs_request_builder.go │ │ │ ├── item_joined_teams_item_channels_item_tabs_teams_tab_item_request_builder.go │ │ │ ├── item_joined_teams_item_channels_request_builder.go │ │ │ ├── item_joined_teams_item_clone_post_request_body.go │ │ │ ├── item_joined_teams_item_clone_request_builder.go │ │ │ ├── item_joined_teams_item_complete_migration_request_builder.go │ │ │ ├── item_joined_teams_item_group_request_builder.go │ │ │ ├── item_joined_teams_item_incoming_channels_channel_item_request_builder.go │ │ │ ├── item_joined_teams_item_incoming_channels_count_request_builder.go │ │ │ ├── item_joined_teams_item_incoming_channels_request_builder.go │ │ │ ├── item_joined_teams_item_installed_apps_count_request_builder.go │ │ │ ├── item_joined_teams_item_installed_apps_item_teams_app_definition_request_builder.go │ │ │ ├── item_joined_teams_item_installed_apps_item_teams_app_request_builder.go │ │ │ ├── item_joined_teams_item_installed_apps_item_upgrade_request_builder.go │ │ │ ├── item_joined_teams_item_installed_apps_request_builder.go │ │ │ ├── item_joined_teams_item_installed_apps_teams_app_installation_item_request_builder.go │ │ │ ├── item_joined_teams_item_members_add_post_request_body.go │ │ │ ├── item_joined_teams_item_members_add_request_builder.go │ │ │ ├── item_joined_teams_item_members_add_response.go │ │ │ ├── item_joined_teams_item_members_conversation_member_item_request_builder.go │ │ │ ├── item_joined_teams_item_members_count_request_builder.go │ │ │ ├── item_joined_teams_item_members_request_builder.go │ │ │ ├── item_joined_teams_item_operations_count_request_builder.go │ │ │ ├── item_joined_teams_item_operations_request_builder.go │ │ │ ├── item_joined_teams_item_operations_teams_async_operation_item_request_builder.go │ │ │ ├── item_joined_teams_item_photo_request_builder.go │ │ │ ├── item_joined_teams_item_photo_value_content_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_complete_migration_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_does_user_have_accessuser_id_user_id_tenant_id_tenant_id_user_principal_name_user_principal_name_response.go │ │ │ ├── item_joined_teams_item_primary_channel_files_folder_content_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_files_folder_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_members_add_post_request_body.go │ │ │ ├── item_joined_teams_item_primary_channel_members_add_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_members_add_response.go │ │ │ ├── item_joined_teams_item_primary_channel_members_conversation_member_item_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_members_count_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_members_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_chat_message_item_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_count_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_delta_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_delta_response.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_hosted_contents_count_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_hosted_contents_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_replies_chat_message_item_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_replies_count_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_replies_delta_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_replies_delta_response.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_replies_item_hosted_contents_chat_message_hosted_content_item_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_replies_item_hosted_contents_count_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_replies_item_hosted_contents_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_replies_item_soft_delete_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_replies_item_undo_soft_delete_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_replies_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_soft_delete_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_item_undo_soft_delete_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_messages_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_provision_email_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_remove_email_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_shared_with_teams_count_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_shared_with_teams_item_allowed_members_conversation_member_item_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_shared_with_teams_item_allowed_members_count_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_shared_with_teams_item_allowed_members_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_shared_with_teams_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_shared_with_teams_shared_with_channel_team_info_item_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_tabs_count_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_tabs_item_teams_app_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_tabs_request_builder.go │ │ │ ├── item_joined_teams_item_primary_channel_tabs_teams_tab_item_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_offer_shift_requests_count_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_offer_shift_requests_offer_shift_request_item_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_offer_shift_requests_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_open_shift_change_requests_count_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_open_shift_change_requests_open_shift_change_request_item_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_open_shift_change_requests_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_open_shifts_count_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_open_shifts_open_shift_item_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_open_shifts_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_scheduling_groups_count_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_scheduling_groups_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_scheduling_groups_scheduling_group_item_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_share_post_request_body.go │ │ │ ├── item_joined_teams_item_schedule_share_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_shifts_count_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_shifts_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_shifts_shift_item_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_swap_shifts_change_requests_count_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_swap_shifts_change_requests_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_swap_shifts_change_requests_swap_shifts_change_request_item_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_time_off_reasons_count_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_time_off_reasons_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_time_off_reasons_time_off_reason_item_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_time_off_requests_count_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_time_off_requests_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_time_off_requests_time_off_request_item_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_times_off_count_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_times_off_request_builder.go │ │ │ ├── item_joined_teams_item_schedule_times_off_time_off_item_request_builder.go │ │ │ ├── item_joined_teams_item_send_activity_notification_post_request_body.go │ │ │ ├── item_joined_teams_item_send_activity_notification_request_builder.go │ │ │ ├── item_joined_teams_item_tags_count_request_builder.go │ │ │ ├── item_joined_teams_item_tags_item_members_count_request_builder.go │ │ │ ├── item_joined_teams_item_tags_item_members_request_builder.go │ │ │ ├── item_joined_teams_item_tags_item_members_teamwork_tag_member_item_request_builder.go │ │ │ ├── item_joined_teams_item_tags_request_builder.go │ │ │ ├── item_joined_teams_item_tags_teamwork_tag_item_request_builder.go │ │ │ ├── item_joined_teams_item_template_request_builder.go │ │ │ ├── item_joined_teams_item_unarchive_request_builder.go │ │ │ ├── item_joined_teams_request_builder.go │ │ │ ├── item_joined_teams_team_item_request_builder.go │ │ │ ├── item_license_details_count_request_builder.go │ │ │ ├── item_license_details_license_details_item_request_builder.go │ │ │ ├── item_license_details_request_builder.go │ │ │ ├── item_mail_folders_count_request_builder.go │ │ │ ├── item_mail_folders_delta_request_builder.go │ │ │ ├── item_mail_folders_delta_response.go │ │ │ ├── item_mail_folders_item_child_folders_count_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_delta_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_delta_response.go │ │ │ ├── item_mail_folders_item_child_folders_item_copy_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_copy_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_message_rules_count_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_message_rules_message_rule_item_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_message_rules_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_count_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_delta_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_delta_response.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_attachments_count_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_attachments_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_copy_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_copy_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_create_forward_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_create_forward_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_create_reply_all_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_create_reply_all_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_create_reply_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_create_reply_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_extensions_count_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_extensions_extension_item_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_extensions_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_forward_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_forward_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_move_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_move_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_reply_all_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_reply_all_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_reply_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_reply_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_send_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_item_value_content_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_message_item_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_messages_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_move_post_request_body.go │ │ │ ├── item_mail_folders_item_child_folders_item_move_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_mail_folder_item_request_builder.go │ │ │ ├── item_mail_folders_item_child_folders_request_builder.go │ │ │ ├── item_mail_folders_item_copy_post_request_body.go │ │ │ ├── item_mail_folders_item_copy_request_builder.go │ │ │ ├── item_mail_folders_item_message_rules_count_request_builder.go │ │ │ ├── item_mail_folders_item_message_rules_message_rule_item_request_builder.go │ │ │ ├── item_mail_folders_item_message_rules_request_builder.go │ │ │ ├── item_mail_folders_item_messages_count_request_builder.go │ │ │ ├── item_mail_folders_item_messages_delta_request_builder.go │ │ │ ├── item_mail_folders_item_messages_delta_response.go │ │ │ ├── item_mail_folders_item_messages_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_attachments_count_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_mail_folders_item_messages_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_attachments_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_copy_post_request_body.go │ │ │ ├── item_mail_folders_item_messages_item_copy_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_create_forward_post_request_body.go │ │ │ ├── item_mail_folders_item_messages_item_create_forward_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_create_reply_all_post_request_body.go │ │ │ ├── item_mail_folders_item_messages_item_create_reply_all_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_create_reply_post_request_body.go │ │ │ ├── item_mail_folders_item_messages_item_create_reply_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_extensions_count_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_extensions_extension_item_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_extensions_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_forward_post_request_body.go │ │ │ ├── item_mail_folders_item_messages_item_forward_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_move_post_request_body.go │ │ │ ├── item_mail_folders_item_messages_item_move_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_reply_all_post_request_body.go │ │ │ ├── item_mail_folders_item_messages_item_reply_all_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_reply_post_request_body.go │ │ │ ├── item_mail_folders_item_messages_item_reply_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_send_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_mail_folders_item_messages_item_value_content_request_builder.go │ │ │ ├── item_mail_folders_item_messages_message_item_request_builder.go │ │ │ ├── item_mail_folders_item_messages_request_builder.go │ │ │ ├── item_mail_folders_item_move_post_request_body.go │ │ │ ├── item_mail_folders_item_move_request_builder.go │ │ │ ├── item_mail_folders_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_mail_folders_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_mail_folders_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_mail_folders_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_mail_folders_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_mail_folders_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_mail_folders_mail_folder_item_request_builder.go │ │ │ ├── item_mail_folders_request_builder.go │ │ │ ├── item_managed_app_registrations_count_request_builder.go │ │ │ ├── item_managed_app_registrations_managed_app_registration_item_request_builder.go │ │ │ ├── item_managed_app_registrations_request_builder.go │ │ │ ├── item_managed_devices_count_request_builder.go │ │ │ ├── item_managed_devices_item_bypass_activation_lock_request_builder.go │ │ │ ├── item_managed_devices_item_clean_windows_device_post_request_body.go │ │ │ ├── item_managed_devices_item_clean_windows_device_request_builder.go │ │ │ ├── item_managed_devices_item_delete_user_from_shared_apple_device_post_request_body.go │ │ │ ├── item_managed_devices_item_delete_user_from_shared_apple_device_request_builder.go │ │ │ ├── item_managed_devices_item_device_category_request_builder.go │ │ │ ├── item_managed_devices_item_device_compliance_policy_states_count_request_builder.go │ │ │ ├── item_managed_devices_item_device_compliance_policy_states_device_compliance_policy_state_item_request_builder.go │ │ │ ├── item_managed_devices_item_device_compliance_policy_states_request_builder.go │ │ │ ├── item_managed_devices_item_device_configuration_states_count_request_builder.go │ │ │ ├── item_managed_devices_item_device_configuration_states_device_configuration_state_item_request_builder.go │ │ │ ├── item_managed_devices_item_device_configuration_states_request_builder.go │ │ │ ├── item_managed_devices_item_disable_lost_mode_request_builder.go │ │ │ ├── item_managed_devices_item_locate_device_request_builder.go │ │ │ ├── item_managed_devices_item_logout_shared_apple_device_active_user_request_builder.go │ │ │ ├── item_managed_devices_item_reboot_now_request_builder.go │ │ │ ├── item_managed_devices_item_recover_passcode_request_builder.go │ │ │ ├── item_managed_devices_item_remote_lock_request_builder.go │ │ │ ├── item_managed_devices_item_request_remote_assistance_request_builder.go │ │ │ ├── item_managed_devices_item_reset_passcode_request_builder.go │ │ │ ├── item_managed_devices_item_retire_request_builder.go │ │ │ ├── item_managed_devices_item_shut_down_request_builder.go │ │ │ ├── item_managed_devices_item_sync_device_request_builder.go │ │ │ ├── item_managed_devices_item_update_windows_device_account_post_request_body.go │ │ │ ├── item_managed_devices_item_update_windows_device_account_request_builder.go │ │ │ ├── item_managed_devices_item_users_request_builder.go │ │ │ ├── item_managed_devices_item_windows_defender_scan_post_request_body.go │ │ │ ├── item_managed_devices_item_windows_defender_scan_request_builder.go │ │ │ ├── item_managed_devices_item_windows_defender_update_signatures_request_builder.go │ │ │ ├── item_managed_devices_item_wipe_post_request_body.go │ │ │ ├── item_managed_devices_item_wipe_request_builder.go │ │ │ ├── item_managed_devices_managed_device_item_request_builder.go │ │ │ ├── item_managed_devices_request_builder.go │ │ │ ├── item_manager_ref_request_builder.go │ │ │ ├── item_manager_request_builder.go │ │ │ ├── item_member_of_count_request_builder.go │ │ │ ├── item_member_of_directory_object_item_request_builder.go │ │ │ ├── item_member_of_graph_administrative_unit_count_request_builder.go │ │ │ ├── item_member_of_graph_administrative_unit_request_builder.go │ │ │ ├── item_member_of_graph_group_count_request_builder.go │ │ │ ├── item_member_of_graph_group_request_builder.go │ │ │ ├── item_member_of_item_graph_administrative_unit_request_builder.go │ │ │ ├── item_member_of_item_graph_group_request_builder.go │ │ │ ├── item_member_of_request_builder.go │ │ │ ├── item_messages_count_request_builder.go │ │ │ ├── item_messages_delta_request_builder.go │ │ │ ├── item_messages_delta_response.go │ │ │ ├── item_messages_item_attachments_attachment_item_request_builder.go │ │ │ ├── item_messages_item_attachments_count_request_builder.go │ │ │ ├── item_messages_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_messages_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_messages_item_attachments_request_builder.go │ │ │ ├── item_messages_item_copy_post_request_body.go │ │ │ ├── item_messages_item_copy_request_builder.go │ │ │ ├── item_messages_item_create_forward_post_request_body.go │ │ │ ├── item_messages_item_create_forward_request_builder.go │ │ │ ├── item_messages_item_create_reply_all_post_request_body.go │ │ │ ├── item_messages_item_create_reply_all_request_builder.go │ │ │ ├── item_messages_item_create_reply_post_request_body.go │ │ │ ├── item_messages_item_create_reply_request_builder.go │ │ │ ├── item_messages_item_extensions_count_request_builder.go │ │ │ ├── item_messages_item_extensions_extension_item_request_builder.go │ │ │ ├── item_messages_item_extensions_request_builder.go │ │ │ ├── item_messages_item_forward_post_request_body.go │ │ │ ├── item_messages_item_forward_request_builder.go │ │ │ ├── item_messages_item_move_post_request_body.go │ │ │ ├── item_messages_item_move_request_builder.go │ │ │ ├── item_messages_item_multi_value_extended_properties_count_request_builder.go │ │ │ ├── item_messages_item_multi_value_extended_properties_multi_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_messages_item_multi_value_extended_properties_request_builder.go │ │ │ ├── item_messages_item_reply_all_post_request_body.go │ │ │ ├── item_messages_item_reply_all_request_builder.go │ │ │ ├── item_messages_item_reply_post_request_body.go │ │ │ ├── item_messages_item_reply_request_builder.go │ │ │ ├── item_messages_item_send_request_builder.go │ │ │ ├── item_messages_item_single_value_extended_properties_count_request_builder.go │ │ │ ├── item_messages_item_single_value_extended_properties_request_builder.go │ │ │ ├── item_messages_item_single_value_extended_properties_single_value_legacy_extended_property_item_request_builder.go │ │ │ ├── item_messages_item_value_content_request_builder.go │ │ │ ├── item_messages_message_item_request_builder.go │ │ │ ├── item_messages_request_builder.go │ │ │ ├── item_oauth2_permission_grants_count_request_builder.go │ │ │ ├── item_oauth2_permission_grants_o_auth2_permission_grant_item_request_builder.go │ │ │ ├── item_oauth2_permission_grants_request_builder.go │ │ │ ├── item_onenote_notebooks_count_request_builder.go │ │ │ ├── item_onenote_notebooks_get_notebook_from_web_url_post_request_body.go │ │ │ ├── item_onenote_notebooks_get_notebook_from_web_url_request_builder.go │ │ │ ├── item_onenote_notebooks_get_recent_notebooks_with_include_personal_notebooks_request_builder.go │ │ │ ├── item_onenote_notebooks_get_recent_notebooks_with_include_personal_notebooks_response.go │ │ │ ├── item_onenote_notebooks_item_copy_notebook_post_request_body.go │ │ │ ├── item_onenote_notebooks_item_copy_notebook_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_count_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_parent_section_group_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_section_groups_count_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_section_groups_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_section_groups_section_group_item_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_count_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_notebook_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_copy_to_section_group_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_count_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_content_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_item_preview_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_pages_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_item_parent_section_group_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_onenote_section_item_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_item_sections_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_request_builder.go │ │ │ ├── item_onenote_notebooks_item_section_groups_section_group_item_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_count_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_notebook_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ ├── item_onenote_notebooks_item_sections_item_copy_to_section_group_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_count_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_content_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_item_preview_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_pages_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_item_parent_section_group_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_onenote_section_item_request_builder.go │ │ │ ├── item_onenote_notebooks_item_sections_request_builder.go │ │ │ ├── item_onenote_notebooks_notebook_item_request_builder.go │ │ │ ├── item_onenote_notebooks_request_builder.go │ │ │ ├── item_onenote_operations_count_request_builder.go │ │ │ ├── item_onenote_operations_onenote_operation_item_request_builder.go │ │ │ ├── item_onenote_operations_request_builder.go │ │ │ ├── item_onenote_pages_count_request_builder.go │ │ │ ├── item_onenote_pages_item_content_request_builder.go │ │ │ ├── item_onenote_pages_item_copy_to_section_post_request_body.go │ │ │ ├── item_onenote_pages_item_copy_to_section_request_builder.go │ │ │ ├── item_onenote_pages_item_onenote_patch_content_post_request_body.go │ │ │ ├── item_onenote_pages_item_onenote_patch_content_request_builder.go │ │ │ ├── item_onenote_pages_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_pages_item_parent_section_request_builder.go │ │ │ ├── item_onenote_pages_item_preview_request_builder.go │ │ │ ├── item_onenote_pages_onenote_page_item_request_builder.go │ │ │ ├── item_onenote_pages_request_builder.go │ │ │ ├── item_onenote_request_builder.go │ │ │ ├── item_onenote_resources_count_request_builder.go │ │ │ ├── item_onenote_resources_item_content_request_builder.go │ │ │ ├── item_onenote_resources_onenote_resource_item_request_builder.go │ │ │ ├── item_onenote_resources_request_builder.go │ │ │ ├── item_onenote_section_groups_count_request_builder.go │ │ │ ├── item_onenote_section_groups_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_section_groups_item_parent_section_group_request_builder.go │ │ │ ├── item_onenote_section_groups_item_section_groups_count_request_builder.go │ │ │ ├── item_onenote_section_groups_item_section_groups_request_builder.go │ │ │ ├── item_onenote_section_groups_item_section_groups_section_group_item_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_count_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_notebook_post_request_body.go │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_notebook_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_section_group_post_request_body.go │ │ │ ├── item_onenote_section_groups_item_sections_item_copy_to_section_group_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_count_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_content_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_parent_section_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_item_preview_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_onenote_page_item_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_pages_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_item_parent_section_group_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_onenote_section_item_request_builder.go │ │ │ ├── item_onenote_section_groups_item_sections_request_builder.go │ │ │ ├── item_onenote_section_groups_request_builder.go │ │ │ ├── item_onenote_section_groups_section_group_item_request_builder.go │ │ │ ├── item_onenote_sections_count_request_builder.go │ │ │ ├── item_onenote_sections_item_copy_to_notebook_post_request_body.go │ │ │ ├── item_onenote_sections_item_copy_to_notebook_request_builder.go │ │ │ ├── item_onenote_sections_item_copy_to_section_group_post_request_body.go │ │ │ ├── item_onenote_sections_item_copy_to_section_group_request_builder.go │ │ │ ├── item_onenote_sections_item_pages_count_request_builder.go │ │ │ ├── item_onenote_sections_item_pages_item_content_request_builder.go │ │ │ ├── item_onenote_sections_item_pages_item_copy_to_section_post_request_body.go │ │ │ ├── item_onenote_sections_item_pages_item_copy_to_section_request_builder.go │ │ │ ├── item_onenote_sections_item_pages_item_onenote_patch_content_post_request_body.go │ │ │ ├── item_onenote_sections_item_pages_item_onenote_patch_content_request_builder.go │ │ │ ├── item_onenote_sections_item_pages_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_sections_item_pages_item_parent_section_request_builder.go │ │ │ ├── item_onenote_sections_item_pages_item_preview_request_builder.go │ │ │ ├── item_onenote_sections_item_pages_onenote_page_item_request_builder.go │ │ │ ├── item_onenote_sections_item_pages_request_builder.go │ │ │ ├── item_onenote_sections_item_parent_notebook_request_builder.go │ │ │ ├── item_onenote_sections_item_parent_section_group_request_builder.go │ │ │ ├── item_onenote_sections_onenote_section_item_request_builder.go │ │ │ ├── item_onenote_sections_request_builder.go │ │ │ ├── item_online_meetings_count_request_builder.go │ │ │ ├── item_online_meetings_create_or_get_post_request_body.go │ │ │ ├── item_online_meetings_create_or_get_request_builder.go │ │ │ ├── item_online_meetings_item_attendance_reports_count_request_builder.go │ │ │ ├── item_online_meetings_item_attendance_reports_item_attendance_records_attendance_record_item_request_builder.go │ │ │ ├── item_online_meetings_item_attendance_reports_item_attendance_records_count_request_builder.go │ │ │ ├── item_online_meetings_item_attendance_reports_item_attendance_records_request_builder.go │ │ │ ├── item_online_meetings_item_attendance_reports_meeting_attendance_report_item_request_builder.go │ │ │ ├── item_online_meetings_item_attendance_reports_request_builder.go │ │ │ ├── item_online_meetings_item_attendee_report_request_builder.go │ │ │ ├── item_online_meetings_online_meeting_item_request_builder.go │ │ │ ├── item_online_meetings_request_builder.go │ │ │ ├── item_outlook_master_categories_count_request_builder.go │ │ │ ├── item_outlook_master_categories_outlook_category_item_request_builder.go │ │ │ ├── item_outlook_master_categories_request_builder.go │ │ │ ├── item_outlook_request_builder.go │ │ │ ├── item_outlook_supported_languages_request_builder.go │ │ │ ├── item_outlook_supported_languages_response.go │ │ │ ├── item_outlook_supported_time_zones_request_builder.go │ │ │ ├── item_outlook_supported_time_zones_response.go │ │ │ ├── item_outlook_supported_time_zones_with_time_zone_standard_request_builder.go │ │ │ ├── item_outlook_supported_time_zones_with_time_zone_standard_response.go │ │ │ ├── item_owned_devices_count_request_builder.go │ │ │ ├── item_owned_devices_directory_object_item_request_builder.go │ │ │ ├── item_owned_devices_graph_app_role_assignment_count_request_builder.go │ │ │ ├── item_owned_devices_graph_app_role_assignment_request_builder.go │ │ │ ├── item_owned_devices_graph_device_count_request_builder.go │ │ │ ├── item_owned_devices_graph_device_request_builder.go │ │ │ ├── item_owned_devices_graph_endpoint_count_request_builder.go │ │ │ ├── item_owned_devices_graph_endpoint_request_builder.go │ │ │ ├── item_owned_devices_item_graph_app_role_assignment_request_builder.go │ │ │ ├── item_owned_devices_item_graph_device_request_builder.go │ │ │ ├── item_owned_devices_item_graph_endpoint_request_builder.go │ │ │ ├── item_owned_devices_request_builder.go │ │ │ ├── item_owned_objects_count_request_builder.go │ │ │ ├── item_owned_objects_directory_object_item_request_builder.go │ │ │ ├── item_owned_objects_graph_application_count_request_builder.go │ │ │ ├── item_owned_objects_graph_application_request_builder.go │ │ │ ├── item_owned_objects_graph_group_count_request_builder.go │ │ │ ├── item_owned_objects_graph_group_request_builder.go │ │ │ ├── item_owned_objects_graph_service_principal_count_request_builder.go │ │ │ ├── item_owned_objects_graph_service_principal_request_builder.go │ │ │ ├── item_owned_objects_item_graph_application_request_builder.go │ │ │ ├── item_owned_objects_item_graph_group_request_builder.go │ │ │ ├── item_owned_objects_item_graph_service_principal_request_builder.go │ │ │ ├── item_owned_objects_request_builder.go │ │ │ ├── item_people_count_request_builder.go │ │ │ ├── item_people_person_item_request_builder.go │ │ │ ├── item_people_request_builder.go │ │ │ ├── item_photo_request_builder.go │ │ │ ├── item_photo_value_content_request_builder.go │ │ │ ├── item_photos_count_request_builder.go │ │ │ ├── item_photos_item_value_content_request_builder.go │ │ │ ├── item_photos_profile_photo_item_request_builder.go │ │ │ ├── item_photos_request_builder.go │ │ │ ├── item_planner_plans_count_request_builder.go │ │ │ ├── item_planner_plans_item_buckets_count_request_builder.go │ │ │ ├── item_planner_plans_item_buckets_item_tasks_count_request_builder.go │ │ │ ├── item_planner_plans_item_buckets_item_tasks_item_assigned_to_task_board_format_request_builder.go │ │ │ ├── item_planner_plans_item_buckets_item_tasks_item_bucket_task_board_format_request_builder.go │ │ │ ├── item_planner_plans_item_buckets_item_tasks_item_details_request_builder.go │ │ │ ├── item_planner_plans_item_buckets_item_tasks_item_progress_task_board_format_request_builder.go │ │ │ ├── item_planner_plans_item_buckets_item_tasks_planner_task_item_request_builder.go │ │ │ ├── item_planner_plans_item_buckets_item_tasks_request_builder.go │ │ │ ├── item_planner_plans_item_buckets_planner_bucket_item_request_builder.go │ │ │ ├── item_planner_plans_item_buckets_request_builder.go │ │ │ ├── item_planner_plans_item_details_request_builder.go │ │ │ ├── item_planner_plans_item_tasks_count_request_builder.go │ │ │ ├── item_planner_plans_item_tasks_item_assigned_to_task_board_format_request_builder.go │ │ │ ├── item_planner_plans_item_tasks_item_bucket_task_board_format_request_builder.go │ │ │ ├── item_planner_plans_item_tasks_item_details_request_builder.go │ │ │ ├── item_planner_plans_item_tasks_item_progress_task_board_format_request_builder.go │ │ │ ├── item_planner_plans_item_tasks_planner_task_item_request_builder.go │ │ │ ├── item_planner_plans_item_tasks_request_builder.go │ │ │ ├── item_planner_plans_planner_plan_item_request_builder.go │ │ │ ├── item_planner_plans_request_builder.go │ │ │ ├── item_planner_request_builder.go │ │ │ ├── item_planner_tasks_count_request_builder.go │ │ │ ├── item_planner_tasks_item_assigned_to_task_board_format_request_builder.go │ │ │ ├── item_planner_tasks_item_bucket_task_board_format_request_builder.go │ │ │ ├── item_planner_tasks_item_details_request_builder.go │ │ │ ├── item_planner_tasks_item_progress_task_board_format_request_builder.go │ │ │ ├── item_planner_tasks_planner_task_item_request_builder.go │ │ │ ├── item_planner_tasks_request_builder.go │ │ │ ├── item_presence_clear_presence_post_request_body.go │ │ │ ├── item_presence_clear_presence_request_builder.go │ │ │ ├── item_presence_clear_user_preferred_presence_request_builder.go │ │ │ ├── item_presence_request_builder.go │ │ │ ├── item_presence_set_presence_post_request_body.go │ │ │ ├── item_presence_set_presence_request_builder.go │ │ │ ├── item_presence_set_user_preferred_presence_post_request_body.go │ │ │ ├── item_presence_set_user_preferred_presence_request_builder.go │ │ │ ├── item_registered_devices_count_request_builder.go │ │ │ ├── item_registered_devices_directory_object_item_request_builder.go │ │ │ ├── item_registered_devices_graph_app_role_assignment_count_request_builder.go │ │ │ ├── item_registered_devices_graph_app_role_assignment_request_builder.go │ │ │ ├── item_registered_devices_graph_device_count_request_builder.go │ │ │ ├── item_registered_devices_graph_device_request_builder.go │ │ │ ├── item_registered_devices_graph_endpoint_count_request_builder.go │ │ │ ├── item_registered_devices_graph_endpoint_request_builder.go │ │ │ ├── item_registered_devices_item_graph_app_role_assignment_request_builder.go │ │ │ ├── item_registered_devices_item_graph_device_request_builder.go │ │ │ ├── item_registered_devices_item_graph_endpoint_request_builder.go │ │ │ ├── item_registered_devices_request_builder.go │ │ │ ├── item_reminder_view_with_start_date_time_with_end_date_time_request_builder.go │ │ │ ├── item_reminder_view_with_start_date_time_with_end_date_time_response.go │ │ │ ├── item_remove_all_devices_from_management_request_builder.go │ │ │ ├── item_reprocess_license_assignment_request_builder.go │ │ │ ├── item_restore_request_builder.go │ │ │ ├── item_revoke_sign_in_sessions_request_builder.go │ │ │ ├── item_revoke_sign_in_sessions_response.go │ │ │ ├── item_scoped_role_member_of_count_request_builder.go │ │ │ ├── item_scoped_role_member_of_request_builder.go │ │ │ ├── item_scoped_role_member_of_scoped_role_membership_item_request_builder.go │ │ │ ├── item_send_mail_post_request_body.go │ │ │ ├── item_send_mail_request_builder.go │ │ │ ├── item_settings_request_builder.go │ │ │ ├── item_settings_shift_preferences_request_builder.go │ │ │ ├── item_teamwork_associated_teams_associated_team_info_item_request_builder.go │ │ │ ├── item_teamwork_associated_teams_count_request_builder.go │ │ │ ├── item_teamwork_associated_teams_request_builder.go │ │ │ ├── item_teamwork_installed_apps_count_request_builder.go │ │ │ ├── item_teamwork_installed_apps_item_chat_request_builder.go │ │ │ ├── item_teamwork_installed_apps_request_builder.go │ │ │ ├── item_teamwork_installed_apps_user_scope_teams_app_installation_item_request_builder.go │ │ │ ├── item_teamwork_request_builder.go │ │ │ ├── item_teamwork_send_activity_notification_post_request_body.go │ │ │ ├── item_teamwork_send_activity_notification_request_builder.go │ │ │ ├── item_todo_lists_count_request_builder.go │ │ │ ├── item_todo_lists_delta_request_builder.go │ │ │ ├── item_todo_lists_delta_response.go │ │ │ ├── item_todo_lists_item_extensions_count_request_builder.go │ │ │ ├── item_todo_lists_item_extensions_extension_item_request_builder.go │ │ │ ├── item_todo_lists_item_extensions_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_count_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_delta_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_delta_response.go │ │ │ ├── item_todo_lists_item_tasks_item_attachment_sessions_attachment_session_item_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_attachment_sessions_count_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_attachment_sessions_item_content_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_attachment_sessions_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_attachments_attachment_base_item_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_attachments_count_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_attachments_create_upload_session_post_request_body.go │ │ │ ├── item_todo_lists_item_tasks_item_attachments_create_upload_session_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_attachments_item_value_content_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_attachments_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_checklist_items_checklist_item_item_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_checklist_items_count_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_checklist_items_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_extensions_count_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_extensions_extension_item_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_extensions_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_linked_resources_count_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_linked_resources_linked_resource_item_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_item_linked_resources_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_request_builder.go │ │ │ ├── item_todo_lists_item_tasks_todo_task_item_request_builder.go │ │ │ ├── item_todo_lists_request_builder.go │ │ │ ├── item_todo_lists_todo_task_list_item_request_builder.go │ │ │ ├── item_todo_request_builder.go │ │ │ ├── item_transitive_member_of_count_request_builder.go │ │ │ ├── item_transitive_member_of_directory_object_item_request_builder.go │ │ │ ├── item_transitive_member_of_graph_administrative_unit_count_request_builder.go │ │ │ ├── item_transitive_member_of_graph_administrative_unit_request_builder.go │ │ │ ├── item_transitive_member_of_graph_group_count_request_builder.go │ │ │ ├── item_transitive_member_of_graph_group_request_builder.go │ │ │ ├── item_transitive_member_of_item_graph_administrative_unit_request_builder.go │ │ │ ├── item_transitive_member_of_item_graph_group_request_builder.go │ │ │ ├── item_transitive_member_of_request_builder.go │ │ │ ├── item_translate_exchange_ids_post_request_body.go │ │ │ ├── item_translate_exchange_ids_request_builder.go │ │ │ ├── item_translate_exchange_ids_response.go │ │ │ ├── item_wipe_managed_app_registrations_by_device_tag_post_request_body.go │ │ │ ├── item_wipe_managed_app_registrations_by_device_tag_request_builder.go │ │ │ ├── user_item_request_builder.go │ │ │ ├── users_request_builder.go │ │ │ ├── validate_properties_post_request_body.go │ │ │ └── validate_properties_request_builder.go │ │ └── msgraph-sdk-go-core/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── THIRD PARTY NOTICES │ │ ├── authentication/ │ │ │ ├── azure_identity_access_token_provider.go │ │ │ └── azure_identity_authentication_provider.go │ │ ├── batch_item_model.go │ │ ├── batch_requests.go │ │ ├── batch_response_model.go │ │ ├── error_mappings_registry.go │ │ ├── graph_client_factory.go │ │ ├── graph_client_options.go │ │ ├── graph_request_adapter_base.go │ │ ├── graph_telemetry_handler.go │ │ ├── page_iterator.go │ │ ├── sonar-project.properties │ │ └── version.go │ ├── miekg/ │ │ └── dns/ │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTORS │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ ├── Makefile.fuzz │ │ ├── Makefile.release │ │ ├── README.md │ │ ├── acceptfunc.go │ │ ├── client.go │ │ ├── clientconfig.go │ │ ├── dane.go │ │ ├── defaults.go │ │ ├── dns.go │ │ ├── dnssec.go │ │ ├── dnssec_keygen.go │ │ ├── dnssec_keyscan.go │ │ ├── dnssec_privkey.go │ │ ├── doc.go │ │ ├── duplicate.go │ │ ├── edns.go │ │ ├── format.go │ │ ├── fuzz.go │ │ ├── generate.go │ │ ├── labels.go │ │ ├── listen_go111.go │ │ ├── listen_go_not111.go │ │ ├── msg.go │ │ ├── msg_helpers.go │ │ ├── msg_truncate.go │ │ ├── nsecx.go │ │ ├── privaterr.go │ │ ├── reverse.go │ │ ├── sanitize.go │ │ ├── scan.go │ │ ├── scan_rr.go │ │ ├── serve_mux.go │ │ ├── server.go │ │ ├── sig0.go │ │ ├── singleinflight.go │ │ ├── smimea.go │ │ ├── svcb.go │ │ ├── tlsa.go │ │ ├── tsig.go │ │ ├── types.go │ │ ├── udp.go │ │ ├── udp_windows.go │ │ ├── update.go │ │ ├── version.go │ │ ├── xfr.go │ │ ├── zduplicate.go │ │ ├── zmsg.go │ │ └── ztypes.go │ ├── mitchellh/ │ │ ├── go-homedir/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── homedir.go │ │ ├── go-wordwrap/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── wordwrap.go │ │ └── mapstructure/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.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 │ ├── monochromegane/ │ │ └── go-gitignore/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── depth_holder.go │ │ ├── full_scan_patterns.go │ │ ├── gitignore.go │ │ ├── index_scan_patterns.go │ │ ├── initial_holder.go │ │ ├── match.go │ │ ├── pattern.go │ │ ├── patterns.go │ │ └── util.go │ ├── moricho/ │ │ └── tparallel/ │ │ ├── .gitignore │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── pkg/ │ │ │ ├── ssafunc/ │ │ │ │ └── ssafunc.go │ │ │ └── ssainstr/ │ │ │ └── ssainstr.go │ │ ├── testmap.go │ │ └── tparallel.go │ ├── munnerz/ │ │ └── goautoneg/ │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go │ ├── mxk/ │ │ └── go-flowrate/ │ │ ├── LICENSE │ │ └── flowrate/ │ │ ├── flowrate.go │ │ ├── io.go │ │ └── util.go │ ├── nakabonne/ │ │ └── nestif/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── nestif.go │ ├── nishanths/ │ │ ├── exhaustive/ │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── comment.go │ │ │ ├── comment_go121.go │ │ │ ├── comment_pre_go121.go │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── enum.go │ │ │ ├── exhaustive.go │ │ │ ├── fact.go │ │ │ ├── flag.go │ │ │ ├── map.go │ │ │ └── switch.go │ │ └── predeclared/ │ │ ├── LICENSE │ │ └── passes/ │ │ └── predeclared/ │ │ ├── go18.go │ │ ├── pre_go18.go │ │ └── predeclared.go │ ├── nutanix-cloud-native/ │ │ └── cluster-api-provider-nutanix/ │ │ ├── LICENSE │ │ └── api/ │ │ └── v1beta1/ │ │ ├── conditions.go │ │ ├── doc.go │ │ ├── groupversion_info.go │ │ ├── nutanix_types.go │ │ ├── nutanixcluster_conversion.go │ │ ├── nutanixcluster_types.go │ │ ├── nutanixclustertemplate_types.go │ │ ├── nutanixfailuredomain_types.go │ │ ├── nutanixmachine_conversion.go │ │ ├── nutanixmachine_types.go │ │ ├── nutanixmachinetemplate_conversion.go │ │ ├── nutanixmachinetemplate_types.go │ │ └── zz_generated.deepcopy.go │ ├── nxadm/ │ │ └── tail/ │ │ ├── .gitignore │ │ ├── CHANGES.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ratelimiter/ │ │ │ ├── Licence │ │ │ ├── leakybucket.go │ │ │ ├── memory.go │ │ │ └── storage.go │ │ ├── tail.go │ │ ├── tail_posix.go │ │ ├── tail_windows.go │ │ ├── util/ │ │ │ └── util.go │ │ ├── watch/ │ │ │ ├── filechanges.go │ │ │ ├── inotify.go │ │ │ ├── inotify_tracker.go │ │ │ ├── polling.go │ │ │ └── watch.go │ │ └── winfile/ │ │ └── winfile.go │ ├── oklog/ │ │ └── ulid/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ └── ulid.go │ ├── olekukonko/ │ │ └── tablewriter/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── csv.go │ │ ├── table.go │ │ ├── table_with_color.go │ │ ├── util.go │ │ └── wrap.go │ ├── onsi/ │ │ ├── ginkgo/ │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RELEASING.md │ │ │ ├── config/ │ │ │ │ └── config.go │ │ │ ├── formatter/ │ │ │ │ └── formatter.go │ │ │ ├── ginkgo_dsl.go │ │ │ ├── internal/ │ │ │ │ ├── codelocation/ │ │ │ │ │ └── code_location.go │ │ │ │ ├── containernode/ │ │ │ │ │ └── container_node.go │ │ │ │ ├── failer/ │ │ │ │ │ └── failer.go │ │ │ │ ├── global/ │ │ │ │ │ └── init.go │ │ │ │ ├── leafnodes/ │ │ │ │ │ ├── benchmarker.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── it_node.go │ │ │ │ │ ├── measure_node.go │ │ │ │ │ ├── runner.go │ │ │ │ │ ├── setup_nodes.go │ │ │ │ │ ├── suite_nodes.go │ │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ │ └── synchronized_before_suite_node.go │ │ │ │ ├── remote/ │ │ │ │ │ ├── aggregator.go │ │ │ │ │ ├── forwarding_reporter.go │ │ │ │ │ ├── output_interceptor.go │ │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ │ ├── output_interceptor_win.go │ │ │ │ │ └── server.go │ │ │ │ ├── spec/ │ │ │ │ │ ├── spec.go │ │ │ │ │ └── specs.go │ │ │ │ ├── spec_iterator/ │ │ │ │ │ ├── index_computer.go │ │ │ │ │ ├── parallel_spec_iterator.go │ │ │ │ │ ├── serial_spec_iterator.go │ │ │ │ │ ├── sharded_parallel_spec_iterator.go │ │ │ │ │ └── spec_iterator.go │ │ │ │ ├── specrunner/ │ │ │ │ │ ├── random_id.go │ │ │ │ │ └── spec_runner.go │ │ │ │ ├── suite/ │ │ │ │ │ └── suite.go │ │ │ │ ├── testingtproxy/ │ │ │ │ │ └── testing_t_proxy.go │ │ │ │ └── writer/ │ │ │ │ ├── fake_writer.go │ │ │ │ └── writer.go │ │ │ ├── reporters/ │ │ │ │ ├── default_reporter.go │ │ │ │ ├── fake_reporter.go │ │ │ │ ├── junit_reporter.go │ │ │ │ ├── reporter.go │ │ │ │ ├── stenographer/ │ │ │ │ │ ├── console_logging.go │ │ │ │ │ ├── fake_stenographer.go │ │ │ │ │ ├── stenographer.go │ │ │ │ │ └── support/ │ │ │ │ │ ├── go-colorable/ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ │ └── noncolorable.go │ │ │ │ │ └── go-isatty/ │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ └── isatty_windows.go │ │ │ │ └── teamcity_reporter.go │ │ │ └── types/ │ │ │ ├── code_location.go │ │ │ ├── deprecation_support.go │ │ │ ├── synchronization.go │ │ │ └── types.go │ │ └── gomega/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── format/ │ │ │ └── format.go │ │ ├── gomega_dsl.go │ │ ├── internal/ │ │ │ ├── assertion.go │ │ │ ├── async_assertion.go │ │ │ ├── duration_bundle.go │ │ │ ├── gomega.go │ │ │ ├── gutil/ │ │ │ │ ├── post_ioutil.go │ │ │ │ └── using_ioutil.go │ │ │ ├── polling_signal_error.go │ │ │ └── vetoptdesc.go │ │ ├── matchers/ │ │ │ ├── and.go │ │ │ ├── assignable_to_type_of_matcher.go │ │ │ ├── attributes_slice.go │ │ │ ├── be_a_directory.go │ │ │ ├── be_a_regular_file.go │ │ │ ├── be_an_existing_file.go │ │ │ ├── be_closed_matcher.go │ │ │ ├── be_comparable_to_matcher.go │ │ │ ├── be_element_of_matcher.go │ │ │ ├── be_empty_matcher.go │ │ │ ├── be_equivalent_to_matcher.go │ │ │ ├── be_false_matcher.go │ │ │ ├── be_identical_to.go │ │ │ ├── be_key_of_matcher.go │ │ │ ├── be_nil_matcher.go │ │ │ ├── be_numerically_matcher.go │ │ │ ├── be_sent_matcher.go │ │ │ ├── be_temporally_matcher.go │ │ │ ├── be_true_matcher.go │ │ │ ├── be_zero_matcher.go │ │ │ ├── consist_of.go │ │ │ ├── contain_element_matcher.go │ │ │ ├── contain_elements_matcher.go │ │ │ ├── contain_substring_matcher.go │ │ │ ├── equal_matcher.go │ │ │ ├── have_cap_matcher.go │ │ │ ├── have_each_matcher.go │ │ │ ├── have_exact_elements.go │ │ │ ├── have_existing_field_matcher.go │ │ │ ├── have_field.go │ │ │ ├── have_http_body_matcher.go │ │ │ ├── have_http_header_with_value_matcher.go │ │ │ ├── have_http_status_matcher.go │ │ │ ├── have_key_matcher.go │ │ │ ├── have_key_with_value_matcher.go │ │ │ ├── have_len_matcher.go │ │ │ ├── have_occurred_matcher.go │ │ │ ├── have_prefix_matcher.go │ │ │ ├── have_suffix_matcher.go │ │ │ ├── have_value.go │ │ │ ├── internal/ │ │ │ │ └── miter/ │ │ │ │ ├── type_support_iter.go │ │ │ │ └── type_support_noiter.go │ │ │ ├── match_error_matcher.go │ │ │ ├── match_json_matcher.go │ │ │ ├── match_regexp_matcher.go │ │ │ ├── match_xml_matcher.go │ │ │ ├── match_yaml_matcher.go │ │ │ ├── not.go │ │ │ ├── or.go │ │ │ ├── panic_matcher.go │ │ │ ├── receive_matcher.go │ │ │ ├── satisfy_matcher.go │ │ │ ├── semi_structured_data_support.go │ │ │ ├── succeed_matcher.go │ │ │ ├── support/ │ │ │ │ └── goraph/ │ │ │ │ ├── bipartitegraph/ │ │ │ │ │ ├── bipartitegraph.go │ │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge/ │ │ │ │ │ └── edge.go │ │ │ │ ├── node/ │ │ │ │ │ └── node.go │ │ │ │ └── util/ │ │ │ │ └── util.go │ │ │ ├── type_support.go │ │ │ └── with_transform.go │ │ ├── matchers.go │ │ └── types/ │ │ └── types.go │ ├── opencontainers/ │ │ └── go-digest/ │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── LICENSE.docs │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── algorithm.go │ │ ├── digest.go │ │ ├── digester.go │ │ ├── doc.go │ │ └── verifiers.go │ ├── openshift/ │ │ ├── api/ │ │ │ ├── .ci-operator.yaml │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.go-validated.yaml │ │ │ ├── .golangci.yaml │ │ │ ├── AGENTS.md │ │ │ ├── Dockerfile.ocp │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── annotations/ │ │ │ │ └── annotations.go │ │ │ ├── apiserver/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_apirequestcount.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── apps/ │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── consts.go │ │ │ │ ├── deprecated_consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.swagger_doc_generated.go │ │ │ │ └── zz_prerelease_lifecycle_generated.go │ │ │ ├── authorization/ │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── codec.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── build/ │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── cloudnetwork/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── config/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── stringsource.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_apiserver.go │ │ │ │ │ ├── types_authentication.go │ │ │ │ │ ├── types_build.go │ │ │ │ │ ├── types_cluster_image_policy.go │ │ │ │ │ ├── types_cluster_operator.go │ │ │ │ │ ├── types_cluster_version.go │ │ │ │ │ ├── types_console.go │ │ │ │ │ ├── types_dns.go │ │ │ │ │ ├── types_feature.go │ │ │ │ │ ├── types_image.go │ │ │ │ │ ├── types_image_content_policy.go │ │ │ │ │ ├── types_image_digest_mirror_set.go │ │ │ │ │ ├── types_image_policy.go │ │ │ │ │ ├── types_image_tag_mirror_set.go │ │ │ │ │ ├── types_infrastructure.go │ │ │ │ │ ├── types_ingress.go │ │ │ │ │ ├── types_insights.go │ │ │ │ │ ├── types_kmsencryption.go │ │ │ │ │ ├── types_network.go │ │ │ │ │ ├── types_node.go │ │ │ │ │ ├── types_oauth.go │ │ │ │ │ ├── types_operatorhub.go │ │ │ │ │ ├── types_project.go │ │ │ │ │ ├── types_proxy.go │ │ │ │ │ ├── types_scheduling.go │ │ │ │ │ ├── types_testreporting.go │ │ │ │ │ ├── types_tlssecurityprofile.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types_backup.go │ │ │ │ │ ├── types_cluster_image_policy.go │ │ │ │ │ ├── types_cluster_monitoring.go │ │ │ │ │ ├── types_image_policy.go │ │ │ │ │ ├── types_insights.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ └── v1alpha2/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_insights.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── console/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_console_cli_download.go │ │ │ │ ├── types_console_external_log_links.go │ │ │ │ ├── types_console_link.go │ │ │ │ ├── types_console_notification.go │ │ │ │ ├── types_console_plugin.go │ │ │ │ ├── types_console_quick_start.go │ │ │ │ ├── types_console_sample.go │ │ │ │ ├── types_console_yaml_sample.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── envtest-releases.yaml │ │ │ ├── features/ │ │ │ │ ├── features.go │ │ │ │ ├── legacyfeaturegates.go │ │ │ │ └── util.go │ │ │ ├── features.md │ │ │ ├── helm/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_helm_chart_repository.go │ │ │ │ ├── types_project_helm_chart_repository.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── image/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── docker10/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types_docker.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ ├── dockerpre012/ │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types_docker.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── imageregistry/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_imagepruner.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── install.go │ │ │ ├── kubecontrolplane/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── legacyconfig/ │ │ │ │ └── v1/ │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── serialization.go │ │ │ │ ├── stringsource.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── machine/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── common.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types_alibabaprovider.go │ │ │ │ │ ├── types_aws.go │ │ │ │ │ ├── types_controlplanemachineset.go │ │ │ │ │ ├── types_nutanixprovider.go │ │ │ │ │ ├── types_powervsprovider.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types_openstack.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_awsprovider.go │ │ │ │ ├── types_azureprovider.go │ │ │ │ ├── types_gcpprovider.go │ │ │ │ ├── types_machine.go │ │ │ │ ├── types_machinehealthcheck.go │ │ │ │ ├── types_machineset.go │ │ │ │ ├── types_provider.go │ │ │ │ ├── types_vsphereprovider.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── monitoring/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── network/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── legacy.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ └── v1alpha1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_dnsnameresolver.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── networkoperator/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types_egressrouter.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── oauth/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── openshiftcontrolplane/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── operator/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_authentication.go │ │ │ │ │ ├── types_cloudcredential.go │ │ │ │ │ ├── types_config.go │ │ │ │ │ ├── types_console.go │ │ │ │ │ ├── types_csi_cluster_driver.go │ │ │ │ │ ├── types_csi_snapshot.go │ │ │ │ │ ├── types_dns.go │ │ │ │ │ ├── types_etcd.go │ │ │ │ │ ├── types_ingress.go │ │ │ │ │ ├── types_insights.go │ │ │ │ │ ├── types_kubeapiserver.go │ │ │ │ │ ├── types_kubecontrollermanager.go │ │ │ │ │ ├── types_kubestorageversionmigrator.go │ │ │ │ │ ├── types_machineconfiguration.go │ │ │ │ │ ├── types_network.go │ │ │ │ │ ├── types_olm.go │ │ │ │ │ ├── types_openshiftapiserver.go │ │ │ │ │ ├── types_openshiftcontrollermanager.go │ │ │ │ │ ├── types_scheduler.go │ │ │ │ │ ├── types_serviceca.go │ │ │ │ │ ├── types_servicecatalogapiserver.go │ │ │ │ │ ├── types_servicecatalogcontrollermanager.go │ │ │ │ │ ├── types_storage.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ └── v1alpha1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_clusterversion.go │ │ │ │ ├── types_etcdbackup.go │ │ │ │ ├── types_image_content_source_policy.go │ │ │ │ ├── types_olm.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── operatorcontrolplane/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ └── v1alpha1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_conditioncheck.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── osin/ │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── pkg/ │ │ │ │ └── serialization/ │ │ │ │ └── serialization.go │ │ │ ├── project/ │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── quota/ │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── route/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── test-route-validation.sh │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── samples/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types_config.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── security/ │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── Makefile │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── servicecertsigner/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── install.go │ │ │ │ └── v1alpha1/ │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── sharedresource/ │ │ │ │ ├── .codegen.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ └── v1alpha1/ │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_shared_configmap.go │ │ │ │ ├── types_shared_secret.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── template/ │ │ │ │ ├── OWNERS │ │ │ │ ├── install.go │ │ │ │ └── v1/ │ │ │ │ ├── codec.go │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── user/ │ │ │ ├── install.go │ │ │ └── v1/ │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── legacy.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── build-machinery-go/ │ │ │ ├── .ci-operator.yaml │ │ │ ├── .gitignore │ │ │ ├── Dockerfile.commitchecker │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── make/ │ │ │ │ ├── default.example.mk │ │ │ │ ├── default.example.mk.help.log │ │ │ │ ├── default.mk │ │ │ │ ├── doc.go │ │ │ │ ├── golang.example.mk │ │ │ │ ├── golang.example.mk.help.log │ │ │ │ ├── golang.mk │ │ │ │ ├── lib/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── golang.mk │ │ │ │ │ ├── tmp.mk │ │ │ │ │ └── version.mk │ │ │ │ ├── operator.example.mk │ │ │ │ ├── operator.example.mk.help.log │ │ │ │ ├── operator.mk │ │ │ │ └── targets/ │ │ │ │ ├── doc.go │ │ │ │ ├── golang/ │ │ │ │ │ ├── build.mk │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── test-unit.mk │ │ │ │ │ ├── verify-update.mk │ │ │ │ │ ├── version.mk │ │ │ │ │ └── vulncheck.mk │ │ │ │ ├── help.mk │ │ │ │ └── openshift/ │ │ │ │ ├── bindata.mk │ │ │ │ ├── codegen.mk │ │ │ │ ├── controller-gen.mk │ │ │ │ ├── crd-schema-gen.mk │ │ │ │ ├── deps-glide.mk │ │ │ │ ├── deps-gomod.mk │ │ │ │ ├── deps.mk │ │ │ │ ├── doc.go │ │ │ │ ├── imagebuilder.mk │ │ │ │ ├── images.mk │ │ │ │ ├── kustomize.mk │ │ │ │ ├── operator/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── mom.mk │ │ │ │ │ ├── profile-manifests.mk │ │ │ │ │ ├── release.mk │ │ │ │ │ └── telepresence.mk │ │ │ │ ├── rpm.mk │ │ │ │ ├── yaml-patch.mk │ │ │ │ └── yq.mk │ │ │ └── scripts/ │ │ │ ├── doc.go │ │ │ ├── run-telepresence.sh │ │ │ ├── test-operator-integration.sh │ │ │ ├── update-deps.sh │ │ │ └── vulncheck.sh │ │ ├── client-go/ │ │ │ ├── LICENSE │ │ │ ├── config/ │ │ │ │ ├── applyconfigurations/ │ │ │ │ │ ├── config/ │ │ │ │ │ │ └── v1/ │ │ │ │ │ │ ├── alibabacloudplatformstatus.go │ │ │ │ │ │ ├── alibabacloudresourcetag.go │ │ │ │ │ │ ├── apiserver.go │ │ │ │ │ │ ├── apiserverencryption.go │ │ │ │ │ │ ├── apiservernamedservingcert.go │ │ │ │ │ │ ├── apiserverservingcerts.go │ │ │ │ │ │ ├── apiserverspec.go │ │ │ │ │ │ ├── audit.go │ │ │ │ │ │ ├── auditcustomrule.go │ │ │ │ │ │ ├── authentication.go │ │ │ │ │ │ ├── authenticationspec.go │ │ │ │ │ │ ├── authenticationstatus.go │ │ │ │ │ │ ├── awsdnsspec.go │ │ │ │ │ │ ├── awsingressspec.go │ │ │ │ │ │ ├── awskmsconfig.go │ │ │ │ │ │ ├── awsplatformspec.go │ │ │ │ │ │ ├── awsplatformstatus.go │ │ │ │ │ │ ├── awsresourcetag.go │ │ │ │ │ │ ├── awsserviceendpoint.go │ │ │ │ │ │ ├── azureplatformstatus.go │ │ │ │ │ │ ├── azureresourcetag.go │ │ │ │ │ │ ├── baremetalplatformloadbalancer.go │ │ │ │ │ │ ├── baremetalplatformspec.go │ │ │ │ │ │ ├── baremetalplatformstatus.go │ │ │ │ │ │ ├── basicauthidentityprovider.go │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── builddefaults.go │ │ │ │ │ │ ├── buildoverrides.go │ │ │ │ │ │ ├── buildspec.go │ │ │ │ │ │ ├── cloudcontrollermanagerstatus.go │ │ │ │ │ │ ├── cloudloadbalancerconfig.go │ │ │ │ │ │ ├── cloudloadbalancerips.go │ │ │ │ │ │ ├── clustercondition.go │ │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ │ ├── clusterimagepolicyspec.go │ │ │ │ │ │ ├── clusterimagepolicystatus.go │ │ │ │ │ │ ├── clusternetworkentry.go │ │ │ │ │ │ ├── clusteroperator.go │ │ │ │ │ │ ├── clusteroperatorstatus.go │ │ │ │ │ │ ├── clusteroperatorstatuscondition.go │ │ │ │ │ │ ├── clusterversion.go │ │ │ │ │ │ ├── clusterversioncapabilitiesspec.go │ │ │ │ │ │ ├── clusterversioncapabilitiesstatus.go │ │ │ │ │ │ ├── clusterversionspec.go │ │ │ │ │ │ ├── clusterversionstatus.go │ │ │ │ │ │ ├── componentoverride.go │ │ │ │ │ │ ├── componentroutespec.go │ │ │ │ │ │ ├── componentroutestatus.go │ │ │ │ │ │ ├── conditionalupdate.go │ │ │ │ │ │ ├── conditionalupdaterisk.go │ │ │ │ │ │ ├── configmapfilereference.go │ │ │ │ │ │ ├── configmapnamereference.go │ │ │ │ │ │ ├── console.go │ │ │ │ │ │ ├── consoleauthentication.go │ │ │ │ │ │ ├── consolespec.go │ │ │ │ │ │ ├── consolestatus.go │ │ │ │ │ │ ├── custom.go │ │ │ │ │ │ ├── customfeaturegates.go │ │ │ │ │ │ ├── customtlsprofile.go │ │ │ │ │ │ ├── deprecatedwebhooktokenauthenticator.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── dnsplatformspec.go │ │ │ │ │ │ ├── dnsspec.go │ │ │ │ │ │ ├── dnszone.go │ │ │ │ │ │ ├── equinixmetalplatformstatus.go │ │ │ │ │ │ ├── externalipconfig.go │ │ │ │ │ │ ├── externalippolicy.go │ │ │ │ │ │ ├── externalplatformspec.go │ │ │ │ │ │ ├── externalplatformstatus.go │ │ │ │ │ │ ├── extramapping.go │ │ │ │ │ │ ├── featuregate.go │ │ │ │ │ │ ├── featuregateattributes.go │ │ │ │ │ │ ├── featuregatedetails.go │ │ │ │ │ │ ├── featuregateselection.go │ │ │ │ │ │ ├── featuregatespec.go │ │ │ │ │ │ ├── featuregatestatus.go │ │ │ │ │ │ ├── fulciocawithrekor.go │ │ │ │ │ │ ├── gatherconfig.go │ │ │ │ │ │ ├── gathererconfig.go │ │ │ │ │ │ ├── gatherers.go │ │ │ │ │ │ ├── gcpplatformstatus.go │ │ │ │ │ │ ├── gcpresourcelabel.go │ │ │ │ │ │ ├── gcpresourcetag.go │ │ │ │ │ │ ├── gcpserviceendpoint.go │ │ │ │ │ │ ├── githubidentityprovider.go │ │ │ │ │ │ ├── gitlabidentityprovider.go │ │ │ │ │ │ ├── googleidentityprovider.go │ │ │ │ │ │ ├── htpasswdidentityprovider.go │ │ │ │ │ │ ├── hubsource.go │ │ │ │ │ │ ├── hubsourcestatus.go │ │ │ │ │ │ ├── ibmcloudplatformspec.go │ │ │ │ │ │ ├── ibmcloudplatformstatus.go │ │ │ │ │ │ ├── ibmcloudserviceendpoint.go │ │ │ │ │ │ ├── identityprovider.go │ │ │ │ │ │ ├── identityproviderconfig.go │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ │ │ ├── imagecontentpolicyspec.go │ │ │ │ │ │ ├── imagedigestmirrors.go │ │ │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ │ │ ├── imagedigestmirrorsetspec.go │ │ │ │ │ │ ├── imagelabel.go │ │ │ │ │ │ ├── imagepolicy.go │ │ │ │ │ │ ├── imagepolicyspec.go │ │ │ │ │ │ ├── imagepolicystatus.go │ │ │ │ │ │ ├── imagespec.go │ │ │ │ │ │ ├── imagestatus.go │ │ │ │ │ │ ├── imagetagmirrors.go │ │ │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ │ │ ├── imagetagmirrorsetspec.go │ │ │ │ │ │ ├── infrastructure.go │ │ │ │ │ │ ├── infrastructurespec.go │ │ │ │ │ │ ├── infrastructurestatus.go │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ ├── ingressplatformspec.go │ │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ │ ├── insightsdatagather.go │ │ │ │ │ │ ├── insightsdatagatherspec.go │ │ │ │ │ │ ├── keystoneidentityprovider.go │ │ │ │ │ │ ├── kmsconfig.go │ │ │ │ │ │ ├── kubevirtplatformstatus.go │ │ │ │ │ │ ├── ldapattributemapping.go │ │ │ │ │ │ ├── ldapidentityprovider.go │ │ │ │ │ │ ├── loadbalancer.go │ │ │ │ │ │ ├── maxagepolicy.go │ │ │ │ │ │ ├── mtumigration.go │ │ │ │ │ │ ├── mtumigrationvalues.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ ├── networkdiagnostics.go │ │ │ │ │ │ ├── networkdiagnosticssourceplacement.go │ │ │ │ │ │ ├── networkdiagnosticstargetplacement.go │ │ │ │ │ │ ├── networkmigration.go │ │ │ │ │ │ ├── networkspec.go │ │ │ │ │ │ ├── networkstatus.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── nodespec.go │ │ │ │ │ │ ├── nodestatus.go │ │ │ │ │ │ ├── nutanixfailuredomain.go │ │ │ │ │ │ ├── nutanixplatformloadbalancer.go │ │ │ │ │ │ ├── nutanixplatformspec.go │ │ │ │ │ │ ├── nutanixplatformstatus.go │ │ │ │ │ │ ├── nutanixprismelementendpoint.go │ │ │ │ │ │ ├── nutanixprismendpoint.go │ │ │ │ │ │ ├── nutanixresourceidentifier.go │ │ │ │ │ │ ├── oauth.go │ │ │ │ │ │ ├── oauthremoteconnectioninfo.go │ │ │ │ │ │ ├── oauthspec.go │ │ │ │ │ │ ├── oauthtemplates.go │ │ │ │ │ │ ├── objectreference.go │ │ │ │ │ │ ├── oidcclientconfig.go │ │ │ │ │ │ ├── oidcclientreference.go │ │ │ │ │ │ ├── oidcclientstatus.go │ │ │ │ │ │ ├── oidcprovider.go │ │ │ │ │ │ ├── openidclaims.go │ │ │ │ │ │ ├── openididentityprovider.go │ │ │ │ │ │ ├── openstackplatformloadbalancer.go │ │ │ │ │ │ ├── openstackplatformspec.go │ │ │ │ │ │ ├── openstackplatformstatus.go │ │ │ │ │ │ ├── operandversion.go │ │ │ │ │ │ ├── operatorhub.go │ │ │ │ │ │ ├── operatorhubspec.go │ │ │ │ │ │ ├── operatorhubstatus.go │ │ │ │ │ │ ├── ovirtplatformloadbalancer.go │ │ │ │ │ │ ├── ovirtplatformstatus.go │ │ │ │ │ │ ├── persistentvolumeclaimreference.go │ │ │ │ │ │ ├── persistentvolumeconfig.go │ │ │ │ │ │ ├── pki.go │ │ │ │ │ │ ├── pkicertificatesubject.go │ │ │ │ │ │ ├── platformspec.go │ │ │ │ │ │ ├── platformstatus.go │ │ │ │ │ │ ├── policy.go │ │ │ │ │ │ ├── policyfulciosubject.go │ │ │ │ │ │ ├── policyidentity.go │ │ │ │ │ │ ├── policymatchexactrepository.go │ │ │ │ │ │ ├── policymatchremapidentity.go │ │ │ │ │ │ ├── policyrootoftrust.go │ │ │ │ │ │ ├── powervsplatformspec.go │ │ │ │ │ │ ├── powervsplatformstatus.go │ │ │ │ │ │ ├── powervsserviceendpoint.go │ │ │ │ │ │ ├── prefixedclaimmapping.go │ │ │ │ │ │ ├── profilecustomizations.go │ │ │ │ │ │ ├── project.go │ │ │ │ │ │ ├── projectspec.go │ │ │ │ │ │ ├── promqlclustercondition.go │ │ │ │ │ │ ├── proxy.go │ │ │ │ │ │ ├── proxyspec.go │ │ │ │ │ │ ├── proxystatus.go │ │ │ │ │ │ ├── publickey.go │ │ │ │ │ │ ├── registrylocation.go │ │ │ │ │ │ ├── registrysources.go │ │ │ │ │ │ ├── release.go │ │ │ │ │ │ ├── repositorydigestmirrors.go │ │ │ │ │ │ ├── requestheaderidentityprovider.go │ │ │ │ │ │ ├── requiredhstspolicy.go │ │ │ │ │ │ ├── scheduler.go │ │ │ │ │ │ ├── schedulerspec.go │ │ │ │ │ │ ├── secretnamereference.go │ │ │ │ │ │ ├── signaturestore.go │ │ │ │ │ │ ├── storage.go │ │ │ │ │ │ ├── templatereference.go │ │ │ │ │ │ ├── tlsprofilespec.go │ │ │ │ │ │ ├── tlssecurityprofile.go │ │ │ │ │ │ ├── tokenclaimmapping.go │ │ │ │ │ │ ├── tokenclaimmappings.go │ │ │ │ │ │ ├── tokenclaimorexpressionmapping.go │ │ │ │ │ │ ├── tokenclaimvalidationrule.go │ │ │ │ │ │ ├── tokenconfig.go │ │ │ │ │ │ ├── tokenissuer.go │ │ │ │ │ │ ├── tokenrequiredclaim.go │ │ │ │ │ │ ├── update.go │ │ │ │ │ │ ├── updatehistory.go │ │ │ │ │ │ ├── usernameclaimmapping.go │ │ │ │ │ │ ├── usernameprefix.go │ │ │ │ │ │ ├── vspherefailuredomainhostgroup.go │ │ │ │ │ │ ├── vspherefailuredomainregionaffinity.go │ │ │ │ │ │ ├── vspherefailuredomainzoneaffinity.go │ │ │ │ │ │ ├── vsphereplatformfailuredomainspec.go │ │ │ │ │ │ ├── vsphereplatformloadbalancer.go │ │ │ │ │ │ ├── vsphereplatformnodenetworking.go │ │ │ │ │ │ ├── vsphereplatformnodenetworkingspec.go │ │ │ │ │ │ ├── vsphereplatformspec.go │ │ │ │ │ │ ├── vsphereplatformstatus.go │ │ │ │ │ │ ├── vsphereplatformtopology.go │ │ │ │ │ │ ├── vsphereplatformvcenterspec.go │ │ │ │ │ │ └── webhooktokenauthenticator.go │ │ │ │ │ └── internal/ │ │ │ │ │ └── internal.go │ │ │ │ ├── clientset/ │ │ │ │ │ └── versioned/ │ │ │ │ │ ├── scheme/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ └── typed/ │ │ │ │ │ └── config/ │ │ │ │ │ └── v1/ │ │ │ │ │ ├── apiserver.go │ │ │ │ │ ├── authentication.go │ │ │ │ │ ├── build.go │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ ├── clusteroperator.go │ │ │ │ │ ├── clusterversion.go │ │ │ │ │ ├── config_client.go │ │ │ │ │ ├── console.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── featuregate.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ │ ├── imagepolicy.go │ │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ │ ├── infrastructure.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── insightsdatagather.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── oauth.go │ │ │ │ │ ├── operatorhub.go │ │ │ │ │ ├── project.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ └── scheduler.go │ │ │ │ └── listers/ │ │ │ │ └── config/ │ │ │ │ └── v1/ │ │ │ │ ├── apiserver.go │ │ │ │ ├── authentication.go │ │ │ │ ├── build.go │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ ├── clusteroperator.go │ │ │ │ ├── clusterversion.go │ │ │ │ ├── console.go │ │ │ │ ├── dns.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── featuregate.go │ │ │ │ ├── image.go │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ ├── imagepolicy.go │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ ├── infrastructure.go │ │ │ │ ├── ingress.go │ │ │ │ ├── insightsdatagather.go │ │ │ │ ├── network.go │ │ │ │ ├── node.go │ │ │ │ ├── oauth.go │ │ │ │ ├── operatorhub.go │ │ │ │ ├── project.go │ │ │ │ ├── proxy.go │ │ │ │ └── scheduler.go │ │ │ ├── machine/ │ │ │ │ ├── applyconfigurations/ │ │ │ │ │ ├── internal/ │ │ │ │ │ │ └── internal.go │ │ │ │ │ └── machine/ │ │ │ │ │ ├── v1/ │ │ │ │ │ │ ├── awsfailuredomain.go │ │ │ │ │ │ ├── awsfailuredomainplacement.go │ │ │ │ │ │ ├── awsresourcefilter.go │ │ │ │ │ │ ├── awsresourcereference.go │ │ │ │ │ │ ├── azurefailuredomain.go │ │ │ │ │ │ ├── controlplanemachineset.go │ │ │ │ │ │ ├── controlplanemachinesetspec.go │ │ │ │ │ │ ├── controlplanemachinesetstatus.go │ │ │ │ │ │ ├── controlplanemachinesetstrategy.go │ │ │ │ │ │ ├── controlplanemachinesettemplate.go │ │ │ │ │ │ ├── controlplanemachinesettemplateobjectmeta.go │ │ │ │ │ │ ├── failuredomains.go │ │ │ │ │ │ ├── gcpfailuredomain.go │ │ │ │ │ │ ├── nutanixfailuredomainreference.go │ │ │ │ │ │ ├── openshiftmachinev1beta1machinetemplate.go │ │ │ │ │ │ ├── openstackfailuredomain.go │ │ │ │ │ │ ├── rootvolume.go │ │ │ │ │ │ └── vspherefailuredomain.go │ │ │ │ │ └── v1beta1/ │ │ │ │ │ ├── condition.go │ │ │ │ │ ├── lastoperation.go │ │ │ │ │ ├── lifecyclehook.go │ │ │ │ │ ├── lifecyclehooks.go │ │ │ │ │ ├── machine.go │ │ │ │ │ ├── machinehealthcheck.go │ │ │ │ │ ├── machinehealthcheckspec.go │ │ │ │ │ ├── machinehealthcheckstatus.go │ │ │ │ │ ├── machineset.go │ │ │ │ │ ├── machinesetspec.go │ │ │ │ │ ├── machinesetstatus.go │ │ │ │ │ ├── machinespec.go │ │ │ │ │ ├── machinestatus.go │ │ │ │ │ ├── machinetemplatespec.go │ │ │ │ │ ├── objectmeta.go │ │ │ │ │ ├── providerspec.go │ │ │ │ │ └── unhealthycondition.go │ │ │ │ ├── clientset/ │ │ │ │ │ └── versioned/ │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── scheme/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ └── typed/ │ │ │ │ │ └── machine/ │ │ │ │ │ ├── v1/ │ │ │ │ │ │ ├── controlplanemachineset.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── machine_client.go │ │ │ │ │ └── v1beta1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── machine.go │ │ │ │ │ ├── machine_client.go │ │ │ │ │ ├── machinehealthcheck.go │ │ │ │ │ └── machineset.go │ │ │ │ ├── informers/ │ │ │ │ │ └── externalversions/ │ │ │ │ │ ├── internalinterfaces/ │ │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── machine/ │ │ │ │ │ └── v1beta1/ │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── machine.go │ │ │ │ │ ├── machinehealthcheck.go │ │ │ │ │ └── machineset.go │ │ │ │ └── listers/ │ │ │ │ └── machine/ │ │ │ │ └── v1beta1/ │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── machine.go │ │ │ │ ├── machinehealthcheck.go │ │ │ │ └── machineset.go │ │ │ └── operator/ │ │ │ └── applyconfigurations/ │ │ │ ├── internal/ │ │ │ │ └── internal.go │ │ │ └── operator/ │ │ │ └── v1/ │ │ │ ├── accesslogging.go │ │ │ ├── additionalnetworkdefinition.go │ │ │ ├── additionalroutingcapabilities.go │ │ │ ├── addpage.go │ │ │ ├── authentication.go │ │ │ ├── authenticationspec.go │ │ │ ├── authenticationstatus.go │ │ │ ├── awsclassicloadbalancerparameters.go │ │ │ ├── awscsidriverconfigspec.go │ │ │ ├── awsefsvolumemetrics.go │ │ │ ├── awsefsvolumemetricsrecursivewalkconfig.go │ │ │ ├── awsloadbalancerparameters.go │ │ │ ├── awsnetworkloadbalancerparameters.go │ │ │ ├── awssubnets.go │ │ │ ├── azurecsidriverconfigspec.go │ │ │ ├── azurediskencryptionset.go │ │ │ ├── bootimageskewenforcementconfig.go │ │ │ ├── bootimageskewenforcementstatus.go │ │ │ ├── capability.go │ │ │ ├── capabilityvisibility.go │ │ │ ├── clienttls.go │ │ │ ├── cloudcredential.go │ │ │ ├── cloudcredentialspec.go │ │ │ ├── cloudcredentialstatus.go │ │ │ ├── clusterbootimageautomatic.go │ │ │ ├── clusterbootimagemanual.go │ │ │ ├── clustercsidriver.go │ │ │ ├── clustercsidriverspec.go │ │ │ ├── clustercsidriverstatus.go │ │ │ ├── clusternetworkentry.go │ │ │ ├── config.go │ │ │ ├── configmapfilereference.go │ │ │ ├── configspec.go │ │ │ ├── configstatus.go │ │ │ ├── console.go │ │ │ ├── consoleconfigroute.go │ │ │ ├── consolecustomization.go │ │ │ ├── consoleproviders.go │ │ │ ├── consolespec.go │ │ │ ├── consolestatus.go │ │ │ ├── containerloggingdestinationparameters.go │ │ │ ├── csidriverconfigspec.go │ │ │ ├── csisnapshotcontroller.go │ │ │ ├── csisnapshotcontrollerspec.go │ │ │ ├── csisnapshotcontrollerstatus.go │ │ │ ├── defaultnetworkdefinition.go │ │ │ ├── developerconsolecatalogcategory.go │ │ │ ├── developerconsolecatalogcategorymeta.go │ │ │ ├── developerconsolecatalogcustomization.go │ │ │ ├── developerconsolecatalogtypes.go │ │ │ ├── dns.go │ │ │ ├── dnscache.go │ │ │ ├── dnsnodeplacement.go │ │ │ ├── dnsovertlsconfig.go │ │ │ ├── dnsspec.go │ │ │ ├── dnsstatus.go │ │ │ ├── dnstransportconfig.go │ │ │ ├── egressipconfig.go │ │ │ ├── endpointpublishingstrategy.go │ │ │ ├── etcd.go │ │ │ ├── etcdspec.go │ │ │ ├── etcdstatus.go │ │ │ ├── exportnetworkflows.go │ │ │ ├── featuresmigration.go │ │ │ ├── filereferencesource.go │ │ │ ├── forwardplugin.go │ │ │ ├── gatewayconfig.go │ │ │ ├── gathererstatus.go │ │ │ ├── gatherstatus.go │ │ │ ├── gcpcsidriverconfigspec.go │ │ │ ├── gcpkmskeyreference.go │ │ │ ├── gcploadbalancerparameters.go │ │ │ ├── generationstatus.go │ │ │ ├── healthcheck.go │ │ │ ├── hostnetworkstrategy.go │ │ │ ├── httpcompressionpolicy.go │ │ │ ├── hybridoverlayconfig.go │ │ │ ├── ibmcloudcsidriverconfigspec.go │ │ │ ├── ibmloadbalancerparameters.go │ │ │ ├── ingress.go │ │ │ ├── ingresscontroller.go │ │ │ ├── ingresscontrollercapturehttpcookie.go │ │ │ ├── ingresscontrollercapturehttpcookieunion.go │ │ │ ├── ingresscontrollercapturehttpheader.go │ │ │ ├── ingresscontrollercapturehttpheaders.go │ │ │ ├── ingresscontrollerhttpheader.go │ │ │ ├── ingresscontrollerhttpheaderactions.go │ │ │ ├── ingresscontrollerhttpheaderactionunion.go │ │ │ ├── ingresscontrollerhttpheaders.go │ │ │ ├── ingresscontrollerhttpuniqueidheaderpolicy.go │ │ │ ├── ingresscontrollerlogging.go │ │ │ ├── ingresscontrollersethttpheader.go │ │ │ ├── ingresscontrollerspec.go │ │ │ ├── ingresscontrollerstatus.go │ │ │ ├── ingresscontrollertuningoptions.go │ │ │ ├── insightsoperator.go │ │ │ ├── insightsoperatorspec.go │ │ │ ├── insightsoperatorstatus.go │ │ │ ├── insightsreport.go │ │ │ ├── ipamconfig.go │ │ │ ├── ipfixconfig.go │ │ │ ├── ipsecconfig.go │ │ │ ├── ipsecfullmodeconfig.go │ │ │ ├── ipv4gatewayconfig.go │ │ │ ├── ipv4ovnkubernetesconfig.go │ │ │ ├── ipv6gatewayconfig.go │ │ │ ├── ipv6ovnkubernetesconfig.go │ │ │ ├── irreconcilablevalidationoverrides.go │ │ │ ├── kubeapiserver.go │ │ │ ├── kubeapiserverspec.go │ │ │ ├── kubeapiserverstatus.go │ │ │ ├── kubecontrollermanager.go │ │ │ ├── kubecontrollermanagerspec.go │ │ │ ├── kubecontrollermanagerstatus.go │ │ │ ├── kubescheduler.go │ │ │ ├── kubeschedulerspec.go │ │ │ ├── kubeschedulerstatus.go │ │ │ ├── kubestorageversionmigrator.go │ │ │ ├── kubestorageversionmigratorspec.go │ │ │ ├── kubestorageversionmigratorstatus.go │ │ │ ├── loadbalancerstrategy.go │ │ │ ├── loggingdestination.go │ │ │ ├── logo.go │ │ │ ├── machineconfiguration.go │ │ │ ├── machineconfigurationspec.go │ │ │ ├── machineconfigurationstatus.go │ │ │ ├── machinemanager.go │ │ │ ├── machinemanagerselector.go │ │ │ ├── managedbootimages.go │ │ │ ├── mtumigration.go │ │ │ ├── mtumigrationvalues.go │ │ │ ├── netflowconfig.go │ │ │ ├── network.go │ │ │ ├── networkmigration.go │ │ │ ├── networkspec.go │ │ │ ├── networkstatus.go │ │ │ ├── nodedisruptionpolicyclusterstatus.go │ │ │ ├── nodedisruptionpolicyconfig.go │ │ │ ├── nodedisruptionpolicyspecaction.go │ │ │ ├── nodedisruptionpolicyspecfile.go │ │ │ ├── nodedisruptionpolicyspecsshkey.go │ │ │ ├── nodedisruptionpolicyspecunit.go │ │ │ ├── nodedisruptionpolicystatus.go │ │ │ ├── nodedisruptionpolicystatusaction.go │ │ │ ├── nodedisruptionpolicystatusfile.go │ │ │ ├── nodedisruptionpolicystatussshkey.go │ │ │ ├── nodedisruptionpolicystatusunit.go │ │ │ ├── nodeplacement.go │ │ │ ├── nodeportstrategy.go │ │ │ ├── nodestatus.go │ │ │ ├── oauthapiserverstatus.go │ │ │ ├── olm.go │ │ │ ├── olmspec.go │ │ │ ├── olmstatus.go │ │ │ ├── openshiftapiserver.go │ │ │ ├── openshiftapiserverspec.go │ │ │ ├── openshiftapiserverstatus.go │ │ │ ├── openshiftcontrollermanager.go │ │ │ ├── openshiftcontrollermanagerspec.go │ │ │ ├── openshiftcontrollermanagerstatus.go │ │ │ ├── openshiftsdnconfig.go │ │ │ ├── openstackloadbalancerparameters.go │ │ │ ├── operatorcondition.go │ │ │ ├── operatorspec.go │ │ │ ├── operatorstatus.go │ │ │ ├── ovnkubernetesconfig.go │ │ │ ├── partialselector.go │ │ │ ├── perspective.go │ │ │ ├── perspectivevisibility.go │ │ │ ├── pinnedresourcereference.go │ │ │ ├── policyauditconfig.go │ │ │ ├── privatestrategy.go │ │ │ ├── projectaccess.go │ │ │ ├── providerloadbalancerparameters.go │ │ │ ├── proxyconfig.go │ │ │ ├── quickstarts.go │ │ │ ├── reloadservice.go │ │ │ ├── resourceattributesaccessreview.go │ │ │ ├── restartservice.go │ │ │ ├── routeadmissionpolicy.go │ │ │ ├── server.go │ │ │ ├── serviceaccountissuerstatus.go │ │ │ ├── serviceca.go │ │ │ ├── servicecaspec.go │ │ │ ├── servicecastatus.go │ │ │ ├── servicecatalogapiserver.go │ │ │ ├── servicecatalogapiserverspec.go │ │ │ ├── servicecatalogapiserverstatus.go │ │ │ ├── servicecatalogcontrollermanager.go │ │ │ ├── servicecatalogcontrollermanagerspec.go │ │ │ ├── servicecatalogcontrollermanagerstatus.go │ │ │ ├── sflowconfig.go │ │ │ ├── simplemacvlanconfig.go │ │ │ ├── staticipamaddresses.go │ │ │ ├── staticipamconfig.go │ │ │ ├── staticipamdns.go │ │ │ ├── staticipamroutes.go │ │ │ ├── staticpodoperatorspec.go │ │ │ ├── staticpodoperatorstatus.go │ │ │ ├── statuspageprovider.go │ │ │ ├── storage.go │ │ │ ├── storagespec.go │ │ │ ├── storagestatus.go │ │ │ ├── syslogloggingdestinationparameters.go │ │ │ ├── theme.go │ │ │ ├── upstream.go │ │ │ ├── upstreamresolvers.go │ │ │ └── vspherecsidriverconfigspec.go │ │ ├── cloud-credential-operator/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ ├── apis/ │ │ │ │ └── cloudcredential/ │ │ │ │ └── v1/ │ │ │ │ ├── aws_manual.deepcopy.go │ │ │ │ ├── codec.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_alibaba.go │ │ │ │ ├── types_aws.go │ │ │ │ ├── types_azure.go │ │ │ │ ├── types_credentialsrequest.go │ │ │ │ ├── types_gcp.go │ │ │ │ ├── types_ibmcloud.go │ │ │ │ ├── types_kubevirt.go │ │ │ │ ├── types_nutanix.go │ │ │ │ ├── types_openstack.go │ │ │ │ ├── types_ovirt.go │ │ │ │ ├── types_powervs.go │ │ │ │ ├── types_vsphere.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── aws/ │ │ │ │ ├── client.go │ │ │ │ └── utils.go │ │ │ └── version/ │ │ │ └── version.go │ │ ├── cluster-autoscaler-operator/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ └── apis/ │ │ │ └── autoscaling/ │ │ │ ├── v1/ │ │ │ │ ├── clusterautoscaler_types.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1/ │ │ │ ├── doc.go │ │ │ ├── machineautoscaler_types.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── cluster-control-plane-machine-set-operator/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ └── machineproviders/ │ │ │ └── providers/ │ │ │ └── openshift/ │ │ │ └── machine/ │ │ │ └── v1beta1/ │ │ │ ├── failuredomain/ │ │ │ │ ├── failuredomain.go │ │ │ │ └── set.go │ │ │ └── providerconfig/ │ │ │ ├── aws.go │ │ │ ├── azure.go │ │ │ ├── gcp.go │ │ │ ├── generic_platform.go │ │ │ ├── nutanix.go │ │ │ ├── openstack.go │ │ │ ├── providerconfig.go │ │ │ └── vsphere.go │ │ ├── generic-admission-server/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ ├── apiserver/ │ │ │ │ └── apiserver.go │ │ │ ├── cmd/ │ │ │ │ ├── cmd.go │ │ │ │ └── server/ │ │ │ │ └── start.go │ │ │ └── registry/ │ │ │ └── admissionreview/ │ │ │ ├── admission_review.go │ │ │ ├── admission_review_v1.go │ │ │ └── generated/ │ │ │ └── openapi.go │ │ ├── hive/ │ │ │ └── apis/ │ │ │ ├── addtoscheme_hive_v1.go │ │ │ ├── addtoscheme_hivecontracts_v1alpha1.go │ │ │ ├── addtoscheme_hiveinternal_v1alpha1.go │ │ │ ├── apis.go │ │ │ ├── helpers/ │ │ │ │ └── namer.go │ │ │ ├── hive/ │ │ │ │ └── v1/ │ │ │ │ ├── agent/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── aws/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── azure/ │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── baremetal/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── checkpoint_types.go │ │ │ │ ├── clusterclaim_types.go │ │ │ │ ├── clusterdeployment_types.go │ │ │ │ ├── clusterdeploymentcustomization_types.go │ │ │ │ ├── clusterdeprovision_types.go │ │ │ │ ├── clusterimageset_types.go │ │ │ │ ├── clusterinstall_conditions.go │ │ │ │ ├── clusterpool_types.go │ │ │ │ ├── clusterprovision_types.go │ │ │ │ ├── clusterrelocate_types.go │ │ │ │ ├── clusterstate_types.go │ │ │ │ ├── conditions.go │ │ │ │ ├── dnszone_types.go │ │ │ │ ├── doc.go │ │ │ │ ├── gcp/ │ │ │ │ │ ├── clouduid.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepools.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── hiveconfig_types.go │ │ │ │ ├── ibmcloud/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── machinepool_types.go │ │ │ │ ├── machinepoolnamelease_types.go │ │ │ │ ├── metaruntimeobject.go │ │ │ │ ├── metricsconfig/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration_metrics.go │ │ │ │ │ ├── metrics_config.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── none/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── nutanix/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepools.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── openstack/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepools.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── register.go │ │ │ │ ├── syncidentityprovider_types.go │ │ │ │ ├── syncset_types.go │ │ │ │ ├── vsphere/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepools.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ ├── hivecontracts/ │ │ │ │ └── v1alpha1/ │ │ │ │ ├── clusterinstall_types.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── hiveinternal/ │ │ │ │ └── v1alpha1/ │ │ │ │ ├── clustersync_types.go │ │ │ │ ├── clustersynclease_types.go │ │ │ │ ├── doc.go │ │ │ │ ├── fakeclusterinstall_types.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── scheme/ │ │ │ └── scheme.go │ │ ├── installer/ │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── data/ │ │ │ │ ├── .gitignore │ │ │ │ ├── assets.go │ │ │ │ ├── assets_generate.go │ │ │ │ └── unpack.go │ │ │ └── pkg/ │ │ │ ├── asset/ │ │ │ │ ├── asset.go │ │ │ │ ├── doc.go │ │ │ │ ├── filefetcher.go │ │ │ │ ├── filewriter.go │ │ │ │ ├── installconfig/ │ │ │ │ │ ├── aws/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── availabilityzones.go │ │ │ │ │ │ ├── awserrors.go │ │ │ │ │ │ ├── basedomain.go │ │ │ │ │ │ ├── clients.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── ec2.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ ├── instancetypes.go │ │ │ │ │ │ ├── metadata.go │ │ │ │ │ │ ├── permissions.go │ │ │ │ │ │ ├── platform.go │ │ │ │ │ │ ├── presign.go │ │ │ │ │ │ ├── regions.go │ │ │ │ │ │ ├── route53.go │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ ├── sessionv2.go │ │ │ │ │ │ ├── subnet.go │ │ │ │ │ │ ├── tags.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── azure/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── azure.go │ │ │ │ │ │ ├── capabilities.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── metadata.go │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── baremetal/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── baremetal.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── basedomain.go │ │ │ │ │ ├── clusterid.go │ │ │ │ │ ├── clustername.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gcp/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── gcp.go │ │ │ │ │ │ ├── permissions.go │ │ │ │ │ │ ├── services.go │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ ├── usertags.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── ibmcloud/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── ibmcloud.go │ │ │ │ │ │ ├── metadata.go │ │ │ │ │ │ ├── responses/ │ │ │ │ │ │ │ └── responses.go │ │ │ │ │ │ ├── subnet.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── installconfig.go │ │ │ │ │ ├── installconfigbase.go │ │ │ │ │ ├── nutanix/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── nutanix.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── openstack/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── openstack.go │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ ├── validate.go │ │ │ │ │ │ ├── validation/ │ │ │ │ │ │ │ ├── cloudinfo.go │ │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ │ └── platform.go │ │ │ │ │ │ └── validvaluesfetcher.go │ │ │ │ │ ├── ovirt/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── cluster.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── credentials.go │ │ │ │ │ │ ├── datacenter.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ ├── ovirt.go │ │ │ │ │ │ ├── storage.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── platformcredscheck.go │ │ │ │ │ ├── platformpermscheck.go │ │ │ │ │ ├── platformprovisioncheck.go │ │ │ │ │ ├── powervc/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── platform.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── powervs/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── metadata.go │ │ │ │ │ │ ├── platform.go │ │ │ │ │ │ ├── regions.go │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── pullsecret.go │ │ │ │ │ ├── ssh.go │ │ │ │ │ └── vsphere/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── client.go │ │ │ │ │ ├── folder.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── permissions.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── vsphere.go │ │ │ │ ├── machines/ │ │ │ │ │ ├── aws/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── awsmachines.go │ │ │ │ │ │ ├── instance_types.go │ │ │ │ │ │ ├── machines.go │ │ │ │ │ │ └── machinesets.go │ │ │ │ │ ├── azure/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── azuremachines.go │ │ │ │ │ │ ├── machines.go │ │ │ │ │ │ └── machinesets.go │ │ │ │ │ ├── gcp/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── gcpmachines.go │ │ │ │ │ │ ├── machines.go │ │ │ │ │ │ ├── machinesets.go │ │ │ │ │ │ └── zones.go │ │ │ │ │ ├── ibmcloud/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── capimachines.go │ │ │ │ │ │ ├── machines.go │ │ │ │ │ │ ├── machinesets.go │ │ │ │ │ │ └── zones.go │ │ │ │ │ ├── nutanix/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── capimachines.go │ │ │ │ │ │ ├── machines.go │ │ │ │ │ │ └── machinesets.go │ │ │ │ │ ├── openstack/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ ├── machines.go │ │ │ │ │ │ ├── machinesets.go │ │ │ │ │ │ └── openstackmachines.go │ │ │ │ │ └── vsphere/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── capimachines.go │ │ │ │ │ ├── disks.go │ │ │ │ │ ├── machines.go │ │ │ │ │ └── machinesets.go │ │ │ │ ├── manifests/ │ │ │ │ │ ├── capiutils/ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── manifest.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── gcp/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── cloudproviderconfig.go │ │ │ │ │ ├── clouduid.go │ │ │ │ │ ├── cluster.go │ │ │ │ │ └── clustercsidriver.go │ │ │ │ ├── parents.go │ │ │ │ ├── state.go │ │ │ │ └── store.go │ │ │ ├── constants/ │ │ │ │ └── gcp/ │ │ │ │ ├── OWNERS │ │ │ │ └── gcp.go │ │ │ ├── destroy/ │ │ │ │ ├── aws/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── aws.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── ec2helpers.go │ │ │ │ │ ├── elbhelpers.go │ │ │ │ │ ├── errortracker.go │ │ │ │ │ ├── iamhelpers.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── shared.go │ │ │ │ ├── azure/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── azure.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── gcp/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── address.go │ │ │ │ │ ├── backendservice.go │ │ │ │ │ ├── bucket.go │ │ │ │ │ ├── bucketobject.go │ │ │ │ │ ├── cloudcontroller.go │ │ │ │ │ ├── cloudresource.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errortracker.go │ │ │ │ │ ├── filestore.go │ │ │ │ │ ├── firewall.go │ │ │ │ │ ├── forwardingrule.go │ │ │ │ │ ├── gcp.go │ │ │ │ │ ├── healthcheck.go │ │ │ │ │ ├── httphealthcheck.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── instance.go │ │ │ │ │ ├── instancegroup.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── policybinding.go │ │ │ │ │ ├── quota.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── route.go │ │ │ │ │ ├── router.go │ │ │ │ │ ├── serviceaccount.go │ │ │ │ │ ├── subnetwork.go │ │ │ │ │ ├── targetTCPProxies.go │ │ │ │ │ └── targetpool.go │ │ │ │ ├── ibmcloud/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── cloudobjectstorage.go │ │ │ │ │ ├── cloudresource.go │ │ │ │ │ ├── dedicatedhost.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errortracker.go │ │ │ │ │ ├── floatingip.go │ │ │ │ │ ├── iam.go │ │ │ │ │ ├── ibmcloud.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── instance.go │ │ │ │ │ ├── loadbalancer.go │ │ │ │ │ ├── publicgateway.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── resourcegroup.go │ │ │ │ │ ├── securitygroup.go │ │ │ │ │ ├── subnet.go │ │ │ │ │ └── vpc.go │ │ │ │ ├── nutanix/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── nutanix.go │ │ │ │ │ └── register.go │ │ │ │ ├── openstack/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── glance.go │ │ │ │ │ ├── openstack.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── semaphore.go │ │ │ │ ├── providers/ │ │ │ │ │ ├── registry.go │ │ │ │ │ └── types.go │ │ │ │ └── vsphere/ │ │ │ │ ├── OWNERS │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── vsphere.go │ │ │ ├── hostcrypt/ │ │ │ │ ├── dynamic.go │ │ │ │ ├── hostcrypt.go │ │ │ │ └── static.go │ │ │ ├── ipnet/ │ │ │ │ └── ipnet.go │ │ │ ├── quota/ │ │ │ │ ├── doc.go │ │ │ │ └── quota.go │ │ │ ├── rhcos/ │ │ │ │ ├── ami_regions.go │ │ │ │ ├── builds.go │ │ │ │ ├── doc.go │ │ │ │ ├── openstack.go │ │ │ │ ├── stream.go │ │ │ │ └── stream_scos.go │ │ │ ├── types/ │ │ │ │ ├── aws/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── availabilityzones.go │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── regions.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── featuregates.go │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── azure/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ ├── machines.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── platform_aro.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── disk.go │ │ │ │ │ │ ├── featuregates.go │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── baremetal/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── rootdevice.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── featuregates.go │ │ │ │ │ │ ├── libvirt.go │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── clustermetadata.go │ │ │ │ ├── clusterquota.go │ │ │ │ ├── common/ │ │ │ │ │ └── common.go │ │ │ │ ├── conversion/ │ │ │ │ │ ├── installconfig.go │ │ │ │ │ └── powervc/ │ │ │ │ │ └── convert.go │ │ │ │ ├── defaults/ │ │ │ │ │ ├── installconfig.go │ │ │ │ │ ├── machinepools.go │ │ │ │ │ └── validation/ │ │ │ │ │ └── featuregates.go │ │ │ │ ├── dns/ │ │ │ │ │ └── dns.go │ │ │ │ ├── doc.go │ │ │ │ ├── external/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── featuregates/ │ │ │ │ │ ├── featuregate.go │ │ │ │ │ └── featuregates.go │ │ │ │ ├── gcp/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── clouduid.go │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepools.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── quota.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── featuregates.go │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── ibmcloud/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── installconfig.go │ │ │ │ ├── installconfig_scos.go │ │ │ │ ├── machinepools.go │ │ │ │ ├── none/ │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── nutanix/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── client.go │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── featuregates.go │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── openstack/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── clientopts.go │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── servergrouppolicy.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── featuregates.go │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ ├── networkextensions/ │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ └── networkextensions.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── ovirt/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ ├── machinepools.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── powervc/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── servergrouppolicy.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── powervs/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepools.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── powervs_regions.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── utils.go │ │ │ │ ├── validation/ │ │ │ │ │ ├── installconfig.go │ │ │ │ │ └── machinepools.go │ │ │ │ ├── vsphere/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── conversion/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ └── installconfig.go │ │ │ │ │ ├── defaults/ │ │ │ │ │ │ └── platform.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machinepool.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── featuregates.go │ │ │ │ │ │ ├── machinepool.go │ │ │ │ │ │ └── platform.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── utils/ │ │ │ │ └── vmware.go │ │ │ ├── validate/ │ │ │ │ └── validate.go │ │ │ └── version/ │ │ │ └── version.go │ │ ├── library-go/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ ├── apiserver/ │ │ │ │ └── jsonpatch/ │ │ │ │ └── jsonpatch.go │ │ │ ├── certs/ │ │ │ │ ├── pem.go │ │ │ │ └── util.go │ │ │ ├── config/ │ │ │ │ ├── clusterstatus/ │ │ │ │ │ └── clusterstatus.go │ │ │ │ └── leaderelection/ │ │ │ │ └── leaderelection.go │ │ │ ├── controller/ │ │ │ │ ├── factory/ │ │ │ │ │ ├── base_controller.go │ │ │ │ │ ├── controller_context.go │ │ │ │ │ ├── eventfilters.go │ │ │ │ │ ├── factory.go │ │ │ │ │ └── interfaces.go │ │ │ │ └── ownerref.go │ │ │ ├── crypto/ │ │ │ │ ├── OWNERS │ │ │ │ ├── crypto.go │ │ │ │ └── rotation.go │ │ │ ├── manifest/ │ │ │ │ ├── OWNERS │ │ │ │ └── manifest.go │ │ │ ├── operator/ │ │ │ │ ├── certrotation/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── annotations.go │ │ │ │ │ ├── cabundle.go │ │ │ │ │ ├── client_cert_rotation_controller.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── label.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── signer.go │ │ │ │ │ └── target.go │ │ │ │ ├── condition/ │ │ │ │ │ └── condition.go │ │ │ │ ├── configobserver/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── apiserver/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── listers.go │ │ │ │ │ │ ├── observe_audit.go │ │ │ │ │ │ ├── observe_cors.go │ │ │ │ │ │ └── observe_tlssecurityprofile.go │ │ │ │ │ ├── config_observer_controller.go │ │ │ │ │ └── unstructured.go │ │ │ │ ├── events/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── recorder.go │ │ │ │ │ ├── recorder_in_memory.go │ │ │ │ │ ├── recorder_logging.go │ │ │ │ │ └── recorder_upstream.go │ │ │ │ ├── management/ │ │ │ │ │ └── management_state.go │ │ │ │ ├── resource/ │ │ │ │ │ ├── resourceapply/ │ │ │ │ │ │ ├── admissionregistration.go │ │ │ │ │ │ ├── apiextensions.go │ │ │ │ │ │ ├── apiregistration.go │ │ │ │ │ │ ├── apps.go │ │ │ │ │ │ ├── core.go │ │ │ │ │ │ ├── credentialsrequest.go │ │ │ │ │ │ ├── generic.go │ │ │ │ │ │ ├── json_patch_helpers.go │ │ │ │ │ │ ├── migration.go │ │ │ │ │ │ ├── monitoring.go │ │ │ │ │ │ ├── networking.go │ │ │ │ │ │ ├── policy.go │ │ │ │ │ │ ├── rbac.go │ │ │ │ │ │ ├── resource_cache.go │ │ │ │ │ │ ├── storage.go │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ └── volumesnapshotclass.go │ │ │ │ │ ├── resourcehelper/ │ │ │ │ │ │ ├── event_helpers.go │ │ │ │ │ │ └── resource_helpers.go │ │ │ │ │ ├── resourcemerge/ │ │ │ │ │ │ ├── admissionregistration.go │ │ │ │ │ │ ├── apiextensions.go │ │ │ │ │ │ ├── apps.go │ │ │ │ │ │ ├── generic_config_merger.go │ │ │ │ │ │ └── object_merger.go │ │ │ │ │ └── resourceread/ │ │ │ │ │ ├── admission.go │ │ │ │ │ ├── apiextensions.go │ │ │ │ │ ├── apiregistration.go │ │ │ │ │ ├── apps.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── core.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── images.go │ │ │ │ │ ├── migration.go │ │ │ │ │ ├── networking.go │ │ │ │ │ ├── policy.go │ │ │ │ │ ├── rbac.go │ │ │ │ │ ├── route.go │ │ │ │ │ ├── storage.go │ │ │ │ │ └── unstructured.go │ │ │ │ ├── resourcesynccontroller/ │ │ │ │ │ ├── core.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ └── resourcesync_controller.go │ │ │ │ └── v1helpers/ │ │ │ │ ├── args.go │ │ │ │ ├── canonicalize.go │ │ │ │ ├── core_getters.go │ │ │ │ ├── fake_informers.go │ │ │ │ ├── helpers.go │ │ │ │ ├── informers.go │ │ │ │ ├── interfaces.go │ │ │ │ └── test_helpers.go │ │ │ └── verify/ │ │ │ ├── OWNERS │ │ │ ├── configmap.go │ │ │ ├── persist.go │ │ │ ├── store/ │ │ │ │ ├── configmap/ │ │ │ │ │ └── configmap.go │ │ │ │ ├── parallel/ │ │ │ │ │ └── parallel.go │ │ │ │ ├── serial/ │ │ │ │ │ └── serial.go │ │ │ │ ├── sigstore/ │ │ │ │ │ ├── client.go │ │ │ │ │ └── sigstore.go │ │ │ │ └── store.go │ │ │ ├── util/ │ │ │ │ ├── encode.go │ │ │ │ └── util.go │ │ │ └── verify.go │ │ ├── machine-api-operator/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ ├── controller/ │ │ │ │ ├── machine/ │ │ │ │ │ ├── actuator.go │ │ │ │ │ ├── controller.go │ │ │ │ │ ├── drain_controller.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── testactuator.go │ │ │ │ └── vsphere/ │ │ │ │ ├── actuator.go │ │ │ │ ├── machine_scope.go │ │ │ │ ├── reconciler.go │ │ │ │ ├── session/ │ │ │ │ │ ├── session.go │ │ │ │ │ └── tag_ids_caching_client.go │ │ │ │ └── util.go │ │ │ ├── metrics/ │ │ │ │ ├── machinehealthcheck.go │ │ │ │ └── metrics.go │ │ │ └── util/ │ │ │ ├── conditions/ │ │ │ │ ├── conditions.go │ │ │ │ ├── gettersetter.go │ │ │ │ ├── matcher.go │ │ │ │ └── wrap.go │ │ │ ├── ipam/ │ │ │ │ └── util.go │ │ │ ├── leaderelection.go │ │ │ ├── retry.go │ │ │ └── util.go │ │ ├── machine-api-provider-gcp/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ ├── apis/ │ │ │ │ └── gcpprovider/ │ │ │ │ └── v1beta1/ │ │ │ │ └── conversion.go │ │ │ └── cloud/ │ │ │ └── gcp/ │ │ │ └── actuators/ │ │ │ ├── services/ │ │ │ │ └── tags/ │ │ │ │ ├── tagservice.go │ │ │ │ └── tagservice_mock.go │ │ │ └── util/ │ │ │ ├── gcp_credentials.go │ │ │ ├── gcp_machine_architecture.go │ │ │ ├── gcp_tags_labels.go │ │ │ └── register.go │ │ └── machine-api-provider-ibmcloud/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── apis/ │ │ └── ibmcloudprovider/ │ │ └── v1/ │ │ ├── doc.go │ │ ├── ibmcloudproviderconfig_types.go │ │ ├── ibmcloudproviderstatus_types.go │ │ ├── register.go │ │ └── zz_generated.deepcopy.go │ ├── opentracing/ │ │ └── opentracing-go/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ext/ │ │ │ ├── field.go │ │ │ └── tags.go │ │ ├── ext.go │ │ ├── globaltracer.go │ │ ├── gocontext.go │ │ ├── log/ │ │ │ ├── field.go │ │ │ └── util.go │ │ ├── noop.go │ │ ├── propagation.go │ │ ├── span.go │ │ └── tracer.go │ ├── ovirt/ │ │ └── go-ovirt/ │ │ ├── CHANGES.adoc │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── connection.go │ │ ├── error.go │ │ ├── helper.go │ │ ├── http.go │ │ ├── reader.go │ │ ├── readers.go │ │ ├── service.go │ │ ├── services.go │ │ ├── type.go │ │ ├── types.go │ │ ├── utils.go │ │ ├── version.go │ │ ├── writer.go │ │ └── writers.go │ ├── pelletier/ │ │ └── go-toml/ │ │ └── v2/ │ │ ├── .dockerignore │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.toml │ │ ├── .goreleaser.yaml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── ci.sh │ │ ├── decode.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── internal/ │ │ │ ├── characters/ │ │ │ │ ├── ascii.go │ │ │ │ └── utf8.go │ │ │ ├── danger/ │ │ │ │ ├── danger.go │ │ │ │ └── typeid.go │ │ │ └── tracker/ │ │ │ ├── key.go │ │ │ ├── seen.go │ │ │ └── tracker.go │ │ ├── localtime.go │ │ ├── marshaler.go │ │ ├── strict.go │ │ ├── toml.abnf │ │ ├── types.go │ │ ├── unmarshaler.go │ │ └── unstable/ │ │ ├── ast.go │ │ ├── builder.go │ │ ├── doc.go │ │ ├── kind.go │ │ ├── parser.go │ │ ├── scanner.go │ │ └── unmarshaler.go │ ├── peterbourgon/ │ │ └── diskv/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compression.go │ │ ├── diskv.go │ │ └── index.go │ ├── pkg/ │ │ ├── browser/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── browser.go │ │ │ ├── browser_darwin.go │ │ │ ├── browser_freebsd.go │ │ │ ├── browser_linux.go │ │ │ ├── browser_netbsd.go │ │ │ ├── browser_openbsd.go │ │ │ ├── browser_unsupported.go │ │ │ └── browser_windows.go │ │ └── errors/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go │ ├── planetscale/ │ │ └── vtprotobuf/ │ │ ├── LICENSE │ │ ├── protohelpers/ │ │ │ └── protohelpers.go │ │ └── types/ │ │ └── known/ │ │ ├── anypb/ │ │ │ └── any_vtproto.pb.go │ │ ├── durationpb/ │ │ │ └── duration_vtproto.pb.go │ │ ├── emptypb/ │ │ │ └── empty_vtproto.pb.go │ │ ├── structpb/ │ │ │ └── struct_vtproto.pb.go │ │ ├── timestamppb/ │ │ │ └── timestamp_vtproto.pb.go │ │ └── wrapperspb/ │ │ └── wrappers_vtproto.pb.go │ ├── pmezard/ │ │ └── go-difflib/ │ │ ├── LICENSE │ │ └── difflib/ │ │ └── difflib.go │ ├── polyfloyd/ │ │ └── go-errorlint/ │ │ ├── LICENSE │ │ └── errorlint/ │ │ ├── allowed.go │ │ ├── analysis.go │ │ ├── lint.go │ │ ├── options.go │ │ └── printf.go │ ├── prometheus/ │ │ ├── client_golang/ │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── internal/ │ │ │ │ └── github.com/ │ │ │ │ └── golang/ │ │ │ │ └── gddo/ │ │ │ │ ├── LICENSE │ │ │ │ └── httputil/ │ │ │ │ ├── header/ │ │ │ │ │ └── header.go │ │ │ │ └── negotiate.go │ │ │ └── prometheus/ │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectorfunc.go │ │ │ ├── collectors/ │ │ │ │ ├── collectors.go │ │ │ │ ├── dbstats_collector.go │ │ │ │ ├── expvar_collector.go │ │ │ │ ├── go_collector_go116.go │ │ │ │ ├── go_collector_latest.go │ │ │ │ └── process_collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal/ │ │ │ │ ├── almost_equal.go │ │ │ │ ├── difflib.go │ │ │ │ ├── go_collector_options.go │ │ │ │ ├── go_runtime_metrics.go │ │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_darwin.go │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ ├── process_collector_not_supported.go │ │ │ ├── process_collector_procfsenabled.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp/ │ │ │ │ ├── delegator.go │ │ │ │ ├── http.go │ │ │ │ ├── instrument_client.go │ │ │ │ ├── instrument_server.go │ │ │ │ ├── internal/ │ │ │ │ │ └── compression.go │ │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── testutil/ │ │ │ │ ├── lint.go │ │ │ │ ├── promlint/ │ │ │ │ │ ├── problem.go │ │ │ │ │ ├── promlint.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validations/ │ │ │ │ │ ├── counter_validations.go │ │ │ │ │ ├── duplicate_validations.go │ │ │ │ │ ├── generic_name_validations.go │ │ │ │ │ ├── help_validations.go │ │ │ │ │ ├── histogram_validations.go │ │ │ │ │ └── units.go │ │ │ │ └── testutil.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ │ ├── client_model/ │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── go/ │ │ │ └── metrics.pb.go │ │ ├── common/ │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── expfmt/ │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── openmetrics_create.go │ │ │ │ ├── text_create.go │ │ │ │ └── text_parse.go │ │ │ └── model/ │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── labelset_string.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ │ └── procfs/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal/ │ │ │ ├── fs/ │ │ │ │ └── fs.go │ │ │ └── util/ │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_dev_snmp6.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_tls_stat.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_statm.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go │ ├── prometheus-operator/ │ │ └── prometheus-operator/ │ │ └── pkg/ │ │ └── apis/ │ │ └── monitoring/ │ │ ├── LICENSE │ │ ├── register.go │ │ ├── resource.go │ │ └── v1/ │ │ ├── alertmanager_types.go │ │ ├── doc.go │ │ ├── podmonitor_types.go │ │ ├── probe_types.go │ │ ├── prometheus_types.go │ │ ├── prometheusrule_types.go │ │ ├── register.go │ │ ├── servicemonitor_types.go │ │ ├── thanos_types.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ ├── quasilyte/ │ │ ├── go-ruleguard/ │ │ │ ├── LICENSE │ │ │ ├── dsl/ │ │ │ │ ├── LICENSE │ │ │ │ ├── bundle.go │ │ │ │ ├── do.go │ │ │ │ ├── dsl.go │ │ │ │ ├── filter.go │ │ │ │ ├── internal.go │ │ │ │ └── types/ │ │ │ │ ├── ext.go │ │ │ │ ├── type_impl.go │ │ │ │ └── types.go │ │ │ ├── internal/ │ │ │ │ ├── goenv/ │ │ │ │ │ └── goenv.go │ │ │ │ ├── golist/ │ │ │ │ │ └── golist.go │ │ │ │ ├── xsrcimporter/ │ │ │ │ │ └── xsrcimporter.go │ │ │ │ └── xtypes/ │ │ │ │ └── xtypes.go │ │ │ └── ruleguard/ │ │ │ ├── ast_walker.go │ │ │ ├── bundle.go │ │ │ ├── engine.go │ │ │ ├── filters.go │ │ │ ├── go_version.go │ │ │ ├── gorule.go │ │ │ ├── goutil/ │ │ │ │ ├── goutil.go │ │ │ │ └── resolve.go │ │ │ ├── importer.go │ │ │ ├── ir/ │ │ │ │ ├── filter_op.gen.go │ │ │ │ ├── gen_filter_op.go │ │ │ │ └── ir.go │ │ │ ├── ir_loader.go │ │ │ ├── ir_utils.go │ │ │ ├── irconv/ │ │ │ │ └── irconv.go │ │ │ ├── libdsl.go │ │ │ ├── match_data.go │ │ │ ├── nodepath.go │ │ │ ├── profiling/ │ │ │ │ ├── no_labels.go │ │ │ │ └── with_labels.go │ │ │ ├── quasigo/ │ │ │ │ ├── compile.go │ │ │ │ ├── debug_info.go │ │ │ │ ├── disasm.go │ │ │ │ ├── env.go │ │ │ │ ├── eval.go │ │ │ │ ├── gen_opcodes.go │ │ │ │ ├── opcode_string.go │ │ │ │ ├── opcodes.gen.go │ │ │ │ ├── quasigo.go │ │ │ │ ├── stdlib/ │ │ │ │ │ ├── qfmt/ │ │ │ │ │ │ └── qfmt.go │ │ │ │ │ ├── qstrconv/ │ │ │ │ │ │ └── qstrconv.go │ │ │ │ │ └── qstrings/ │ │ │ │ │ └── qstrings.go │ │ │ │ └── utils.go │ │ │ ├── ruleguard.go │ │ │ ├── runner.go │ │ │ ├── textmatch/ │ │ │ │ ├── compile.go │ │ │ │ ├── matchers.go │ │ │ │ └── textmatch.go │ │ │ ├── typematch/ │ │ │ │ ├── patternop_string.go │ │ │ │ └── typematch.go │ │ │ └── utils.go │ │ ├── gogrep/ │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── compile.go │ │ │ ├── compile_import.go │ │ │ ├── gen_operations.go │ │ │ ├── gogrep.go │ │ │ ├── instructions.go │ │ │ ├── internal/ │ │ │ │ └── stdinfo/ │ │ │ │ └── stdinfo.go │ │ │ ├── match.go │ │ │ ├── nodetag/ │ │ │ │ └── nodetag.go │ │ │ ├── operation_string.go │ │ │ ├── operations.gen.go │ │ │ ├── parse.go │ │ │ └── slices.go │ │ ├── regex/ │ │ │ └── syntax/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ast.go │ │ │ ├── errors.go │ │ │ ├── lexer.go │ │ │ ├── operation.go │ │ │ ├── operation_string.go │ │ │ ├── parser.go │ │ │ ├── pos.go │ │ │ ├── tokenkind_string.go │ │ │ └── utils.go │ │ └── stdinfo/ │ │ ├── LICENSE │ │ ├── stdinfo.go │ │ └── stdinfo_gen.go │ ├── raeperd/ │ │ └── recvcheck/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── analyzer.go │ ├── rivo/ │ │ └── uniseg/ │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── doc.go │ │ ├── eastasianwidth.go │ │ ├── emojipresentation.go │ │ ├── gen_breaktest.go │ │ ├── gen_properties.go │ │ ├── grapheme.go │ │ ├── graphemeproperties.go │ │ ├── graphemerules.go │ │ ├── line.go │ │ ├── lineproperties.go │ │ ├── linerules.go │ │ ├── properties.go │ │ ├── sentence.go │ │ ├── sentenceproperties.go │ │ ├── sentencerules.go │ │ ├── step.go │ │ ├── width.go │ │ ├── word.go │ │ ├── wordproperties.go │ │ └── wordrules.go │ ├── robfig/ │ │ └── cron/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constantdelay.go │ │ ├── cron.go │ │ ├── doc.go │ │ ├── parser.go │ │ └── spec.go │ ├── rogpeppe/ │ │ └── go-internal/ │ │ ├── LICENSE │ │ ├── diff/ │ │ │ └── diff.go │ │ ├── internal/ │ │ │ └── syscall/ │ │ │ └── windows/ │ │ │ ├── mksyscall.go │ │ │ ├── psapi_windows.go │ │ │ ├── reparse_windows.go │ │ │ ├── security_windows.go │ │ │ ├── symlink_windows.go │ │ │ ├── syscall_windows.go │ │ │ ├── sysdll/ │ │ │ │ └── sysdll.go │ │ │ └── zsyscall_windows.go │ │ └── lockedfile/ │ │ ├── internal/ │ │ │ └── filelock/ │ │ │ ├── filelock.go │ │ │ ├── filelock_fcntl.go │ │ │ ├── filelock_other.go │ │ │ ├── filelock_unix.go │ │ │ └── filelock_windows.go │ │ ├── lockedfile.go │ │ ├── lockedfile_filelock.go │ │ ├── lockedfile_plan9.go │ │ └── mutex.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 │ ├── ryancurrah/ │ │ └── gomodguard/ │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── Dockerfile │ │ ├── Dockerfile.goreleaser │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── allowed.go │ │ ├── blocked.go │ │ ├── issue.go │ │ └── processor.go │ ├── ryanrolds/ │ │ └── sqlclosecheck/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── analyzer/ │ │ └── analyzer.go │ ├── sanposhiho/ │ │ └── wastedassign/ │ │ └── v2/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── wastedassign.go │ ├── santhosh-tekuri/ │ │ └── jsonschema/ │ │ └── v6/ │ │ ├── .gitmodules │ │ ├── .golangci.yml │ │ ├── .pre-commit-hooks.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compiler.go │ │ ├── content.go │ │ ├── draft.go │ │ ├── format.go │ │ ├── go.work │ │ ├── kind/ │ │ │ └── kind.go │ │ ├── loader.go │ │ ├── metaschemas/ │ │ │ ├── draft/ │ │ │ │ ├── 2019-09/ │ │ │ │ │ ├── meta/ │ │ │ │ │ │ ├── applicator │ │ │ │ │ │ ├── content │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── format │ │ │ │ │ │ ├── meta-data │ │ │ │ │ │ └── validation │ │ │ │ │ └── schema │ │ │ │ └── 2020-12/ │ │ │ │ ├── meta/ │ │ │ │ │ ├── applicator │ │ │ │ │ ├── content │ │ │ │ │ ├── core │ │ │ │ │ ├── format-annotation │ │ │ │ │ ├── format-assertion │ │ │ │ │ ├── meta-data │ │ │ │ │ ├── unevaluated │ │ │ │ │ └── validation │ │ │ │ └── schema │ │ │ ├── draft-04/ │ │ │ │ └── schema │ │ │ ├── draft-06/ │ │ │ │ └── schema │ │ │ └── draft-07/ │ │ │ └── schema │ │ ├── objcompiler.go │ │ ├── output.go │ │ ├── position.go │ │ ├── root.go │ │ ├── roots.go │ │ ├── schema.go │ │ ├── util.go │ │ ├── validator.go │ │ └── vocab.go │ ├── sashamelentyev/ │ │ ├── interfacebloat/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ └── analyzer/ │ │ │ └── analyzer.go │ │ └── usestdlibvars/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── analyzer/ │ │ ├── analyzer.go │ │ └── internal/ │ │ └── mapping/ │ │ └── mapping.go │ ├── shurcooL/ │ │ ├── httpfs/ │ │ │ ├── LICENSE │ │ │ └── vfsutil/ │ │ │ ├── file.go │ │ │ ├── vfsutil.go │ │ │ └── walk.go │ │ └── vfsgen/ │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── commentwriter.go │ │ ├── doc.go │ │ ├── generator.go │ │ ├── options.go │ │ └── stringwriter.go │ ├── sivchari/ │ │ ├── containedctx/ │ │ │ ├── .golangci.yml │ │ │ ├── LICENCE │ │ │ ├── README.md │ │ │ └── containedctx.go │ │ └── tenv/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── goreleaser.yaml │ │ └── tenv.go │ ├── sonatard/ │ │ └── noctx/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ngfunc/ │ │ │ ├── main.go │ │ │ ├── report.go │ │ │ └── types.go │ │ ├── noctx.go │ │ └── reqwithoutctx/ │ │ ├── main.go │ │ ├── report.go │ │ └── ssa.go │ ├── sourcegraph/ │ │ ├── conc/ │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── internal/ │ │ │ │ └── multierror/ │ │ │ │ ├── multierror_go119.go │ │ │ │ └── multierror_go120.go │ │ │ ├── iter/ │ │ │ │ ├── iter.go │ │ │ │ └── map.go │ │ │ ├── panics/ │ │ │ │ ├── panics.go │ │ │ │ └── try.go │ │ │ └── waitgroup.go │ │ └── go-diff/ │ │ ├── LICENSE │ │ └── diff/ │ │ ├── diff.go │ │ ├── doc.go │ │ ├── parse.go │ │ ├── print.go │ │ └── reader_util.go │ ├── spf13/ │ │ ├── afero/ │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── afero.go │ │ │ ├── appveyor.yml │ │ │ ├── basepath.go │ │ │ ├── cacheOnReadFs.go │ │ │ ├── const_bsds.go │ │ │ ├── const_win_unix.go │ │ │ ├── copyOnWriteFs.go │ │ │ ├── httpFs.go │ │ │ ├── internal/ │ │ │ │ └── common/ │ │ │ │ └── adapters.go │ │ │ ├── iofs.go │ │ │ ├── ioutil.go │ │ │ ├── lstater.go │ │ │ ├── match.go │ │ │ ├── mem/ │ │ │ │ ├── dir.go │ │ │ │ ├── dirmap.go │ │ │ │ └── file.go │ │ │ ├── memmap.go │ │ │ ├── os.go │ │ │ ├── path.go │ │ │ ├── readonlyfs.go │ │ │ ├── regexpfs.go │ │ │ ├── symlink.go │ │ │ ├── unionFile.go │ │ │ └── util.go │ │ ├── cast/ │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cast.go │ │ │ ├── caste.go │ │ │ └── timeformattype_string.go │ │ ├── cobra/ │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .mailmap │ │ │ ├── CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── active_help.go │ │ │ ├── args.go │ │ │ ├── bash_completions.go │ │ │ ├── bash_completionsV2.go │ │ │ ├── cobra.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ ├── command_win.go │ │ │ ├── completions.go │ │ │ ├── fish_completions.go │ │ │ ├── flag_groups.go │ │ │ ├── powershell_completions.go │ │ │ ├── shell_completions.go │ │ │ └── zsh_completions.go │ │ └── pflag/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_func.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── errors.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── func.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── ipnet_slice.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── text.go │ │ ├── time.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ ├── spiffe/ │ │ └── go-spiffe/ │ │ └── v2/ │ │ ├── LICENSE │ │ ├── bundle/ │ │ │ ├── jwtbundle/ │ │ │ │ ├── bundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── set.go │ │ │ │ └── source.go │ │ │ ├── spiffebundle/ │ │ │ │ ├── bundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── set.go │ │ │ │ └── source.go │ │ │ └── x509bundle/ │ │ │ ├── bundle.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── source.go │ │ ├── internal/ │ │ │ ├── cryptoutil/ │ │ │ │ └── keys.go │ │ │ ├── jwtutil/ │ │ │ │ └── util.go │ │ │ ├── pemutil/ │ │ │ │ └── pem.go │ │ │ └── x509util/ │ │ │ └── util.go │ │ └── spiffeid/ │ │ ├── charset_backcompat_allow.go │ │ ├── charset_backcompat_deny.go │ │ ├── errors.go │ │ ├── id.go │ │ ├── match.go │ │ ├── path.go │ │ ├── require.go │ │ └── trustdomain.go │ ├── ssgreg/ │ │ └── nlreturn/ │ │ └── v2/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── nlreturn/ │ │ └── nlreturn.go │ ├── stbenjam/ │ │ └── no-sprintf-host-port/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── analyzer/ │ │ └── analyzer.go │ ├── stretchr/ │ │ ├── objx/ │ │ │ ├── .codeclimate.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Taskfile.yml │ │ │ ├── accessors.go │ │ │ ├── conversions.go │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── mutations.go │ │ │ ├── security.go │ │ │ ├── tests.go │ │ │ ├── type_specific.go │ │ │ ├── type_specific_codegen.go │ │ │ └── value.go │ │ └── 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 │ │ ├── mock/ │ │ │ ├── doc.go │ │ │ └── mock.go │ │ ├── require/ │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── require.go │ │ │ ├── require.go.tmpl │ │ │ ├── require_forward.go │ │ │ ├── require_forward.go.tmpl │ │ │ └── requirements.go │ │ └── suite/ │ │ ├── doc.go │ │ ├── interfaces.go │ │ ├── stats.go │ │ └── suite.go │ ├── subosito/ │ │ └── gotenv/ │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── gotenv.go │ ├── tdakkota/ │ │ └── asciicheck/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ascii.go │ │ └── asciicheck.go │ ├── tidwall/ │ │ ├── gjson/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SYNTAX.md │ │ │ └── gjson.go │ │ ├── match/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── match.go │ │ ├── pretty/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pretty.go │ │ └── sjson/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── sjson.go │ ├── timakin/ │ │ └── bodyclose/ │ │ ├── LICENSE │ │ └── passes/ │ │ └── bodyclose/ │ │ └── bodyclose.go │ ├── tomarrell/ │ │ └── wrapcheck/ │ │ └── v2/ │ │ ├── LICENSE │ │ └── wrapcheck/ │ │ └── wrapcheck.go │ ├── tommy-muehle/ │ │ └── go-mnd/ │ │ └── v2/ │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── action.yml │ │ ├── analyzer.go │ │ ├── checks/ │ │ │ ├── argument.go │ │ │ ├── assign.go │ │ │ ├── case.go │ │ │ ├── checks.go │ │ │ ├── condition.go │ │ │ ├── operation.go │ │ │ └── return.go │ │ ├── config/ │ │ │ └── config.go │ │ └── entrypoint.sh │ ├── ultraware/ │ │ ├── funlen/ │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── funlen.go │ │ └── whitespace/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── whitespace.go │ ├── uudashr/ │ │ ├── gocognit/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── gocognit.go │ │ │ ├── recv.go │ │ │ └── recv_pre118.go │ │ └── iface/ │ │ ├── LICENSE │ │ ├── identical/ │ │ │ ├── doc.go │ │ │ └── identical.go │ │ ├── internal/ │ │ │ └── directive/ │ │ │ └── directive.go │ │ ├── opaque/ │ │ │ ├── doc.go │ │ │ └── opaque.go │ │ └── unused/ │ │ ├── doc.go │ │ └── unused.go │ ├── vincent-petithory/ │ │ └── dataurl/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dataurl.go │ │ ├── doc.go │ │ ├── lex.go │ │ ├── rfc2396.go │ │ └── wercker.yml │ ├── vmware/ │ │ └── govmomi/ │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── Dockerfile.govc │ │ ├── Dockerfile.govc.runner │ │ ├── Dockerfile.vcsim │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── client.go │ │ ├── cns/ │ │ │ ├── .gitignore │ │ │ ├── client.go │ │ │ ├── cns_util.go │ │ │ ├── methods/ │ │ │ │ ├── methods.go │ │ │ │ └── unreleased.go │ │ │ ├── types/ │ │ │ │ ├── enum.go │ │ │ │ ├── if.go │ │ │ │ ├── types.go │ │ │ │ └── unreleased_types.go │ │ │ └── unreleased_client.go │ │ ├── fault/ │ │ │ └── fault.go │ │ ├── find/ │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── finder.go │ │ │ └── recurser.go │ │ ├── history/ │ │ │ └── collector.go │ │ ├── internal/ │ │ │ ├── helpers.go │ │ │ ├── methods.go │ │ │ ├── types.go │ │ │ └── version/ │ │ │ └── version.go │ │ ├── list/ │ │ │ ├── lister.go │ │ │ └── path.go │ │ ├── nfc/ │ │ │ ├── lease.go │ │ │ └── lease_updater.go │ │ ├── object/ │ │ │ ├── authorization_manager.go │ │ │ ├── authorization_manager_internal.go │ │ │ ├── cluster_compute_resource.go │ │ │ ├── common.go │ │ │ ├── compute_resource.go │ │ │ ├── custom_fields_manager.go │ │ │ ├── customization_spec_manager.go │ │ │ ├── datacenter.go │ │ │ ├── datastore.go │ │ │ ├── datastore_file.go │ │ │ ├── datastore_file_manager.go │ │ │ ├── datastore_path.go │ │ │ ├── diagnostic_log.go │ │ │ ├── diagnostic_manager.go │ │ │ ├── distributed_virtual_portgroup.go │ │ │ ├── distributed_virtual_switch.go │ │ │ ├── environment_browser.go │ │ │ ├── extension_manager.go │ │ │ ├── file_manager.go │ │ │ ├── folder.go │ │ │ ├── host_account_manager.go │ │ │ ├── host_certificate_info.go │ │ │ ├── host_certificate_manager.go │ │ │ ├── host_config_manager.go │ │ │ ├── host_datastore_browser.go │ │ │ ├── host_datastore_system.go │ │ │ ├── host_date_time_system.go │ │ │ ├── host_firewall_system.go │ │ │ ├── host_network_system.go │ │ │ ├── host_service_system.go │ │ │ ├── host_storage_system.go │ │ │ ├── host_system.go │ │ │ ├── host_virtual_nic_manager.go │ │ │ ├── host_vsan_internal_system.go │ │ │ ├── host_vsan_system.go │ │ │ ├── namespace_manager.go │ │ │ ├── network.go │ │ │ ├── network_reference.go │ │ │ ├── opaque_network.go │ │ │ ├── option_manager.go │ │ │ ├── option_value_list.go │ │ │ ├── resource_pool.go │ │ │ ├── search_index.go │ │ │ ├── storage_pod.go │ │ │ ├── storage_resource_manager.go │ │ │ ├── task.go │ │ │ ├── tenant_manager.go │ │ │ ├── types.go │ │ │ ├── virtual_app.go │ │ │ ├── virtual_device_list.go │ │ │ ├── virtual_disk_manager.go │ │ │ ├── virtual_disk_manager_internal.go │ │ │ ├── virtual_machine.go │ │ │ ├── vm_compatability_checker.go │ │ │ ├── vm_provisioning_checker.go │ │ │ └── vmware_distributed_virtual_switch.go │ │ ├── pbm/ │ │ │ ├── client.go │ │ │ ├── methods/ │ │ │ │ ├── internal_methods.go │ │ │ │ └── methods.go │ │ │ ├── pbm_util.go │ │ │ └── types/ │ │ │ ├── enum.go │ │ │ ├── if.go │ │ │ ├── internal_types.go │ │ │ └── types.go │ │ ├── program.mk │ │ ├── property/ │ │ │ ├── collector.go │ │ │ ├── filter.go │ │ │ ├── match.go │ │ │ └── wait.go │ │ ├── session/ │ │ │ ├── keep_alive.go │ │ │ ├── keepalive/ │ │ │ │ └── handler.go │ │ │ └── manager.go │ │ ├── task/ │ │ │ ├── error.go │ │ │ ├── history_collector.go │ │ │ ├── manager.go │ │ │ └── wait.go │ │ ├── vapi/ │ │ │ ├── internal/ │ │ │ │ └── internal.go │ │ │ ├── rest/ │ │ │ │ ├── client.go │ │ │ │ └── resource.go │ │ │ └── tags/ │ │ │ ├── categories.go │ │ │ ├── errors.go │ │ │ ├── tag_association.go │ │ │ └── tags.go │ │ ├── view/ │ │ │ ├── container_view.go │ │ │ ├── list_view.go │ │ │ ├── managed_object_view.go │ │ │ ├── manager.go │ │ │ └── task_view.go │ │ ├── vim25/ │ │ │ ├── client.go │ │ │ ├── debug/ │ │ │ │ ├── debug.go │ │ │ │ ├── file.go │ │ │ │ └── log.go │ │ │ ├── doc.go │ │ │ ├── json/ │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── decode.go │ │ │ │ ├── discriminator.go │ │ │ │ ├── encode.go │ │ │ │ ├── fold.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── indent.go │ │ │ │ ├── scanner.go │ │ │ │ ├── stream.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── methods/ │ │ │ │ ├── methods.go │ │ │ │ ├── service_content.go │ │ │ │ └── unreleased.go │ │ │ ├── mo/ │ │ │ │ ├── ancestors.go │ │ │ │ ├── entity.go │ │ │ │ ├── extra.go │ │ │ │ ├── helpers.go │ │ │ │ ├── mo.go │ │ │ │ ├── reference.go │ │ │ │ ├── registry.go │ │ │ │ ├── retrieve.go │ │ │ │ └── type_info.go │ │ │ ├── progress/ │ │ │ │ ├── aggregator.go │ │ │ │ ├── doc.go │ │ │ │ ├── loger.go │ │ │ │ ├── prefix.go │ │ │ │ ├── reader.go │ │ │ │ ├── report.go │ │ │ │ ├── scale.go │ │ │ │ ├── sinker.go │ │ │ │ └── tee.go │ │ │ ├── retry.go │ │ │ ├── soap/ │ │ │ │ ├── client.go │ │ │ │ ├── debug.go │ │ │ │ ├── error.go │ │ │ │ ├── json_client.go │ │ │ │ └── soap.go │ │ │ ├── types/ │ │ │ │ ├── base.go │ │ │ │ ├── byte_slice.go │ │ │ │ ├── configspec.go │ │ │ │ ├── deep_copy.go │ │ │ │ ├── enum.go │ │ │ │ ├── esxi_version.go │ │ │ │ ├── fault.go │ │ │ │ ├── hardware_version.go │ │ │ │ ├── helpers.go │ │ │ │ ├── if.go │ │ │ │ ├── json.go │ │ │ │ ├── registry.go │ │ │ │ ├── types.go │ │ │ │ └── unreleased.go │ │ │ └── xml/ │ │ │ ├── LICENSE │ │ │ ├── extras.go │ │ │ ├── marshal.go │ │ │ ├── read.go │ │ │ ├── typeinfo.go │ │ │ └── xml.go │ │ └── vsan/ │ │ └── vsanfs/ │ │ └── types/ │ │ ├── enum.go │ │ └── types.go │ ├── x448/ │ │ └── float16/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── float16.go │ ├── xen0n/ │ │ └── gosmopolitan/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.zh-Hans.md │ │ └── lib.go │ ├── yagipy/ │ │ └── maintidx/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── maintidx.go │ │ ├── pkg/ │ │ │ ├── cyc/ │ │ │ │ └── cyc.go │ │ │ └── halstvol/ │ │ │ ├── halstvol.go │ │ │ └── handle.go │ │ └── visitor.go │ ├── yeya24/ │ │ └── promlinter/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── promlinter.go │ ├── ykadowak/ │ │ └── zerologlint/ │ │ ├── .goreleaser.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ └── zerologlint.go │ └── yosida95/ │ └── uritemplate/ │ └── v3/ │ ├── LICENSE │ ├── README.rst │ ├── compile.go │ ├── equals.go │ ├── error.go │ ├── escape.go │ ├── expression.go │ ├── machine.go │ ├── match.go │ ├── parse.go │ ├── prog.go │ ├── uritemplate.go │ └── value.go ├── gitlab.com/ │ └── bosi/ │ └── decorder/ │ ├── .gitignore │ ├── .gitlab-ci.params.yml │ ├── .gitlab-ci.yml │ ├── LICENSE.md │ ├── Makefile │ ├── README.md │ ├── analyzer.go │ └── renovate.json ├── go-simpler.org/ │ ├── musttag/ │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── builtins.go │ │ ├── musttag.go │ │ └── utils.go │ └── sloglint/ │ ├── .golangci.yml │ ├── .goreleaser.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── sloglint.go ├── go.etcd.io/ │ └── etcd/ │ ├── api/ │ │ └── v3/ │ │ ├── LICENSE │ │ ├── authpb/ │ │ │ ├── auth.pb.go │ │ │ └── auth.proto │ │ ├── etcdserverpb/ │ │ │ ├── etcdserver.pb.go │ │ │ ├── etcdserver.proto │ │ │ ├── raft_internal.pb.go │ │ │ ├── raft_internal.proto │ │ │ ├── raft_internal_stringer.go │ │ │ ├── rpc.pb.go │ │ │ └── rpc.proto │ │ ├── membershippb/ │ │ │ ├── membership.pb.go │ │ │ └── membership.proto │ │ ├── mvccpb/ │ │ │ ├── kv.pb.go │ │ │ └── kv.proto │ │ ├── v3rpc/ │ │ │ └── rpctypes/ │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── md.go │ │ │ └── metadatafields.go │ │ ├── version/ │ │ │ └── version.go │ │ └── versionpb/ │ │ ├── version.pb.go │ │ └── version.proto │ └── client/ │ ├── pkg/ │ │ └── v3/ │ │ ├── LICENSE │ │ ├── fileutil/ │ │ │ ├── dir_unix.go │ │ │ ├── dir_windows.go │ │ │ ├── doc.go │ │ │ ├── filereader.go │ │ │ ├── fileutil.go │ │ │ ├── lock.go │ │ │ ├── lock_flock.go │ │ │ ├── lock_linux.go │ │ │ ├── lock_plan9.go │ │ │ ├── lock_solaris.go │ │ │ ├── lock_unix.go │ │ │ ├── lock_windows.go │ │ │ ├── preallocate.go │ │ │ ├── preallocate_darwin.go │ │ │ ├── preallocate_unix.go │ │ │ ├── preallocate_unsupported.go │ │ │ ├── purge.go │ │ │ ├── read_dir.go │ │ │ ├── sync.go │ │ │ ├── sync_darwin.go │ │ │ └── sync_linux.go │ │ ├── logutil/ │ │ │ ├── doc.go │ │ │ ├── log_format.go │ │ │ ├── log_level.go │ │ │ ├── zap.go │ │ │ └── zap_journal.go │ │ ├── systemd/ │ │ │ ├── doc.go │ │ │ └── journal.go │ │ ├── tlsutil/ │ │ │ ├── cipher_suites.go │ │ │ ├── doc.go │ │ │ ├── tlsutil.go │ │ │ └── versions.go │ │ ├── transport/ │ │ │ ├── doc.go │ │ │ ├── keepalive_listener.go │ │ │ ├── keepalive_listener_openbsd.go │ │ │ ├── keepalive_listener_unix.go │ │ │ ├── limit_listen.go │ │ │ ├── listener.go │ │ │ ├── listener_opts.go │ │ │ ├── listener_tls.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_solaris.go │ │ │ ├── sockopt_unix.go │ │ │ ├── sockopt_wasm.go │ │ │ ├── sockopt_windows.go │ │ │ ├── timeout_conn.go │ │ │ ├── timeout_dialer.go │ │ │ ├── timeout_listener.go │ │ │ ├── timeout_transport.go │ │ │ ├── tls.go │ │ │ ├── transport.go │ │ │ └── unix_listener.go │ │ ├── types/ │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── set.go │ │ │ ├── slice.go │ │ │ ├── urls.go │ │ │ └── urlsmap.go │ │ └── verify/ │ │ └── verify.go │ └── v3/ │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── auth.go │ ├── client.go │ ├── cluster.go │ ├── compact_op.go │ ├── compare.go │ ├── config.go │ ├── credentials/ │ │ └── credentials.go │ ├── ctx.go │ ├── doc.go │ ├── internal/ │ │ ├── endpoint/ │ │ │ └── endpoint.go │ │ └── resolver/ │ │ └── resolver.go │ ├── kubernetes/ │ │ ├── client.go │ │ └── interface.go │ ├── kv.go │ ├── lease.go │ ├── logger.go │ ├── maintenance.go │ ├── op.go │ ├── options.go │ ├── retry.go │ ├── retry_interceptor.go │ ├── sort.go │ ├── txn.go │ ├── utils.go │ └── watch.go ├── go.mongodb.org/ │ └── mongo-driver/ │ ├── LICENSE │ ├── bson/ │ │ ├── bson.go │ │ ├── bsoncodec/ │ │ │ ├── array_codec.go │ │ │ ├── bsoncodec.go │ │ │ ├── byte_slice_codec.go │ │ │ ├── codec_cache.go │ │ │ ├── cond_addr_codec.go │ │ │ ├── default_value_decoders.go │ │ │ ├── default_value_encoders.go │ │ │ ├── doc.go │ │ │ ├── empty_interface_codec.go │ │ │ ├── map_codec.go │ │ │ ├── mode.go │ │ │ ├── pointer_codec.go │ │ │ ├── proxy.go │ │ │ ├── registry.go │ │ │ ├── slice_codec.go │ │ │ ├── string_codec.go │ │ │ ├── struct_codec.go │ │ │ ├── struct_tag_parser.go │ │ │ ├── time_codec.go │ │ │ ├── types.go │ │ │ └── uint_codec.go │ │ ├── bsonoptions/ │ │ │ ├── byte_slice_codec_options.go │ │ │ ├── doc.go │ │ │ ├── empty_interface_codec_options.go │ │ │ ├── map_codec_options.go │ │ │ ├── slice_codec_options.go │ │ │ ├── string_codec_options.go │ │ │ ├── struct_codec_options.go │ │ │ ├── time_codec_options.go │ │ │ └── uint_codec_options.go │ │ ├── bsonrw/ │ │ │ ├── copier.go │ │ │ ├── doc.go │ │ │ ├── extjson_parser.go │ │ │ ├── extjson_reader.go │ │ │ ├── extjson_tables.go │ │ │ ├── extjson_wrappers.go │ │ │ ├── extjson_writer.go │ │ │ ├── json_scanner.go │ │ │ ├── mode.go │ │ │ ├── reader.go │ │ │ ├── value_reader.go │ │ │ ├── value_writer.go │ │ │ └── writer.go │ │ ├── bsontype/ │ │ │ └── bsontype.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── marshal.go │ │ ├── primitive/ │ │ │ ├── decimal.go │ │ │ ├── objectid.go │ │ │ └── primitive.go │ │ ├── primitive_codecs.go │ │ ├── raw.go │ │ ├── raw_element.go │ │ ├── raw_value.go │ │ ├── registry.go │ │ ├── types.go │ │ └── unmarshal.go │ └── x/ │ └── bsonx/ │ └── bsoncore/ │ ├── array.go │ ├── bson_arraybuilder.go │ ├── bson_documentbuilder.go │ ├── bsoncore.go │ ├── doc.go │ ├── document.go │ ├── document_sequence.go │ ├── element.go │ ├── tables.go │ └── value.go ├── go.opentelemetry.io/ │ ├── auto/ │ │ └── sdk/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal/ │ │ │ └── telemetry/ │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go │ ├── contrib/ │ │ ├── detectors/ │ │ │ └── gcp/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cloud-function.go │ │ │ ├── cloud-run.go │ │ │ ├── detector.go │ │ │ ├── gce.go │ │ │ ├── gke.go │ │ │ ├── types.go │ │ │ └── version.go │ │ └── instrumentation/ │ │ ├── google.golang.org/ │ │ │ └── grpc/ │ │ │ └── otelgrpc/ │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── interceptor.go │ │ │ ├── interceptorinfo.go │ │ │ ├── internal/ │ │ │ │ └── parse.go │ │ │ ├── metadata_supplier.go │ │ │ ├── stats_handler.go │ │ │ └── version.go │ │ └── net/ │ │ └── http/ │ │ └── otelhttp/ │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal/ │ │ │ ├── request/ │ │ │ │ ├── body_wrapper.go │ │ │ │ ├── gen.go │ │ │ │ └── resp_writer_wrapper.go │ │ │ ├── semconv/ │ │ │ │ ├── env.go │ │ │ │ ├── gen.go │ │ │ │ ├── httpconv.go │ │ │ │ ├── util.go │ │ │ │ └── v1.20.0.go │ │ │ └── semconvutil/ │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── netconv.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go │ ├── otel/ │ │ ├── .clomonitor.yml │ │ ├── .codespellignore │ │ ├── .codespellrc │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .lycheeignore │ │ ├── .markdownlint.yaml │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── SECURITY-INSIGHTS.yml │ │ ├── VERSIONING.md │ │ ├── attribute/ │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── filter.go │ │ │ ├── hash.go │ │ │ ├── internal/ │ │ │ │ ├── attribute.go │ │ │ │ └── xxhash/ │ │ │ │ └── xxhash.go │ │ │ ├── iterator.go │ │ │ ├── key.go │ │ │ ├── kv.go │ │ │ ├── rawhelpers.go │ │ │ ├── set.go │ │ │ ├── type_string.go │ │ │ └── value.go │ │ ├── baggage/ │ │ │ ├── README.md │ │ │ ├── baggage.go │ │ │ ├── context.go │ │ │ └── doc.go │ │ ├── codes/ │ │ │ ├── README.md │ │ │ ├── codes.go │ │ │ └── doc.go │ │ ├── dependencies.Dockerfile │ │ ├── doc.go │ │ ├── error_handler.go │ │ ├── exporters/ │ │ │ └── otlp/ │ │ │ └── otlptrace/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── clients.go │ │ │ ├── doc.go │ │ │ ├── exporter.go │ │ │ ├── internal/ │ │ │ │ └── tracetransform/ │ │ │ │ ├── attribute.go │ │ │ │ ├── instrumentation.go │ │ │ │ ├── resource.go │ │ │ │ └── span.go │ │ │ ├── otlptracegrpc/ │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── exporter.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── envconfig/ │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── otlpconfig/ │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ └── tls.go │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ └── retry/ │ │ │ │ │ └── retry.go │ │ │ │ └── options.go │ │ │ └── version.go │ │ ├── handler.go │ │ ├── internal/ │ │ │ ├── baggage/ │ │ │ │ ├── baggage.go │ │ │ │ └── context.go │ │ │ └── global/ │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ │ ├── internal_logging.go │ │ ├── metric/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── asyncfloat64.go │ │ │ ├── asyncint64.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── embedded/ │ │ │ │ ├── README.md │ │ │ │ └── embedded.go │ │ │ ├── instrument.go │ │ │ ├── meter.go │ │ │ ├── noop/ │ │ │ │ ├── README.md │ │ │ │ └── noop.go │ │ │ ├── syncfloat64.go │ │ │ └── syncint64.go │ │ ├── metric.go │ │ ├── propagation/ │ │ │ ├── README.md │ │ │ ├── baggage.go │ │ │ ├── doc.go │ │ │ ├── propagation.go │ │ │ └── trace_context.go │ │ ├── propagation.go │ │ ├── renovate.json │ │ ├── requirements.txt │ │ ├── sdk/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── instrumentation/ │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── library.go │ │ │ │ └── scope.go │ │ │ ├── internal/ │ │ │ │ └── x/ │ │ │ │ ├── README.md │ │ │ │ ├── features.go │ │ │ │ └── x.go │ │ │ ├── metric/ │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── aggregation.go │ │ │ │ ├── cache.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── env.go │ │ │ │ ├── exemplar/ │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── exemplar.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── fixed_size_reservoir.go │ │ │ │ │ ├── histogram_reservoir.go │ │ │ │ │ ├── reservoir.go │ │ │ │ │ ├── storage.go │ │ │ │ │ └── value.go │ │ │ │ ├── exemplar.go │ │ │ │ ├── exporter.go │ │ │ │ ├── instrument.go │ │ │ │ ├── instrumentkind_string.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── aggregate/ │ │ │ │ │ │ ├── aggregate.go │ │ │ │ │ │ ├── atomic.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── drop.go │ │ │ │ │ │ ├── exemplar.go │ │ │ │ │ │ ├── exponential_histogram.go │ │ │ │ │ │ ├── filtered_reservoir.go │ │ │ │ │ │ ├── histogram.go │ │ │ │ │ │ ├── lastvalue.go │ │ │ │ │ │ ├── limit.go │ │ │ │ │ │ └── sum.go │ │ │ │ │ ├── observ/ │ │ │ │ │ │ └── instrumentation.go │ │ │ │ │ ├── reservoir/ │ │ │ │ │ │ ├── concurrent_safe.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ └── reuse_slice.go │ │ │ │ ├── manual_reader.go │ │ │ │ ├── meter.go │ │ │ │ ├── metricdata/ │ │ │ │ │ ├── README.md │ │ │ │ │ ├── data.go │ │ │ │ │ ├── temporality.go │ │ │ │ │ └── temporality_string.go │ │ │ │ ├── periodic_reader.go │ │ │ │ ├── pipeline.go │ │ │ │ ├── provider.go │ │ │ │ ├── reader.go │ │ │ │ ├── version.go │ │ │ │ └── view.go │ │ │ ├── resource/ │ │ │ │ ├── README.md │ │ │ │ ├── auto.go │ │ │ │ ├── builtin.go │ │ │ │ ├── config.go │ │ │ │ ├── container.go │ │ │ │ ├── doc.go │ │ │ │ ├── env.go │ │ │ │ ├── host_id.go │ │ │ │ ├── host_id_bsd.go │ │ │ │ ├── host_id_darwin.go │ │ │ │ ├── host_id_exec.go │ │ │ │ ├── host_id_linux.go │ │ │ │ ├── host_id_readfile.go │ │ │ │ ├── host_id_unsupported.go │ │ │ │ ├── host_id_windows.go │ │ │ │ ├── os.go │ │ │ │ ├── os_release_darwin.go │ │ │ │ ├── os_release_unix.go │ │ │ │ ├── os_unix.go │ │ │ │ ├── os_unsupported.go │ │ │ │ ├── os_windows.go │ │ │ │ ├── process.go │ │ │ │ └── resource.go │ │ │ ├── trace/ │ │ │ │ ├── README.md │ │ │ │ ├── batch_span_processor.go │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── evictedqueue.go │ │ │ │ ├── id_generator.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── env/ │ │ │ │ │ │ └── env.go │ │ │ │ │ └── observ/ │ │ │ │ │ ├── batch_span_processor.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── simple_span_processor.go │ │ │ │ │ └── tracer.go │ │ │ │ ├── link.go │ │ │ │ ├── provider.go │ │ │ │ ├── sampler_env.go │ │ │ │ ├── sampling.go │ │ │ │ ├── simple_span_processor.go │ │ │ │ ├── snapshot.go │ │ │ │ ├── span.go │ │ │ │ ├── span_exporter.go │ │ │ │ ├── span_limits.go │ │ │ │ ├── span_processor.go │ │ │ │ └── tracer.go │ │ │ └── version.go │ │ ├── semconv/ │ │ │ ├── internal/ │ │ │ │ ├── http.go │ │ │ │ └── v2/ │ │ │ │ ├── http.go │ │ │ │ └── net.go │ │ │ ├── v1.12.0/ │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── exception.go │ │ │ │ ├── http.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ └── trace.go │ │ │ ├── v1.17.0/ │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── exception.go │ │ │ │ ├── http.go │ │ │ │ ├── httpconv/ │ │ │ │ │ ├── README.md │ │ │ │ │ └── http.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ └── trace.go │ │ │ ├── v1.20.0/ │ │ │ │ ├── README.md │ │ │ │ ├── attribute_group.go │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── exception.go │ │ │ │ ├── http.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ └── trace.go │ │ │ ├── v1.24.0/ │ │ │ │ ├── README.md │ │ │ │ ├── attribute_group.go │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── exception.go │ │ │ │ ├── metric.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ └── trace.go │ │ │ ├── v1.26.0/ │ │ │ │ ├── README.md │ │ │ │ ├── attribute_group.go │ │ │ │ ├── doc.go │ │ │ │ ├── exception.go │ │ │ │ ├── metric.go │ │ │ │ └── schema.go │ │ │ ├── v1.30.0/ │ │ │ │ ├── MIGRATION.md │ │ │ │ ├── README.md │ │ │ │ ├── attribute_group.go │ │ │ │ ├── doc.go │ │ │ │ ├── exception.go │ │ │ │ ├── metric.go │ │ │ │ └── schema.go │ │ │ ├── v1.37.0/ │ │ │ │ ├── MIGRATION.md │ │ │ │ ├── README.md │ │ │ │ ├── attribute_group.go │ │ │ │ ├── doc.go │ │ │ │ ├── error_type.go │ │ │ │ ├── exception.go │ │ │ │ └── schema.go │ │ │ └── v1.39.0/ │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── error_type.go │ │ │ ├── exception.go │ │ │ ├── otelconv/ │ │ │ │ └── metric.go │ │ │ └── schema.go │ │ ├── trace/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auto.go │ │ │ ├── config.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── embedded/ │ │ │ │ ├── README.md │ │ │ │ └── embedded.go │ │ │ ├── hex.go │ │ │ ├── internal/ │ │ │ │ └── telemetry/ │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── number.go │ │ │ │ ├── resource.go │ │ │ │ ├── scope.go │ │ │ │ ├── span.go │ │ │ │ ├── status.go │ │ │ │ ├── traces.go │ │ │ │ └── value.go │ │ │ ├── nonrecording.go │ │ │ ├── noop/ │ │ │ │ ├── README.md │ │ │ │ └── noop.go │ │ │ ├── noop.go │ │ │ ├── provider.go │ │ │ ├── span.go │ │ │ ├── trace.go │ │ │ ├── tracer.go │ │ │ └── tracestate.go │ │ ├── trace.go │ │ ├── verify_released_changelog.sh │ │ ├── version.go │ │ └── versions.yaml │ └── proto/ │ └── otlp/ │ ├── LICENSE │ ├── collector/ │ │ └── trace/ │ │ └── v1/ │ │ ├── trace_service.pb.go │ │ ├── trace_service.pb.gw.go │ │ └── trace_service_grpc.pb.go │ ├── common/ │ │ └── v1/ │ │ └── common.pb.go │ ├── resource/ │ │ └── v1/ │ │ └── resource.pb.go │ └── trace/ │ └── v1/ │ └── trace.pb.go ├── go.uber.org/ │ └── automaxprocs/ │ ├── LICENSE │ ├── internal/ │ │ ├── cgroups/ │ │ │ ├── cgroup.go │ │ │ ├── cgroups.go │ │ │ ├── cgroups2.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── mountpoint.go │ │ │ └── subsys.go │ │ └── runtime/ │ │ ├── cpu_quota_linux.go │ │ ├── cpu_quota_unsupported.go │ │ └── runtime.go │ └── maxprocs/ │ ├── maxprocs.go │ └── version.go ├── go.yaml.in/ │ └── yaml/ │ ├── v2/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── v3/ │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── golang.org/ │ └── x/ │ ├── crypto/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── blowfish/ │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── cast5/ │ │ │ └── cast5.go │ │ ├── chacha20/ │ │ │ ├── chacha_arm64.go │ │ │ ├── chacha_arm64.s │ │ │ ├── chacha_generic.go │ │ │ ├── chacha_noasm.go │ │ │ ├── chacha_ppc64x.go │ │ │ ├── chacha_ppc64x.s │ │ │ ├── chacha_s390x.go │ │ │ ├── chacha_s390x.s │ │ │ └── xor.go │ │ ├── chacha20poly1305/ │ │ │ ├── chacha20poly1305.go │ │ │ ├── chacha20poly1305_amd64.go │ │ │ ├── chacha20poly1305_amd64.s │ │ │ ├── chacha20poly1305_generic.go │ │ │ ├── chacha20poly1305_noasm.go │ │ │ └── xchacha20poly1305.go │ │ ├── cryptobyte/ │ │ │ ├── asn1/ │ │ │ │ └── asn1.go │ │ │ ├── asn1.go │ │ │ ├── builder.go │ │ │ └── string.go │ │ ├── curve25519/ │ │ │ └── curve25519.go │ │ ├── ed25519/ │ │ │ └── ed25519.go │ │ ├── hkdf/ │ │ │ └── hkdf.go │ │ ├── internal/ │ │ │ ├── alias/ │ │ │ │ ├── alias.go │ │ │ │ └── alias_purego.go │ │ │ └── poly1305/ │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_asm.go │ │ │ ├── sum_generic.go │ │ │ ├── sum_loong64.s │ │ │ ├── sum_ppc64x.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ │ ├── nacl/ │ │ │ └── secretbox/ │ │ │ └── secretbox.go │ │ ├── openpgp/ │ │ │ ├── armor/ │ │ │ │ ├── armor.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── elgamal/ │ │ │ │ └── elgamal.go │ │ │ ├── errors/ │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── packet/ │ │ │ │ ├── compressed.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── packet.go │ │ │ │ ├── private_key.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── userattribute.go │ │ │ │ └── userid.go │ │ │ ├── read.go │ │ │ ├── s2k/ │ │ │ │ └── s2k.go │ │ │ └── write.go │ │ ├── pkcs12/ │ │ │ ├── bmp-string.go │ │ │ ├── crypto.go │ │ │ ├── errors.go │ │ │ ├── internal/ │ │ │ │ └── rc2/ │ │ │ │ └── rc2.go │ │ │ ├── mac.go │ │ │ ├── pbkdf.go │ │ │ ├── pkcs12.go │ │ │ └── safebags.go │ │ ├── salsa20/ │ │ │ └── salsa/ │ │ │ ├── hsalsa20.go │ │ │ ├── salsa208.go │ │ │ ├── salsa20_amd64.go │ │ │ ├── salsa20_amd64.s │ │ │ ├── salsa20_noasm.go │ │ │ └── salsa20_ref.go │ │ ├── sha3/ │ │ │ ├── hashes.go │ │ │ ├── legacy_hash.go │ │ │ ├── legacy_keccakf.go │ │ │ └── shake.go │ │ └── ssh/ │ │ ├── agent/ │ │ │ ├── client.go │ │ │ ├── forward.go │ │ │ ├── keyring.go │ │ │ └── server.go │ │ ├── buffer.go │ │ ├── certs.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── handshake.go │ │ ├── internal/ │ │ │ └── bcrypt_pbkdf/ │ │ │ └── bcrypt_pbkdf.go │ │ ├── kex.go │ │ ├── keys.go │ │ ├── knownhosts/ │ │ │ └── knownhosts.go │ │ ├── mac.go │ │ ├── messages.go │ │ ├── mlkem.go │ │ ├── mux.go │ │ ├── server.go │ │ ├── session.go │ │ ├── ssh_gss.go │ │ ├── streamlocal.go │ │ ├── tcpip.go │ │ └── transport.go │ ├── exp/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── maps/ │ │ │ └── maps.go │ │ ├── slices/ │ │ │ ├── slices.go │ │ │ └── sort.go │ │ └── typeparams/ │ │ ├── LICENSE │ │ ├── common.go │ │ ├── normalize.go │ │ ├── termlist.go │ │ ├── typeparams_go117.go │ │ ├── typeparams_go118.go │ │ └── typeterm.go │ ├── lint/ │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── golint/ │ │ │ ├── golint.go │ │ │ ├── import.go │ │ │ └── importcomment.go │ │ └── lint.go │ ├── mod/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal/ │ │ │ └── lazyregexp/ │ │ │ └── lazyre.go │ │ ├── modfile/ │ │ │ ├── print.go │ │ │ ├── read.go │ │ │ ├── rule.go │ │ │ └── work.go │ │ ├── module/ │ │ │ ├── module.go │ │ │ └── pseudo.go │ │ └── semver/ │ │ └── semver.go │ ├── net/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bpf/ │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── setter.go │ │ │ ├── vm.go │ │ │ └── vm_instructions.go │ │ ├── context/ │ │ │ └── context.go │ │ ├── html/ │ │ │ ├── atom/ │ │ │ │ ├── atom.go │ │ │ │ └── table.go │ │ │ ├── charset/ │ │ │ │ └── charset.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_go125.go │ │ │ ├── config_go126.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 │ │ │ ├── transport.go │ │ │ ├── unencrypted.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority_rfc7540.go │ │ │ ├── writesched_priority_rfc9218.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 │ │ │ ├── iana/ │ │ │ │ └── const.go │ │ │ ├── socket/ │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── cmsghdr_unix.go │ │ │ │ ├── cmsghdr_zos_s390x.go │ │ │ │ ├── complete_dontwait.go │ │ │ │ ├── complete_nodontwait.go │ │ │ │ ├── empty.s │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── msghdr_zos_s390x.go │ │ │ │ ├── norace.go │ │ │ │ ├── race.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── socket.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_const_unix.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_loong64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_riscv64.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── sys_zos_s390x.go │ │ │ │ ├── sys_zos_s390x.s │ │ │ │ ├── zsys_aix_ppc64.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm64.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_freebsd_arm64.go │ │ │ │ ├── zsys_freebsd_riscv64.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_loong64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_riscv64.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_netbsd_arm64.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ ├── zsys_openbsd_arm64.go │ │ │ │ ├── zsys_openbsd_mips64.go │ │ │ │ ├── zsys_openbsd_ppc64.go │ │ │ │ ├── zsys_openbsd_riscv64.go │ │ │ │ ├── zsys_solaris_amd64.go │ │ │ │ └── zsys_zos_s390x.go │ │ │ ├── socks/ │ │ │ │ ├── client.go │ │ │ │ └── socks.go │ │ │ └── timeseries/ │ │ │ └── timeseries.go │ │ ├── ipv4/ │ │ │ ├── batch.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── control_zos.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── packet.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_aix.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── sys_zos.go │ │ │ ├── zsys_aix_ppc64.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_freebsd_arm64.go │ │ │ ├── zsys_freebsd_riscv64.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_loong64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_riscv64.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ ├── zsys_solaris.go │ │ │ └── zsys_zos_s390x.go │ │ ├── ipv6/ │ │ │ ├── batch.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_windows.go │ │ │ ├── icmp_zos.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_aix.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── sys_zos.go │ │ │ ├── zsys_aix_ppc64.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_freebsd_arm64.go │ │ │ ├── zsys_freebsd_riscv64.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_loong64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_riscv64.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ ├── zsys_solaris.go │ │ │ └── zsys_zos_s390x.go │ │ ├── proxy/ │ │ │ ├── dial.go │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── proxy.go │ │ │ └── socks5.go │ │ ├── trace/ │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ └── trace.go │ │ └── websocket/ │ │ ├── client.go │ │ ├── dial.go │ │ ├── hybi.go │ │ ├── server.go │ │ └── websocket.go │ ├── oauth2/ │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── authhandler/ │ │ │ └── authhandler.go │ │ ├── deviceauth.go │ │ ├── google/ │ │ │ ├── appengine.go │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── externalaccount/ │ │ │ │ ├── aws.go │ │ │ │ ├── basecredentials.go │ │ │ │ ├── executablecredsource.go │ │ │ │ ├── filecredsource.go │ │ │ │ ├── header.go │ │ │ │ ├── programmaticrefreshcredsource.go │ │ │ │ └── urlcredsource.go │ │ │ ├── google.go │ │ │ ├── internal/ │ │ │ │ ├── externalaccountauthorizeduser/ │ │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ │ ├── impersonate/ │ │ │ │ │ └── impersonate.go │ │ │ │ └── stsexchange/ │ │ │ │ ├── clientauth.go │ │ │ │ └── sts_exchange.go │ │ │ ├── jwt.go │ │ │ └── sdk.go │ │ ├── internal/ │ │ │ ├── doc.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ ├── jws/ │ │ │ └── jws.go │ │ ├── jwt/ │ │ │ └── jwt.go │ │ ├── oauth2.go │ │ ├── pkce.go │ │ ├── token.go │ │ └── transport.go │ ├── sync/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── errgroup/ │ │ │ └── errgroup.go │ │ ├── semaphore/ │ │ │ └── semaphore.go │ │ └── singleflight/ │ │ └── singleflight.go │ ├── sys/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cpu/ │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin_x86_gc.s │ │ │ ├── byteorder.go │ │ │ ├── cpu.go │ │ │ ├── cpu_aix.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_arm64.s │ │ │ ├── cpu_darwin_x86.go │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_gc_s390x.go │ │ │ ├── cpu_gc_x86.go │ │ │ ├── cpu_gc_x86.s │ │ │ ├── cpu_gccgo_arm64.go │ │ │ ├── cpu_gccgo_s390x.go │ │ │ ├── cpu_gccgo_x86.c │ │ │ ├── cpu_gccgo_x86.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_linux_arm.go │ │ │ ├── cpu_linux_arm64.go │ │ │ ├── cpu_linux_loong64.go │ │ │ ├── cpu_linux_mips64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_linux_ppc64x.go │ │ │ ├── cpu_linux_riscv64.go │ │ │ ├── cpu_linux_s390x.go │ │ │ ├── cpu_loong64.go │ │ │ ├── cpu_loong64.s │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_netbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.s │ │ │ ├── cpu_other_arm.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_other_mips64x.go │ │ │ ├── cpu_other_ppc64x.go │ │ │ ├── cpu_other_riscv64.go │ │ │ ├── cpu_other_x86.go │ │ │ ├── cpu_ppc64x.go │ │ │ ├── cpu_riscv64.go │ │ │ ├── cpu_s390x.go │ │ │ ├── cpu_s390x.s │ │ │ ├── cpu_wasm.go │ │ │ ├── cpu_x86.go │ │ │ ├── cpu_zos.go │ │ │ ├── cpu_zos_s390x.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── hwcap_linux.go │ │ │ ├── parse.go │ │ │ ├── proc_cpuinfo_linux.go │ │ │ ├── runtime_auxv.go │ │ │ ├── runtime_auxv_go121.go │ │ │ ├── syscall_aix_gccgo.go │ │ │ ├── syscall_aix_ppc64_gc.go │ │ │ └── syscall_darwin_x86_gc.go │ │ ├── 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_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ ├── zsyscall_plan9_arm.go │ │ │ └── zsysnum_plan9.go │ │ ├── unix/ │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_arm64.s │ │ │ ├── asm_bsd_ppc64.s │ │ │ ├── asm_bsd_riscv64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_loong64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.s │ │ │ ├── auxv.go │ │ │ ├── auxv_unsupported.go │ │ │ ├── bluetooth_linux.go │ │ │ ├── bpxsvc_zos.go │ │ │ ├── bpxsvc_zos.s │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_signed.go │ │ │ ├── ioctl_unsigned.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mmap_nomremap.go │ │ │ ├── mremap.go │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── sockcmsg_zos.go │ │ │ ├── symaddr_zos_s390x.s │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ ├── syscall_hurd.go │ │ │ ├── syscall_hurd_386.go │ │ │ ├── syscall_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_alarm.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_loong64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_openbsd_libc.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── sysvshm_linux.go │ │ │ ├── sysvshm_unix.go │ │ │ ├── sysvshm_unix_other.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── vgetrandom_linux.go │ │ │ ├── vgetrandom_unsupported.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_loong64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsymaddr_zos_s390x.s │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_loong64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_386.s │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_loong64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ ├── zsysnum_zos_s390x.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_loong64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── windows/ │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry/ │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── term.go │ │ ├── term_plan9.go │ │ ├── term_unix.go │ │ ├── term_unix_bsd.go │ │ ├── term_unix_other.go │ │ ├── term_unsupported.go │ │ ├── term_windows.go │ │ └── terminal.go │ ├── text/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cases/ │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── fold.go │ │ │ ├── icu.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ ├── encoding/ │ │ │ ├── charmap/ │ │ │ │ ├── charmap.go │ │ │ │ └── tables.go │ │ │ ├── encoding.go │ │ │ ├── htmlindex/ │ │ │ │ ├── htmlindex.go │ │ │ │ ├── map.go │ │ │ │ └── tables.go │ │ │ ├── internal/ │ │ │ │ ├── identifier/ │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ ├── japanese/ │ │ │ │ ├── all.go │ │ │ │ ├── eucjp.go │ │ │ │ ├── iso2022jp.go │ │ │ │ ├── shiftjis.go │ │ │ │ └── tables.go │ │ │ ├── korean/ │ │ │ │ ├── euckr.go │ │ │ │ └── tables.go │ │ │ ├── simplifiedchinese/ │ │ │ │ ├── all.go │ │ │ │ ├── gbk.go │ │ │ │ ├── hzgb2312.go │ │ │ │ └── tables.go │ │ │ ├── traditionalchinese/ │ │ │ │ ├── big5.go │ │ │ │ └── tables.go │ │ │ └── unicode/ │ │ │ ├── override.go │ │ │ └── unicode.go │ │ ├── feature/ │ │ │ └── plural/ │ │ │ ├── common.go │ │ │ ├── message.go │ │ │ ├── plural.go │ │ │ └── tables.go │ │ ├── internal/ │ │ │ ├── catmsg/ │ │ │ │ ├── catmsg.go │ │ │ │ ├── codec.go │ │ │ │ └── varint.go │ │ │ ├── format/ │ │ │ │ ├── format.go │ │ │ │ └── parser.go │ │ │ ├── internal.go │ │ │ ├── language/ │ │ │ │ ├── common.go │ │ │ │ ├── compact/ │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── parents.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── compact.go │ │ │ │ ├── compose.go │ │ │ │ ├── coverage.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── match.go │ │ │ ├── number/ │ │ │ │ ├── common.go │ │ │ │ ├── decimal.go │ │ │ │ ├── format.go │ │ │ │ ├── number.go │ │ │ │ ├── pattern.go │ │ │ │ ├── roundingmode_string.go │ │ │ │ └── tables.go │ │ │ ├── stringset/ │ │ │ │ └── set.go │ │ │ ├── tag/ │ │ │ │ └── tag.go │ │ │ └── utf8internal/ │ │ │ └── utf8internal.go │ │ ├── language/ │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── message/ │ │ │ ├── catalog/ │ │ │ │ ├── catalog.go │ │ │ │ ├── dict.go │ │ │ │ ├── go19.go │ │ │ │ └── gopre19.go │ │ │ ├── catalog.go │ │ │ ├── doc.go │ │ │ ├── format.go │ │ │ ├── message.go │ │ │ └── print.go │ │ ├── runes/ │ │ │ ├── cond.go │ │ │ └── runes.go │ │ ├── secure/ │ │ │ └── bidirule/ │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ │ ├── transform/ │ │ │ └── transform.go │ │ ├── unicode/ │ │ │ ├── bidi/ │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ └── norm/ │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ │ └── width/ │ │ ├── kind_string.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── trieval.go │ │ └── width.go │ ├── time/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── rate/ │ │ ├── rate.go │ │ └── sometimes.go │ └── tools/ │ ├── LICENSE │ ├── PATENTS │ ├── go/ │ │ ├── analysis/ │ │ │ ├── analysis.go │ │ │ ├── diagnostic.go │ │ │ ├── doc.go │ │ │ ├── passes/ │ │ │ │ ├── appends/ │ │ │ │ │ ├── appends.go │ │ │ │ │ └── doc.go │ │ │ │ ├── asmdecl/ │ │ │ │ │ └── asmdecl.go │ │ │ │ ├── assign/ │ │ │ │ │ ├── assign.go │ │ │ │ │ └── doc.go │ │ │ │ ├── atomic/ │ │ │ │ │ ├── atomic.go │ │ │ │ │ └── doc.go │ │ │ │ ├── atomicalign/ │ │ │ │ │ └── atomicalign.go │ │ │ │ ├── bools/ │ │ │ │ │ └── bools.go │ │ │ │ ├── buildssa/ │ │ │ │ │ └── buildssa.go │ │ │ │ ├── buildtag/ │ │ │ │ │ └── buildtag.go │ │ │ │ ├── cgocall/ │ │ │ │ │ ├── cgocall.go │ │ │ │ │ ├── cgocall_go120.go │ │ │ │ │ └── cgocall_go121.go │ │ │ │ ├── composite/ │ │ │ │ │ ├── composite.go │ │ │ │ │ └── whitelist.go │ │ │ │ ├── copylock/ │ │ │ │ │ └── copylock.go │ │ │ │ ├── ctrlflow/ │ │ │ │ │ └── ctrlflow.go │ │ │ │ ├── deepequalerrors/ │ │ │ │ │ └── deepequalerrors.go │ │ │ │ ├── defers/ │ │ │ │ │ ├── defers.go │ │ │ │ │ └── doc.go │ │ │ │ ├── directive/ │ │ │ │ │ └── directive.go │ │ │ │ ├── errorsas/ │ │ │ │ │ └── errorsas.go │ │ │ │ ├── fieldalignment/ │ │ │ │ │ └── fieldalignment.go │ │ │ │ ├── findcall/ │ │ │ │ │ └── findcall.go │ │ │ │ ├── framepointer/ │ │ │ │ │ └── framepointer.go │ │ │ │ ├── httpresponse/ │ │ │ │ │ └── httpresponse.go │ │ │ │ ├── ifaceassert/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── ifaceassert.go │ │ │ │ ├── inspect/ │ │ │ │ │ └── inspect.go │ │ │ │ ├── internal/ │ │ │ │ │ └── ctrlflowinternal/ │ │ │ │ │ └── ctrlflowinternal.go │ │ │ │ ├── loopclosure/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── loopclosure.go │ │ │ │ ├── lostcancel/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── lostcancel.go │ │ │ │ ├── nilfunc/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── nilfunc.go │ │ │ │ ├── nilness/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── nilness.go │ │ │ │ ├── pkgfact/ │ │ │ │ │ └── pkgfact.go │ │ │ │ ├── printf/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── printf.go │ │ │ │ │ └── types.go │ │ │ │ ├── reflectvaluecompare/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── reflectvaluecompare.go │ │ │ │ ├── shadow/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── shadow.go │ │ │ │ ├── shift/ │ │ │ │ │ ├── dead.go │ │ │ │ │ └── shift.go │ │ │ │ ├── sigchanyzer/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── sigchanyzer.go │ │ │ │ ├── slog/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── slog.go │ │ │ │ ├── sortslice/ │ │ │ │ │ └── analyzer.go │ │ │ │ ├── stdmethods/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── stdmethods.go │ │ │ │ ├── stdversion/ │ │ │ │ │ └── stdversion.go │ │ │ │ ├── stringintconv/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── string.go │ │ │ │ ├── structtag/ │ │ │ │ │ └── structtag.go │ │ │ │ ├── testinggoroutine/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── testinggoroutine.go │ │ │ │ │ └── util.go │ │ │ │ ├── tests/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── tests.go │ │ │ │ ├── timeformat/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── timeformat.go │ │ │ │ ├── unmarshal/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── unreachable/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unreachable.go │ │ │ │ ├── unsafeptr/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unsafeptr.go │ │ │ │ ├── unusedresult/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unusedresult.go │ │ │ │ ├── unusedwrite/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── unusedwrite.go │ │ │ │ └── waitgroup/ │ │ │ │ ├── doc.go │ │ │ │ └── waitgroup.go │ │ │ └── validate.go │ │ ├── ast/ │ │ │ ├── astutil/ │ │ │ │ ├── enclosing.go │ │ │ │ ├── imports.go │ │ │ │ ├── rewrite.go │ │ │ │ └── util.go │ │ │ ├── edge/ │ │ │ │ └── edge.go │ │ │ └── inspector/ │ │ │ ├── cursor.go │ │ │ ├── inspector.go │ │ │ ├── iter.go │ │ │ ├── typeof.go │ │ │ └── walk.go │ │ ├── buildutil/ │ │ │ ├── allpackages.go │ │ │ ├── fakecontext.go │ │ │ ├── overlay.go │ │ │ ├── tags.go │ │ │ └── util.go │ │ ├── cfg/ │ │ │ ├── builder.go │ │ │ └── cfg.go │ │ ├── gcexportdata/ │ │ │ ├── gcexportdata.go │ │ │ └── importer.go │ │ ├── internal/ │ │ │ └── cgo/ │ │ │ ├── cgo.go │ │ │ └── cgo_pkgconfig.go │ │ ├── loader/ │ │ │ ├── doc.go │ │ │ ├── loader.go │ │ │ └── util.go │ │ ├── packages/ │ │ │ ├── doc.go │ │ │ ├── external.go │ │ │ ├── golist.go │ │ │ ├── golist_overlay.go │ │ │ ├── loadmode_string.go │ │ │ ├── packages.go │ │ │ └── visit.go │ │ ├── ssa/ │ │ │ ├── TODO │ │ │ ├── block.go │ │ │ ├── blockopt.go │ │ │ ├── builder.go │ │ │ ├── const.go │ │ │ ├── create.go │ │ │ ├── doc.go │ │ │ ├── dom.go │ │ │ ├── emit.go │ │ │ ├── func.go │ │ │ ├── instantiate.go │ │ │ ├── lift.go │ │ │ ├── lvalue.go │ │ │ ├── methods.go │ │ │ ├── mode.go │ │ │ ├── print.go │ │ │ ├── sanity.go │ │ │ ├── source.go │ │ │ ├── ssa.go │ │ │ ├── ssautil/ │ │ │ │ ├── deprecated.go │ │ │ │ ├── load.go │ │ │ │ ├── switch.go │ │ │ │ └── visit.go │ │ │ ├── subst.go │ │ │ ├── task.go │ │ │ ├── typeset.go │ │ │ ├── util.go │ │ │ └── wrappers.go │ │ └── types/ │ │ ├── objectpath/ │ │ │ └── objectpath.go │ │ └── typeutil/ │ │ ├── callee.go │ │ ├── imports.go │ │ ├── map.go │ │ ├── methodsetcache.go │ │ └── ui.go │ ├── imports/ │ │ └── forward.go │ └── internal/ │ ├── aliases/ │ │ ├── aliases.go │ │ └── aliases_go122.go │ ├── analysis/ │ │ ├── analyzerutil/ │ │ │ ├── doc.go │ │ │ ├── extractdoc.go │ │ │ ├── readfile.go │ │ │ └── version.go │ │ └── typeindex/ │ │ └── typeindex.go │ ├── astutil/ │ │ ├── clone.go │ │ ├── comment.go │ │ ├── equal.go │ │ ├── fields.go │ │ ├── purge.go │ │ ├── stringlit.go │ │ ├── unpack.go │ │ └── util.go │ ├── cfginternal/ │ │ └── cfginternal.go │ ├── event/ │ │ ├── core/ │ │ │ ├── event.go │ │ │ ├── export.go │ │ │ └── fast.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── keys/ │ │ │ ├── keys.go │ │ │ ├── standard.go │ │ │ └── util.go │ │ └── label/ │ │ └── label.go │ ├── fmtstr/ │ │ └── parse.go │ ├── gcimporter/ │ │ ├── bimport.go │ │ ├── exportdata.go │ │ ├── gcimporter.go │ │ ├── iexport.go │ │ ├── iimport.go │ │ ├── predeclared.go │ │ ├── support.go │ │ └── ureader_yes.go │ ├── gocommand/ │ │ ├── invoke.go │ │ ├── invoke_notunix.go │ │ ├── invoke_unix.go │ │ ├── vendor.go │ │ └── version.go │ ├── gopathwalk/ │ │ └── walk.go │ ├── imports/ │ │ ├── fix.go │ │ ├── imports.go │ │ ├── mod.go │ │ ├── mod_cache.go │ │ ├── sortimports.go │ │ ├── source.go │ │ ├── source_env.go │ │ └── source_modindex.go │ ├── modindex/ │ │ ├── directories.go │ │ ├── index.go │ │ ├── lookup.go │ │ ├── modindex.go │ │ └── symbols.go │ ├── moreiters/ │ │ └── iters.go │ ├── packagepath/ │ │ └── packagepath.go │ ├── packagesinternal/ │ │ └── packages.go │ ├── pkgbits/ │ │ ├── codes.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── flags.go │ │ ├── reloc.go │ │ ├── support.go │ │ ├── sync.go │ │ ├── syncmarker_string.go │ │ └── version.go │ ├── refactor/ │ │ ├── delete.go │ │ ├── imports.go │ │ └── refactor.go │ ├── ssainternal/ │ │ └── ssainternal.go │ ├── stdlib/ │ │ ├── deps.go │ │ ├── import.go │ │ ├── manifest.go │ │ └── stdlib.go │ ├── typeparams/ │ │ ├── common.go │ │ ├── coretype.go │ │ ├── free.go │ │ ├── normalize.go │ │ ├── termlist.go │ │ └── typeterm.go │ ├── typesinternal/ │ │ ├── classify_call.go │ │ ├── element.go │ │ ├── errorcode.go │ │ ├── errorcode_string.go │ │ ├── fx.go │ │ ├── isnamed.go │ │ ├── qualifier.go │ │ ├── recv.go │ │ ├── toonew.go │ │ ├── typeindex/ │ │ │ └── typeindex.go │ │ ├── types.go │ │ ├── varkind.go │ │ ├── varkind_go124.go │ │ └── zerovalue.go │ └── versions/ │ ├── features.go │ ├── gover.go │ ├── types.go │ └── versions.go ├── gomodules.xyz/ │ └── jsonpatch/ │ └── v2/ │ ├── LICENSE │ └── jsonpatch.go ├── google.golang.org/ │ ├── api/ │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── cloudresourcemanager/ │ │ │ ├── v1/ │ │ │ │ ├── cloudresourcemanager-api.json │ │ │ │ └── cloudresourcemanager-gen.go │ │ │ └── v3/ │ │ │ ├── cloudresourcemanager-api.json │ │ │ └── cloudresourcemanager-gen.go │ │ ├── compute/ │ │ │ └── v1/ │ │ │ ├── compute-api.json │ │ │ ├── compute-gen.go │ │ │ ├── compute2-gen.go │ │ │ └── compute3-gen.go │ │ ├── dns/ │ │ │ └── v1/ │ │ │ ├── dns-api.json │ │ │ └── dns-gen.go │ │ ├── file/ │ │ │ └── v1/ │ │ │ ├── file-api.json │ │ │ └── file-gen.go │ │ ├── googleapi/ │ │ │ ├── googleapi.go │ │ │ ├── transport/ │ │ │ │ └── apikey.go │ │ │ └── types.go │ │ ├── iam/ │ │ │ └── v1/ │ │ │ ├── iam-api.json │ │ │ └── iam-gen.go │ │ ├── iamcredentials/ │ │ │ └── v1/ │ │ │ ├── iamcredentials-api.json │ │ │ └── iamcredentials-gen.go │ │ ├── internal/ │ │ │ ├── cba.go │ │ │ ├── cert/ │ │ │ │ ├── default_cert.go │ │ │ │ ├── enterprise_cert.go │ │ │ │ └── secureconnect_cert.go │ │ │ ├── conn_pool.go │ │ │ ├── creds.go │ │ │ ├── gensupport/ │ │ │ │ ├── buffer.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── json.go │ │ │ │ ├── jsonfloat.go │ │ │ │ ├── media.go │ │ │ │ ├── params.go │ │ │ │ ├── resumable.go │ │ │ │ ├── retry.go │ │ │ │ ├── send.go │ │ │ │ └── version.go │ │ │ ├── impersonate/ │ │ │ │ └── impersonate.go │ │ │ ├── s2a.go │ │ │ ├── settings.go │ │ │ ├── third_party/ │ │ │ │ └── uritemplates/ │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ │ └── version.go │ │ ├── iterator/ │ │ │ └── iterator.go │ │ ├── option/ │ │ │ ├── internaloption/ │ │ │ │ └── internaloption.go │ │ │ └── option.go │ │ ├── serviceusage/ │ │ │ ├── v1/ │ │ │ │ ├── serviceusage-api.json │ │ │ │ └── serviceusage-gen.go │ │ │ └── v1beta1/ │ │ │ ├── serviceusage-api.json │ │ │ └── serviceusage-gen.go │ │ ├── storage/ │ │ │ └── v1/ │ │ │ ├── storage-api.json │ │ │ └── storage-gen.go │ │ └── transport/ │ │ ├── dial.go │ │ ├── doc.go │ │ ├── grpc/ │ │ │ ├── dial.go │ │ │ ├── dial_socketopt.go │ │ │ └── pool.go │ │ └── http/ │ │ └── dial.go │ ├── genproto/ │ │ ├── LICENSE │ │ └── googleapis/ │ │ ├── api/ │ │ │ ├── LICENSE │ │ │ ├── annotations/ │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── client.pb.go │ │ │ │ ├── field_behavior.pb.go │ │ │ │ ├── field_info.pb.go │ │ │ │ ├── http.pb.go │ │ │ │ ├── resource.pb.go │ │ │ │ └── routing.pb.go │ │ │ ├── distribution/ │ │ │ │ └── distribution.pb.go │ │ │ ├── expr/ │ │ │ │ └── v1alpha1/ │ │ │ │ ├── checked.pb.go │ │ │ │ ├── eval.pb.go │ │ │ │ ├── explain.pb.go │ │ │ │ ├── syntax.pb.go │ │ │ │ └── value.pb.go │ │ │ ├── httpbody/ │ │ │ │ └── httpbody.pb.go │ │ │ ├── label/ │ │ │ │ └── label.pb.go │ │ │ ├── launch_stage.pb.go │ │ │ ├── metric/ │ │ │ │ └── metric.pb.go │ │ │ └── monitoredres/ │ │ │ └── monitored_resource.pb.go │ │ ├── cloud/ │ │ │ └── location/ │ │ │ └── locations.pb.go │ │ ├── rpc/ │ │ │ ├── LICENSE │ │ │ ├── code/ │ │ │ │ └── code.pb.go │ │ │ ├── errdetails/ │ │ │ │ └── error_details.pb.go │ │ │ └── status/ │ │ │ └── status.pb.go │ │ └── type/ │ │ ├── calendarperiod/ │ │ │ └── calendar_period.pb.go │ │ ├── date/ │ │ │ └── date.pb.go │ │ ├── expr/ │ │ │ └── expr.pb.go │ │ └── timeofday/ │ │ └── timeofday.pb.go │ ├── grpc/ │ │ ├── AUTHORS │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── attributes/ │ │ │ └── attributes.go │ │ ├── authz/ │ │ │ └── audit/ │ │ │ ├── audit_logger.go │ │ │ └── stdout/ │ │ │ └── stdout_logger.go │ │ ├── backoff/ │ │ │ └── backoff.go │ │ ├── backoff.go │ │ ├── balancer/ │ │ │ ├── balancer.go │ │ │ ├── base/ │ │ │ │ ├── balancer.go │ │ │ │ └── base.go │ │ │ ├── conn_state_evaluator.go │ │ │ ├── endpointsharding/ │ │ │ │ └── endpointsharding.go │ │ │ ├── grpclb/ │ │ │ │ ├── grpc_lb_v1/ │ │ │ │ │ ├── load_balancer.pb.go │ │ │ │ │ └── load_balancer_grpc.pb.go │ │ │ │ ├── grpclb.go │ │ │ │ ├── grpclb_config.go │ │ │ │ ├── grpclb_picker.go │ │ │ │ ├── grpclb_remote_balancer.go │ │ │ │ ├── grpclb_util.go │ │ │ │ └── state/ │ │ │ │ └── state.go │ │ │ ├── lazy/ │ │ │ │ └── lazy.go │ │ │ ├── leastrequest/ │ │ │ │ └── leastrequest.go │ │ │ ├── pickfirst/ │ │ │ │ ├── internal/ │ │ │ │ │ └── internal.go │ │ │ │ └── pickfirst.go │ │ │ ├── ringhash/ │ │ │ │ ├── config.go │ │ │ │ ├── logging.go │ │ │ │ ├── picker.go │ │ │ │ ├── ring.go │ │ │ │ └── ringhash.go │ │ │ ├── rls/ │ │ │ │ ├── balancer.go │ │ │ │ ├── cache.go │ │ │ │ ├── child_policy.go │ │ │ │ ├── config.go │ │ │ │ ├── control_channel.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── adaptive/ │ │ │ │ │ │ ├── adaptive.go │ │ │ │ │ │ └── lookback.go │ │ │ │ │ └── keys/ │ │ │ │ │ └── builder.go │ │ │ │ └── picker.go │ │ │ ├── roundrobin/ │ │ │ │ └── roundrobin.go │ │ │ ├── subconn.go │ │ │ ├── weightedroundrobin/ │ │ │ │ ├── balancer.go │ │ │ │ ├── config.go │ │ │ │ ├── internal/ │ │ │ │ │ └── internal.go │ │ │ │ ├── logging.go │ │ │ │ └── scheduler.go │ │ │ └── weightedtarget/ │ │ │ ├── logging.go │ │ │ ├── weightedaggregator/ │ │ │ │ └── aggregator.go │ │ │ ├── weightedtarget.go │ │ │ └── weightedtarget_config.go │ │ ├── balancer_wrapper.go │ │ ├── binarylog/ │ │ │ └── grpc_binarylog_v1/ │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── channelz/ │ │ │ └── channelz.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codes/ │ │ │ ├── code_string.go │ │ │ └── codes.go │ │ ├── connectivity/ │ │ │ └── connectivity.go │ │ ├── credentials/ │ │ │ ├── alts/ │ │ │ │ ├── alts.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── authinfo/ │ │ │ │ │ │ └── authinfo.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── conn/ │ │ │ │ │ │ ├── aeadrekey.go │ │ │ │ │ │ ├── aes128gcm.go │ │ │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── record.go │ │ │ │ │ │ └── utils.go │ │ │ │ │ ├── handshaker/ │ │ │ │ │ │ ├── handshaker.go │ │ │ │ │ │ └── service/ │ │ │ │ │ │ └── service.go │ │ │ │ │ └── proto/ │ │ │ │ │ └── grpc_gcp/ │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ ├── handshaker_grpc.pb.go │ │ │ │ │ └── transport_security_common.pb.go │ │ │ │ └── utils.go │ │ │ ├── credentials.go │ │ │ ├── google/ │ │ │ │ ├── google.go │ │ │ │ └── xds.go │ │ │ ├── insecure/ │ │ │ │ └── insecure.go │ │ │ ├── jwt/ │ │ │ │ ├── doc.go │ │ │ │ ├── file_reader.go │ │ │ │ └── token_file_call_creds.go │ │ │ ├── oauth/ │ │ │ │ └── oauth.go │ │ │ ├── tls/ │ │ │ │ └── certprovider/ │ │ │ │ ├── distributor.go │ │ │ │ ├── pemfile/ │ │ │ │ │ ├── builder.go │ │ │ │ │ └── watcher.go │ │ │ │ ├── provider.go │ │ │ │ └── store.go │ │ │ └── tls.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding/ │ │ │ ├── encoding.go │ │ │ ├── encoding_v2.go │ │ │ ├── gzip/ │ │ │ │ └── gzip.go │ │ │ ├── internal/ │ │ │ │ └── internal.go │ │ │ └── proto/ │ │ │ └── proto.go │ │ ├── experimental/ │ │ │ ├── opentelemetry/ │ │ │ │ └── trace_options.go │ │ │ └── stats/ │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ │ ├── grpclog/ │ │ │ ├── component.go │ │ │ ├── grpclog.go │ │ │ ├── internal/ │ │ │ │ ├── grpclog.go │ │ │ │ ├── logger.go │ │ │ │ └── loggerv2.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── health/ │ │ │ └── grpc_health_v1/ │ │ │ ├── health.pb.go │ │ │ └── health_grpc.pb.go │ │ ├── interceptor.go │ │ ├── internal/ │ │ │ ├── admin/ │ │ │ │ └── admin.go │ │ │ ├── backoff/ │ │ │ │ └── backoff.go │ │ │ ├── balancer/ │ │ │ │ ├── gracefulswitch/ │ │ │ │ │ ├── config.go │ │ │ │ │ └── gracefulswitch.go │ │ │ │ ├── nop/ │ │ │ │ │ └── nop.go │ │ │ │ └── weight/ │ │ │ │ └── weight.go │ │ │ ├── balancergroup/ │ │ │ │ ├── balancergroup.go │ │ │ │ └── balancerstateaggregator.go │ │ │ ├── balancerload/ │ │ │ │ └── load.go │ │ │ ├── binarylog/ │ │ │ │ ├── binarylog.go │ │ │ │ ├── binarylog_testutil.go │ │ │ │ ├── env_config.go │ │ │ │ ├── method_logger.go │ │ │ │ └── sink.go │ │ │ ├── buffer/ │ │ │ │ └── unbounded.go │ │ │ ├── cache/ │ │ │ │ └── timeoutCache.go │ │ │ ├── channelz/ │ │ │ │ ├── channel.go │ │ │ │ ├── channelmap.go │ │ │ │ ├── funcs.go │ │ │ │ ├── logging.go │ │ │ │ ├── server.go │ │ │ │ ├── socket.go │ │ │ │ ├── subchannel.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_nonlinux.go │ │ │ │ └── trace.go │ │ │ ├── credentials/ │ │ │ │ ├── credentials.go │ │ │ │ ├── spiffe/ │ │ │ │ │ └── spiffe.go │ │ │ │ ├── spiffe.go │ │ │ │ ├── syscallconn.go │ │ │ │ ├── util.go │ │ │ │ └── xds/ │ │ │ │ └── handshake_info.go │ │ │ ├── envconfig/ │ │ │ │ ├── envconfig.go │ │ │ │ ├── observability.go │ │ │ │ └── xds.go │ │ │ ├── experimental.go │ │ │ ├── googlecloud/ │ │ │ │ ├── googlecloud.go │ │ │ │ ├── manufacturer.go │ │ │ │ ├── manufacturer_linux.go │ │ │ │ └── manufacturer_windows.go │ │ │ ├── grpclog/ │ │ │ │ └── prefix_logger.go │ │ │ ├── grpcsync/ │ │ │ │ ├── callback_serializer.go │ │ │ │ ├── event.go │ │ │ │ └── pubsub.go │ │ │ ├── grpcutil/ │ │ │ │ ├── compressor.go │ │ │ │ ├── encode_duration.go │ │ │ │ ├── grpcutil.go │ │ │ │ ├── metadata.go │ │ │ │ ├── method.go │ │ │ │ └── regex.go │ │ │ ├── hierarchy/ │ │ │ │ └── hierarchy.go │ │ │ ├── idle/ │ │ │ │ └── idle.go │ │ │ ├── internal.go │ │ │ ├── metadata/ │ │ │ │ └── metadata.go │ │ │ ├── pretty/ │ │ │ │ └── pretty.go │ │ │ ├── proto/ │ │ │ │ └── grpc_lookup_v1/ │ │ │ │ ├── rls.pb.go │ │ │ │ ├── rls_config.pb.go │ │ │ │ └── rls_grpc.pb.go │ │ │ ├── proxyattributes/ │ │ │ │ └── proxyattributes.go │ │ │ ├── resolver/ │ │ │ │ ├── config_selector.go │ │ │ │ ├── delegatingresolver/ │ │ │ │ │ └── delegatingresolver.go │ │ │ │ ├── dns/ │ │ │ │ │ ├── dns_resolver.go │ │ │ │ │ └── internal/ │ │ │ │ │ └── internal.go │ │ │ │ ├── passthrough/ │ │ │ │ │ └── passthrough.go │ │ │ │ └── unix/ │ │ │ │ └── unix.go │ │ │ ├── ringhash/ │ │ │ │ └── ringhash.go │ │ │ ├── serviceconfig/ │ │ │ │ ├── duration.go │ │ │ │ └── serviceconfig.go │ │ │ ├── stats/ │ │ │ │ ├── labels.go │ │ │ │ ├── metrics_recorder_list.go │ │ │ │ └── stats.go │ │ │ ├── status/ │ │ │ │ └── status.go │ │ │ ├── syscall/ │ │ │ │ ├── syscall_linux.go │ │ │ │ └── syscall_nonlinux.go │ │ │ ├── tcp_keepalive_others.go │ │ │ ├── tcp_keepalive_unix.go │ │ │ ├── tcp_keepalive_windows.go │ │ │ ├── transport/ │ │ │ │ ├── bdp_estimator.go │ │ │ │ ├── client_stream.go │ │ │ │ ├── controlbuf.go │ │ │ │ ├── defaults.go │ │ │ │ ├── flowcontrol.go │ │ │ │ ├── handler_server.go │ │ │ │ ├── http2_client.go │ │ │ │ ├── http2_server.go │ │ │ │ ├── http_util.go │ │ │ │ ├── logging.go │ │ │ │ ├── networktype/ │ │ │ │ │ └── networktype.go │ │ │ │ ├── proxy.go │ │ │ │ ├── server_stream.go │ │ │ │ └── transport.go │ │ │ ├── wrr/ │ │ │ │ ├── edf.go │ │ │ │ ├── random.go │ │ │ │ └── wrr.go │ │ │ └── xds/ │ │ │ ├── balancer/ │ │ │ │ ├── balancer.go │ │ │ │ ├── cdsbalancer/ │ │ │ │ │ ├── cdsbalancer.go │ │ │ │ │ ├── cluster_watcher.go │ │ │ │ │ └── logging.go │ │ │ │ ├── clusterimpl/ │ │ │ │ │ ├── clusterimpl.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── logging.go │ │ │ │ │ └── picker.go │ │ │ │ ├── clustermanager/ │ │ │ │ │ ├── balancerstateaggregator.go │ │ │ │ │ ├── clustermanager.go │ │ │ │ │ ├── config.go │ │ │ │ │ └── picker.go │ │ │ │ ├── clusterresolver/ │ │ │ │ │ ├── clusterresolver.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── configbuilder.go │ │ │ │ │ ├── configbuilder_childname.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── resource_resolver.go │ │ │ │ │ ├── resource_resolver_dns.go │ │ │ │ │ └── resource_resolver_eds.go │ │ │ │ ├── loadstore/ │ │ │ │ │ └── load_store_wrapper.go │ │ │ │ ├── outlierdetection/ │ │ │ │ │ ├── balancer.go │ │ │ │ │ ├── callcounter.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── logging.go │ │ │ │ │ └── subconn_wrapper.go │ │ │ │ ├── priority/ │ │ │ │ │ ├── balancer.go │ │ │ │ │ ├── balancer_child.go │ │ │ │ │ ├── balancer_priority.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── ignore_resolve_now.go │ │ │ │ │ └── logging.go │ │ │ │ └── wrrlocality/ │ │ │ │ ├── balancer.go │ │ │ │ └── logging.go │ │ │ ├── bootstrap/ │ │ │ │ ├── bootstrap.go │ │ │ │ ├── jwtcreds/ │ │ │ │ │ └── call_creds.go │ │ │ │ ├── logging.go │ │ │ │ ├── template.go │ │ │ │ └── tlscreds/ │ │ │ │ └── bundle.go │ │ │ ├── clients/ │ │ │ │ ├── config.go │ │ │ │ ├── grpctransport/ │ │ │ │ │ └── grpc_transport.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── backoff/ │ │ │ │ │ │ └── backoff.go │ │ │ │ │ ├── buffer/ │ │ │ │ │ │ └── unbounded.go │ │ │ │ │ ├── internal.go │ │ │ │ │ ├── pretty/ │ │ │ │ │ │ └── pretty.go │ │ │ │ │ └── syncutil/ │ │ │ │ │ ├── callback_serializer.go │ │ │ │ │ └── event.go │ │ │ │ ├── lrsclient/ │ │ │ │ │ ├── internal/ │ │ │ │ │ │ └── internal.go │ │ │ │ │ ├── load_store.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── lrs_stream.go │ │ │ │ │ ├── lrsclient.go │ │ │ │ │ └── lrsconfig.go │ │ │ │ ├── transport_builder.go │ │ │ │ └── xdsclient/ │ │ │ │ ├── ads_stream.go │ │ │ │ ├── authority.go │ │ │ │ ├── channel.go │ │ │ │ ├── clientimpl_watchers.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── internal.go │ │ │ │ │ └── xdsresource/ │ │ │ │ │ ├── ads_stream.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── name.go │ │ │ │ │ ├── type.go │ │ │ │ │ └── version.go │ │ │ │ ├── logging.go │ │ │ │ ├── metrics/ │ │ │ │ │ └── metrics.go │ │ │ │ ├── resource_type.go │ │ │ │ ├── resource_watcher.go │ │ │ │ ├── xdsclient.go │ │ │ │ └── xdsconfig.go │ │ │ ├── clusterspecifier/ │ │ │ │ ├── cluster_specifier.go │ │ │ │ └── rls/ │ │ │ │ └── rls.go │ │ │ ├── httpfilter/ │ │ │ │ ├── fault/ │ │ │ │ │ └── fault.go │ │ │ │ ├── httpfilter.go │ │ │ │ ├── rbac/ │ │ │ │ │ └── rbac.go │ │ │ │ └── router/ │ │ │ │ └── router.go │ │ │ ├── matcher/ │ │ │ │ ├── matcher_header.go │ │ │ │ └── string_matcher.go │ │ │ ├── rbac/ │ │ │ │ ├── converter.go │ │ │ │ ├── matchers.go │ │ │ │ └── rbac_engine.go │ │ │ ├── resolver/ │ │ │ │ ├── internal/ │ │ │ │ │ └── internal.go │ │ │ │ ├── logging.go │ │ │ │ ├── serviceconfig.go │ │ │ │ └── xds_resolver.go │ │ │ ├── server/ │ │ │ │ ├── conn_wrapper.go │ │ │ │ ├── listener_wrapper.go │ │ │ │ └── rds_handler.go │ │ │ ├── xds.go │ │ │ ├── xdsclient/ │ │ │ │ ├── attributes.go │ │ │ │ ├── client.go │ │ │ │ ├── clientimpl.go │ │ │ │ ├── clientimpl_loadreport.go │ │ │ │ ├── logging.go │ │ │ │ ├── pool.go │ │ │ │ ├── requests_counter.go │ │ │ │ ├── resource_types.go │ │ │ │ ├── xdslbregistry/ │ │ │ │ │ ├── converter/ │ │ │ │ │ │ └── converter.go │ │ │ │ │ └── xdslbregistry.go │ │ │ │ └── xdsresource/ │ │ │ │ ├── cluster_resource_type.go │ │ │ │ ├── endpoints_resource_type.go │ │ │ │ ├── errors.go │ │ │ │ ├── filter_chain.go │ │ │ │ ├── listener_resource_type.go │ │ │ │ ├── logging.go │ │ │ │ ├── matcher.go │ │ │ │ ├── matcher_path.go │ │ │ │ ├── metadata.go │ │ │ │ ├── name.go │ │ │ │ ├── resource_type.go │ │ │ │ ├── route_config_resource_type.go │ │ │ │ ├── type.go │ │ │ │ ├── type_cds.go │ │ │ │ ├── type_eds.go │ │ │ │ ├── type_lds.go │ │ │ │ ├── type_rds.go │ │ │ │ ├── unmarshal_cds.go │ │ │ │ ├── unmarshal_eds.go │ │ │ │ ├── unmarshal_lds.go │ │ │ │ ├── unmarshal_rds.go │ │ │ │ ├── version/ │ │ │ │ │ └── version.go │ │ │ │ └── xdsconfig.go │ │ │ └── xdsdepmgr/ │ │ │ └── xds_dependency_manager.go │ │ ├── keepalive/ │ │ │ └── keepalive.go │ │ ├── mem/ │ │ │ ├── buffer_pool.go │ │ │ ├── buffer_slice.go │ │ │ └── buffers.go │ │ ├── metadata/ │ │ │ └── metadata.go │ │ ├── orca/ │ │ │ ├── call_metrics.go │ │ │ ├── internal/ │ │ │ │ └── internal.go │ │ │ ├── orca.go │ │ │ ├── producer.go │ │ │ ├── server_metrics.go │ │ │ └── service.go │ │ ├── peer/ │ │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── preloader.go │ │ ├── resolver/ │ │ │ ├── dns/ │ │ │ │ └── dns_resolver.go │ │ │ ├── manual/ │ │ │ │ └── manual.go │ │ │ ├── map.go │ │ │ ├── resolver.go │ │ │ └── ringhash/ │ │ │ └── attr.go │ │ ├── resolver_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── serviceconfig/ │ │ │ └── serviceconfig.go │ │ ├── stats/ │ │ │ ├── handlers.go │ │ │ ├── metrics.go │ │ │ ├── opentelemetry/ │ │ │ │ ├── client_metrics.go │ │ │ │ ├── client_tracing.go │ │ │ │ ├── grpc_trace_bin_propagator.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── pluginoption.go │ │ │ │ │ └── tracing/ │ │ │ │ │ └── carrier.go │ │ │ │ ├── opentelemetry.go │ │ │ │ ├── server_metrics.go │ │ │ │ ├── server_tracing.go │ │ │ │ └── trace.go │ │ │ └── stats.go │ │ ├── status/ │ │ │ └── status.go │ │ ├── stream.go │ │ ├── stream_interfaces.go │ │ ├── tap/ │ │ │ └── tap.go │ │ ├── trace.go │ │ ├── trace_notrace.go │ │ ├── trace_withtrace.go │ │ ├── version.go │ │ └── xds/ │ │ ├── bootstrap/ │ │ │ ├── bootstrap.go │ │ │ └── credentials.go │ │ ├── csds/ │ │ │ └── csds.go │ │ ├── googledirectpath/ │ │ │ ├── googlec2p.go │ │ │ └── utils.go │ │ ├── server.go │ │ ├── server_options.go │ │ └── xds.go │ └── protobuf/ │ ├── LICENSE │ ├── PATENTS │ ├── encoding/ │ │ ├── protodelim/ │ │ │ └── protodelim.go │ │ ├── protojson/ │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── well_known_types.go │ │ ├── prototext/ │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire/ │ │ └── wire.go │ ├── internal/ │ │ ├── descfmt/ │ │ │ └── stringer.go │ │ ├── descopts/ │ │ │ └── options.go │ │ ├── detrand/ │ │ │ └── rand.go │ │ ├── editiondefaults/ │ │ │ ├── defaults.go │ │ │ └── editions_defaults.binpb │ │ ├── editionssupport/ │ │ │ └── editions.go │ │ ├── encoding/ │ │ │ ├── defval/ │ │ │ │ └── default.go │ │ │ ├── json/ │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ └── encode.go │ │ │ ├── messageset/ │ │ │ │ └── messageset.go │ │ │ ├── tag/ │ │ │ │ └── tag.go │ │ │ └── text/ │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ ├── errors/ │ │ │ └── errors.go │ │ ├── filedesc/ │ │ │ ├── build.go │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_lazy.go │ │ │ ├── desc_list.go │ │ │ ├── desc_list_gen.go │ │ │ ├── editions.go │ │ │ ├── placeholder.go │ │ │ └── presence.go │ │ ├── filetype/ │ │ │ └── build.go │ │ ├── flags/ │ │ │ ├── flags.go │ │ │ ├── proto_legacy_disable.go │ │ │ └── proto_legacy_enable.go │ │ ├── genid/ │ │ │ ├── any_gen.go │ │ │ ├── api_gen.go │ │ │ ├── descriptor_gen.go │ │ │ ├── doc.go │ │ │ ├── duration_gen.go │ │ │ ├── empty_gen.go │ │ │ ├── field_mask_gen.go │ │ │ ├── go_features_gen.go │ │ │ ├── goname.go │ │ │ ├── map_entry.go │ │ │ ├── name.go │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl/ │ │ │ ├── api_export.go │ │ │ ├── api_export_opaque.go │ │ │ ├── bitmap.go │ │ │ ├── bitmap_race.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_field_opaque.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_message.go │ │ │ ├── codec_message_opaque.go │ │ │ ├── codec_messageset.go │ │ │ ├── codec_tables.go │ │ │ ├── codec_unsafe.go │ │ │ ├── convert.go │ │ │ ├── convert_list.go │ │ │ ├── convert_map.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── enum.go │ │ │ ├── equal.go │ │ │ ├── extension.go │ │ │ ├── lazy.go │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_opaque.go │ │ │ ├── message_opaque_gen.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_field_gen.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_opaque.go │ │ │ ├── presence.go │ │ │ └── validate.go │ │ ├── order/ │ │ │ ├── order.go │ │ │ └── range.go │ │ ├── pragma/ │ │ │ └── pragma.go │ │ ├── protolazy/ │ │ │ ├── bufferreader.go │ │ │ ├── lazy.go │ │ │ └── pointer_unsafe.go │ │ ├── set/ │ │ │ └── ints.go │ │ ├── strs/ │ │ │ ├── strings.go │ │ │ └── strings_unsafe.go │ │ └── version/ │ │ └── version.go │ ├── proto/ │ │ ├── checkinit.go │ │ ├── decode.go │ │ ├── decode_gen.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_gen.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── merge.go │ │ ├── messageset.go │ │ ├── proto.go │ │ ├── proto_methods.go │ │ ├── proto_reflect.go │ │ ├── reset.go │ │ ├── size.go │ │ ├── size_gen.go │ │ ├── wrapperopaque.go │ │ └── wrappers.go │ ├── protoadapt/ │ │ └── convert.go │ ├── reflect/ │ │ ├── protodesc/ │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_resolve.go │ │ │ ├── desc_validate.go │ │ │ ├── editions.go │ │ │ └── proto.go │ │ ├── protoreflect/ │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── source_gen.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_equal.go │ │ │ ├── value_union.go │ │ │ └── value_unsafe.go │ │ └── protoregistry/ │ │ └── registry.go │ ├── runtime/ │ │ ├── protoiface/ │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl/ │ │ ├── impl.go │ │ └── version.go │ └── types/ │ ├── descriptorpb/ │ │ └── descriptor.pb.go │ ├── dynamicpb/ │ │ ├── dynamic.go │ │ └── types.go │ ├── gofeaturespb/ │ │ └── go_features.pb.go │ └── known/ │ ├── anypb/ │ │ └── any.pb.go │ ├── durationpb/ │ │ └── duration.pb.go │ ├── emptypb/ │ │ └── empty.pb.go │ ├── fieldmaskpb/ │ │ └── field_mask.pb.go │ ├── structpb/ │ │ └── struct.pb.go │ ├── timestamppb/ │ │ └── timestamp.pb.go │ └── wrapperspb/ │ └── wrappers.pb.go ├── gopkg.in/ │ ├── evanphx/ │ │ └── json-patch.v4/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ └── patch.go │ ├── gcfg.v1/ │ │ ├── LICENSE │ │ ├── README │ │ ├── doc.go │ │ ├── errors.go │ │ ├── read.go │ │ ├── scanner/ │ │ │ ├── errors.go │ │ │ └── scanner.go │ │ ├── set.go │ │ ├── token/ │ │ │ ├── position.go │ │ │ ├── serialize.go │ │ │ └── token.go │ │ └── types/ │ │ ├── bool.go │ │ ├── doc.go │ │ ├── enum.go │ │ ├── int.go │ │ └── scan.go │ ├── inf.v0/ │ │ ├── LICENSE │ │ ├── dec.go │ │ └── rounder.go │ ├── ini.v1/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── codecov.yml │ │ ├── data_source.go │ │ ├── deprecated.go │ │ ├── error.go │ │ ├── file.go │ │ ├── helper.go │ │ ├── ini.go │ │ ├── key.go │ │ ├── parser.go │ │ ├── section.go │ │ └── struct.go │ ├── natefinch/ │ │ └── lumberjack.v2/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chown.go │ │ ├── chown_linux.go │ │ └── lumberjack.go │ ├── tomb.v1/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── tomb.go │ ├── warnings.v0/ │ │ ├── LICENSE │ │ ├── README │ │ └── warnings.go │ ├── yaml.v2/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── yaml.v3/ │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── honnef.co/ │ └── go/ │ └── tools/ │ ├── LICENSE │ ├── LICENSE-THIRD-PARTY │ ├── analysis/ │ │ ├── callcheck/ │ │ │ └── callcheck.go │ │ ├── code/ │ │ │ ├── code.go │ │ │ └── visit.go │ │ ├── edit/ │ │ │ └── edit.go │ │ ├── facts/ │ │ │ ├── deprecated/ │ │ │ │ └── deprecated.go │ │ │ ├── directives/ │ │ │ │ └── directives.go │ │ │ ├── generated/ │ │ │ │ └── generated.go │ │ │ ├── nilness/ │ │ │ │ └── nilness.go │ │ │ ├── purity/ │ │ │ │ └── purity.go │ │ │ ├── tokenfile/ │ │ │ │ └── token.go │ │ │ └── typedness/ │ │ │ └── typedness.go │ │ ├── lint/ │ │ │ └── lint.go │ │ └── report/ │ │ └── report.go │ ├── config/ │ │ ├── config.go │ │ └── example.conf │ ├── go/ │ │ ├── ast/ │ │ │ └── astutil/ │ │ │ ├── upstream.go │ │ │ └── util.go │ │ ├── ir/ │ │ │ ├── LICENSE │ │ │ ├── UPSTREAM │ │ │ ├── blockopt.go │ │ │ ├── builder.go │ │ │ ├── const.go │ │ │ ├── create.go │ │ │ ├── doc.go │ │ │ ├── dom.go │ │ │ ├── emit.go │ │ │ ├── exits.go │ │ │ ├── func.go │ │ │ ├── html.go │ │ │ ├── irutil/ │ │ │ │ ├── load.go │ │ │ │ ├── loops.go │ │ │ │ ├── stub.go │ │ │ │ ├── switch.go │ │ │ │ ├── terminates.go │ │ │ │ ├── util.go │ │ │ │ └── visit.go │ │ │ ├── lift.go │ │ │ ├── lvalue.go │ │ │ ├── methods.go │ │ │ ├── mode.go │ │ │ ├── print.go │ │ │ ├── sanity.go │ │ │ ├── source.go │ │ │ ├── ssa.go │ │ │ ├── util.go │ │ │ ├── wrappers.go │ │ │ └── write.go │ │ └── types/ │ │ └── typeutil/ │ │ ├── ext.go │ │ ├── typeparams.go │ │ ├── upstream.go │ │ └── util.go │ ├── internal/ │ │ ├── passes/ │ │ │ └── buildir/ │ │ │ └── buildir.go │ │ └── sharedcheck/ │ │ └── lint.go │ ├── knowledge/ │ │ ├── arg.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── signatures.go │ │ └── targets.go │ ├── pattern/ │ │ ├── convert.go │ │ ├── doc.go │ │ ├── lexer.go │ │ ├── match.go │ │ ├── parser.go │ │ └── pattern.go │ ├── printf/ │ │ ├── fuzz.go │ │ └── printf.go │ ├── simple/ │ │ ├── analysis.go │ │ ├── doc.go │ │ ├── s1000/ │ │ │ └── s1000.go │ │ ├── s1001/ │ │ │ └── s1001.go │ │ ├── s1002/ │ │ │ └── s1002.go │ │ ├── s1003/ │ │ │ └── s1003.go │ │ ├── s1004/ │ │ │ └── s1004.go │ │ ├── s1005/ │ │ │ └── s1005.go │ │ ├── s1006/ │ │ │ └── s1006.go │ │ ├── s1007/ │ │ │ └── s1007.go │ │ ├── s1008/ │ │ │ └── s1008.go │ │ ├── s1009/ │ │ │ └── s1009.go │ │ ├── s1010/ │ │ │ └── s1010.go │ │ ├── s1011/ │ │ │ └── s1011.go │ │ ├── s1012/ │ │ │ └── s1012.go │ │ ├── s1016/ │ │ │ └── s1016.go │ │ ├── s1017/ │ │ │ └── s1017.go │ │ ├── s1018/ │ │ │ └── s1018.go │ │ ├── s1019/ │ │ │ └── s1019.go │ │ ├── s1020/ │ │ │ └── s1020.go │ │ ├── s1021/ │ │ │ └── s1021.go │ │ ├── s1023/ │ │ │ └── s1023.go │ │ ├── s1024/ │ │ │ └── s1024.go │ │ ├── s1025/ │ │ │ └── s1025.go │ │ ├── s1028/ │ │ │ └── s1028.go │ │ ├── s1029/ │ │ │ └── s1029.go │ │ ├── s1030/ │ │ │ └── s1030.go │ │ ├── s1031/ │ │ │ └── s1031.go │ │ ├── s1032/ │ │ │ └── s1032.go │ │ ├── s1033/ │ │ │ └── s1033.go │ │ ├── s1034/ │ │ │ └── s1034.go │ │ ├── s1035/ │ │ │ └── s1035.go │ │ ├── s1036/ │ │ │ └── s1036.go │ │ ├── s1037/ │ │ │ └── s1037.go │ │ ├── s1038/ │ │ │ └── s1038.go │ │ ├── s1039/ │ │ │ └── s1039.go │ │ └── s1040/ │ │ └── s1040.go │ ├── staticcheck/ │ │ ├── analysis.go │ │ ├── doc.go │ │ ├── fakejson/ │ │ │ └── encode.go │ │ ├── fakereflect/ │ │ │ └── fakereflect.go │ │ ├── fakexml/ │ │ │ ├── marshal.go │ │ │ ├── typeinfo.go │ │ │ └── xml.go │ │ ├── sa1000/ │ │ │ └── sa1000.go │ │ ├── sa1001/ │ │ │ └── sa1001.go │ │ ├── sa1002/ │ │ │ └── sa1002.go │ │ ├── sa1003/ │ │ │ └── sa1003.go │ │ ├── sa1004/ │ │ │ └── sa1004.go │ │ ├── sa1005/ │ │ │ └── sa1005.go │ │ ├── sa1006/ │ │ │ └── sa1006.go │ │ ├── sa1007/ │ │ │ └── sa1007.go │ │ ├── sa1008/ │ │ │ └── sa1008.go │ │ ├── sa1010/ │ │ │ └── sa1010.go │ │ ├── sa1011/ │ │ │ └── sa1011.go │ │ ├── sa1012/ │ │ │ └── sa1012.go │ │ ├── sa1013/ │ │ │ └── sa1013.go │ │ ├── sa1014/ │ │ │ └── sa1014.go │ │ ├── sa1015/ │ │ │ └── sa1015.go │ │ ├── sa1016/ │ │ │ └── sa1016.go │ │ ├── sa1017/ │ │ │ └── sa1017.go │ │ ├── sa1018/ │ │ │ └── sa1018.go │ │ ├── sa1019/ │ │ │ └── sa1019.go │ │ ├── sa1020/ │ │ │ └── sa1020.go │ │ ├── sa1021/ │ │ │ └── sa1021.go │ │ ├── sa1023/ │ │ │ └── sa1023.go │ │ ├── sa1024/ │ │ │ └── sa1024.go │ │ ├── sa1025/ │ │ │ └── sa1025.go │ │ ├── sa1026/ │ │ │ └── sa1026.go │ │ ├── sa1027/ │ │ │ └── sa1027.go │ │ ├── sa1028/ │ │ │ └── sa1028.go │ │ ├── sa1029/ │ │ │ └── sa1029.go │ │ ├── sa1030/ │ │ │ └── sa1030.go │ │ ├── sa1031/ │ │ │ └── sa1031.go │ │ ├── sa1032/ │ │ │ └── sa1032.go │ │ ├── sa2000/ │ │ │ └── sa2000.go │ │ ├── sa2001/ │ │ │ └── sa2001.go │ │ ├── sa2002/ │ │ │ └── sa2002.go │ │ ├── sa2003/ │ │ │ └── sa2003.go │ │ ├── sa3000/ │ │ │ └── sa3000.go │ │ ├── sa3001/ │ │ │ └── sa3001.go │ │ ├── sa4000/ │ │ │ └── sa4000.go │ │ ├── sa4001/ │ │ │ └── sa4001.go │ │ ├── sa4003/ │ │ │ └── sa4003.go │ │ ├── sa4004/ │ │ │ └── sa4004.go │ │ ├── sa4005/ │ │ │ └── sa4005.go │ │ ├── sa4006/ │ │ │ └── sa4006.go │ │ ├── sa4008/ │ │ │ └── sa4008.go │ │ ├── sa4009/ │ │ │ └── sa4009.go │ │ ├── sa4010/ │ │ │ └── sa4010.go │ │ ├── sa4011/ │ │ │ └── sa4011.go │ │ ├── sa4012/ │ │ │ └── sa4012.go │ │ ├── sa4013/ │ │ │ └── sa4013.go │ │ ├── sa4014/ │ │ │ └── sa4014.go │ │ ├── sa4015/ │ │ │ └── sa4015.go │ │ ├── sa4016/ │ │ │ └── sa4016.go │ │ ├── sa4017/ │ │ │ └── sa4017.go │ │ ├── sa4018/ │ │ │ └── sa4018.go │ │ ├── sa4019/ │ │ │ └── sa4019.go │ │ ├── sa4020/ │ │ │ └── sa4020.go │ │ ├── sa4021/ │ │ │ └── sa4021.go │ │ ├── sa4022/ │ │ │ └── sa4022.go │ │ ├── sa4023/ │ │ │ └── sa4023.go │ │ ├── sa4024/ │ │ │ └── sa4024.go │ │ ├── sa4025/ │ │ │ └── sa4025.go │ │ ├── sa4026/ │ │ │ └── sa4026.go │ │ ├── sa4027/ │ │ │ └── sa4027.go │ │ ├── sa4028/ │ │ │ └── sa4028.go │ │ ├── sa4029/ │ │ │ └── sa4029.go │ │ ├── sa4030/ │ │ │ └── sa4030.go │ │ ├── sa4031/ │ │ │ └── sa4031.go │ │ ├── sa4032/ │ │ │ └── sa4032.go │ │ ├── sa5000/ │ │ │ └── sa5000.go │ │ ├── sa5001/ │ │ │ └── sa5001.go │ │ ├── sa5002/ │ │ │ └── sa5002.go │ │ ├── sa5003/ │ │ │ └── sa5003.go │ │ ├── sa5004/ │ │ │ └── sa5004.go │ │ ├── sa5005/ │ │ │ └── sa5005.go │ │ ├── sa5007/ │ │ │ └── sa5007.go │ │ ├── sa5008/ │ │ │ ├── sa5008.go │ │ │ └── structtag.go │ │ ├── sa5009/ │ │ │ └── sa5009.go │ │ ├── sa5010/ │ │ │ └── sa5010.go │ │ ├── sa5011/ │ │ │ └── sa5011.go │ │ ├── sa5012/ │ │ │ └── sa5012.go │ │ ├── sa6000/ │ │ │ └── sa6000.go │ │ ├── sa6001/ │ │ │ └── sa6001.go │ │ ├── sa6002/ │ │ │ └── sa6002.go │ │ ├── sa6003/ │ │ │ └── sa6003.go │ │ ├── sa6005/ │ │ │ └── sa6005.go │ │ ├── sa6006/ │ │ │ └── sa6006.go │ │ ├── sa9001/ │ │ │ └── sa9001.go │ │ ├── sa9002/ │ │ │ └── sa9002.go │ │ ├── sa9003/ │ │ │ └── sa9003.go │ │ ├── sa9004/ │ │ │ └── sa9004.go │ │ ├── sa9005/ │ │ │ └── sa9005.go │ │ ├── sa9006/ │ │ │ └── sa9006.go │ │ ├── sa9007/ │ │ │ └── sa9007.go │ │ ├── sa9008/ │ │ │ └── sa9008.go │ │ └── sa9009/ │ │ └── sa9009.go │ ├── stylecheck/ │ │ ├── analysis.go │ │ ├── doc.go │ │ ├── st1000/ │ │ │ └── st1000.go │ │ ├── st1001/ │ │ │ └── st1001.go │ │ ├── st1003/ │ │ │ └── st1003.go │ │ ├── st1005/ │ │ │ └── st1005.go │ │ ├── st1006/ │ │ │ └── st1006.go │ │ ├── st1008/ │ │ │ └── st1008.go │ │ ├── st1011/ │ │ │ └── st1011.go │ │ ├── st1012/ │ │ │ └── st1012.go │ │ ├── st1013/ │ │ │ └── st1013.go │ │ ├── st1015/ │ │ │ └── st1015.go │ │ ├── st1016/ │ │ │ └── st1016.go │ │ ├── st1017/ │ │ │ └── st1017.go │ │ ├── st1018/ │ │ │ └── st1018.go │ │ ├── st1019/ │ │ │ └── st1019.go │ │ ├── st1020/ │ │ │ └── st1020.go │ │ ├── st1021/ │ │ │ └── st1021.go │ │ ├── st1022/ │ │ │ └── st1022.go │ │ └── st1023/ │ │ └── st1023.go │ └── unused/ │ ├── implements.go │ ├── runtime.go │ ├── serialize.go │ └── unused.go ├── k8s.io/ │ ├── api/ │ │ ├── LICENSE │ │ ├── admission/ │ │ │ ├── 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 │ │ ├── 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 │ │ │ └── zz_generated.validations.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 │ │ ├── imagepolicy/ │ │ │ └── v1alpha1/ │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── networking/ │ │ │ ├── v1/ │ │ │ │ ├── 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 │ │ │ └── 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/ │ │ │ ├── v1/ │ │ │ │ ├── devicetaint.go │ │ │ │ ├── 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 │ │ │ ├── v1alpha3/ │ │ │ │ ├── devicetaint.go │ │ │ │ ├── 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/ │ │ │ │ ├── devicetaint.go │ │ │ │ ├── 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/ │ │ │ ├── devicetaint.go │ │ │ ├── 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 │ ├── apiextensions-apiserver/ │ │ ├── LICENSE │ │ └── pkg/ │ │ ├── apis/ │ │ │ └── apiextensions/ │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── v1/ │ │ │ │ ├── .import-restrictions │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── marshal.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_jsonschema.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.defaults.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1/ │ │ │ │ ├── .import-restrictions │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── marshal.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_jsonschema.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.defaults.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── zz_generated.deepcopy.go │ │ └── client/ │ │ ├── applyconfiguration/ │ │ │ └── apiextensions/ │ │ │ ├── v1/ │ │ │ │ ├── customresourcecolumndefinition.go │ │ │ │ ├── customresourceconversion.go │ │ │ │ ├── customresourcedefinition.go │ │ │ │ ├── customresourcedefinitioncondition.go │ │ │ │ ├── customresourcedefinitionnames.go │ │ │ │ ├── customresourcedefinitionspec.go │ │ │ │ ├── customresourcedefinitionstatus.go │ │ │ │ ├── customresourcedefinitionversion.go │ │ │ │ ├── customresourcesubresources.go │ │ │ │ ├── customresourcesubresourcescale.go │ │ │ │ ├── customresourcevalidation.go │ │ │ │ ├── externaldocumentation.go │ │ │ │ ├── jsonschemaprops.go │ │ │ │ ├── selectablefield.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── validationrule.go │ │ │ │ ├── webhookclientconfig.go │ │ │ │ └── webhookconversion.go │ │ │ └── v1beta1/ │ │ │ ├── customresourcecolumndefinition.go │ │ │ ├── customresourceconversion.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── customresourcedefinitioncondition.go │ │ │ ├── customresourcedefinitionnames.go │ │ │ ├── customresourcedefinitionspec.go │ │ │ ├── customresourcedefinitionstatus.go │ │ │ ├── customresourcedefinitionversion.go │ │ │ ├── customresourcesubresources.go │ │ │ ├── customresourcesubresourcescale.go │ │ │ ├── customresourcevalidation.go │ │ │ ├── externaldocumentation.go │ │ │ ├── jsonschemaprops.go │ │ │ ├── selectablefield.go │ │ │ ├── servicereference.go │ │ │ ├── validationrule.go │ │ │ └── webhookclientconfig.go │ │ └── clientset/ │ │ └── clientset/ │ │ ├── clientset.go │ │ ├── scheme/ │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed/ │ │ └── apiextensions/ │ │ ├── v1/ │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ └── v1beta1/ │ │ ├── apiextensions_client.go │ │ ├── customresourcedefinition.go │ │ ├── doc.go │ │ └── generated_expansion.go │ ├── apimachinery/ │ │ ├── LICENSE │ │ ├── pkg/ │ │ │ ├── api/ │ │ │ │ ├── apitesting/ │ │ │ │ │ ├── close.go │ │ │ │ │ ├── codec.go │ │ │ │ │ └── fuzzer/ │ │ │ │ │ ├── fuzzer.go │ │ │ │ │ └── valuefuzz.go │ │ │ │ ├── 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 │ │ │ │ ├── operation/ │ │ │ │ │ └── operation.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 │ │ │ │ ├── safe/ │ │ │ │ │ └── safe.go │ │ │ │ ├── validate/ │ │ │ │ │ ├── README.md │ │ │ │ │ ├── common.go │ │ │ │ │ ├── constraints/ │ │ │ │ │ │ └── constraints.go │ │ │ │ │ ├── content/ │ │ │ │ │ │ └── errors.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── each.go │ │ │ │ │ ├── enum.go │ │ │ │ │ ├── equality.go │ │ │ │ │ ├── immutable.go │ │ │ │ │ ├── item.go │ │ │ │ │ ├── limits.go │ │ │ │ │ ├── required.go │ │ │ │ │ ├── subfield.go │ │ │ │ │ ├── testing.go │ │ │ │ │ ├── union.go │ │ │ │ │ └── zeroorone.go │ │ │ │ └── validation/ │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ ├── objectmeta.go │ │ │ │ └── path/ │ │ │ │ └── name.go │ │ │ ├── apis/ │ │ │ │ ├── asn1/ │ │ │ │ │ └── oid.go │ │ │ │ └── meta/ │ │ │ │ ├── fuzzer/ │ │ │ │ │ └── fuzzer.go │ │ │ │ ├── internalversion/ │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── scheme/ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── unstructuredscheme/ │ │ │ │ │ │ │ └── scheme.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 │ │ │ │ ├── validation/ │ │ │ │ │ └── validation.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 │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ └── transcoding.go │ │ │ │ │ │ └── raw.go │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ ├── json/ │ │ │ │ │ │ ├── collections.go │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ └── meta.go │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ ├── protobuf/ │ │ │ │ │ │ ├── collections.go │ │ │ │ │ │ ├── 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/ │ │ │ │ ├── cache/ │ │ │ │ │ ├── expiring.go │ │ │ │ │ └── lruexpirecache.go │ │ │ │ ├── diff/ │ │ │ │ │ ├── cmp.go │ │ │ │ │ ├── diff.go │ │ │ │ │ └── legacy_diff.go │ │ │ │ ├── dump/ │ │ │ │ │ └── dump.go │ │ │ │ ├── duration/ │ │ │ │ │ └── duration.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 │ │ │ │ ├── jsonmergepatch/ │ │ │ │ │ └── patch.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 │ │ │ │ │ │ ├── runtimetypeconverter.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 │ │ │ │ ├── rand/ │ │ │ │ │ └── rand.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 │ │ │ │ ├── uuid/ │ │ │ │ │ └── uuid.go │ │ │ │ ├── validation/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── field/ │ │ │ │ │ │ ├── error_matcher.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── path.go │ │ │ │ │ ├── ip.go │ │ │ │ │ └── validation.go │ │ │ │ ├── version/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── version.go │ │ │ │ ├── wait/ │ │ │ │ │ ├── backoff.go │ │ │ │ │ ├── delay.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── loop.go │ │ │ │ │ ├── poll.go │ │ │ │ │ ├── timer.go │ │ │ │ │ └── wait.go │ │ │ │ ├── waitgroup/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── ratelimited_waitgroup.go │ │ │ │ │ └── waitgroup.go │ │ │ │ └── yaml/ │ │ │ │ ├── decoder.go │ │ │ │ └── stream_reader.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 │ ├── apiserver/ │ │ ├── LICENSE │ │ ├── pkg/ │ │ │ ├── admission/ │ │ │ │ ├── attributes.go │ │ │ │ ├── audit.go │ │ │ │ ├── chain.go │ │ │ │ ├── config.go │ │ │ │ ├── configuration/ │ │ │ │ │ ├── configuration_manager.go │ │ │ │ │ ├── mutating_webhook_manager.go │ │ │ │ │ └── validating_webhook_manager.go │ │ │ │ ├── conversion.go │ │ │ │ ├── decorator.go │ │ │ │ ├── errors.go │ │ │ │ ├── handler.go │ │ │ │ ├── initializer/ │ │ │ │ │ ├── initializer.go │ │ │ │ │ └── interfaces.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── metrics/ │ │ │ │ │ └── metrics.go │ │ │ │ ├── plugin/ │ │ │ │ │ ├── authorizer/ │ │ │ │ │ │ └── caching_authorizer.go │ │ │ │ │ ├── cel/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── activation.go │ │ │ │ │ │ ├── compile.go │ │ │ │ │ │ ├── composition.go │ │ │ │ │ │ ├── condition.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── mutation.go │ │ │ │ │ ├── namespace/ │ │ │ │ │ │ └── lifecycle/ │ │ │ │ │ │ └── admission.go │ │ │ │ │ ├── policy/ │ │ │ │ │ │ ├── generic/ │ │ │ │ │ │ │ ├── accessor.go │ │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ │ ├── policy_dispatcher.go │ │ │ │ │ │ │ ├── policy_matcher.go │ │ │ │ │ │ │ ├── policy_source.go │ │ │ │ │ │ │ └── policy_test_context.go │ │ │ │ │ │ ├── internal/ │ │ │ │ │ │ │ └── generic/ │ │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── informer.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── lister.go │ │ │ │ │ │ ├── matching/ │ │ │ │ │ │ │ └── matching.go │ │ │ │ │ │ ├── mutating/ │ │ │ │ │ │ │ ├── accessor.go │ │ │ │ │ │ │ ├── compilation.go │ │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── metrics/ │ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ │ └── metrics.go │ │ │ │ │ │ │ ├── patch/ │ │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ │ ├── json_patch.go │ │ │ │ │ │ │ │ ├── smd.go │ │ │ │ │ │ │ │ └── typeconverter.go │ │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ │ └── reinvocationcontext.go │ │ │ │ │ │ └── validating/ │ │ │ │ │ │ ├── accessor.go │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── initializer.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── message.go │ │ │ │ │ │ ├── metrics/ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ └── metrics.go │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ ├── policy_decision.go │ │ │ │ │ │ ├── typechecking.go │ │ │ │ │ │ └── validator.go │ │ │ │ │ └── webhook/ │ │ │ │ │ ├── accessors.go │ │ │ │ │ ├── config/ │ │ │ │ │ │ ├── apis/ │ │ │ │ │ │ │ └── webhookadmission/ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── v1/ │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ │ ├── v1alpha1/ │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ └── kubeconfig.go │ │ │ │ │ ├── errors/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── statuserror.go │ │ │ │ │ ├── generic/ │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ └── webhook.go │ │ │ │ │ ├── matchconditions/ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── matcher.go │ │ │ │ │ ├── mutating/ │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ └── reinvocationcontext.go │ │ │ │ │ ├── predicates/ │ │ │ │ │ │ ├── namespace/ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── matcher.go │ │ │ │ │ │ ├── object/ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── matcher.go │ │ │ │ │ │ └── rules/ │ │ │ │ │ │ └── rules.go │ │ │ │ │ ├── request/ │ │ │ │ │ │ ├── admissionreview.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ └── validating/ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── plugin.go │ │ │ │ ├── plugins.go │ │ │ │ ├── reinvocation.go │ │ │ │ └── util.go │ │ │ ├── apis/ │ │ │ │ ├── apidiscovery/ │ │ │ │ │ └── v2/ │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── apiserver/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── install/ │ │ │ │ │ │ └── install.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_encryption.go │ │ │ │ │ ├── v1/ │ │ │ │ │ │ ├── defaults.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_encryption.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ ├── v1alpha1/ │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── defaults.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ ├── v1beta1/ │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── defaults.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ ├── validation.go │ │ │ │ │ │ └── validation_encryption.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── audit/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── install/ │ │ │ │ │ │ └── install.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ ├── validation/ │ │ │ │ │ │ └── validation.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── cel/ │ │ │ │ │ └── config.go │ │ │ │ └── flowcontrol/ │ │ │ │ └── bootstrap/ │ │ │ │ └── default.go │ │ │ ├── audit/ │ │ │ │ ├── OWNERS │ │ │ │ ├── context.go │ │ │ │ ├── evaluator.go │ │ │ │ ├── format.go │ │ │ │ ├── metrics.go │ │ │ │ ├── policy/ │ │ │ │ │ ├── checker.go │ │ │ │ │ ├── reader.go │ │ │ │ │ └── util.go │ │ │ │ ├── request.go │ │ │ │ ├── scheme.go │ │ │ │ ├── types.go │ │ │ │ └── union.go │ │ │ ├── authentication/ │ │ │ │ ├── authenticator/ │ │ │ │ │ ├── audagnostic.go │ │ │ │ │ ├── audiences.go │ │ │ │ │ └── interfaces.go │ │ │ │ ├── authenticatorfactory/ │ │ │ │ │ ├── delegating.go │ │ │ │ │ ├── loopback.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ └── requestheader.go │ │ │ │ ├── cel/ │ │ │ │ │ ├── compile.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── mapper.go │ │ │ │ ├── group/ │ │ │ │ │ ├── authenticated_group_adder.go │ │ │ │ │ ├── group_adder.go │ │ │ │ │ └── token_group_adder.go │ │ │ │ ├── request/ │ │ │ │ │ ├── anonymous/ │ │ │ │ │ │ └── anonymous.go │ │ │ │ │ ├── bearertoken/ │ │ │ │ │ │ └── bearertoken.go │ │ │ │ │ ├── headerrequest/ │ │ │ │ │ │ ├── requestheader.go │ │ │ │ │ │ └── requestheader_controller.go │ │ │ │ │ ├── union/ │ │ │ │ │ │ └── union.go │ │ │ │ │ ├── websocket/ │ │ │ │ │ │ └── protocol.go │ │ │ │ │ └── x509/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── verify_options.go │ │ │ │ │ └── x509.go │ │ │ │ ├── serviceaccount/ │ │ │ │ │ └── util.go │ │ │ │ ├── token/ │ │ │ │ │ ├── cache/ │ │ │ │ │ │ ├── cache_simple.go │ │ │ │ │ │ ├── cache_striped.go │ │ │ │ │ │ ├── cached_token_authenticator.go │ │ │ │ │ │ └── stats.go │ │ │ │ │ └── tokenfile/ │ │ │ │ │ └── tokenfile.go │ │ │ │ └── user/ │ │ │ │ ├── doc.go │ │ │ │ └── user.go │ │ │ ├── authorization/ │ │ │ │ ├── authorizer/ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ └── rule.go │ │ │ │ ├── authorizerfactory/ │ │ │ │ │ ├── builtin.go │ │ │ │ │ ├── delegating.go │ │ │ │ │ └── metrics.go │ │ │ │ ├── cel/ │ │ │ │ │ ├── compile.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── matcher.go │ │ │ │ │ └── metrics.go │ │ │ │ ├── path/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── path.go │ │ │ │ └── union/ │ │ │ │ └── union.go │ │ │ ├── cel/ │ │ │ │ ├── OWNERS │ │ │ │ ├── cidr.go │ │ │ │ ├── common/ │ │ │ │ │ ├── adaptor.go │ │ │ │ │ ├── equality.go │ │ │ │ │ ├── maplist.go │ │ │ │ │ ├── schemas.go │ │ │ │ │ ├── typeprovider.go │ │ │ │ │ ├── valuesreflect.go │ │ │ │ │ └── valuesunstructured.go │ │ │ │ ├── environment/ │ │ │ │ │ ├── base.go │ │ │ │ │ └── environment.go │ │ │ │ ├── errors.go │ │ │ │ ├── escaping.go │ │ │ │ ├── format.go │ │ │ │ ├── ip.go │ │ │ │ ├── lazy/ │ │ │ │ │ └── lazy.go │ │ │ │ ├── library/ │ │ │ │ │ ├── authz.go │ │ │ │ │ ├── cidr.go │ │ │ │ │ ├── cost.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── ip.go │ │ │ │ │ ├── jsonpatch.go │ │ │ │ │ ├── libraries.go │ │ │ │ │ ├── lists.go │ │ │ │ │ ├── quantity.go │ │ │ │ │ ├── regex.go │ │ │ │ │ ├── semverlib.go │ │ │ │ │ ├── test.go │ │ │ │ │ └── urls.go │ │ │ │ ├── limits.go │ │ │ │ ├── mutation/ │ │ │ │ │ ├── dynamic/ │ │ │ │ │ │ └── objects.go │ │ │ │ │ ├── jsonpatch.go │ │ │ │ │ └── typeresolver.go │ │ │ │ ├── openapi/ │ │ │ │ │ ├── adaptor.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ └── resolver/ │ │ │ │ │ ├── combined.go │ │ │ │ │ ├── definitions.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── refs.go │ │ │ │ │ └── resolver.go │ │ │ │ ├── quantity.go │ │ │ │ ├── semver.go │ │ │ │ ├── types.go │ │ │ │ ├── url.go │ │ │ │ └── value.go │ │ │ ├── endpoints/ │ │ │ │ ├── OWNERS │ │ │ │ ├── deprecation/ │ │ │ │ │ └── deprecation.go │ │ │ │ ├── discovery/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── addresses.go │ │ │ │ │ ├── aggregated/ │ │ │ │ │ │ ├── etag.go │ │ │ │ │ │ ├── fake.go │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ ├── metrics.go │ │ │ │ │ │ ├── negotiation.go │ │ │ │ │ │ └── wrapper.go │ │ │ │ │ ├── group.go │ │ │ │ │ ├── legacy.go │ │ │ │ │ ├── root.go │ │ │ │ │ ├── storageversionhash.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── version.go │ │ │ │ ├── doc.go │ │ │ │ ├── filterlatency/ │ │ │ │ │ └── filterlatency.go │ │ │ │ ├── filters/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── audit.go │ │ │ │ │ ├── audit_init.go │ │ │ │ │ ├── authentication.go │ │ │ │ │ ├── authn_audit.go │ │ │ │ │ ├── authorization.go │ │ │ │ │ ├── cachecontrol.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── impersonation.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── mux_discovery_complete.go │ │ │ │ │ ├── request_deadline.go │ │ │ │ │ ├── request_received_time.go │ │ │ │ │ ├── requestinfo.go │ │ │ │ │ ├── storageversion.go │ │ │ │ │ ├── traces.go │ │ │ │ │ ├── warning.go │ │ │ │ │ └── webhook_duration.go │ │ │ │ ├── groupversion.go │ │ │ │ ├── handlers/ │ │ │ │ │ ├── create.go │ │ │ │ │ ├── delete.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fieldmanager/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── admission.go │ │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ │ ├── equality.go │ │ │ │ │ │ ├── node.yaml │ │ │ │ │ │ └── pod.yaml │ │ │ │ │ ├── finisher/ │ │ │ │ │ │ └── finisher.go │ │ │ │ │ ├── get.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── metrics/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ └── metrics.go │ │ │ │ │ ├── namer.go │ │ │ │ │ ├── negotiation/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── negotiate.go │ │ │ │ │ ├── patch.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── responsewriters/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── status.go │ │ │ │ │ │ └── writers.go │ │ │ │ │ ├── rest.go │ │ │ │ │ ├── trace_util.go │ │ │ │ │ ├── update.go │ │ │ │ │ └── watch.go │ │ │ │ ├── installer.go │ │ │ │ ├── metrics/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── metrics.go │ │ │ │ ├── openapi/ │ │ │ │ │ └── openapi.go │ │ │ │ ├── request/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── methods.go │ │ │ │ │ ├── received_time.go │ │ │ │ │ ├── requestinfo.go │ │ │ │ │ ├── server_shutdown_signal.go │ │ │ │ │ └── webhook_duration.go │ │ │ │ ├── responsewriter/ │ │ │ │ │ ├── fake.go │ │ │ │ │ └── wrapper.go │ │ │ │ └── warning/ │ │ │ │ └── warning.go │ │ │ ├── features/ │ │ │ │ ├── OWNERS │ │ │ │ └── kube_features.go │ │ │ ├── quota/ │ │ │ │ └── v1/ │ │ │ │ ├── OWNERS │ │ │ │ ├── interfaces.go │ │ │ │ └── resources.go │ │ │ ├── registry/ │ │ │ │ ├── generic/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── matcher.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── registry/ │ │ │ │ │ │ ├── corrupt_obj_deleter.go │ │ │ │ │ │ ├── decorated_watcher.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dryrun.go │ │ │ │ │ │ ├── storage_factory.go │ │ │ │ │ │ └── store.go │ │ │ │ │ └── storage_decorator.go │ │ │ │ └── rest/ │ │ │ │ ├── OWNERS │ │ │ │ ├── create.go │ │ │ │ ├── create_update.go │ │ │ │ ├── delete.go │ │ │ │ ├── doc.go │ │ │ │ ├── meta.go │ │ │ │ ├── rest.go │ │ │ │ ├── table.go │ │ │ │ ├── update.go │ │ │ │ └── validate.go │ │ │ ├── server/ │ │ │ │ ├── config.go │ │ │ │ ├── config_selfclient.go │ │ │ │ ├── deleted_kinds.go │ │ │ │ ├── deprecated_insecure_serving.go │ │ │ │ ├── doc.go │ │ │ │ ├── dynamiccertificates/ │ │ │ │ │ ├── cert_key.go │ │ │ │ │ ├── client_ca.go │ │ │ │ │ ├── configmap_cafile_content.go │ │ │ │ │ ├── dynamic_cafile_content.go │ │ │ │ │ ├── dynamic_serving_content.go │ │ │ │ │ ├── dynamic_sni_content.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── named_certificates.go │ │ │ │ │ ├── static_content.go │ │ │ │ │ ├── tlsconfig.go │ │ │ │ │ ├── union_content.go │ │ │ │ │ └── util.go │ │ │ │ ├── egressselector/ │ │ │ │ │ ├── config.go │ │ │ │ │ ├── egress_selector.go │ │ │ │ │ └── metrics/ │ │ │ │ │ └── metrics.go │ │ │ │ ├── filters/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── content_type.go │ │ │ │ │ ├── cors.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── goaway.go │ │ │ │ │ ├── hsts.go │ │ │ │ │ ├── longrunning.go │ │ │ │ │ ├── maxinflight.go │ │ │ │ │ ├── priority-and-fairness.go │ │ │ │ │ ├── timeout.go │ │ │ │ │ ├── waitgroup.go │ │ │ │ │ ├── watch_termination.go │ │ │ │ │ ├── with_retry_after.go │ │ │ │ │ └── wrap.go │ │ │ │ ├── genericapiserver.go │ │ │ │ ├── handler.go │ │ │ │ ├── healthz/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── healthz.go │ │ │ │ ├── healthz.go │ │ │ │ ├── hooks.go │ │ │ │ ├── httplog/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── httplog.go │ │ │ │ ├── lifecycle_signals.go │ │ │ │ ├── mux/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ └── pathrecorder.go │ │ │ │ ├── options/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── admission.go │ │ │ │ │ ├── api_enablement.go │ │ │ │ │ ├── audit.go │ │ │ │ │ ├── authentication.go │ │ │ │ │ ├── authentication_dynamic_request_header.go │ │ │ │ │ ├── authorization.go │ │ │ │ │ ├── coreapi.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── egress_selector.go │ │ │ │ │ ├── encryptionconfig/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── controller/ │ │ │ │ │ │ │ └── controller.go │ │ │ │ │ │ └── metrics/ │ │ │ │ │ │ └── metrics.go │ │ │ │ │ ├── etcd.go │ │ │ │ │ ├── feature.go │ │ │ │ │ ├── recommended.go │ │ │ │ │ ├── server_run_options.go │ │ │ │ │ ├── serving.go │ │ │ │ │ ├── serving_unix.go │ │ │ │ │ ├── serving_windows.go │ │ │ │ │ ├── serving_with_loopback.go │ │ │ │ │ └── tracing.go │ │ │ │ ├── plugins.go │ │ │ │ ├── resourceconfig/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── helpers.go │ │ │ │ ├── routes/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── debugsocket.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── index.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── openapi.go │ │ │ │ │ ├── profiling.go │ │ │ │ │ └── version.go │ │ │ │ ├── routine/ │ │ │ │ │ └── routine.go │ │ │ │ ├── secure_serving.go │ │ │ │ ├── signal.go │ │ │ │ ├── signal_posix.go │ │ │ │ ├── signal_windows.go │ │ │ │ ├── storage/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── resource_config.go │ │ │ │ │ ├── resource_encoding_config.go │ │ │ │ │ ├── storage_codec.go │ │ │ │ │ └── storage_factory.go │ │ │ │ └── storage_readiness_hook.go │ │ │ ├── storage/ │ │ │ │ ├── OWNERS │ │ │ │ ├── api_object_versioner.go │ │ │ │ ├── cacher/ │ │ │ │ │ ├── cache_watcher.go │ │ │ │ │ ├── cacher.go │ │ │ │ │ ├── caching_object.go │ │ │ │ │ ├── compactor.go │ │ │ │ │ ├── delegator/ │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── delegator.go │ │ │ │ │ ├── lister_watcher.go │ │ │ │ │ ├── metrics/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ └── metrics.go │ │ │ │ │ ├── progress/ │ │ │ │ │ │ └── watch_progress.go │ │ │ │ │ ├── ready.go │ │ │ │ │ ├── store.go │ │ │ │ │ ├── store_btree.go │ │ │ │ │ ├── time_budget.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── watch_cache.go │ │ │ │ │ └── watch_cache_interval.go │ │ │ │ ├── continue.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── storage.go │ │ │ │ ├── errors.go │ │ │ │ ├── etcd3/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── corrupt_obj_deleter.go │ │ │ │ │ ├── decoder.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── healthcheck.go │ │ │ │ │ ├── latency_tracker.go │ │ │ │ │ ├── lease_manager.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── metrics/ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ └── metrics.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── store.go │ │ │ │ │ └── watcher.go │ │ │ │ ├── feature/ │ │ │ │ │ └── feature_support_checker.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── names/ │ │ │ │ │ └── generate.go │ │ │ │ ├── selection_predicate.go │ │ │ │ ├── storagebackend/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── config.go │ │ │ │ │ └── factory/ │ │ │ │ │ ├── etcd3.go │ │ │ │ │ └── factory.go │ │ │ │ ├── util.go │ │ │ │ └── value/ │ │ │ │ ├── OWNERS │ │ │ │ ├── encrypt/ │ │ │ │ │ ├── aes/ │ │ │ │ │ │ ├── aes.go │ │ │ │ │ │ ├── aes_extended_nonce.go │ │ │ │ │ │ └── cache.go │ │ │ │ │ ├── envelope/ │ │ │ │ │ │ ├── envelope.go │ │ │ │ │ │ ├── grpc_service.go │ │ │ │ │ │ ├── kmsv2/ │ │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ │ ├── envelope.go │ │ │ │ │ │ │ ├── grpc_service.go │ │ │ │ │ │ │ └── v2/ │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── api.pb.go │ │ │ │ │ │ │ ├── api.proto │ │ │ │ │ │ │ └── v2.go │ │ │ │ │ │ └── metrics/ │ │ │ │ │ │ └── metrics.go │ │ │ │ │ ├── identity/ │ │ │ │ │ │ └── identity.go │ │ │ │ │ └── secretbox/ │ │ │ │ │ └── secretbox.go │ │ │ │ ├── metrics.go │ │ │ │ └── transformer.go │ │ │ ├── storageversion/ │ │ │ │ ├── OWNERS │ │ │ │ ├── manager.go │ │ │ │ └── updater.go │ │ │ ├── util/ │ │ │ │ ├── apihelpers/ │ │ │ │ │ └── helpers.go │ │ │ │ ├── compatibility/ │ │ │ │ │ ├── registry.go │ │ │ │ │ └── version.go │ │ │ │ ├── configmetrics/ │ │ │ │ │ └── info_collector.go │ │ │ │ ├── dryrun/ │ │ │ │ │ └── dryrun.go │ │ │ │ ├── feature/ │ │ │ │ │ └── feature_gate.go │ │ │ │ ├── flowcontrol/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── apf_context.go │ │ │ │ │ ├── apf_controller.go │ │ │ │ │ ├── apf_controller_debug.go │ │ │ │ │ ├── apf_filter.go │ │ │ │ │ ├── conc_alloc.go │ │ │ │ │ ├── debug/ │ │ │ │ │ │ └── dump.go │ │ │ │ │ ├── dropped_requests_tracker.go │ │ │ │ │ ├── fairqueuing/ │ │ │ │ │ │ ├── eventclock/ │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── real.go │ │ │ │ │ │ ├── integrator.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── promise/ │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── promise.go │ │ │ │ │ │ └── queueset/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fifo_list.go │ │ │ │ │ │ ├── queueset.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── format/ │ │ │ │ │ │ └── formatting.go │ │ │ │ │ ├── formatting.go │ │ │ │ │ ├── max_seats.go │ │ │ │ │ ├── metrics/ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── metrics.go │ │ │ │ │ │ ├── timing_ratio_histogram.go │ │ │ │ │ │ ├── union_gauge.go │ │ │ │ │ │ └── vec_element_pair.go │ │ │ │ │ ├── request/ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── list_work_estimator.go │ │ │ │ │ │ ├── mutating_work_estimator.go │ │ │ │ │ │ ├── object_count_tracker.go │ │ │ │ │ │ ├── seat_seconds.go │ │ │ │ │ │ └── width.go │ │ │ │ │ ├── rule.go │ │ │ │ │ └── watch_tracker.go │ │ │ │ ├── flushwriter/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── writer.go │ │ │ │ ├── peerproxy/ │ │ │ │ │ └── metrics/ │ │ │ │ │ └── metrics.go │ │ │ │ ├── shufflesharding/ │ │ │ │ │ └── shufflesharding.go │ │ │ │ ├── webhook/ │ │ │ │ │ ├── authentication.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── serviceresolver.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── webhook.go │ │ │ │ └── x509metrics/ │ │ │ │ └── server_cert_deprecations.go │ │ │ ├── validation/ │ │ │ │ └── metrics.go │ │ │ └── warning/ │ │ │ └── context.go │ │ └── plugin/ │ │ └── pkg/ │ │ ├── audit/ │ │ │ ├── buffered/ │ │ │ │ ├── buffered.go │ │ │ │ └── doc.go │ │ │ ├── log/ │ │ │ │ └── backend.go │ │ │ ├── truncate/ │ │ │ │ ├── doc.go │ │ │ │ └── truncate.go │ │ │ └── webhook/ │ │ │ └── webhook.go │ │ ├── authenticator/ │ │ │ └── token/ │ │ │ └── webhook/ │ │ │ ├── metrics.go │ │ │ └── webhook.go │ │ └── authorizer/ │ │ └── webhook/ │ │ ├── gencerts.sh │ │ ├── metrics/ │ │ │ └── metrics.go │ │ └── webhook.go │ ├── cli-runtime/ │ │ ├── LICENSE │ │ └── pkg/ │ │ ├── genericclioptions/ │ │ │ ├── builder_flags.go │ │ │ ├── builder_flags_fake.go │ │ │ ├── client_config.go │ │ │ ├── command_headers.go │ │ │ ├── config_flags.go │ │ │ ├── config_flags_fake.go │ │ │ ├── doc.go │ │ │ ├── filename_flags.go │ │ │ ├── io_options.go │ │ │ ├── json_yaml_flags.go │ │ │ ├── jsonpath_flags.go │ │ │ ├── kube_template_flags.go │ │ │ ├── name_flags.go │ │ │ ├── print_flags.go │ │ │ ├── record_flags.go │ │ │ └── template_flags.go │ │ ├── genericiooptions/ │ │ │ └── io_options.go │ │ ├── printers/ │ │ │ ├── discard.go │ │ │ ├── doc.go │ │ │ ├── interface.go │ │ │ ├── json.go │ │ │ ├── jsonpath.go │ │ │ ├── kyaml.go │ │ │ ├── managedfields.go │ │ │ ├── name.go │ │ │ ├── sourcechecker.go │ │ │ ├── tableprinter.go │ │ │ ├── tabwriter.go │ │ │ ├── template.go │ │ │ ├── terminal.go │ │ │ ├── typesetter.go │ │ │ ├── warningprinter.go │ │ │ └── yaml.go │ │ └── resource/ │ │ ├── builder.go │ │ ├── client.go │ │ ├── crd_finder.go │ │ ├── doc.go │ │ ├── fake.go │ │ ├── fallback_query_param_verifier.go │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── kustomizevisitor.go │ │ ├── mapper.go │ │ ├── metadata_decoder.go │ │ ├── query_param_verifier.go │ │ ├── query_param_verifier_v3.go │ │ ├── result.go │ │ ├── scheme.go │ │ ├── selector.go │ │ └── visitor.go │ ├── client-go/ │ │ ├── LICENSE │ │ ├── applyconfigurations/ │ │ │ ├── OWNERS │ │ │ ├── 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/ │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── mutation.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 │ │ │ │ │ ├── podcertificaterequest.go │ │ │ │ │ ├── podcertificaterequestspec.go │ │ │ │ │ └── podcertificaterequeststatus.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ ├── certificatesigningrequeststatus.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── clustertrustbundlespec.go │ │ │ ├── coordination/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── lease.go │ │ │ │ │ └── leasespec.go │ │ │ │ ├── v1alpha2/ │ │ │ │ │ ├── leasecandidate.go │ │ │ │ │ └── leasecandidatespec.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── lease.go │ │ │ │ ├── leasecandidate.go │ │ │ │ ├── leasecandidatespec.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 │ │ │ │ ├── containerextendedresourcerequest.go │ │ │ │ ├── containerimage.go │ │ │ │ ├── containerport.go │ │ │ │ ├── containerresizepolicy.go │ │ │ │ ├── containerrestartrule.go │ │ │ │ ├── containerrestartruleonexitcodes.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 │ │ │ │ ├── filekeyselector.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 │ │ │ │ ├── nodeswapstatus.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 │ │ │ │ ├── podcertificateprojection.go │ │ │ │ ├── podcondition.go │ │ │ │ ├── poddnsconfig.go │ │ │ │ ├── poddnsconfigoption.go │ │ │ │ ├── podextendedresourceclaimstatus.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 │ │ │ │ │ ├── fornode.go │ │ │ │ │ └── forzone.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fornode.go │ │ │ │ └── forzone.go │ │ │ ├── doc.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 │ │ │ ├── imagepolicy/ │ │ │ │ └── v1alpha1/ │ │ │ │ ├── imagereview.go │ │ │ │ ├── imagereviewcontainerspec.go │ │ │ │ ├── imagereviewspec.go │ │ │ │ └── imagereviewstatus.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 │ │ │ │ │ ├── ipaddress.go │ │ │ │ │ ├── ipaddressspec.go │ │ │ │ │ ├── ipblock.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ │ ├── networkpolicypeer.go │ │ │ │ │ ├── networkpolicyport.go │ │ │ │ │ ├── networkpolicyspec.go │ │ │ │ │ ├── parentreference.go │ │ │ │ │ ├── servicebackendport.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/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ │ ├── allocationresult.go │ │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ │ ├── capacityrequirements.go │ │ │ │ │ ├── celdeviceselector.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── counterset.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 │ │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ │ ├── devicerequest.go │ │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ │ ├── deviceselector.go │ │ │ │ │ ├── devicesubrequest.go │ │ │ │ │ ├── devicetaint.go │ │ │ │ │ ├── devicetoleration.go │ │ │ │ │ ├── exactdevicerequest.go │ │ │ │ │ ├── networkdevicedata.go │ │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ │ ├── resourceclaimspec.go │ │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ │ ├── resourcepool.go │ │ │ │ │ ├── resourceslice.go │ │ │ │ │ └── resourceslicespec.go │ │ │ │ ├── v1alpha3/ │ │ │ │ │ ├── celdeviceselector.go │ │ │ │ │ ├── deviceselector.go │ │ │ │ │ ├── devicetaint.go │ │ │ │ │ ├── devicetaintrule.go │ │ │ │ │ ├── devicetaintrulespec.go │ │ │ │ │ └── devicetaintselector.go │ │ │ │ ├── v1beta1/ │ │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ │ ├── allocationresult.go │ │ │ │ │ ├── basicdevice.go │ │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ │ ├── capacityrequirements.go │ │ │ │ │ ├── celdeviceselector.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── counterset.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 │ │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ │ ├── devicerequest.go │ │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ │ ├── deviceselector.go │ │ │ │ │ ├── devicesubrequest.go │ │ │ │ │ ├── devicetaint.go │ │ │ │ │ ├── devicetoleration.go │ │ │ │ │ ├── networkdevicedata.go │ │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ │ ├── resourceclaimspec.go │ │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ │ ├── resourcepool.go │ │ │ │ │ ├── resourceslice.go │ │ │ │ │ └── resourceslicespec.go │ │ │ │ └── v1beta2/ │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ ├── capacityrequirements.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.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 │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── exactdevicerequest.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 │ │ │ │ │ ├── volumeattributesclass.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 │ │ │ └── utils.go │ │ ├── discovery/ │ │ │ ├── aggregated_discovery.go │ │ │ ├── cached/ │ │ │ │ ├── disk/ │ │ │ │ │ ├── cached_discovery.go │ │ │ │ │ └── round_tripper.go │ │ │ │ └── memory/ │ │ │ │ └── memcache.go │ │ │ ├── discovery_client.go │ │ │ ├── doc.go │ │ │ ├── fake/ │ │ │ │ └── discovery.go │ │ │ └── helper.go │ │ ├── dynamic/ │ │ │ ├── dynamicinformer/ │ │ │ │ ├── informer.go │ │ │ │ └── interface.go │ │ │ ├── dynamiclister/ │ │ │ │ ├── interface.go │ │ │ │ ├── lister.go │ │ │ │ └── shim.go │ │ │ ├── fake/ │ │ │ │ └── simple.go │ │ │ ├── interface.go │ │ │ ├── scheme.go │ │ │ └── simple.go │ │ ├── features/ │ │ │ ├── envvar.go │ │ │ ├── features.go │ │ │ └── known_features.go │ │ ├── gentype/ │ │ │ ├── fake.go │ │ │ └── type.go │ │ ├── informers/ │ │ │ ├── admissionregistration/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apiserverinternal/ │ │ │ │ ├── interface.go │ │ │ │ └── v1alpha1/ │ │ │ │ ├── interface.go │ │ │ │ └── storageversion.go │ │ │ ├── apps/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1/ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2/ │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── autoscaling/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ └── interface.go │ │ │ │ ├── v2/ │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ └── interface.go │ │ │ │ ├── v2beta1/ │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ └── interface.go │ │ │ │ └── v2beta2/ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ ├── batch/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── job.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── cronjob.go │ │ │ │ └── interface.go │ │ │ ├── certificates/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ └── interface.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── clustertrustbundle.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── podcertificaterequest.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── interface.go │ │ │ ├── coordination/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── interface.go │ │ │ │ │ └── lease.go │ │ │ │ ├── v1alpha2/ │ │ │ │ │ ├── interface.go │ │ │ │ │ └── leasecandidate.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── interface.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ │ ├── core/ │ │ │ │ ├── interface.go │ │ │ │ └── v1/ │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── interface.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ │ ├── discovery/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── interface.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── endpointslice.go │ │ │ │ └── interface.go │ │ │ ├── doc.go │ │ │ ├── events/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── event.go │ │ │ │ │ └── interface.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ │ ├── extensions/ │ │ │ │ ├── interface.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── ingress.go │ │ │ │ ├── interface.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ │ ├── factory.go │ │ │ ├── flowcontrol/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── v1beta1/ │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── v1beta2/ │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── v1beta3/ │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces/ │ │ │ │ └── factory_interfaces.go │ │ │ ├── networking/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── ipaddress.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ └── servicecidr.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ │ ├── node/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── interface.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── interface.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ │ ├── policy/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── interface.go │ │ │ │ │ └── poddisruptionbudget.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── interface.go │ │ │ │ └── poddisruptionbudget.go │ │ │ ├── rbac/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── resource/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── deviceclass.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ └── resourceslice.go │ │ │ │ ├── v1alpha3/ │ │ │ │ │ ├── devicetaintrule.go │ │ │ │ │ └── interface.go │ │ │ │ ├── v1beta1/ │ │ │ │ │ ├── deviceclass.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ └── resourceslice.go │ │ │ │ └── v1beta2/ │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── scheduling/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── interface.go │ │ │ │ │ └── priorityclass.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── interface.go │ │ │ │ │ └── priorityclass.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ │ ├── storage/ │ │ │ │ ├── interface.go │ │ │ │ ├── v1/ │ │ │ │ │ ├── csidriver.go │ │ │ │ │ ├── csinode.go │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── storageclass.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ └── volumeattributesclass.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ └── volumeattributesclass.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── storagemigration/ │ │ │ ├── interface.go │ │ │ └── v1alpha1/ │ │ │ ├── interface.go │ │ │ └── storageversionmigration.go │ │ ├── kubernetes/ │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake/ │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── import.go │ │ │ ├── scheme/ │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed/ │ │ │ ├── admissionregistration/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ │ ├── fake_mutatingadmissionpolicy.go │ │ │ │ │ │ ├── fake_mutatingadmissionpolicybinding.go │ │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ │ └── fake_validatingadmissionpolicybinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingadmissionpolicy.go │ │ │ │ │ ├── fake_mutatingadmissionpolicybinding.go │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apiserverinternal/ │ │ │ │ └── v1alpha1/ │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apiserverinternal_client.go │ │ │ │ │ └── fake_storageversion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── storageversion.go │ │ │ ├── apps/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1/ │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2/ │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ │ ├── fake_selfsubjectreview.go │ │ │ │ │ │ └── fake_tokenreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── selfsubjectreview.go │ │ │ │ │ └── tokenreview.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ │ └── fake_selfsubjectreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── selfsubjectreview.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ ├── fake_selfsubjectreview.go │ │ │ │ │ └── fake_tokenreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── authorization/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ ├── autoscaling/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2/ │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2beta1/ │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta2/ │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ ├── fake_cronjob.go │ │ │ │ │ │ └── fake_job.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── job.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ └── fake_cronjob.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ │ └── fake_certificatesigningrequest.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── clustertrustbundle.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ │ ├── fake_clustertrustbundle.go │ │ │ │ │ │ └── fake_podcertificaterequest.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── podcertificaterequest.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ │ ├── fake_certificatesigningrequest_expansion.go │ │ │ │ │ └── fake_clustertrustbundle.go │ │ │ │ └── generated_expansion.go │ │ │ ├── coordination/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ │ └── fake_lease.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ ├── v1alpha2/ │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ │ └── fake_leasecandidate.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── leasecandidate.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ ├── fake_lease.go │ │ │ │ │ └── fake_leasecandidate.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ │ ├── core/ │ │ │ │ └── v1/ │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── core_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_componentstatus.go │ │ │ │ │ ├── fake_configmap.go │ │ │ │ │ ├── fake_core_client.go │ │ │ │ │ ├── fake_endpoints.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ ├── fake_limitrange.go │ │ │ │ │ ├── fake_namespace.go │ │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ │ ├── fake_node.go │ │ │ │ │ ├── fake_node_expansion.go │ │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ │ ├── fake_pod.go │ │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ │ ├── fake_podtemplate.go │ │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ │ ├── fake_resourcequota.go │ │ │ │ │ ├── fake_secret.go │ │ │ │ │ ├── fake_service.go │ │ │ │ │ ├── fake_service_expansion.go │ │ │ │ │ └── fake_serviceaccount.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 │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_discovery_client.go │ │ │ │ │ │ └── fake_endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_discovery_client.go │ │ │ │ │ └── fake_endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ ├── events/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_event.go │ │ │ │ │ │ └── fake_events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ └── fake_events_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── extensions/ │ │ │ │ └── v1beta1/ │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ │ ├── fake_extensions_client.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ │ └── fake_replicaset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ │ ├── flowcontrol/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── v1beta1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── v1beta2/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── v1beta3/ │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── networking/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ │ ├── fake_ipaddress.go │ │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ │ │ └── fake_servicecidr.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ipaddress.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ └── servicecidr.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ ├── fake_ipaddress.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ └── servicecidr.go │ │ │ ├── node/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── policy/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ │ └── fake_policy_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── policy_client.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── resource/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── deviceclass.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── resource_client.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ └── resourceslice.go │ │ │ │ ├── v1alpha3/ │ │ │ │ │ ├── devicetaintrule.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_devicetaintrule.go │ │ │ │ │ │ └── fake_resource_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── resource_client.go │ │ │ │ ├── v1beta1/ │ │ │ │ │ ├── deviceclass.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── resource_client.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ └── resourceslice.go │ │ │ │ └── v1beta2/ │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── scheduling/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── storage/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── csidriver.go │ │ │ │ │ ├── csinode.go │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_csidriver.go │ │ │ │ │ │ ├── fake_csinode.go │ │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ │ ├── fake_storageclass.go │ │ │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── storage_client.go │ │ │ │ │ ├── storageclass.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ └── volumeattributesclass.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── storage_client.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ └── volumeattributesclass.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csidriver.go │ │ │ │ │ ├── fake_csinode.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_storageclass.go │ │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── storagemigration/ │ │ │ └── v1alpha1/ │ │ │ ├── doc.go │ │ │ ├── fake/ │ │ │ │ ├── doc.go │ │ │ │ ├── fake_storagemigration_client.go │ │ │ │ └── fake_storageversionmigration.go │ │ │ ├── generated_expansion.go │ │ │ ├── storagemigration_client.go │ │ │ └── storageversionmigration.go │ │ ├── listers/ │ │ │ ├── admissionregistration/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apiserverinternal/ │ │ │ │ └── v1alpha1/ │ │ │ │ ├── expansion_generated.go │ │ │ │ └── storageversion.go │ │ │ ├── apps/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonset_expansion.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicaset_expansion.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ └── statefulset_expansion.go │ │ │ │ ├── v1beta1/ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ └── statefulset_expansion.go │ │ │ │ └── v1beta2/ │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ ├── autoscaling/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2beta1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta2/ │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── job.go │ │ │ │ │ └── job_expansion.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── cronjob.go │ │ │ │ └── expansion_generated.go │ │ │ ├── certificates/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ └── expansion_generated.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── clustertrustbundle.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── podcertificaterequest.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── expansion_generated.go │ │ │ ├── coordination/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── lease.go │ │ │ │ ├── v1alpha2/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── leasecandidate.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ │ ├── core/ │ │ │ │ └── v1/ │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ │ ├── discovery/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── expansion_generated.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── endpointslice.go │ │ │ │ └── expansion_generated.go │ │ │ ├── doc.go │ │ │ ├── events/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── event.go │ │ │ │ │ └── expansion_generated.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ │ ├── extensions/ │ │ │ │ └── v1beta1/ │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ └── replicaset_expansion.go │ │ │ ├── flowcontrol/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── v1beta1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── v1beta2/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── v1beta3/ │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── generic_helpers.go │ │ │ ├── networking/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ipaddress.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ └── servicecidr.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ │ ├── node/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ │ ├── policy/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── poddisruptionbudget_expansion.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget_expansion.go │ │ │ ├── rbac/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── resource/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── deviceclass.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ └── resourceslice.go │ │ │ │ ├── v1alpha3/ │ │ │ │ │ ├── devicetaintrule.go │ │ │ │ │ └── expansion_generated.go │ │ │ │ ├── v1beta1/ │ │ │ │ │ ├── deviceclass.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ └── resourceslice.go │ │ │ │ └── v1beta2/ │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── scheduling/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── priorityclass.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── priorityclass.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ │ ├── storage/ │ │ │ │ ├── v1/ │ │ │ │ │ ├── csidriver.go │ │ │ │ │ ├── csinode.go │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── storageclass.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ └── volumeattributesclass.go │ │ │ │ ├── v1alpha1/ │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── volumeattachment.go │ │ │ │ │ └── volumeattributesclass.go │ │ │ │ └── v1beta1/ │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── storagemigration/ │ │ │ └── v1alpha1/ │ │ │ ├── expansion_generated.go │ │ │ └── storageversionmigration.go │ │ ├── metadata/ │ │ │ ├── interface.go │ │ │ └── metadata.go │ │ ├── openapi/ │ │ │ ├── OWNERS │ │ │ ├── cached/ │ │ │ │ ├── client.go │ │ │ │ └── groupversion.go │ │ │ ├── client.go │ │ │ ├── groupversion.go │ │ │ └── typeconverter.go │ │ ├── openapi3/ │ │ │ └── root.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/ │ │ │ ├── .mockery.yaml │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── exec.go │ │ │ ├── fake/ │ │ │ │ └── fake.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 │ │ ├── restmapper/ │ │ │ ├── category_expansion.go │ │ │ ├── discovery.go │ │ │ └── shortcut.go │ │ ├── scale/ │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── interfaces.go │ │ │ ├── scheme/ │ │ │ │ ├── appsint/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── appsv1beta1/ │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── appsv1beta2/ │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── autoscalingv1/ │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensionsint/ │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── extensionsv1beta1/ │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── util.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 │ │ │ ├── cache/ │ │ │ │ ├── OWNERS │ │ │ │ ├── controller.go │ │ │ │ ├── delta_fifo.go │ │ │ │ ├── doc.go │ │ │ │ ├── expiration_cache.go │ │ │ │ ├── expiration_cache_fakes.go │ │ │ │ ├── fake_custom_store.go │ │ │ │ ├── fifo.go │ │ │ │ ├── heap.go │ │ │ │ ├── index.go │ │ │ │ ├── listers.go │ │ │ │ ├── listwatch.go │ │ │ │ ├── mutation_cache.go │ │ │ │ ├── mutation_detector.go │ │ │ │ ├── object-names.go │ │ │ │ ├── reflector.go │ │ │ │ ├── reflector_data_consistency_detector.go │ │ │ │ ├── reflector_metrics.go │ │ │ │ ├── retry_with_deadline.go │ │ │ │ ├── shared_informer.go │ │ │ │ ├── store.go │ │ │ │ ├── synctrack/ │ │ │ │ │ ├── lazy.go │ │ │ │ │ └── synctrack.go │ │ │ │ ├── the_real_fifo.go │ │ │ │ ├── thread_safe_store.go │ │ │ │ └── undelta_store.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 │ │ │ ├── events/ │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── event_broadcaster.go │ │ │ │ ├── event_recorder.go │ │ │ │ ├── fake.go │ │ │ │ ├── helper.go │ │ │ │ └── interfaces.go │ │ │ ├── internal/ │ │ │ │ └── events/ │ │ │ │ └── interfaces.go │ │ │ ├── leaderelection/ │ │ │ │ ├── OWNERS │ │ │ │ ├── healthzadaptor.go │ │ │ │ ├── leaderelection.go │ │ │ │ ├── leasecandidate.go │ │ │ │ ├── metrics.go │ │ │ │ └── resourcelock/ │ │ │ │ ├── interface.go │ │ │ │ ├── leaselock.go │ │ │ │ └── multilock.go │ │ │ ├── metrics/ │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ │ ├── pager/ │ │ │ │ └── pager.go │ │ │ ├── record/ │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_cache.go │ │ │ │ ├── fake.go │ │ │ │ └── util/ │ │ │ │ └── util.go │ │ │ ├── reference/ │ │ │ │ └── ref.go │ │ │ ├── remotecommand/ │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── errorstream.go │ │ │ │ ├── fallback.go │ │ │ │ ├── reader.go │ │ │ │ ├── remotecommand.go │ │ │ │ ├── resize.go │ │ │ │ ├── spdy.go │ │ │ │ ├── v1.go │ │ │ │ ├── v2.go │ │ │ │ ├── v3.go │ │ │ │ ├── v4.go │ │ │ │ ├── v5.go │ │ │ │ └── websocket.go │ │ │ └── watch/ │ │ │ ├── informerwatcher.go │ │ │ ├── retrywatcher.go │ │ │ └── until.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 │ │ ├── certificate/ │ │ │ └── csr/ │ │ │ └── csr.go │ │ ├── connrotation/ │ │ │ └── connrotation.go │ │ ├── consistencydetector/ │ │ │ └── data_consistency_detector.go │ │ ├── csaupgrade/ │ │ │ ├── OWNERS │ │ │ ├── options.go │ │ │ └── upgrade.go │ │ ├── exec/ │ │ │ └── exec.go │ │ ├── flowcontrol/ │ │ │ ├── backoff.go │ │ │ └── throttle.go │ │ ├── homedir/ │ │ │ └── homedir.go │ │ ├── jsonpath/ │ │ │ ├── doc.go │ │ │ ├── jsonpath.go │ │ │ ├── node.go │ │ │ └── parser.go │ │ ├── keyutil/ │ │ │ ├── OWNERS │ │ │ └── key.go │ │ ├── retry/ │ │ │ ├── OWNERS │ │ │ └── util.go │ │ └── workqueue/ │ │ ├── default_rate_limiters.go │ │ ├── delaying_queue.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── parallelizer.go │ │ ├── queue.go │ │ └── rate_limiting_queue.go │ ├── cloud-provider-vsphere/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── common/ │ │ └── config/ │ │ ├── config.go │ │ ├── config_ini_legacy.go │ │ ├── config_yaml.go │ │ ├── consts_and_errors.go │ │ ├── types_common.go │ │ ├── types_ini_legacy.go │ │ └── types_yaml.go │ ├── cluster-registry/ │ │ ├── LICENSE │ │ └── pkg/ │ │ └── apis/ │ │ └── clusterregistry/ │ │ └── v1alpha1/ │ │ ├── doc.go │ │ ├── types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.kubebuilder.go │ ├── code-generator/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── SECURITY_CONTACTS │ │ ├── cmd/ │ │ │ ├── applyconfiguration-gen/ │ │ │ │ ├── args/ │ │ │ │ │ ├── args.go │ │ │ │ │ └── externaltypes.go │ │ │ │ ├── generators/ │ │ │ │ │ ├── applyconfiguration.go │ │ │ │ │ ├── internal.go │ │ │ │ │ ├── jsontagutil.go │ │ │ │ │ ├── openapi.go │ │ │ │ │ ├── refgraph.go │ │ │ │ │ ├── targets.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── util.go │ │ │ │ └── main.go │ │ │ ├── client-gen/ │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── args/ │ │ │ │ │ ├── args.go │ │ │ │ │ ├── gvpackages.go │ │ │ │ │ └── gvtype.go │ │ │ │ ├── generators/ │ │ │ │ │ ├── client_generator.go │ │ │ │ │ ├── fake/ │ │ │ │ │ │ ├── fake_client_generator.go │ │ │ │ │ │ ├── generator_fake_for_clientset.go │ │ │ │ │ │ ├── generator_fake_for_group.go │ │ │ │ │ │ └── generator_fake_for_type.go │ │ │ │ │ ├── generator_for_clientset.go │ │ │ │ │ ├── generator_for_expansion.go │ │ │ │ │ ├── generator_for_group.go │ │ │ │ │ ├── generator_for_type.go │ │ │ │ │ ├── scheme/ │ │ │ │ │ │ └── generator_for_scheme.go │ │ │ │ │ └── util/ │ │ │ │ │ ├── gvpackages.go │ │ │ │ │ └── tags.go │ │ │ │ ├── main.go │ │ │ │ └── types/ │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ │ ├── conversion-gen/ │ │ │ │ ├── args/ │ │ │ │ │ └── args.go │ │ │ │ ├── generators/ │ │ │ │ │ └── conversion.go │ │ │ │ └── main.go │ │ │ ├── deepcopy-gen/ │ │ │ │ ├── args/ │ │ │ │ │ └── args.go │ │ │ │ ├── generators/ │ │ │ │ │ └── deepcopy.go │ │ │ │ └── main.go │ │ │ ├── defaulter-gen/ │ │ │ │ ├── args/ │ │ │ │ │ └── args.go │ │ │ │ ├── generators/ │ │ │ │ │ └── defaulter.go │ │ │ │ └── main.go │ │ │ ├── informer-gen/ │ │ │ │ ├── args/ │ │ │ │ │ └── args.go │ │ │ │ ├── generators/ │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── factoryinterface.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── groupinterface.go │ │ │ │ │ ├── informer.go │ │ │ │ │ ├── targets.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── versioninterface.go │ │ │ │ └── main.go │ │ │ ├── lister-gen/ │ │ │ │ ├── args/ │ │ │ │ │ └── args.go │ │ │ │ ├── generators/ │ │ │ │ │ ├── expansion.go │ │ │ │ │ └── lister.go │ │ │ │ └── main.go │ │ │ ├── register-gen/ │ │ │ │ ├── args/ │ │ │ │ │ └── args.go │ │ │ │ ├── generators/ │ │ │ │ │ ├── register_external.go │ │ │ │ │ └── targets.go │ │ │ │ └── main.go │ │ │ └── validation-gen/ │ │ │ ├── lint.go │ │ │ ├── lint_rules.go │ │ │ ├── main.go │ │ │ ├── targets.go │ │ │ ├── util/ │ │ │ │ └── util.go │ │ │ ├── validation.go │ │ │ └── validators/ │ │ │ ├── common.go │ │ │ ├── each.go │ │ │ ├── enum.go │ │ │ ├── equality.go │ │ │ ├── immutable.go │ │ │ ├── item.go │ │ │ ├── limits.go │ │ │ ├── opaque.go │ │ │ ├── registry.go │ │ │ ├── required.go │ │ │ ├── subfield.go │ │ │ ├── testing.go │ │ │ ├── union.go │ │ │ ├── validators.go │ │ │ └── zeroorone.go │ │ ├── code-of-conduct.md │ │ ├── doc.go │ │ ├── generate-groups.sh │ │ ├── generate-internal-groups.sh │ │ ├── kube_codegen.sh │ │ ├── pkg/ │ │ │ ├── namer/ │ │ │ │ └── tag-override.go │ │ │ └── util/ │ │ │ ├── comments.go │ │ │ └── plural_exceptions.go │ │ ├── third_party/ │ │ │ └── forked/ │ │ │ └── golang/ │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── reflect/ │ │ │ └── type.go │ │ └── tools.go │ ├── component-base/ │ │ ├── LICENSE │ │ ├── cli/ │ │ │ ├── OWNERS │ │ │ ├── flag/ │ │ │ │ ├── ciphersuites_flag.go │ │ │ │ ├── colon_separated_multimap_string_string.go │ │ │ │ ├── configuration_map.go │ │ │ │ ├── flags.go │ │ │ │ ├── langle_separated_map_string_string.go │ │ │ │ ├── map_string_bool.go │ │ │ │ ├── map_string_string.go │ │ │ │ ├── namedcertkey_flag.go │ │ │ │ ├── noop.go │ │ │ │ ├── omitempty.go │ │ │ │ ├── sectioned.go │ │ │ │ ├── string_flag.go │ │ │ │ ├── string_slice_flag.go │ │ │ │ ├── tracker_flag.go │ │ │ │ └── tristate.go │ │ │ └── run.go │ │ ├── compatibility/ │ │ │ ├── OWNERS │ │ │ ├── registry.go │ │ │ └── version.go │ │ ├── featuregate/ │ │ │ ├── OWNERS │ │ │ └── feature_gate.go │ │ ├── logs/ │ │ │ ├── OWNERS │ │ │ ├── api/ │ │ │ │ └── v1/ │ │ │ │ ├── doc.go │ │ │ │ ├── kube_features.go │ │ │ │ ├── options.go │ │ │ │ ├── options_no_slog.go │ │ │ │ ├── options_slog.go │ │ │ │ ├── pflags.go │ │ │ │ ├── registry.go │ │ │ │ ├── text.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── internal/ │ │ │ │ └── setverbositylevel/ │ │ │ │ └── setverbositylevel.go │ │ │ ├── klogflags/ │ │ │ │ └── klogflags.go │ │ │ └── logs.go │ │ ├── metrics/ │ │ │ ├── OWNERS │ │ │ ├── buckets.go │ │ │ ├── collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── features/ │ │ │ │ └── kube_features.go │ │ │ ├── gauge.go │ │ │ ├── histogram.go │ │ │ ├── http.go │ │ │ ├── labels.go │ │ │ ├── legacyregistry/ │ │ │ │ └── registry.go │ │ │ ├── metric.go │ │ │ ├── options.go │ │ │ ├── opts.go │ │ │ ├── processstarttime.go │ │ │ ├── processstarttime_others.go │ │ │ ├── processstarttime_windows.go │ │ │ ├── prometheus/ │ │ │ │ ├── compatversion/ │ │ │ │ │ └── metrics.go │ │ │ │ ├── feature/ │ │ │ │ │ └── metrics.go │ │ │ │ ├── slis/ │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── registry.go │ │ │ │ │ └── routes.go │ │ │ │ └── workqueue/ │ │ │ │ └── metrics.go │ │ │ ├── prometheusextension/ │ │ │ │ ├── timing_histogram.go │ │ │ │ ├── timing_histogram_vec.go │ │ │ │ ├── weighted_histogram.go │ │ │ │ └── weighted_histogram_vec.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── testutil/ │ │ │ │ ├── metrics.go │ │ │ │ ├── promlint.go │ │ │ │ └── testutil.go │ │ │ ├── timing_histogram.go │ │ │ ├── value.go │ │ │ ├── version.go │ │ │ ├── version_parser.go │ │ │ └── wrappers.go │ │ ├── tracing/ │ │ │ ├── OWNERS │ │ │ ├── api/ │ │ │ │ └── v1/ │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── tracing.go │ │ │ └── utils.go │ │ ├── version/ │ │ │ ├── OWNERS │ │ │ ├── base.go │ │ │ ├── dynamic.go │ │ │ └── version.go │ │ └── zpages/ │ │ ├── features/ │ │ │ ├── doc.go │ │ │ └── kube_features.go │ │ ├── flagz/ │ │ │ ├── flagreader.go │ │ │ └── flagz.go │ │ ├── httputil/ │ │ │ └── httputil.go │ │ └── statusz/ │ │ ├── registry.go │ │ └── statusz.go │ ├── component-helpers/ │ │ ├── LICENSE │ │ └── resource/ │ │ ├── OWNERS │ │ └── helpers.go │ ├── gengo/ │ │ └── v2/ │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── codetags/ │ │ │ ├── extractor.go │ │ │ ├── parser.go │ │ │ ├── scanner.go │ │ │ └── types.go │ │ ├── comments.go │ │ ├── execute.go │ │ ├── generator/ │ │ │ ├── doc.go │ │ │ ├── error_tracker.go │ │ │ ├── execute.go │ │ │ ├── generator.go │ │ │ ├── go_generator.go │ │ │ ├── import_tracker.go │ │ │ ├── simple_target.go │ │ │ └── snippet_writer.go │ │ ├── namer/ │ │ │ ├── doc.go │ │ │ ├── import_tracker.go │ │ │ ├── namer.go │ │ │ ├── order.go │ │ │ └── plural_namer.go │ │ ├── parser/ │ │ │ ├── doc.go │ │ │ ├── parse.go │ │ │ ├── parse_122.go │ │ │ ├── parse_pre_122.go │ │ │ └── tags/ │ │ │ └── json.go │ │ └── types/ │ │ ├── doc.go │ │ └── types.go │ ├── klog/ │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── klog.go │ │ ├── klog_file.go │ │ └── 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 │ │ │ └── verbosity/ │ │ │ └── verbosity.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 │ │ └── textlogger/ │ │ ├── options.go │ │ ├── textlogger.go │ │ └── textlogger_slog.go │ ├── kms/ │ │ ├── LICENSE │ │ ├── apis/ │ │ │ ├── v1beta1/ │ │ │ │ ├── api.pb.go │ │ │ │ ├── api.proto │ │ │ │ ├── api_grpc.pb.go │ │ │ │ └── v1beta1.go │ │ │ └── v2/ │ │ │ ├── api.pb.go │ │ │ ├── api.proto │ │ │ ├── api_grpc.pb.go │ │ │ └── v2.go │ │ └── pkg/ │ │ ├── service/ │ │ │ ├── grpc_service.go │ │ │ └── interface.go │ │ └── util/ │ │ └── util.go │ ├── kube-aggregator/ │ │ ├── LICENSE │ │ └── pkg/ │ │ ├── apis/ │ │ │ └── apiregistration/ │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1/ │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.defaults.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1/ │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.defaults.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── zz_generated.deepcopy.go │ │ └── client/ │ │ └── clientset_generated/ │ │ └── clientset/ │ │ ├── scheme/ │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed/ │ │ └── apiregistration/ │ │ └── v1/ │ │ ├── apiregistration_client.go │ │ ├── apiservice.go │ │ ├── doc.go │ │ └── generated_expansion.go │ ├── kube-openapi/ │ │ ├── LICENSE │ │ ├── cmd/ │ │ │ └── openapi-gen/ │ │ │ ├── args/ │ │ │ │ └── args.go │ │ │ └── openapi-gen.go │ │ └── pkg/ │ │ ├── builder/ │ │ │ ├── doc.go │ │ │ ├── openapi.go │ │ │ ├── parameters.go │ │ │ └── util.go │ │ ├── builder3/ │ │ │ ├── openapi.go │ │ │ ├── util/ │ │ │ │ └── util.go │ │ │ └── util.go │ │ ├── cached/ │ │ │ └── cache.go │ │ ├── common/ │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── interfaces.go │ │ │ └── restfuladapter/ │ │ │ ├── adapter.go │ │ │ ├── param_adapter.go │ │ │ ├── response_error_adapter.go │ │ │ ├── route_adapter.go │ │ │ └── webservice_adapter.go │ │ ├── generators/ │ │ │ ├── README.md │ │ │ ├── api_linter.go │ │ │ ├── config.go │ │ │ ├── enum.go │ │ │ ├── extension.go │ │ │ ├── markers.go │ │ │ ├── model_names.go │ │ │ ├── openapi.go │ │ │ ├── rules/ │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── idl_tag.go │ │ │ │ ├── list_type_streaming_tags.go │ │ │ │ ├── names_match.go │ │ │ │ └── omitempty_match_case.go │ │ │ └── union.go │ │ ├── handler/ │ │ │ ├── default_pruning.go │ │ │ └── handler.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 │ │ │ └── govalidator/ │ │ │ ├── LICENSE │ │ │ ├── patterns.go │ │ │ └── validator.go │ │ ├── schemaconv/ │ │ │ ├── openapi.go │ │ │ ├── proto_models.go │ │ │ └── smd.go │ │ ├── schemamutation/ │ │ │ └── walker.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/ │ │ │ │ ├── errors.go │ │ │ │ ├── types.go │ │ │ │ └── validation.go │ │ │ ├── sets/ │ │ │ │ ├── empty.go │ │ │ │ └── string.go │ │ │ ├── trie.go │ │ │ └── util.go │ │ └── validation/ │ │ ├── errors/ │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── api.go │ │ │ ├── doc.go │ │ │ ├── headers.go │ │ │ └── schema.go │ │ ├── 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 │ │ └── strfmt/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── bson/ │ │ │ └── objectid.go │ │ ├── bson.go │ │ ├── date.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── format.go │ │ ├── kubernetes-extensions.go │ │ └── time.go │ ├── kubectl/ │ │ ├── LICENSE │ │ └── pkg/ │ │ ├── apps/ │ │ │ └── kind_visitor.go │ │ ├── cmd/ │ │ │ ├── apiresources/ │ │ │ │ ├── apiresources.go │ │ │ │ ├── apiversions.go │ │ │ │ └── print_flags.go │ │ │ ├── apply/ │ │ │ │ ├── apply.go │ │ │ │ ├── apply_edit_last_applied.go │ │ │ │ ├── apply_set_last_applied.go │ │ │ │ ├── apply_view_last_applied.go │ │ │ │ ├── applyset.go │ │ │ │ ├── applyset_pruner.go │ │ │ │ ├── patcher.go │ │ │ │ └── prune.go │ │ │ ├── delete/ │ │ │ │ ├── delete.go │ │ │ │ └── delete_flags.go │ │ │ ├── get/ │ │ │ │ ├── customcolumn.go │ │ │ │ ├── customcolumn_flags.go │ │ │ │ ├── get.go │ │ │ │ ├── get_flags.go │ │ │ │ ├── humanreadable_flags.go │ │ │ │ ├── skip_printer.go │ │ │ │ ├── sorter.go │ │ │ │ └── table_printer.go │ │ │ ├── patch/ │ │ │ │ └── patch.go │ │ │ ├── util/ │ │ │ │ ├── caching_verifier.go │ │ │ │ ├── editor/ │ │ │ │ │ ├── crlf/ │ │ │ │ │ │ └── crlf.go │ │ │ │ │ ├── editoptions.go │ │ │ │ │ ├── editor.go │ │ │ │ │ ├── launcher_others.go │ │ │ │ │ └── launcher_windows.go │ │ │ │ ├── env_file.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_client_access.go │ │ │ │ ├── helpers.go │ │ │ │ ├── kubectl_match_version.go │ │ │ │ ├── override_options.go │ │ │ │ ├── podcmd/ │ │ │ │ │ └── podcmd.go │ │ │ │ └── printing.go │ │ │ └── wait/ │ │ │ ├── condition.go │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── json.go │ │ │ └── wait.go │ │ ├── describe/ │ │ │ ├── describe.go │ │ │ └── interface.go │ │ ├── drain/ │ │ │ ├── cordon.go │ │ │ ├── default.go │ │ │ ├── drain.go │ │ │ └── filters.go │ │ ├── polymorphichelpers/ │ │ │ ├── attachablepodforobject.go │ │ │ ├── canbeexposed.go │ │ │ ├── helpers.go │ │ │ ├── history.go │ │ │ ├── historyviewer.go │ │ │ ├── interface.go │ │ │ ├── logsforobject.go │ │ │ ├── mapbasedselectorforobject.go │ │ │ ├── multiprotocolsforobject.go │ │ │ ├── objectpauser.go │ │ │ ├── objectrestarter.go │ │ │ ├── objectresumer.go │ │ │ ├── portsforobject.go │ │ │ ├── protocolsforobject.go │ │ │ ├── rollback.go │ │ │ ├── rollbacker.go │ │ │ ├── rollout_status.go │ │ │ ├── statusviewer.go │ │ │ └── updatepodspec.go │ │ ├── rawhttp/ │ │ │ └── raw.go │ │ ├── scheme/ │ │ │ ├── install.go │ │ │ └── scheme.go │ │ ├── util/ │ │ │ ├── apply.go │ │ │ ├── certificate/ │ │ │ │ └── certificate.go │ │ │ ├── completion/ │ │ │ │ └── completion.go │ │ │ ├── deployment/ │ │ │ │ └── deployment.go │ │ │ ├── event/ │ │ │ │ └── sorted_event_list.go │ │ │ ├── fieldpath/ │ │ │ │ └── fieldpath.go │ │ │ ├── i18n/ │ │ │ │ ├── i18n.go │ │ │ │ └── translations/ │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── extract.py │ │ │ │ ├── kubectl/ │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── de_DE/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ │ ├── default/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ │ ├── en_US/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ │ ├── fr_FR/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ │ ├── it_IT/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ │ ├── ja_JP/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ │ ├── ko_KR/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ │ ├── pt_BR/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ │ ├── template.pot │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ └── k8s.po │ │ │ │ └── test/ │ │ │ │ ├── default/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ └── k8s.po │ │ │ │ └── en_US/ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ ├── k8s.mo │ │ │ │ └── k8s.po │ │ │ ├── interrupt/ │ │ │ │ └── interrupt.go │ │ │ ├── openapi/ │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── openapi.go │ │ │ │ └── openapi_getter.go │ │ │ ├── pod_port.go │ │ │ ├── podutils/ │ │ │ │ └── podutils.go │ │ │ ├── prune/ │ │ │ │ └── prune.go │ │ │ ├── qos/ │ │ │ │ └── qos.go │ │ │ ├── rbac/ │ │ │ │ └── rbac.go │ │ │ ├── resource/ │ │ │ │ └── resource.go │ │ │ ├── service_port.go │ │ │ ├── slice/ │ │ │ │ └── slice.go │ │ │ ├── storage/ │ │ │ │ └── storage.go │ │ │ ├── templates/ │ │ │ │ ├── command_groups.go │ │ │ │ ├── help_flags_printer.go │ │ │ │ ├── markdown.go │ │ │ │ ├── normalizers.go │ │ │ │ ├── templater.go │ │ │ │ └── templates.go │ │ │ ├── term/ │ │ │ │ ├── resize.go │ │ │ │ ├── resizeevents.go │ │ │ │ ├── resizeevents_windows.go │ │ │ │ ├── term.go │ │ │ │ └── term_writer.go │ │ │ ├── umask.go │ │ │ ├── umask_windows.go │ │ │ └── util.go │ │ └── validation/ │ │ ├── schema.go │ │ └── validation.go │ └── utils/ │ ├── LICENSE │ ├── buffer/ │ │ └── ring_growing.go │ ├── clock/ │ │ ├── README.md │ │ ├── clock.go │ │ └── testing/ │ │ ├── fake_clock.go │ │ └── simple_interval_clock.go │ ├── exec/ │ │ ├── README.md │ │ ├── doc.go │ │ ├── exec.go │ │ ├── fixup_go118.go │ │ └── fixup_go119.go │ ├── internal/ │ │ └── third_party/ │ │ └── forked/ │ │ └── golang/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── golang-lru/ │ │ │ └── lru.go │ │ └── net/ │ │ ├── ip.go │ │ └── parse.go │ ├── lru/ │ │ └── lru.go │ ├── net/ │ │ ├── ipfamily.go │ │ ├── ipnet.go │ │ ├── multi_listen.go │ │ ├── net.go │ │ ├── parse.go │ │ └── port.go │ ├── path/ │ │ └── file.go │ ├── pointer/ │ │ ├── OWNERS │ │ ├── README.md │ │ └── pointer.go │ ├── ptr/ │ │ ├── OWNERS │ │ ├── README.md │ │ └── ptr.go │ ├── strings/ │ │ └── slices/ │ │ └── slices.go │ └── trace/ │ ├── README.md │ └── trace.go ├── modules.txt ├── mvdan.cc/ │ ├── gofumpt/ │ │ ├── LICENSE │ │ ├── LICENSE.google │ │ ├── format/ │ │ │ ├── format.go │ │ │ ├── rewrite.go │ │ │ └── simplify.go │ │ └── internal/ │ │ ├── govendor/ │ │ │ └── go/ │ │ │ ├── doc/ │ │ │ │ └── comment/ │ │ │ │ ├── doc.go │ │ │ │ ├── html.go │ │ │ │ ├── markdown.go │ │ │ │ ├── parse.go │ │ │ │ ├── print.go │ │ │ │ ├── std.go │ │ │ │ └── text.go │ │ │ ├── format/ │ │ │ │ ├── format.go │ │ │ │ └── internal.go │ │ │ └── printer/ │ │ │ ├── comment.go │ │ │ ├── gobuild.go │ │ │ ├── nodes.go │ │ │ └── printer.go │ │ └── version/ │ │ └── version.go │ └── unparam/ │ ├── LICENSE │ └── check/ │ └── check.go └── sigs.k8s.io/ ├── apiserver-network-proxy/ │ └── konnectivity-client/ │ ├── LICENSE │ ├── pkg/ │ │ ├── client/ │ │ │ ├── client.go │ │ │ ├── conn.go │ │ │ └── metrics/ │ │ │ └── metrics.go │ │ └── common/ │ │ └── metrics/ │ │ └── metrics.go │ └── proto/ │ └── client/ │ ├── client.pb.go │ ├── client.proto │ └── client_grpc.pb.go ├── cluster-api/ │ ├── LICENSE │ ├── api/ │ │ ├── core/ │ │ │ ├── v1beta1/ │ │ │ │ ├── .import-restrictions │ │ │ │ ├── cluster_phase_types.go │ │ │ │ ├── cluster_types.go │ │ │ │ ├── clusterclass_types.go │ │ │ │ ├── common_types.go │ │ │ │ ├── condition_consts.go │ │ │ │ ├── condition_types.go │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── groupversion_info.go │ │ │ │ ├── machine_phase_types.go │ │ │ │ ├── machine_types.go │ │ │ │ ├── machinedeployment_types.go │ │ │ │ ├── machinedrainrules_types.go │ │ │ │ ├── machinehealthcheck_types.go │ │ │ │ ├── machinepool_types.go │ │ │ │ ├── machineset_types.go │ │ │ │ ├── v1beta2_condition_consts.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.openapi.go │ │ │ └── v1beta2/ │ │ │ ├── cluster_phase_types.go │ │ │ ├── cluster_types.go │ │ │ ├── clusterclass_types.go │ │ │ ├── common_types.go │ │ │ ├── condition_consts.go │ │ │ ├── condition_types.go │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── groupversion_info.go │ │ │ ├── machine_phase_types.go │ │ │ ├── machine_types.go │ │ │ ├── machinedeployment_types.go │ │ │ ├── machinedrainrules_types.go │ │ │ ├── machinehealthcheck_types.go │ │ │ ├── machinepool_types.go │ │ │ ├── machineset_types.go │ │ │ ├── v1beta1_condition_consts.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.openapi.go │ │ └── ipam/ │ │ ├── v1beta1/ │ │ │ ├── .import-restrictions │ │ │ ├── condition_consts.go │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── groupversion_info.go │ │ │ ├── ipaddress_types.go │ │ │ ├── ipaddressclaim_types.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta2/ │ │ ├── conversion.go │ │ ├── doc.go │ │ ├── groupversion_info.go │ │ ├── ipaddress_types.go │ │ ├── ipaddressclaim_types.go │ │ ├── v1beta1_condition_consts.go │ │ └── zz_generated.deepcopy.go │ ├── cmd/ │ │ └── clusterctl/ │ │ └── api/ │ │ └── v1alpha3/ │ │ ├── annotations.go │ │ ├── groupversion_info.go │ │ ├── labels.go │ │ ├── metadata_type.go │ │ ├── provider_type.go │ │ └── zz_generated.deepcopy.go │ ├── errors/ │ │ ├── clusters.go │ │ ├── consts.go │ │ ├── doc.go │ │ ├── kubeadmcontrolplane.go │ │ ├── machines.go │ │ └── pointer.go │ ├── feature/ │ │ ├── feature.go │ │ └── gates.go │ └── util/ │ ├── annotations/ │ │ └── helpers.go │ ├── conversion/ │ │ └── conversion.go │ └── topology/ │ └── topology.go ├── cluster-api-provider-aws/ │ └── v2/ │ ├── LICENSE │ ├── api/ │ │ └── v1beta2/ │ │ ├── awscluster_types.go │ │ ├── awscluster_webhook.go │ │ ├── awsclustercontrolleridentity_webhook.go │ │ ├── awsclusterroleidentity_webhook.go │ │ ├── awsclusterstaticidentity_webhook.go │ │ ├── awsclustertemplate_types.go │ │ ├── awsclustertemplate_webhook.go │ │ ├── awsidentity_types.go │ │ ├── awsmachine_types.go │ │ ├── awsmachine_webhook.go │ │ ├── awsmachinetemplate_types.go │ │ ├── awsmachinetemplate_webhook.go │ │ ├── awsmanagedcluster_types.go │ │ ├── awsmanagedclustertemplate_types.go │ │ ├── bastion.go │ │ ├── conditions_consts.go │ │ ├── conversion.go │ │ ├── defaults.go │ │ ├── doc.go │ │ ├── groupversion_info.go │ │ ├── network_types.go │ │ ├── s3bucket.go │ │ ├── tags.go │ │ ├── types.go │ │ ├── webhooks.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.defaults.go │ └── feature/ │ ├── feature.go │ └── gates.go ├── cluster-api-provider-azure/ │ ├── LICENSE │ ├── api/ │ │ └── v1beta1/ │ │ ├── azureasomanagedcluster_types.go │ │ ├── azureasomanagedcluster_webhook.go │ │ ├── azureasomanagedclustertemplate_types.go │ │ ├── azureasomanagedcontrolplane_types.go │ │ ├── azureasomanagedcontrolplane_webhook.go │ │ ├── azureasomanagedcontrolplanetemplate_types.go │ │ ├── azureasomanagedmachinepool_types.go │ │ ├── azureasomanagedmachinepool_webhook.go │ │ ├── azureasomanagedmachinepooltemplate_types.go │ │ ├── azurecluster_conversion.go │ │ ├── azurecluster_default.go │ │ ├── azurecluster_types.go │ │ ├── azurecluster_validation.go │ │ ├── azurecluster_webhook.go │ │ ├── azureclusteridentity_conversion.go │ │ ├── azureclusteridentity_types.go │ │ ├── azureclusteridentity_validation.go │ │ ├── azureclusteridentity_webhook.go │ │ ├── azureclustertemplate_conversion.go │ │ ├── azureclustertemplate_default.go │ │ ├── azureclustertemplate_types.go │ │ ├── azureclustertemplate_validation.go │ │ ├── azureclustertemplate_webhook.go │ │ ├── azureimage_validation.go │ │ ├── azuremachine_conversion.go │ │ ├── azuremachine_default.go │ │ ├── azuremachine_types.go │ │ ├── azuremachine_validation.go │ │ ├── azuremachine_webhook.go │ │ ├── azuremachinetemplate_conversion.go │ │ ├── azuremachinetemplate_types.go │ │ ├── azuremachinetemplate_webhook.go │ │ ├── azuremanagedcluster_conversion.go │ │ ├── azuremanagedcluster_types.go │ │ ├── azuremanagedcluster_webhook.go │ │ ├── azuremanagedclustertemplate_types.go │ │ ├── azuremanagedclustertemplate_webhook.go │ │ ├── azuremanagedcontrolplane_conversion.go │ │ ├── azuremanagedcontrolplane_default.go │ │ ├── azuremanagedcontrolplane_types.go │ │ ├── azuremanagedcontrolplane_webhook.go │ │ ├── azuremanagedcontrolplanetemplate_default.go │ │ ├── azuremanagedcontrolplanetemplate_types.go │ │ ├── azuremanagedcontrolplanetemplate_webhook.go │ │ ├── azuremanagedmachinepool_conversion.go │ │ ├── azuremanagedmachinepool_types.go │ │ ├── azuremanagedmachinepool_webhook.go │ │ ├── azuremanagedmachinepooltemplate_types.go │ │ ├── azuremanagedmachinepooltemplate_webhook.go │ │ ├── consts.go │ │ ├── doc.go │ │ ├── groupversion_info.go │ │ ├── tags.go │ │ ├── types.go │ │ ├── types_class.go │ │ ├── types_template.go │ │ └── zz_generated.deepcopy.go │ ├── feature/ │ │ ├── feature.go │ │ └── gates.go │ └── util/ │ ├── azure/ │ │ └── azure.go │ ├── ssh/ │ │ └── ssh.go │ ├── versions/ │ │ └── version.go │ └── webhook/ │ └── validator.go ├── cluster-api-provider-gcp/ │ ├── LICENSE │ └── api/ │ └── v1beta1/ │ ├── doc.go │ ├── endpoints.go │ ├── gcpcluster_conversion.go │ ├── gcpcluster_types.go │ ├── gcpcluster_webhook.go │ ├── gcpclustertemplate_conversion.go │ ├── gcpclustertemplate_types.go │ ├── gcpclustertemplate_webhook.go │ ├── gcpmachine_conversion.go │ ├── gcpmachine_types.go │ ├── gcpmachine_webhook.go │ ├── gcpmachinetemplate_conversion.go │ ├── gcpmachinetemplate_types.go │ ├── gcpmachinetemplate_webhook.go │ ├── groupversion_info.go │ ├── labels.go │ ├── tags.go │ ├── types.go │ └── zz_generated.deepcopy.go ├── cluster-api-provider-ibmcloud/ │ ├── LICENSE │ └── api/ │ └── v1beta2/ │ ├── conditions_consts.go │ ├── conversion.go │ ├── doc.go │ ├── groupversion_info.go │ ├── ibmpowervscluster_types.go │ ├── ibmpowervsclustertemplate_types.go │ ├── ibmpowervsimage_types.go │ ├── ibmpowervsmachine_types.go │ ├── ibmpowervsmachinetemplate_types.go │ ├── ibmvpccluster_types.go │ ├── ibmvpcclustertemplate_types.go │ ├── ibmvpcmachine_types.go │ ├── ibmvpcmachinetemplate_types.go │ ├── types.go │ └── zz_generated.deepcopy.go ├── cluster-api-provider-openstack/ │ ├── LICENSE │ ├── api/ │ │ └── v1beta1/ │ │ ├── conditions_consts.go │ │ ├── conversion.go │ │ ├── doc.go │ │ ├── groupversion_info.go │ │ ├── identity_types.go │ │ ├── openstackcluster_types.go │ │ ├── openstackclustertemplate_types.go │ │ ├── openstackmachine_types.go │ │ ├── openstackmachinetemplate_types.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ └── pkg/ │ └── utils/ │ ├── errors/ │ │ ├── errors.go │ │ └── terminal.go │ └── optional/ │ ├── conversion.go │ └── types.go ├── cluster-api-provider-vsphere/ │ ├── LICENSE │ ├── apis/ │ │ └── v1beta1/ │ │ ├── .import-restrictions │ │ ├── condition_consts.go │ │ ├── doc.go │ │ ├── groupversion_info.go │ │ ├── types.go │ │ ├── vspherecluster_conversion.go │ │ ├── vspherecluster_types.go │ │ ├── vsphereclusteridentity_conversion.go │ │ ├── vsphereclusteridentity_types.go │ │ ├── vsphereclustertemplate_conversion.go │ │ ├── vsphereclustertemplate_types.go │ │ ├── vspheredeploymentzone_conversion.go │ │ ├── vspheredeploymentzone_types.go │ │ ├── vspherefailuredomain_conversion.go │ │ ├── vspherefailuredomain_types.go │ │ ├── vspheremachine_conversion.go │ │ ├── vspheremachine_types.go │ │ ├── vspheremachinetemplate_conversion.go │ │ ├── vspheremachinetemplate_types.go │ │ ├── vspherevm_conversion.go │ │ ├── vspherevm_types.go │ │ └── zz_generated.deepcopy.go │ └── pkg/ │ └── session/ │ └── session.go ├── controller-runtime/ │ ├── .gitignore │ ├── .golangci.yml │ ├── .gomodcheck.yaml │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE │ ├── Makefile │ ├── OWNERS │ ├── OWNERS_ALIASES │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── TMP-LOGGING.md │ ├── VERSIONING.md │ ├── alias.go │ ├── code-of-conduct.md │ ├── doc.go │ └── pkg/ │ ├── builder/ │ │ ├── controller.go │ │ ├── doc.go │ │ ├── options.go │ │ └── webhook.go │ ├── cache/ │ │ ├── cache.go │ │ ├── delegating_by_gvk_cache.go │ │ ├── doc.go │ │ ├── informer_cache.go │ │ ├── internal/ │ │ │ ├── cache_reader.go │ │ │ ├── informers.go │ │ │ └── selector.go │ │ └── multi_namespace_cache.go │ ├── certwatcher/ │ │ ├── certwatcher.go │ │ ├── doc.go │ │ └── metrics/ │ │ └── metrics.go │ ├── client/ │ │ ├── apiutil/ │ │ │ ├── apimachinery.go │ │ │ ├── errors.go │ │ │ └── restmapper.go │ │ ├── client.go │ │ ├── client_rest_resources.go │ │ ├── codec.go │ │ ├── config/ │ │ │ ├── config.go │ │ │ └── doc.go │ │ ├── doc.go │ │ ├── dryrun.go │ │ ├── fake/ │ │ │ ├── client.go │ │ │ └── doc.go │ │ ├── fieldowner.go │ │ ├── fieldvalidation.go │ │ ├── interceptor/ │ │ │ └── intercept.go │ │ ├── interfaces.go │ │ ├── metadata_client.go │ │ ├── namespaced_client.go │ │ ├── object.go │ │ ├── options.go │ │ ├── patch.go │ │ ├── typed_client.go │ │ ├── unstructured_client.go │ │ └── watch.go │ ├── cluster/ │ │ ├── cluster.go │ │ └── internal.go │ ├── config/ │ │ └── controller.go │ ├── controller/ │ │ ├── controller.go │ │ ├── controllerutil/ │ │ │ ├── controllerutil.go │ │ │ └── doc.go │ │ ├── doc.go │ │ └── name.go │ ├── conversion/ │ │ └── conversion.go │ ├── event/ │ │ ├── doc.go │ │ └── event.go │ ├── handler/ │ │ ├── doc.go │ │ ├── enqueue.go │ │ ├── enqueue_mapped.go │ │ ├── enqueue_owner.go │ │ └── eventhandler.go │ ├── healthz/ │ │ ├── doc.go │ │ └── healthz.go │ ├── internal/ │ │ ├── controller/ │ │ │ ├── controller.go │ │ │ └── metrics/ │ │ │ └── metrics.go │ │ ├── field/ │ │ │ └── selector/ │ │ │ └── utils.go │ │ ├── httpserver/ │ │ │ └── server.go │ │ ├── log/ │ │ │ └── log.go │ │ ├── objectutil/ │ │ │ └── objectutil.go │ │ ├── recorder/ │ │ │ └── recorder.go │ │ ├── source/ │ │ │ ├── event_handler.go │ │ │ └── kind.go │ │ └── syncs/ │ │ └── syncs.go │ ├── leaderelection/ │ │ ├── doc.go │ │ └── leader_election.go │ ├── log/ │ │ ├── deleg.go │ │ ├── log.go │ │ ├── null.go │ │ └── warning_handler.go │ ├── manager/ │ │ ├── doc.go │ │ ├── internal.go │ │ ├── manager.go │ │ ├── runnable_group.go │ │ ├── server.go │ │ └── signals/ │ │ ├── doc.go │ │ ├── signal.go │ │ ├── signal_posix.go │ │ └── signal_windows.go │ ├── metrics/ │ │ ├── client_go_adapter.go │ │ ├── doc.go │ │ ├── leaderelection.go │ │ ├── registry.go │ │ ├── server/ │ │ │ ├── doc.go │ │ │ └── server.go │ │ └── workqueue.go │ ├── predicate/ │ │ ├── doc.go │ │ └── predicate.go │ ├── reconcile/ │ │ ├── doc.go │ │ └── reconcile.go │ ├── recorder/ │ │ └── recorder.go │ ├── scheme/ │ │ └── scheme.go │ ├── source/ │ │ ├── doc.go │ │ └── source.go │ └── webhook/ │ ├── admission/ │ │ ├── decode.go │ │ ├── defaulter.go │ │ ├── defaulter_custom.go │ │ ├── doc.go │ │ ├── http.go │ │ ├── metrics/ │ │ │ └── metrics.go │ │ ├── multi.go │ │ ├── response.go │ │ ├── validator.go │ │ ├── validator_custom.go │ │ └── webhook.go │ ├── alias.go │ ├── conversion/ │ │ ├── conversion.go │ │ └── decoder.go │ ├── doc.go │ ├── internal/ │ │ └── metrics/ │ │ └── metrics.go │ └── server.go ├── controller-tools/ │ ├── LICENSE │ ├── cmd/ │ │ └── controller-gen/ │ │ └── main.go │ └── pkg/ │ ├── applyconfiguration/ │ │ ├── doc.go │ │ ├── gen.go │ │ └── zz_generated.markerhelp.go │ ├── crd/ │ │ ├── conv.go │ │ ├── desc_visitor.go │ │ ├── doc.go │ │ ├── flatten.go │ │ ├── gen.go │ │ ├── known_types.go │ │ ├── markers/ │ │ │ ├── crd.go │ │ │ ├── doc.go │ │ │ ├── package.go │ │ │ ├── priority.go │ │ │ ├── register.go │ │ │ ├── topology.go │ │ │ ├── validation.go │ │ │ └── zz_generated.markerhelp.go │ │ ├── parser.go │ │ ├── schema.go │ │ ├── schema_visitor.go │ │ ├── spec.go │ │ └── zz_generated.markerhelp.go │ ├── deepcopy/ │ │ ├── doc.go │ │ ├── gen.go │ │ ├── traverse.go │ │ └── zz_generated.markerhelp.go │ ├── genall/ │ │ ├── doc.go │ │ ├── genall.go │ │ ├── help/ │ │ │ ├── doc.go │ │ │ ├── pretty/ │ │ │ │ ├── doc.go │ │ │ │ ├── help.go │ │ │ │ ├── print.go │ │ │ │ └── table.go │ │ │ ├── sort.go │ │ │ └── types.go │ │ ├── input.go │ │ ├── options.go │ │ ├── output.go │ │ └── zz_generated.markerhelp.go │ ├── internal/ │ │ └── crd/ │ │ └── crd.go │ ├── loader/ │ │ ├── doc.go │ │ ├── errors.go │ │ ├── loader.go │ │ ├── paths.go │ │ ├── refs.go │ │ └── visit.go │ ├── markers/ │ │ ├── collect.go │ │ ├── doc.go │ │ ├── help.go │ │ ├── parse.go │ │ ├── reg.go │ │ ├── regutil.go │ │ └── zip.go │ ├── rbac/ │ │ ├── parser.go │ │ └── zz_generated.markerhelp.go │ ├── schemapatcher/ │ │ ├── gen.go │ │ ├── internal/ │ │ │ └── yaml/ │ │ │ ├── convert.go │ │ │ ├── nested.go │ │ │ └── set.go │ │ └── zz_generated.markerhelp.go │ ├── version/ │ │ └── version.go │ └── webhook/ │ ├── parser.go │ └── zz_generated.markerhelp.go ├── 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 ├── kube-storage-version-migrator/ │ ├── LICENSE │ └── pkg/ │ ├── apis/ │ │ └── migration/ │ │ └── v1alpha1/ │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ └── clients/ │ └── clientset/ │ ├── clientset.go │ ├── doc.go │ ├── scheme/ │ │ ├── doc.go │ │ └── register.go │ └── typed/ │ └── migration/ │ └── v1alpha1/ │ ├── doc.go │ ├── generated_expansion.go │ ├── migration_client.go │ ├── storagestate.go │ └── storageversionmigration.go ├── kustomize/ │ ├── api/ │ │ ├── LICENSE │ │ ├── filters/ │ │ │ ├── annotations/ │ │ │ │ ├── annotations.go │ │ │ │ └── doc.go │ │ │ ├── fieldspec/ │ │ │ │ ├── doc.go │ │ │ │ └── fieldspec.go │ │ │ ├── filtersutil/ │ │ │ │ └── setters.go │ │ │ ├── fsslice/ │ │ │ │ ├── doc.go │ │ │ │ └── fsslice.go │ │ │ ├── iampolicygenerator/ │ │ │ │ ├── doc.go │ │ │ │ └── iampolicygenerator.go │ │ │ ├── imagetag/ │ │ │ │ ├── doc.go │ │ │ │ ├── imagetag.go │ │ │ │ ├── legacy.go │ │ │ │ └── updater.go │ │ │ ├── labels/ │ │ │ │ ├── doc.go │ │ │ │ └── labels.go │ │ │ ├── nameref/ │ │ │ │ ├── doc.go │ │ │ │ ├── nameref.go │ │ │ │ └── seqfilter.go │ │ │ ├── namespace/ │ │ │ │ ├── doc.go │ │ │ │ └── namespace.go │ │ │ ├── patchjson6902/ │ │ │ │ ├── doc.go │ │ │ │ └── patchjson6902.go │ │ │ ├── patchstrategicmerge/ │ │ │ │ ├── doc.go │ │ │ │ └── patchstrategicmerge.go │ │ │ ├── prefix/ │ │ │ │ ├── doc.go │ │ │ │ └── prefix.go │ │ │ ├── refvar/ │ │ │ │ ├── doc.go │ │ │ │ ├── expand.go │ │ │ │ └── refvar.go │ │ │ ├── replacement/ │ │ │ │ ├── doc.go │ │ │ │ └── replacement.go │ │ │ ├── replicacount/ │ │ │ │ ├── doc.go │ │ │ │ └── replicacount.go │ │ │ ├── suffix/ │ │ │ │ ├── doc.go │ │ │ │ └── suffix.go │ │ │ └── valueadd/ │ │ │ └── valueadd.go │ │ ├── hasher/ │ │ │ └── hasher.go │ │ ├── ifc/ │ │ │ └── ifc.go │ │ ├── internal/ │ │ │ ├── accumulator/ │ │ │ │ ├── loadconfigfromcrds.go │ │ │ │ ├── namereferencetransformer.go │ │ │ │ ├── refvartransformer.go │ │ │ │ └── resaccumulator.go │ │ │ ├── builtins/ │ │ │ │ ├── AnnotationsTransformer.go │ │ │ │ ├── ConfigMapGenerator.go │ │ │ │ ├── HashTransformer.go │ │ │ │ ├── HelmChartInflationGenerator.go │ │ │ │ ├── IAMPolicyGenerator.go │ │ │ │ ├── ImageTagTransformer.go │ │ │ │ ├── LabelTransformer.go │ │ │ │ ├── NamespaceTransformer.go │ │ │ │ ├── PatchJson6902Transformer.go │ │ │ │ ├── PatchStrategicMergeTransformer.go │ │ │ │ ├── PatchTransformer.go │ │ │ │ ├── PrefixTransformer.go │ │ │ │ ├── ReplacementTransformer.go │ │ │ │ ├── ReplicaCountTransformer.go │ │ │ │ ├── SecretGenerator.go │ │ │ │ ├── SortOrderTransformer.go │ │ │ │ ├── SuffixTransformer.go │ │ │ │ ├── ValueAddTransformer.go │ │ │ │ └── doc.go │ │ │ ├── generators/ │ │ │ │ ├── configmap.go │ │ │ │ ├── secret.go │ │ │ │ └── utils.go │ │ │ ├── git/ │ │ │ │ ├── cloner.go │ │ │ │ ├── gitrunner.go │ │ │ │ └── repospec.go │ │ │ ├── image/ │ │ │ │ └── image.go │ │ │ ├── konfig/ │ │ │ │ └── builtinpluginconsts/ │ │ │ │ ├── commonannotations.go │ │ │ │ ├── commonlabels.go │ │ │ │ ├── defaultconfig.go │ │ │ │ ├── doc.go │ │ │ │ ├── images.go │ │ │ │ ├── metadatalabels.go │ │ │ │ ├── nameprefix.go │ │ │ │ ├── namereference.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namesuffix.go │ │ │ │ ├── replicas.go │ │ │ │ ├── templatelabels.go │ │ │ │ └── varreference.go │ │ │ ├── kusterr/ │ │ │ │ └── yamlformaterror.go │ │ │ ├── loader/ │ │ │ │ ├── errors.go │ │ │ │ ├── fileloader.go │ │ │ │ ├── loader.go │ │ │ │ └── loadrestrictions.go │ │ │ ├── plugins/ │ │ │ │ ├── builtinconfig/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── loaddefaultconfig.go │ │ │ │ │ ├── namebackreferences.go │ │ │ │ │ └── transformerconfig.go │ │ │ │ ├── builtinhelpers/ │ │ │ │ │ ├── builtinplugintype_string.go │ │ │ │ │ └── builtins.go │ │ │ │ ├── execplugin/ │ │ │ │ │ ├── execplugin.go │ │ │ │ │ └── shlex.go │ │ │ │ ├── fnplugin/ │ │ │ │ │ └── fnplugin.go │ │ │ │ ├── loader/ │ │ │ │ │ ├── load_go_plugin.go │ │ │ │ │ ├── load_go_plugin_disabled.go │ │ │ │ │ └── loader.go │ │ │ │ └── utils/ │ │ │ │ └── utils.go │ │ │ ├── target/ │ │ │ │ ├── errmissingkustomization.go │ │ │ │ ├── kusttarget.go │ │ │ │ ├── kusttarget_configplugin.go │ │ │ │ └── multitransformer.go │ │ │ ├── utils/ │ │ │ │ ├── annotations.go │ │ │ │ ├── errtimeout.go │ │ │ │ ├── makeResIds.go │ │ │ │ ├── stringslice.go │ │ │ │ └── timedcall.go │ │ │ └── validate/ │ │ │ └── fieldvalidator.go │ │ ├── konfig/ │ │ │ ├── doc.go │ │ │ ├── general.go │ │ │ └── plugins.go │ │ ├── krusty/ │ │ │ ├── doc.go │ │ │ ├── kustomizer.go │ │ │ └── options.go │ │ ├── kv/ │ │ │ └── kv.go │ │ ├── provenance/ │ │ │ └── provenance.go │ │ ├── provider/ │ │ │ └── depprovider.go │ │ ├── resmap/ │ │ │ ├── factory.go │ │ │ ├── resmap.go │ │ │ └── reswrangler.go │ │ ├── resource/ │ │ │ ├── doc.go │ │ │ ├── factory.go │ │ │ ├── idset.go │ │ │ ├── origin.go │ │ │ └── resource.go │ │ └── types/ │ │ ├── builtinpluginloadingoptions_string.go │ │ ├── configmapargs.go │ │ ├── doc.go │ │ ├── erronlybuiltinpluginsallowed.go │ │ ├── errunabletofind.go │ │ ├── fieldspec.go │ │ ├── generationbehavior.go │ │ ├── generatorargs.go │ │ ├── generatoroptions.go │ │ ├── helmchartargs.go │ │ ├── iampolicygenerator.go │ │ ├── image.go │ │ ├── kustomization.go │ │ ├── kvpairsources.go │ │ ├── labels.go │ │ ├── loadrestrictions.go │ │ ├── loadrestrictions_string.go │ │ ├── objectmeta.go │ │ ├── pair.go │ │ ├── patch.go │ │ ├── patchstrategicmerge.go │ │ ├── pluginconfig.go │ │ ├── pluginrestrictions.go │ │ ├── pluginrestrictions_string.go │ │ ├── replacement.go │ │ ├── replacementfield.go │ │ ├── replica.go │ │ ├── secretargs.go │ │ ├── selector.go │ │ ├── sortoptions.go │ │ ├── typemeta.go │ │ └── var.go │ └── kyaml/ │ ├── LICENSE │ ├── comments/ │ │ └── comments.go │ ├── errors/ │ │ └── errors.go │ ├── ext/ │ │ └── ext.go │ ├── fieldmeta/ │ │ └── fieldmeta.go │ ├── filesys/ │ │ ├── confirmeddir.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── fileondisk.go │ │ ├── filesystem.go │ │ ├── fsnode.go │ │ ├── fsondisk.go │ │ ├── fsondisk_unix.go │ │ ├── fsondisk_windows.go │ │ └── util.go │ ├── fn/ │ │ └── runtime/ │ │ ├── container/ │ │ │ └── container.go │ │ ├── exec/ │ │ │ ├── doc.go │ │ │ └── exec.go │ │ └── runtimeutil/ │ │ ├── doc.go │ │ ├── functiontypes.go │ │ ├── runtimeutil.go │ │ └── types.go │ ├── kio/ │ │ ├── byteio_reader.go │ │ ├── byteio_writer.go │ │ ├── doc.go │ │ ├── ignorefilesmatcher.go │ │ ├── kio.go │ │ ├── kioutil/ │ │ │ └── kioutil.go │ │ ├── pkgio_reader.go │ │ ├── pkgio_writer.go │ │ └── tree.go │ ├── openapi/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── kubernetesapi/ │ │ │ ├── openapiinfo.go │ │ │ └── v1_21_2/ │ │ │ ├── swagger.go │ │ │ └── swagger.pb │ │ ├── kustomizationapi/ │ │ │ ├── swagger.go │ │ │ └── swagger.json │ │ └── openapi.go │ ├── order/ │ │ └── syncorder.go │ ├── resid/ │ │ ├── gvk.go │ │ └── resid.go │ ├── runfn/ │ │ └── runfn.go │ ├── sets/ │ │ ├── string.go │ │ └── stringlist.go │ ├── sliceutil/ │ │ └── slice.go │ ├── utils/ │ │ └── pathsplitter.go │ └── yaml/ │ ├── alias.go │ ├── compatibility.go │ ├── const.go │ ├── datamap.go │ ├── doc.go │ ├── filters.go │ ├── fns.go │ ├── internal/ │ │ └── k8sgen/ │ │ └── pkg/ │ │ ├── labels/ │ │ │ ├── copied.deepcopy.go │ │ │ ├── labels.go │ │ │ └── selector.go │ │ ├── selection/ │ │ │ └── operator.go │ │ └── util/ │ │ ├── errors/ │ │ │ └── errors.go │ │ ├── sets/ │ │ │ ├── empty.go │ │ │ └── string.go │ │ └── validation/ │ │ ├── field/ │ │ │ ├── errors.go │ │ │ └── path.go │ │ └── validation.go │ ├── kfns.go │ ├── mapnode.go │ ├── match.go │ ├── merge2/ │ │ ├── merge2.go │ │ ├── smpdirective.go │ │ └── smpdirective_string.go │ ├── order.go │ ├── rnode.go │ ├── schema/ │ │ └── schema.go │ ├── types.go │ ├── util.go │ └── walk/ │ ├── associative_sequence.go │ ├── map.go │ ├── nonassociative_sequence.go │ ├── scalar.go │ ├── visitor.go │ └── walk.go ├── randfill/ │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── OWNERS │ ├── OWNERS_ALIASES │ ├── README.md │ ├── SECURITY_CONTACTS │ ├── bytesource/ │ │ └── bytesource.go │ ├── code-of-conduct.md │ └── randfill.go ├── structured-merge-diff/ │ └── v6/ │ ├── 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 ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go ├── goyaml.v2/ │ ├── README.md │ └── yaml_aliases.go ├── kyaml/ │ └── kyaml.go └── yaml.go