From d1b00ad71ac6cdc1196a30b978644fd12c1a7cc6 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 6 Aug 2024 10:28:21 -0400 Subject: [PATCH] mock ssm and secretsmanager separately, implement missing methods --- .travis.yml | 2 +- go.mod | 10 +- go.sum | 34 +- operator_test.go | 3086 ++++++++++++++++- .../aws/aws-sdk-go/aws/endpoints/defaults.go | 9 + .../github.com/aws/aws-sdk-go/aws/version.go | 2 +- .../github.com/homeport/dyff/pkg/dyff/core.go | 25 +- .../homeport/dyff/pkg/dyff/output_human.go | 4 - vendor/golang.org/x/sync/LICENSE | 4 +- vendor/golang.org/x/sys/LICENSE | 4 +- vendor/golang.org/x/sys/unix/mkerrors.sh | 1 + .../golang.org/x/sys/unix/syscall_darwin.go | 12 + vendor/golang.org/x/sys/unix/syscall_linux.go | 1 + .../golang.org/x/sys/unix/syscall_openbsd.go | 1 + .../x/sys/unix/zerrors_darwin_amd64.go | 5 + .../x/sys/unix/zerrors_darwin_arm64.go | 5 + vendor/golang.org/x/sys/unix/zerrors_linux.go | 38 +- .../x/sys/unix/zerrors_linux_386.go | 2 + .../x/sys/unix/zerrors_linux_amd64.go | 2 + .../x/sys/unix/zerrors_linux_arm.go | 2 + .../x/sys/unix/zerrors_linux_arm64.go | 2 + .../x/sys/unix/zerrors_linux_loong64.go | 2 + .../x/sys/unix/zerrors_linux_mips.go | 2 + .../x/sys/unix/zerrors_linux_mips64.go | 2 + .../x/sys/unix/zerrors_linux_mips64le.go | 2 + .../x/sys/unix/zerrors_linux_mipsle.go | 2 + .../x/sys/unix/zerrors_linux_ppc.go | 2 + .../x/sys/unix/zerrors_linux_ppc64.go | 2 + .../x/sys/unix/zerrors_linux_ppc64le.go | 2 + .../x/sys/unix/zerrors_linux_riscv64.go | 2 + .../x/sys/unix/zerrors_linux_s390x.go | 2 + .../x/sys/unix/zerrors_linux_sparc64.go | 2 + .../x/sys/unix/zsyscall_darwin_amd64.go | 48 + .../x/sys/unix/zsyscall_darwin_amd64.s | 10 + .../x/sys/unix/zsyscall_darwin_arm64.go | 48 + .../x/sys/unix/zsyscall_darwin_arm64.s | 10 + .../golang.org/x/sys/unix/zsyscall_linux.go | 16 + .../x/sys/unix/zsyscall_openbsd_386.go | 24 + .../x/sys/unix/zsyscall_openbsd_386.s | 5 + .../x/sys/unix/zsyscall_openbsd_amd64.go | 24 + .../x/sys/unix/zsyscall_openbsd_amd64.s | 5 + .../x/sys/unix/zsyscall_openbsd_arm.go | 24 + .../x/sys/unix/zsyscall_openbsd_arm.s | 5 + .../x/sys/unix/zsyscall_openbsd_arm64.go | 24 + .../x/sys/unix/zsyscall_openbsd_arm64.s | 5 + .../x/sys/unix/zsyscall_openbsd_mips64.go | 24 + .../x/sys/unix/zsyscall_openbsd_mips64.s | 5 + .../x/sys/unix/zsyscall_openbsd_ppc64.go | 24 + .../x/sys/unix/zsyscall_openbsd_ppc64.s | 6 + .../x/sys/unix/zsyscall_openbsd_riscv64.go | 24 + .../x/sys/unix/zsyscall_openbsd_riscv64.s | 5 + .../x/sys/unix/zsysnum_linux_386.go | 1 + .../x/sys/unix/zsysnum_linux_amd64.go | 1 + .../x/sys/unix/zsysnum_linux_arm.go | 1 + .../x/sys/unix/zsysnum_linux_arm64.go | 1 + .../x/sys/unix/zsysnum_linux_loong64.go | 1 + .../x/sys/unix/zsysnum_linux_mips.go | 1 + .../x/sys/unix/zsysnum_linux_mips64.go | 1 + .../x/sys/unix/zsysnum_linux_mips64le.go | 1 + .../x/sys/unix/zsysnum_linux_mipsle.go | 1 + .../x/sys/unix/zsysnum_linux_ppc.go | 1 + .../x/sys/unix/zsysnum_linux_ppc64.go | 1 + .../x/sys/unix/zsysnum_linux_ppc64le.go | 1 + .../x/sys/unix/zsysnum_linux_riscv64.go | 1 + .../x/sys/unix/zsysnum_linux_s390x.go | 1 + .../x/sys/unix/zsysnum_linux_sparc64.go | 1 + vendor/golang.org/x/sys/unix/ztypes_linux.go | 7 +- .../x/sys/windows/security_windows.go | 2 +- .../x/sys/windows/syscall_windows.go | 12 +- .../golang.org/x/sys/windows/types_windows.go | 27 +- .../x/sys/windows/zsyscall_windows.go | 49 +- vendor/modules.txt | 10 +- 72 files changed, 3658 insertions(+), 73 deletions(-) diff --git a/.travis.yml b/.travis.yml index 894a86a5..d2ca8452 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: go go: -- 1.18 +- 1.22 sudo: false diff --git a/go.mod b/go.mod index 464beb74..3023dead 100644 --- a/go.mod +++ b/go.mod @@ -4,13 +4,13 @@ go 1.22 require ( github.com/Knetic/govaluate v3.0.0+incompatible - github.com/aws/aws-sdk-go v1.55.3 + github.com/aws/aws-sdk-go v1.55.5 github.com/cloudfoundry-community/vaultkv v0.7.0 github.com/cppforlife/go-patch v0.2.0 github.com/geofffranks/simpleyaml v0.0.0-20161109204137-c9320f076de5 github.com/geofffranks/yaml v0.0.0-20161117152608-9f2fe4b6f295 github.com/gonvenience/ytbx v1.4.4 - github.com/homeport/dyff v1.8.1 + github.com/homeport/dyff v1.9.0 github.com/mattn/go-isatty v0.0.20 github.com/smartystreets/goconvey v1.8.1 github.com/starkandwayne/goutils v0.0.0-20190115202530-896b8a6904be @@ -26,7 +26,7 @@ require ( github.com/gonvenience/text v1.0.7 // indirect github.com/gonvenience/wrap v1.2.0 // indirect github.com/gopherjs/gopherjs v1.17.2 // indirect - github.com/hashicorp/cap v0.6.0 // indirect + github.com/hashicorp/cap v0.7.0 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect github.com/hashicorp/go-secure-stdlib/base62 v0.1.2 // indirect @@ -41,8 +41,8 @@ require ( github.com/smarty/assertions v1.16.0 // indirect github.com/texttheater/golang-levenshtein v1.0.1 // indirect github.com/virtuald/go-ordered-json v0.0.0-20170621173500-b18e6e673d74 // indirect - golang.org/x/sync v0.7.0 // indirect - golang.org/x/sys v0.22.0 // indirect + golang.org/x/sync v0.8.0 // indirect + golang.org/x/sys v0.23.0 // indirect golang.org/x/term v0.22.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/go.sum b/go.sum index 69861442..dbe42741 100644 --- a/go.sum +++ b/go.sum @@ -3,8 +3,8 @@ github.com/BurntSushi/toml v1.4.0 h1:kuoIxZQy2WRRk1pttg9asf+WVv6tWQuBNVmK8+nqPr0 github.com/BurntSushi/toml v1.4.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho= github.com/Knetic/govaluate v3.0.0+incompatible h1:7o6+MAPhYTCF0+fdvoz1xDedhRb4f6s9Tn1Tt7/WTEg= github.com/Knetic/govaluate v3.0.0+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= -github.com/aws/aws-sdk-go v1.55.3 h1:0B5hOX+mIx7I5XPOrjrHlKSDQV/+ypFZpIHOx5LOk3E= -github.com/aws/aws-sdk-go v1.55.3/go.mod h1:eRwEWoyTWFMVYVQzKMNHWP5/RV4xIUGMQfXQHfHkpNU= +github.com/aws/aws-sdk-go v1.55.5 h1:KKUZBfBoyqy5d3swXyiC7Q76ic40rYcbqH7qjh59kzU= +github.com/aws/aws-sdk-go v1.55.5/go.mod h1:eRwEWoyTWFMVYVQzKMNHWP5/RV4xIUGMQfXQHfHkpNU= github.com/cloudfoundry-community/vaultkv v0.7.0 h1:VFq0TQxGIxuJuqXKDlY73XneOQyKKTEBA8EwqKI3OOU= github.com/cloudfoundry-community/vaultkv v0.7.0/go.mod h1:D17jAL9n2GS66nbapOU7vRkGQ2D5zhsnyhCuspfNDlg= github.com/coreos/go-oidc/v3 v3.5.0/go.mod h1:ecXRtV4romGPeO6ieExAsUK9cb/3fp9hXNz1tlv8PIM= @@ -27,8 +27,8 @@ github.com/geofffranks/yaml v0.0.0-20161117152608-9f2fe4b6f295 h1:CxigGHNaNtLTrn github.com/geofffranks/yaml v0.0.0-20161117152608-9f2fe4b6f295/go.mod h1:+Qu4YOxbpR+Dn8JVzOTjJKWt3EZkEQD918wX+CkNcbE= github.com/go-jose/go-jose/v3 v3.0.0/go.mod h1:RNkWWRld676jZEYoV3+XK8L2ZnNSvIsxFMht0mSX+u8= github.com/go-jose/go-jose/v3 v3.0.1/go.mod h1:RNkWWRld676jZEYoV3+XK8L2ZnNSvIsxFMht0mSX+u8= -github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= -github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= +github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE= github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI= github.com/go-task/slim-sprig/v3 v3.0.0 h1:sUs3vkvUymDpBKi3qH1YSqBQk9+9D/8M2mN1vB6EwHI= @@ -71,8 +71,8 @@ github.com/gopherjs/gopherjs v1.17.2/go.mod h1:pRRIvn/QzFLrKfvEz3qUuEhtE/zLCWfre github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/hashicorp/cap v0.5.0/go.mod h1:IAy00Er+ZFpMo+5x6B4bkO2HgpzgrkfsuDWMmHAuKUE= -github.com/hashicorp/cap v0.6.0 h1:uOSdbtXu8zsbRyjwpiTy6QiuX3+5paAbNkYlop7QexM= -github.com/hashicorp/cap v0.6.0/go.mod h1:DwzHkoG6pxSARiqwvAgxmCPUpTTCCw2wVuPrIFOzpe0= +github.com/hashicorp/cap v0.7.0 h1:atLIEU5lJslYXo1qsv7RtUL1HrJVVxnfkErIT3uxLp0= +github.com/hashicorp/cap v0.7.0/go.mod h1:UynhCoGX3pxL0OfVrfMzPWAyjMYp96bk11BNTf2zt8o= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= @@ -85,8 +85,8 @@ github.com/hashicorp/go-secure-stdlib/base62 v0.1.2/go.mod h1:EdWO6czbmthiwZ3/PU github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.3 h1:2gKiV6YVmrJ1i2CKKa9obLvRieoRGviZFL26PcT/Co8= github.com/hashicorp/go-uuid v1.0.3/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/homeport/dyff v1.8.1 h1:bQop24CnRWI2Yrv3ZY+sTHIr+4jFoTBfRZUYg9vIhhc= -github.com/homeport/dyff v1.8.1/go.mod h1:X2BbaVDebMHuArR9VCj5DRtderfViz7i7MqTG+CAh4E= +github.com/homeport/dyff v1.9.0 h1:2fvtDNvA3uEH8xurhfa9tJoKGtZ7UR7Z4mzmYdkdolg= +github.com/homeport/dyff v1.9.0/go.mod h1:glKIR7tqPXcpciXc4vs0enwDaTP0LK8gbWrxCQyl95Q= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= @@ -125,12 +125,12 @@ github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+W github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE= github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU= -github.com/onsi/ginkgo/v2 v2.19.0 h1:9Cnnf7UHo57Hy3k6/m5k3dRfGTMXGvxhHFvkDTCTpvA= -github.com/onsi/ginkgo/v2 v2.19.0/go.mod h1:rlwLi9PilAFJ8jCg9UE1QP6VBpd6/xj3SRC0d6TU0To= +github.com/onsi/ginkgo/v2 v2.19.1 h1:QXgq3Z8Crl5EL1WBAC98A5sEBHARrAJNzAmMxzLcRF0= +github.com/onsi/ginkgo/v2 v2.19.1/go.mod h1:O3DtEWQkPa/F7fBMgmZQKKsluAy8pd3rEQdrjkPb9zA= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= -github.com/onsi/gomega v1.33.1 h1:dsYjIxxSR755MDmKVsaFQTE22ChNBcuuTWgkUDSubOk= -github.com/onsi/gomega v1.33.1/go.mod h1:U4R44UsT+9eLIaYRB2a5qajjtQYn0hauxvRm16AVYg0= +github.com/onsi/gomega v1.34.1 h1:EUMJIKUjM8sKjYbtxQI9A4z2o+rruxnzNvpknOXie6k= +github.com/onsi/gomega v1.34.1/go.mod h1:kU1QgUvBDLXBJq618Xvm2LUX6rSAfRaFRTcdOeDLwwY= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -178,6 +178,8 @@ golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= +golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 h1:2dVuKD2vS7b0QIHQbpyTISPd0LeHDbnYEryqj5Q1ug8= +golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56/go.mod h1:M4RDyNAINzryxdtnbRXRL/OHtkFuWGRjvuhBJpk2IlY= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= @@ -205,8 +207,8 @@ golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= -golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= +golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -233,8 +235,8 @@ golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI= -golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.23.0 h1:YfKFowiIMvtgl1UERQoTPPToxltDeZfbj4H7dVUCwmM= +golang.org/x/sys v0.23.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= diff --git a/operator_test.go b/operator_test.go index 4dcfb0f1..4fd1f12e 100644 --- a/operator_test.go +++ b/operator_test.go @@ -1,6 +1,7 @@ package spruce import ( + "context" "fmt" "os" "path/filepath" @@ -9,6 +10,7 @@ import ( "testing" "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/service/secretsmanager" "github.com/aws/aws-sdk-go/service/secretsmanager/secretsmanageriface" @@ -20,22 +22,3075 @@ import ( "github.com/starkandwayne/goutils/tree" ) -type mockedAws struct { +type mockedSSM struct { ssmiface.SSMAPI secretsmanageriface.SecretsManagerAPI - MockGetSecretValue func(*secretsmanager.GetSecretValueInput) (*secretsmanager.GetSecretValueOutput, error) - MockGetParameter func(*ssm.GetParameterInput) (*ssm.GetParameterOutput, error) + MockGetParameter func(*ssm.GetParameterInput) (*ssm.GetParameterOutput, error) +} + +// AddTagsToResource implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).AddTagsToResource of mockedSSM.SSMAPI. +func (m *mockedSSM) AddTagsToResource(*ssm.AddTagsToResourceInput) (*ssm.AddTagsToResourceOutput, error) { + panic("unimplemented") +} + +// AddTagsToResourceRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).AddTagsToResourceRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) AddTagsToResourceRequest(*ssm.AddTagsToResourceInput) (*request.Request, *ssm.AddTagsToResourceOutput) { + panic("unimplemented") +} + +// AddTagsToResourceWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).AddTagsToResourceWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) AddTagsToResourceWithContext(context.Context, *ssm.AddTagsToResourceInput, ...request.Option) (*ssm.AddTagsToResourceOutput, error) { + panic("unimplemented") +} + +// AssociateOpsItemRelatedItem implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).AssociateOpsItemRelatedItem of mockedSSM.SSMAPI. +func (m *mockedSSM) AssociateOpsItemRelatedItem(*ssm.AssociateOpsItemRelatedItemInput) (*ssm.AssociateOpsItemRelatedItemOutput, error) { + panic("unimplemented") +} + +// AssociateOpsItemRelatedItemRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).AssociateOpsItemRelatedItemRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) AssociateOpsItemRelatedItemRequest(*ssm.AssociateOpsItemRelatedItemInput) (*request.Request, *ssm.AssociateOpsItemRelatedItemOutput) { + panic("unimplemented") +} + +// AssociateOpsItemRelatedItemWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).AssociateOpsItemRelatedItemWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) AssociateOpsItemRelatedItemWithContext(context.Context, *ssm.AssociateOpsItemRelatedItemInput, ...request.Option) (*ssm.AssociateOpsItemRelatedItemOutput, error) { + panic("unimplemented") +} + +// CancelCommand implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CancelCommand of mockedSSM.SSMAPI. +func (m *mockedSSM) CancelCommand(*ssm.CancelCommandInput) (*ssm.CancelCommandOutput, error) { + panic("unimplemented") +} + +// CancelCommandRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CancelCommandRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CancelCommandRequest(*ssm.CancelCommandInput) (*request.Request, *ssm.CancelCommandOutput) { + panic("unimplemented") +} + +// CancelCommandWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CancelCommandWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CancelCommandWithContext(context.Context, *ssm.CancelCommandInput, ...request.Option) (*ssm.CancelCommandOutput, error) { + panic("unimplemented") +} + +// CancelMaintenanceWindowExecution implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CancelMaintenanceWindowExecution of mockedSSM.SSMAPI. +func (m *mockedSSM) CancelMaintenanceWindowExecution(*ssm.CancelMaintenanceWindowExecutionInput) (*ssm.CancelMaintenanceWindowExecutionOutput, error) { + panic("unimplemented") +} + +// CancelMaintenanceWindowExecutionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CancelMaintenanceWindowExecutionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CancelMaintenanceWindowExecutionRequest(*ssm.CancelMaintenanceWindowExecutionInput) (*request.Request, *ssm.CancelMaintenanceWindowExecutionOutput) { + panic("unimplemented") +} + +// CancelMaintenanceWindowExecutionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CancelMaintenanceWindowExecutionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CancelMaintenanceWindowExecutionWithContext(context.Context, *ssm.CancelMaintenanceWindowExecutionInput, ...request.Option) (*ssm.CancelMaintenanceWindowExecutionOutput, error) { + panic("unimplemented") +} + +// CreateActivation implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateActivation of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateActivation(*ssm.CreateActivationInput) (*ssm.CreateActivationOutput, error) { + panic("unimplemented") +} + +// CreateActivationRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateActivationRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateActivationRequest(*ssm.CreateActivationInput) (*request.Request, *ssm.CreateActivationOutput) { + panic("unimplemented") +} + +// CreateActivationWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateActivationWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateActivationWithContext(context.Context, *ssm.CreateActivationInput, ...request.Option) (*ssm.CreateActivationOutput, error) { + panic("unimplemented") +} + +// CreateAssociation implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateAssociation of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateAssociation(*ssm.CreateAssociationInput) (*ssm.CreateAssociationOutput, error) { + panic("unimplemented") +} + +// CreateAssociationBatch implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateAssociationBatch of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateAssociationBatch(*ssm.CreateAssociationBatchInput) (*ssm.CreateAssociationBatchOutput, error) { + panic("unimplemented") +} + +// CreateAssociationBatchRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateAssociationBatchRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateAssociationBatchRequest(*ssm.CreateAssociationBatchInput) (*request.Request, *ssm.CreateAssociationBatchOutput) { + panic("unimplemented") +} + +// CreateAssociationBatchWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateAssociationBatchWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateAssociationBatchWithContext(context.Context, *ssm.CreateAssociationBatchInput, ...request.Option) (*ssm.CreateAssociationBatchOutput, error) { + panic("unimplemented") +} + +// CreateAssociationRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateAssociationRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateAssociationRequest(*ssm.CreateAssociationInput) (*request.Request, *ssm.CreateAssociationOutput) { + panic("unimplemented") +} + +// CreateAssociationWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateAssociationWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateAssociationWithContext(context.Context, *ssm.CreateAssociationInput, ...request.Option) (*ssm.CreateAssociationOutput, error) { + panic("unimplemented") +} + +// CreateDocument implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateDocument of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateDocument(*ssm.CreateDocumentInput) (*ssm.CreateDocumentOutput, error) { + panic("unimplemented") +} + +// CreateDocumentRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateDocumentRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateDocumentRequest(*ssm.CreateDocumentInput) (*request.Request, *ssm.CreateDocumentOutput) { + panic("unimplemented") +} + +// CreateDocumentWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateDocumentWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateDocumentWithContext(context.Context, *ssm.CreateDocumentInput, ...request.Option) (*ssm.CreateDocumentOutput, error) { + panic("unimplemented") +} + +// CreateMaintenanceWindow implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateMaintenanceWindow of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateMaintenanceWindow(*ssm.CreateMaintenanceWindowInput) (*ssm.CreateMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// CreateMaintenanceWindowRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateMaintenanceWindowRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateMaintenanceWindowRequest(*ssm.CreateMaintenanceWindowInput) (*request.Request, *ssm.CreateMaintenanceWindowOutput) { + panic("unimplemented") +} + +// CreateMaintenanceWindowWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateMaintenanceWindowWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateMaintenanceWindowWithContext(context.Context, *ssm.CreateMaintenanceWindowInput, ...request.Option) (*ssm.CreateMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// CreateOpsItem implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateOpsItem of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateOpsItem(*ssm.CreateOpsItemInput) (*ssm.CreateOpsItemOutput, error) { + panic("unimplemented") +} + +// CreateOpsItemRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateOpsItemRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateOpsItemRequest(*ssm.CreateOpsItemInput) (*request.Request, *ssm.CreateOpsItemOutput) { + panic("unimplemented") +} + +// CreateOpsItemWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateOpsItemWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateOpsItemWithContext(context.Context, *ssm.CreateOpsItemInput, ...request.Option) (*ssm.CreateOpsItemOutput, error) { + panic("unimplemented") +} + +// CreateOpsMetadata implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateOpsMetadata of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateOpsMetadata(*ssm.CreateOpsMetadataInput) (*ssm.CreateOpsMetadataOutput, error) { + panic("unimplemented") +} + +// CreateOpsMetadataRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateOpsMetadataRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateOpsMetadataRequest(*ssm.CreateOpsMetadataInput) (*request.Request, *ssm.CreateOpsMetadataOutput) { + panic("unimplemented") +} + +// CreateOpsMetadataWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateOpsMetadataWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateOpsMetadataWithContext(context.Context, *ssm.CreateOpsMetadataInput, ...request.Option) (*ssm.CreateOpsMetadataOutput, error) { + panic("unimplemented") +} + +// CreatePatchBaseline implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreatePatchBaseline of mockedSSM.SSMAPI. +func (m *mockedSSM) CreatePatchBaseline(*ssm.CreatePatchBaselineInput) (*ssm.CreatePatchBaselineOutput, error) { + panic("unimplemented") +} + +// CreatePatchBaselineRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreatePatchBaselineRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CreatePatchBaselineRequest(*ssm.CreatePatchBaselineInput) (*request.Request, *ssm.CreatePatchBaselineOutput) { + panic("unimplemented") +} + +// CreatePatchBaselineWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreatePatchBaselineWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CreatePatchBaselineWithContext(context.Context, *ssm.CreatePatchBaselineInput, ...request.Option) (*ssm.CreatePatchBaselineOutput, error) { + panic("unimplemented") +} + +// CreateResourceDataSync implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateResourceDataSync of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateResourceDataSync(*ssm.CreateResourceDataSyncInput) (*ssm.CreateResourceDataSyncOutput, error) { + panic("unimplemented") +} + +// CreateResourceDataSyncRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateResourceDataSyncRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateResourceDataSyncRequest(*ssm.CreateResourceDataSyncInput) (*request.Request, *ssm.CreateResourceDataSyncOutput) { + panic("unimplemented") +} + +// CreateResourceDataSyncWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).CreateResourceDataSyncWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) CreateResourceDataSyncWithContext(context.Context, *ssm.CreateResourceDataSyncInput, ...request.Option) (*ssm.CreateResourceDataSyncOutput, error) { + panic("unimplemented") +} + +// DeleteActivation implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteActivation of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteActivation(*ssm.DeleteActivationInput) (*ssm.DeleteActivationOutput, error) { + panic("unimplemented") +} + +// DeleteActivationRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteActivationRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteActivationRequest(*ssm.DeleteActivationInput) (*request.Request, *ssm.DeleteActivationOutput) { + panic("unimplemented") +} + +// DeleteActivationWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteActivationWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteActivationWithContext(context.Context, *ssm.DeleteActivationInput, ...request.Option) (*ssm.DeleteActivationOutput, error) { + panic("unimplemented") +} + +// DeleteAssociation implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteAssociation of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteAssociation(*ssm.DeleteAssociationInput) (*ssm.DeleteAssociationOutput, error) { + panic("unimplemented") +} + +// DeleteAssociationRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteAssociationRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteAssociationRequest(*ssm.DeleteAssociationInput) (*request.Request, *ssm.DeleteAssociationOutput) { + panic("unimplemented") +} + +// DeleteAssociationWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteAssociationWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteAssociationWithContext(context.Context, *ssm.DeleteAssociationInput, ...request.Option) (*ssm.DeleteAssociationOutput, error) { + panic("unimplemented") +} + +// DeleteDocument implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteDocument of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteDocument(*ssm.DeleteDocumentInput) (*ssm.DeleteDocumentOutput, error) { + panic("unimplemented") +} + +// DeleteDocumentRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteDocumentRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteDocumentRequest(*ssm.DeleteDocumentInput) (*request.Request, *ssm.DeleteDocumentOutput) { + panic("unimplemented") +} + +// DeleteDocumentWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteDocumentWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteDocumentWithContext(context.Context, *ssm.DeleteDocumentInput, ...request.Option) (*ssm.DeleteDocumentOutput, error) { + panic("unimplemented") +} + +// DeleteInventory implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteInventory of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteInventory(*ssm.DeleteInventoryInput) (*ssm.DeleteInventoryOutput, error) { + panic("unimplemented") +} + +// DeleteInventoryRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteInventoryRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteInventoryRequest(*ssm.DeleteInventoryInput) (*request.Request, *ssm.DeleteInventoryOutput) { + panic("unimplemented") +} + +// DeleteInventoryWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteInventoryWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteInventoryWithContext(context.Context, *ssm.DeleteInventoryInput, ...request.Option) (*ssm.DeleteInventoryOutput, error) { + panic("unimplemented") +} + +// DeleteMaintenanceWindow implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteMaintenanceWindow of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteMaintenanceWindow(*ssm.DeleteMaintenanceWindowInput) (*ssm.DeleteMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// DeleteMaintenanceWindowRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteMaintenanceWindowRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteMaintenanceWindowRequest(*ssm.DeleteMaintenanceWindowInput) (*request.Request, *ssm.DeleteMaintenanceWindowOutput) { + panic("unimplemented") +} + +// DeleteMaintenanceWindowWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteMaintenanceWindowWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteMaintenanceWindowWithContext(context.Context, *ssm.DeleteMaintenanceWindowInput, ...request.Option) (*ssm.DeleteMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// DeleteOpsMetadata implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteOpsMetadata of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteOpsMetadata(*ssm.DeleteOpsMetadataInput) (*ssm.DeleteOpsMetadataOutput, error) { + panic("unimplemented") +} + +// DeleteOpsMetadataRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteOpsMetadataRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteOpsMetadataRequest(*ssm.DeleteOpsMetadataInput) (*request.Request, *ssm.DeleteOpsMetadataOutput) { + panic("unimplemented") +} + +// DeleteOpsMetadataWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteOpsMetadataWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteOpsMetadataWithContext(context.Context, *ssm.DeleteOpsMetadataInput, ...request.Option) (*ssm.DeleteOpsMetadataOutput, error) { + panic("unimplemented") +} + +// DeleteParameter implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteParameter of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteParameter(*ssm.DeleteParameterInput) (*ssm.DeleteParameterOutput, error) { + panic("unimplemented") +} + +// DeleteParameterRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteParameterRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteParameterRequest(*ssm.DeleteParameterInput) (*request.Request, *ssm.DeleteParameterOutput) { + panic("unimplemented") +} + +// DeleteParameterWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteParameterWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteParameterWithContext(context.Context, *ssm.DeleteParameterInput, ...request.Option) (*ssm.DeleteParameterOutput, error) { + panic("unimplemented") +} + +// DeleteParameters implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteParameters of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteParameters(*ssm.DeleteParametersInput) (*ssm.DeleteParametersOutput, error) { + panic("unimplemented") +} + +// DeleteParametersRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteParametersRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteParametersRequest(*ssm.DeleteParametersInput) (*request.Request, *ssm.DeleteParametersOutput) { + panic("unimplemented") +} + +// DeleteParametersWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteParametersWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteParametersWithContext(context.Context, *ssm.DeleteParametersInput, ...request.Option) (*ssm.DeleteParametersOutput, error) { + panic("unimplemented") +} + +// DeletePatchBaseline implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeletePatchBaseline of mockedSSM.SSMAPI. +func (m *mockedSSM) DeletePatchBaseline(*ssm.DeletePatchBaselineInput) (*ssm.DeletePatchBaselineOutput, error) { + panic("unimplemented") +} + +// DeletePatchBaselineRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeletePatchBaselineRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeletePatchBaselineRequest(*ssm.DeletePatchBaselineInput) (*request.Request, *ssm.DeletePatchBaselineOutput) { + panic("unimplemented") +} + +// DeletePatchBaselineWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeletePatchBaselineWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeletePatchBaselineWithContext(context.Context, *ssm.DeletePatchBaselineInput, ...request.Option) (*ssm.DeletePatchBaselineOutput, error) { + panic("unimplemented") +} + +// DeleteResourceDataSync implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteResourceDataSync of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteResourceDataSync(*ssm.DeleteResourceDataSyncInput) (*ssm.DeleteResourceDataSyncOutput, error) { + panic("unimplemented") +} + +// DeleteResourceDataSyncRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteResourceDataSyncRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteResourceDataSyncRequest(*ssm.DeleteResourceDataSyncInput) (*request.Request, *ssm.DeleteResourceDataSyncOutput) { + panic("unimplemented") +} + +// DeleteResourceDataSyncWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeleteResourceDataSyncWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeleteResourceDataSyncWithContext(context.Context, *ssm.DeleteResourceDataSyncInput, ...request.Option) (*ssm.DeleteResourceDataSyncOutput, error) { + panic("unimplemented") +} + +// DeleteResourcePolicy implements ssmiface.SSMAPI. +func (m *mockedSSM) DeleteResourcePolicy(*ssm.DeleteResourcePolicyInput) (*ssm.DeleteResourcePolicyOutput, error) { + panic("unimplemented") +} + +// DeleteResourcePolicyRequest implements ssmiface.SSMAPI. +func (m *mockedSSM) DeleteResourcePolicyRequest(*ssm.DeleteResourcePolicyInput) (*request.Request, *ssm.DeleteResourcePolicyOutput) { + panic("unimplemented") +} + +// DeleteResourcePolicyWithContext implements ssmiface.SSMAPI. +func (m *mockedSSM) DeleteResourcePolicyWithContext(context.Context, *ssm.DeleteResourcePolicyInput, ...request.Option) (*ssm.DeleteResourcePolicyOutput, error) { + panic("unimplemented") +} + +// DeregisterManagedInstance implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterManagedInstance of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterManagedInstance(*ssm.DeregisterManagedInstanceInput) (*ssm.DeregisterManagedInstanceOutput, error) { + panic("unimplemented") +} + +// DeregisterManagedInstanceRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterManagedInstanceRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterManagedInstanceRequest(*ssm.DeregisterManagedInstanceInput) (*request.Request, *ssm.DeregisterManagedInstanceOutput) { + panic("unimplemented") +} + +// DeregisterManagedInstanceWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterManagedInstanceWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterManagedInstanceWithContext(context.Context, *ssm.DeregisterManagedInstanceInput, ...request.Option) (*ssm.DeregisterManagedInstanceOutput, error) { + panic("unimplemented") +} + +// DeregisterPatchBaselineForPatchGroup implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterPatchBaselineForPatchGroup of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterPatchBaselineForPatchGroup(*ssm.DeregisterPatchBaselineForPatchGroupInput) (*ssm.DeregisterPatchBaselineForPatchGroupOutput, error) { + panic("unimplemented") +} + +// DeregisterPatchBaselineForPatchGroupRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterPatchBaselineForPatchGroupRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterPatchBaselineForPatchGroupRequest(*ssm.DeregisterPatchBaselineForPatchGroupInput) (*request.Request, *ssm.DeregisterPatchBaselineForPatchGroupOutput) { + panic("unimplemented") +} + +// DeregisterPatchBaselineForPatchGroupWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterPatchBaselineForPatchGroupWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterPatchBaselineForPatchGroupWithContext(context.Context, *ssm.DeregisterPatchBaselineForPatchGroupInput, ...request.Option) (*ssm.DeregisterPatchBaselineForPatchGroupOutput, error) { + panic("unimplemented") +} + +// DeregisterTargetFromMaintenanceWindow implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterTargetFromMaintenanceWindow of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterTargetFromMaintenanceWindow(*ssm.DeregisterTargetFromMaintenanceWindowInput) (*ssm.DeregisterTargetFromMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// DeregisterTargetFromMaintenanceWindowRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterTargetFromMaintenanceWindowRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterTargetFromMaintenanceWindowRequest(*ssm.DeregisterTargetFromMaintenanceWindowInput) (*request.Request, *ssm.DeregisterTargetFromMaintenanceWindowOutput) { + panic("unimplemented") +} + +// DeregisterTargetFromMaintenanceWindowWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterTargetFromMaintenanceWindowWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterTargetFromMaintenanceWindowWithContext(context.Context, *ssm.DeregisterTargetFromMaintenanceWindowInput, ...request.Option) (*ssm.DeregisterTargetFromMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// DeregisterTaskFromMaintenanceWindow implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterTaskFromMaintenanceWindow of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterTaskFromMaintenanceWindow(*ssm.DeregisterTaskFromMaintenanceWindowInput) (*ssm.DeregisterTaskFromMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// DeregisterTaskFromMaintenanceWindowRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterTaskFromMaintenanceWindowRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterTaskFromMaintenanceWindowRequest(*ssm.DeregisterTaskFromMaintenanceWindowInput) (*request.Request, *ssm.DeregisterTaskFromMaintenanceWindowOutput) { + panic("unimplemented") +} + +// DeregisterTaskFromMaintenanceWindowWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DeregisterTaskFromMaintenanceWindowWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DeregisterTaskFromMaintenanceWindowWithContext(context.Context, *ssm.DeregisterTaskFromMaintenanceWindowInput, ...request.Option) (*ssm.DeregisterTaskFromMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// DescribeActivations implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeActivations of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeActivations(*ssm.DescribeActivationsInput) (*ssm.DescribeActivationsOutput, error) { + panic("unimplemented") +} + +// DescribeActivationsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeActivationsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeActivationsPages(*ssm.DescribeActivationsInput, func(*ssm.DescribeActivationsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeActivationsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeActivationsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeActivationsPagesWithContext(context.Context, *ssm.DescribeActivationsInput, func(*ssm.DescribeActivationsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeActivationsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeActivationsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeActivationsRequest(*ssm.DescribeActivationsInput) (*request.Request, *ssm.DescribeActivationsOutput) { + panic("unimplemented") +} + +// DescribeActivationsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeActivationsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeActivationsWithContext(context.Context, *ssm.DescribeActivationsInput, ...request.Option) (*ssm.DescribeActivationsOutput, error) { + panic("unimplemented") +} + +// DescribeAssociation implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociation of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociation(*ssm.DescribeAssociationInput) (*ssm.DescribeAssociationOutput, error) { + panic("unimplemented") +} + +// DescribeAssociationExecutionTargets implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionTargets of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationExecutionTargets(*ssm.DescribeAssociationExecutionTargetsInput) (*ssm.DescribeAssociationExecutionTargetsOutput, error) { + panic("unimplemented") +} + +// DescribeAssociationExecutionTargetsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionTargetsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationExecutionTargetsPages(*ssm.DescribeAssociationExecutionTargetsInput, func(*ssm.DescribeAssociationExecutionTargetsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeAssociationExecutionTargetsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionTargetsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationExecutionTargetsPagesWithContext(context.Context, *ssm.DescribeAssociationExecutionTargetsInput, func(*ssm.DescribeAssociationExecutionTargetsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeAssociationExecutionTargetsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionTargetsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationExecutionTargetsRequest(*ssm.DescribeAssociationExecutionTargetsInput) (*request.Request, *ssm.DescribeAssociationExecutionTargetsOutput) { + panic("unimplemented") +} + +// DescribeAssociationExecutionTargetsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionTargetsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationExecutionTargetsWithContext(context.Context, *ssm.DescribeAssociationExecutionTargetsInput, ...request.Option) (*ssm.DescribeAssociationExecutionTargetsOutput, error) { + panic("unimplemented") +} + +// DescribeAssociationExecutions implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutions of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationExecutions(*ssm.DescribeAssociationExecutionsInput) (*ssm.DescribeAssociationExecutionsOutput, error) { + panic("unimplemented") +} + +// DescribeAssociationExecutionsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationExecutionsPages(*ssm.DescribeAssociationExecutionsInput, func(*ssm.DescribeAssociationExecutionsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeAssociationExecutionsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationExecutionsPagesWithContext(context.Context, *ssm.DescribeAssociationExecutionsInput, func(*ssm.DescribeAssociationExecutionsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeAssociationExecutionsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationExecutionsRequest(*ssm.DescribeAssociationExecutionsInput) (*request.Request, *ssm.DescribeAssociationExecutionsOutput) { + panic("unimplemented") +} + +// DescribeAssociationExecutionsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationExecutionsWithContext(context.Context, *ssm.DescribeAssociationExecutionsInput, ...request.Option) (*ssm.DescribeAssociationExecutionsOutput, error) { + panic("unimplemented") +} + +// DescribeAssociationRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationRequest(*ssm.DescribeAssociationInput) (*request.Request, *ssm.DescribeAssociationOutput) { + panic("unimplemented") +} + +// DescribeAssociationWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAssociationWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAssociationWithContext(context.Context, *ssm.DescribeAssociationInput, ...request.Option) (*ssm.DescribeAssociationOutput, error) { + panic("unimplemented") +} + +// DescribeAutomationExecutions implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAutomationExecutions of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAutomationExecutions(*ssm.DescribeAutomationExecutionsInput) (*ssm.DescribeAutomationExecutionsOutput, error) { + panic("unimplemented") +} + +// DescribeAutomationExecutionsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAutomationExecutionsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAutomationExecutionsPages(*ssm.DescribeAutomationExecutionsInput, func(*ssm.DescribeAutomationExecutionsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeAutomationExecutionsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAutomationExecutionsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAutomationExecutionsPagesWithContext(context.Context, *ssm.DescribeAutomationExecutionsInput, func(*ssm.DescribeAutomationExecutionsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeAutomationExecutionsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAutomationExecutionsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAutomationExecutionsRequest(*ssm.DescribeAutomationExecutionsInput) (*request.Request, *ssm.DescribeAutomationExecutionsOutput) { + panic("unimplemented") +} + +// DescribeAutomationExecutionsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAutomationExecutionsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAutomationExecutionsWithContext(context.Context, *ssm.DescribeAutomationExecutionsInput, ...request.Option) (*ssm.DescribeAutomationExecutionsOutput, error) { + panic("unimplemented") +} + +// DescribeAutomationStepExecutions implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAutomationStepExecutions of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAutomationStepExecutions(*ssm.DescribeAutomationStepExecutionsInput) (*ssm.DescribeAutomationStepExecutionsOutput, error) { + panic("unimplemented") +} + +// DescribeAutomationStepExecutionsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAutomationStepExecutionsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAutomationStepExecutionsPages(*ssm.DescribeAutomationStepExecutionsInput, func(*ssm.DescribeAutomationStepExecutionsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeAutomationStepExecutionsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAutomationStepExecutionsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAutomationStepExecutionsPagesWithContext(context.Context, *ssm.DescribeAutomationStepExecutionsInput, func(*ssm.DescribeAutomationStepExecutionsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeAutomationStepExecutionsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAutomationStepExecutionsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAutomationStepExecutionsRequest(*ssm.DescribeAutomationStepExecutionsInput) (*request.Request, *ssm.DescribeAutomationStepExecutionsOutput) { + panic("unimplemented") +} + +// DescribeAutomationStepExecutionsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAutomationStepExecutionsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAutomationStepExecutionsWithContext(context.Context, *ssm.DescribeAutomationStepExecutionsInput, ...request.Option) (*ssm.DescribeAutomationStepExecutionsOutput, error) { + panic("unimplemented") +} + +// DescribeAvailablePatches implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAvailablePatches of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAvailablePatches(*ssm.DescribeAvailablePatchesInput) (*ssm.DescribeAvailablePatchesOutput, error) { + panic("unimplemented") +} + +// DescribeAvailablePatchesPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAvailablePatchesPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAvailablePatchesPages(*ssm.DescribeAvailablePatchesInput, func(*ssm.DescribeAvailablePatchesOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeAvailablePatchesPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAvailablePatchesPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAvailablePatchesPagesWithContext(context.Context, *ssm.DescribeAvailablePatchesInput, func(*ssm.DescribeAvailablePatchesOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeAvailablePatchesRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAvailablePatchesRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAvailablePatchesRequest(*ssm.DescribeAvailablePatchesInput) (*request.Request, *ssm.DescribeAvailablePatchesOutput) { + panic("unimplemented") +} + +// DescribeAvailablePatchesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeAvailablePatchesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeAvailablePatchesWithContext(context.Context, *ssm.DescribeAvailablePatchesInput, ...request.Option) (*ssm.DescribeAvailablePatchesOutput, error) { + panic("unimplemented") +} + +// DescribeDocument implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeDocument of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeDocument(*ssm.DescribeDocumentInput) (*ssm.DescribeDocumentOutput, error) { + panic("unimplemented") +} + +// DescribeDocumentPermission implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeDocumentPermission of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeDocumentPermission(*ssm.DescribeDocumentPermissionInput) (*ssm.DescribeDocumentPermissionOutput, error) { + panic("unimplemented") +} + +// DescribeDocumentPermissionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeDocumentPermissionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeDocumentPermissionRequest(*ssm.DescribeDocumentPermissionInput) (*request.Request, *ssm.DescribeDocumentPermissionOutput) { + panic("unimplemented") +} + +// DescribeDocumentPermissionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeDocumentPermissionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeDocumentPermissionWithContext(context.Context, *ssm.DescribeDocumentPermissionInput, ...request.Option) (*ssm.DescribeDocumentPermissionOutput, error) { + panic("unimplemented") +} + +// DescribeDocumentRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeDocumentRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeDocumentRequest(*ssm.DescribeDocumentInput) (*request.Request, *ssm.DescribeDocumentOutput) { + panic("unimplemented") +} + +// DescribeDocumentWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeDocumentWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeDocumentWithContext(context.Context, *ssm.DescribeDocumentInput, ...request.Option) (*ssm.DescribeDocumentOutput, error) { + panic("unimplemented") +} + +// DescribeEffectiveInstanceAssociations implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeEffectiveInstanceAssociations of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeEffectiveInstanceAssociations(*ssm.DescribeEffectiveInstanceAssociationsInput) (*ssm.DescribeEffectiveInstanceAssociationsOutput, error) { + panic("unimplemented") +} + +// DescribeEffectiveInstanceAssociationsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeEffectiveInstanceAssociationsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeEffectiveInstanceAssociationsPages(*ssm.DescribeEffectiveInstanceAssociationsInput, func(*ssm.DescribeEffectiveInstanceAssociationsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeEffectiveInstanceAssociationsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeEffectiveInstanceAssociationsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeEffectiveInstanceAssociationsPagesWithContext(context.Context, *ssm.DescribeEffectiveInstanceAssociationsInput, func(*ssm.DescribeEffectiveInstanceAssociationsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeEffectiveInstanceAssociationsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeEffectiveInstanceAssociationsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeEffectiveInstanceAssociationsRequest(*ssm.DescribeEffectiveInstanceAssociationsInput) (*request.Request, *ssm.DescribeEffectiveInstanceAssociationsOutput) { + panic("unimplemented") +} + +// DescribeEffectiveInstanceAssociationsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeEffectiveInstanceAssociationsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeEffectiveInstanceAssociationsWithContext(context.Context, *ssm.DescribeEffectiveInstanceAssociationsInput, ...request.Option) (*ssm.DescribeEffectiveInstanceAssociationsOutput, error) { + panic("unimplemented") +} + +// DescribeEffectivePatchesForPatchBaseline implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeEffectivePatchesForPatchBaseline of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeEffectivePatchesForPatchBaseline(*ssm.DescribeEffectivePatchesForPatchBaselineInput) (*ssm.DescribeEffectivePatchesForPatchBaselineOutput, error) { + panic("unimplemented") +} + +// DescribeEffectivePatchesForPatchBaselinePages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeEffectivePatchesForPatchBaselinePages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeEffectivePatchesForPatchBaselinePages(*ssm.DescribeEffectivePatchesForPatchBaselineInput, func(*ssm.DescribeEffectivePatchesForPatchBaselineOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeEffectivePatchesForPatchBaselinePagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeEffectivePatchesForPatchBaselinePagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeEffectivePatchesForPatchBaselinePagesWithContext(context.Context, *ssm.DescribeEffectivePatchesForPatchBaselineInput, func(*ssm.DescribeEffectivePatchesForPatchBaselineOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeEffectivePatchesForPatchBaselineRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeEffectivePatchesForPatchBaselineRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeEffectivePatchesForPatchBaselineRequest(*ssm.DescribeEffectivePatchesForPatchBaselineInput) (*request.Request, *ssm.DescribeEffectivePatchesForPatchBaselineOutput) { + panic("unimplemented") +} + +// DescribeEffectivePatchesForPatchBaselineWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeEffectivePatchesForPatchBaselineWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeEffectivePatchesForPatchBaselineWithContext(context.Context, *ssm.DescribeEffectivePatchesForPatchBaselineInput, ...request.Option) (*ssm.DescribeEffectivePatchesForPatchBaselineOutput, error) { + panic("unimplemented") +} + +// DescribeInstanceAssociationsStatus implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstanceAssociationsStatus of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstanceAssociationsStatus(*ssm.DescribeInstanceAssociationsStatusInput) (*ssm.DescribeInstanceAssociationsStatusOutput, error) { + panic("unimplemented") +} + +// DescribeInstanceAssociationsStatusPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstanceAssociationsStatusPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstanceAssociationsStatusPages(*ssm.DescribeInstanceAssociationsStatusInput, func(*ssm.DescribeInstanceAssociationsStatusOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeInstanceAssociationsStatusPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstanceAssociationsStatusPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstanceAssociationsStatusPagesWithContext(context.Context, *ssm.DescribeInstanceAssociationsStatusInput, func(*ssm.DescribeInstanceAssociationsStatusOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeInstanceAssociationsStatusRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstanceAssociationsStatusRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstanceAssociationsStatusRequest(*ssm.DescribeInstanceAssociationsStatusInput) (*request.Request, *ssm.DescribeInstanceAssociationsStatusOutput) { + panic("unimplemented") +} + +// DescribeInstanceAssociationsStatusWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstanceAssociationsStatusWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstanceAssociationsStatusWithContext(context.Context, *ssm.DescribeInstanceAssociationsStatusInput, ...request.Option) (*ssm.DescribeInstanceAssociationsStatusOutput, error) { + panic("unimplemented") +} + +// DescribeInstanceInformation implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstanceInformation of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstanceInformation(*ssm.DescribeInstanceInformationInput) (*ssm.DescribeInstanceInformationOutput, error) { + panic("unimplemented") +} + +// DescribeInstanceInformationPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstanceInformationPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstanceInformationPages(*ssm.DescribeInstanceInformationInput, func(*ssm.DescribeInstanceInformationOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeInstanceInformationPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstanceInformationPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstanceInformationPagesWithContext(context.Context, *ssm.DescribeInstanceInformationInput, func(*ssm.DescribeInstanceInformationOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeInstanceInformationRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstanceInformationRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstanceInformationRequest(*ssm.DescribeInstanceInformationInput) (*request.Request, *ssm.DescribeInstanceInformationOutput) { + panic("unimplemented") +} + +// DescribeInstanceInformationWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstanceInformationWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstanceInformationWithContext(context.Context, *ssm.DescribeInstanceInformationInput, ...request.Option) (*ssm.DescribeInstanceInformationOutput, error) { + panic("unimplemented") +} + +// DescribeInstancePatchStates implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStates of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchStates(*ssm.DescribeInstancePatchStatesInput) (*ssm.DescribeInstancePatchStatesOutput, error) { + panic("unimplemented") +} + +// DescribeInstancePatchStatesForPatchGroup implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesForPatchGroup of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchStatesForPatchGroup(*ssm.DescribeInstancePatchStatesForPatchGroupInput) (*ssm.DescribeInstancePatchStatesForPatchGroupOutput, error) { + panic("unimplemented") +} + +// DescribeInstancePatchStatesForPatchGroupPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesForPatchGroupPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchStatesForPatchGroupPages(*ssm.DescribeInstancePatchStatesForPatchGroupInput, func(*ssm.DescribeInstancePatchStatesForPatchGroupOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeInstancePatchStatesForPatchGroupPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesForPatchGroupPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchStatesForPatchGroupPagesWithContext(context.Context, *ssm.DescribeInstancePatchStatesForPatchGroupInput, func(*ssm.DescribeInstancePatchStatesForPatchGroupOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeInstancePatchStatesForPatchGroupRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesForPatchGroupRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchStatesForPatchGroupRequest(*ssm.DescribeInstancePatchStatesForPatchGroupInput) (*request.Request, *ssm.DescribeInstancePatchStatesForPatchGroupOutput) { + panic("unimplemented") +} + +// DescribeInstancePatchStatesForPatchGroupWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesForPatchGroupWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchStatesForPatchGroupWithContext(context.Context, *ssm.DescribeInstancePatchStatesForPatchGroupInput, ...request.Option) (*ssm.DescribeInstancePatchStatesForPatchGroupOutput, error) { + panic("unimplemented") +} + +// DescribeInstancePatchStatesPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchStatesPages(*ssm.DescribeInstancePatchStatesInput, func(*ssm.DescribeInstancePatchStatesOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeInstancePatchStatesPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchStatesPagesWithContext(context.Context, *ssm.DescribeInstancePatchStatesInput, func(*ssm.DescribeInstancePatchStatesOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeInstancePatchStatesRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchStatesRequest(*ssm.DescribeInstancePatchStatesInput) (*request.Request, *ssm.DescribeInstancePatchStatesOutput) { + panic("unimplemented") +} + +// DescribeInstancePatchStatesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchStatesWithContext(context.Context, *ssm.DescribeInstancePatchStatesInput, ...request.Option) (*ssm.DescribeInstancePatchStatesOutput, error) { + panic("unimplemented") +} + +// DescribeInstancePatches implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatches of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatches(*ssm.DescribeInstancePatchesInput) (*ssm.DescribeInstancePatchesOutput, error) { + panic("unimplemented") +} + +// DescribeInstancePatchesPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchesPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchesPages(*ssm.DescribeInstancePatchesInput, func(*ssm.DescribeInstancePatchesOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeInstancePatchesPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchesPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchesPagesWithContext(context.Context, *ssm.DescribeInstancePatchesInput, func(*ssm.DescribeInstancePatchesOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeInstancePatchesRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchesRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchesRequest(*ssm.DescribeInstancePatchesInput) (*request.Request, *ssm.DescribeInstancePatchesOutput) { + panic("unimplemented") +} + +// DescribeInstancePatchesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInstancePatchesWithContext(context.Context, *ssm.DescribeInstancePatchesInput, ...request.Option) (*ssm.DescribeInstancePatchesOutput, error) { + panic("unimplemented") +} + +// DescribeInventoryDeletions implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInventoryDeletions of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInventoryDeletions(*ssm.DescribeInventoryDeletionsInput) (*ssm.DescribeInventoryDeletionsOutput, error) { + panic("unimplemented") +} + +// DescribeInventoryDeletionsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInventoryDeletionsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInventoryDeletionsPages(*ssm.DescribeInventoryDeletionsInput, func(*ssm.DescribeInventoryDeletionsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeInventoryDeletionsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInventoryDeletionsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInventoryDeletionsPagesWithContext(context.Context, *ssm.DescribeInventoryDeletionsInput, func(*ssm.DescribeInventoryDeletionsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeInventoryDeletionsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInventoryDeletionsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInventoryDeletionsRequest(*ssm.DescribeInventoryDeletionsInput) (*request.Request, *ssm.DescribeInventoryDeletionsOutput) { + panic("unimplemented") +} + +// DescribeInventoryDeletionsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeInventoryDeletionsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeInventoryDeletionsWithContext(context.Context, *ssm.DescribeInventoryDeletionsInput, ...request.Option) (*ssm.DescribeInventoryDeletionsOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionTaskInvocations implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionTaskInvocations of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionTaskInvocations(*ssm.DescribeMaintenanceWindowExecutionTaskInvocationsInput) (*ssm.DescribeMaintenanceWindowExecutionTaskInvocationsOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionTaskInvocationsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionTaskInvocationsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionTaskInvocationsPages(*ssm.DescribeMaintenanceWindowExecutionTaskInvocationsInput, func(*ssm.DescribeMaintenanceWindowExecutionTaskInvocationsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionTaskInvocationsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionTaskInvocationsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionTaskInvocationsPagesWithContext(context.Context, *ssm.DescribeMaintenanceWindowExecutionTaskInvocationsInput, func(*ssm.DescribeMaintenanceWindowExecutionTaskInvocationsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionTaskInvocationsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionTaskInvocationsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionTaskInvocationsRequest(*ssm.DescribeMaintenanceWindowExecutionTaskInvocationsInput) (*request.Request, *ssm.DescribeMaintenanceWindowExecutionTaskInvocationsOutput) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionTaskInvocationsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionTaskInvocationsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionTaskInvocationsWithContext(context.Context, *ssm.DescribeMaintenanceWindowExecutionTaskInvocationsInput, ...request.Option) (*ssm.DescribeMaintenanceWindowExecutionTaskInvocationsOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionTasks implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionTasks of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionTasks(*ssm.DescribeMaintenanceWindowExecutionTasksInput) (*ssm.DescribeMaintenanceWindowExecutionTasksOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionTasksPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionTasksPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionTasksPages(*ssm.DescribeMaintenanceWindowExecutionTasksInput, func(*ssm.DescribeMaintenanceWindowExecutionTasksOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionTasksPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionTasksPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionTasksPagesWithContext(context.Context, *ssm.DescribeMaintenanceWindowExecutionTasksInput, func(*ssm.DescribeMaintenanceWindowExecutionTasksOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionTasksRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionTasksRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionTasksRequest(*ssm.DescribeMaintenanceWindowExecutionTasksInput) (*request.Request, *ssm.DescribeMaintenanceWindowExecutionTasksOutput) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionTasksWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionTasksWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionTasksWithContext(context.Context, *ssm.DescribeMaintenanceWindowExecutionTasksInput, ...request.Option) (*ssm.DescribeMaintenanceWindowExecutionTasksOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutions implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutions of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutions(*ssm.DescribeMaintenanceWindowExecutionsInput) (*ssm.DescribeMaintenanceWindowExecutionsOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionsPages(*ssm.DescribeMaintenanceWindowExecutionsInput, func(*ssm.DescribeMaintenanceWindowExecutionsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionsPagesWithContext(context.Context, *ssm.DescribeMaintenanceWindowExecutionsInput, func(*ssm.DescribeMaintenanceWindowExecutionsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionsRequest(*ssm.DescribeMaintenanceWindowExecutionsInput) (*request.Request, *ssm.DescribeMaintenanceWindowExecutionsOutput) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowExecutionsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowExecutionsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowExecutionsWithContext(context.Context, *ssm.DescribeMaintenanceWindowExecutionsInput, ...request.Option) (*ssm.DescribeMaintenanceWindowExecutionsOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowSchedule implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowSchedule of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowSchedule(*ssm.DescribeMaintenanceWindowScheduleInput) (*ssm.DescribeMaintenanceWindowScheduleOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowSchedulePages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowSchedulePages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowSchedulePages(*ssm.DescribeMaintenanceWindowScheduleInput, func(*ssm.DescribeMaintenanceWindowScheduleOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowSchedulePagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowSchedulePagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowSchedulePagesWithContext(context.Context, *ssm.DescribeMaintenanceWindowScheduleInput, func(*ssm.DescribeMaintenanceWindowScheduleOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowScheduleRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowScheduleRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowScheduleRequest(*ssm.DescribeMaintenanceWindowScheduleInput) (*request.Request, *ssm.DescribeMaintenanceWindowScheduleOutput) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowScheduleWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowScheduleWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowScheduleWithContext(context.Context, *ssm.DescribeMaintenanceWindowScheduleInput, ...request.Option) (*ssm.DescribeMaintenanceWindowScheduleOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowTargets implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowTargets of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowTargets(*ssm.DescribeMaintenanceWindowTargetsInput) (*ssm.DescribeMaintenanceWindowTargetsOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowTargetsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowTargetsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowTargetsPages(*ssm.DescribeMaintenanceWindowTargetsInput, func(*ssm.DescribeMaintenanceWindowTargetsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowTargetsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowTargetsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowTargetsPagesWithContext(context.Context, *ssm.DescribeMaintenanceWindowTargetsInput, func(*ssm.DescribeMaintenanceWindowTargetsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowTargetsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowTargetsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowTargetsRequest(*ssm.DescribeMaintenanceWindowTargetsInput) (*request.Request, *ssm.DescribeMaintenanceWindowTargetsOutput) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowTargetsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowTargetsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowTargetsWithContext(context.Context, *ssm.DescribeMaintenanceWindowTargetsInput, ...request.Option) (*ssm.DescribeMaintenanceWindowTargetsOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowTasks implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowTasks of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowTasks(*ssm.DescribeMaintenanceWindowTasksInput) (*ssm.DescribeMaintenanceWindowTasksOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowTasksPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowTasksPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowTasksPages(*ssm.DescribeMaintenanceWindowTasksInput, func(*ssm.DescribeMaintenanceWindowTasksOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowTasksPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowTasksPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowTasksPagesWithContext(context.Context, *ssm.DescribeMaintenanceWindowTasksInput, func(*ssm.DescribeMaintenanceWindowTasksOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowTasksRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowTasksRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowTasksRequest(*ssm.DescribeMaintenanceWindowTasksInput) (*request.Request, *ssm.DescribeMaintenanceWindowTasksOutput) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowTasksWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowTasksWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowTasksWithContext(context.Context, *ssm.DescribeMaintenanceWindowTasksInput, ...request.Option) (*ssm.DescribeMaintenanceWindowTasksOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindows implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindows of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindows(*ssm.DescribeMaintenanceWindowsInput) (*ssm.DescribeMaintenanceWindowsOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowsForTarget implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowsForTarget of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowsForTarget(*ssm.DescribeMaintenanceWindowsForTargetInput) (*ssm.DescribeMaintenanceWindowsForTargetOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowsForTargetPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowsForTargetPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowsForTargetPages(*ssm.DescribeMaintenanceWindowsForTargetInput, func(*ssm.DescribeMaintenanceWindowsForTargetOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowsForTargetPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowsForTargetPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowsForTargetPagesWithContext(context.Context, *ssm.DescribeMaintenanceWindowsForTargetInput, func(*ssm.DescribeMaintenanceWindowsForTargetOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowsForTargetRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowsForTargetRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowsForTargetRequest(*ssm.DescribeMaintenanceWindowsForTargetInput) (*request.Request, *ssm.DescribeMaintenanceWindowsForTargetOutput) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowsForTargetWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowsForTargetWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowsForTargetWithContext(context.Context, *ssm.DescribeMaintenanceWindowsForTargetInput, ...request.Option) (*ssm.DescribeMaintenanceWindowsForTargetOutput, error) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowsPages(*ssm.DescribeMaintenanceWindowsInput, func(*ssm.DescribeMaintenanceWindowsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowsPagesWithContext(context.Context, *ssm.DescribeMaintenanceWindowsInput, func(*ssm.DescribeMaintenanceWindowsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeMaintenanceWindowsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowsRequest(*ssm.DescribeMaintenanceWindowsInput) (*request.Request, *ssm.DescribeMaintenanceWindowsOutput) { + panic("unimplemented") +} + +// DescribeMaintenanceWindowsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeMaintenanceWindowsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeMaintenanceWindowsWithContext(context.Context, *ssm.DescribeMaintenanceWindowsInput, ...request.Option) (*ssm.DescribeMaintenanceWindowsOutput, error) { + panic("unimplemented") +} + +// DescribeOpsItems implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeOpsItems of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeOpsItems(*ssm.DescribeOpsItemsInput) (*ssm.DescribeOpsItemsOutput, error) { + panic("unimplemented") +} + +// DescribeOpsItemsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeOpsItemsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeOpsItemsPages(*ssm.DescribeOpsItemsInput, func(*ssm.DescribeOpsItemsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeOpsItemsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeOpsItemsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeOpsItemsPagesWithContext(context.Context, *ssm.DescribeOpsItemsInput, func(*ssm.DescribeOpsItemsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeOpsItemsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeOpsItemsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeOpsItemsRequest(*ssm.DescribeOpsItemsInput) (*request.Request, *ssm.DescribeOpsItemsOutput) { + panic("unimplemented") +} + +// DescribeOpsItemsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeOpsItemsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeOpsItemsWithContext(context.Context, *ssm.DescribeOpsItemsInput, ...request.Option) (*ssm.DescribeOpsItemsOutput, error) { + panic("unimplemented") +} + +// DescribeParameters implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeParameters of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeParameters(*ssm.DescribeParametersInput) (*ssm.DescribeParametersOutput, error) { + panic("unimplemented") +} + +// DescribeParametersPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeParametersPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeParametersPages(*ssm.DescribeParametersInput, func(*ssm.DescribeParametersOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeParametersPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeParametersPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeParametersPagesWithContext(context.Context, *ssm.DescribeParametersInput, func(*ssm.DescribeParametersOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeParametersRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeParametersRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeParametersRequest(*ssm.DescribeParametersInput) (*request.Request, *ssm.DescribeParametersOutput) { + panic("unimplemented") +} + +// DescribeParametersWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeParametersWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeParametersWithContext(context.Context, *ssm.DescribeParametersInput, ...request.Option) (*ssm.DescribeParametersOutput, error) { + panic("unimplemented") +} + +// DescribePatchBaselines implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchBaselines of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchBaselines(*ssm.DescribePatchBaselinesInput) (*ssm.DescribePatchBaselinesOutput, error) { + panic("unimplemented") +} + +// DescribePatchBaselinesPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchBaselinesPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchBaselinesPages(*ssm.DescribePatchBaselinesInput, func(*ssm.DescribePatchBaselinesOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribePatchBaselinesPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchBaselinesPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchBaselinesPagesWithContext(context.Context, *ssm.DescribePatchBaselinesInput, func(*ssm.DescribePatchBaselinesOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribePatchBaselinesRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchBaselinesRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchBaselinesRequest(*ssm.DescribePatchBaselinesInput) (*request.Request, *ssm.DescribePatchBaselinesOutput) { + panic("unimplemented") +} + +// DescribePatchBaselinesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchBaselinesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchBaselinesWithContext(context.Context, *ssm.DescribePatchBaselinesInput, ...request.Option) (*ssm.DescribePatchBaselinesOutput, error) { + panic("unimplemented") +} + +// DescribePatchGroupState implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchGroupState of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchGroupState(*ssm.DescribePatchGroupStateInput) (*ssm.DescribePatchGroupStateOutput, error) { + panic("unimplemented") +} + +// DescribePatchGroupStateRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchGroupStateRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchGroupStateRequest(*ssm.DescribePatchGroupStateInput) (*request.Request, *ssm.DescribePatchGroupStateOutput) { + panic("unimplemented") +} + +// DescribePatchGroupStateWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchGroupStateWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchGroupStateWithContext(context.Context, *ssm.DescribePatchGroupStateInput, ...request.Option) (*ssm.DescribePatchGroupStateOutput, error) { + panic("unimplemented") +} + +// DescribePatchGroups implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchGroups of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchGroups(*ssm.DescribePatchGroupsInput) (*ssm.DescribePatchGroupsOutput, error) { + panic("unimplemented") +} + +// DescribePatchGroupsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchGroupsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchGroupsPages(*ssm.DescribePatchGroupsInput, func(*ssm.DescribePatchGroupsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribePatchGroupsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchGroupsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchGroupsPagesWithContext(context.Context, *ssm.DescribePatchGroupsInput, func(*ssm.DescribePatchGroupsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribePatchGroupsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchGroupsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchGroupsRequest(*ssm.DescribePatchGroupsInput) (*request.Request, *ssm.DescribePatchGroupsOutput) { + panic("unimplemented") +} + +// DescribePatchGroupsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchGroupsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchGroupsWithContext(context.Context, *ssm.DescribePatchGroupsInput, ...request.Option) (*ssm.DescribePatchGroupsOutput, error) { + panic("unimplemented") +} + +// DescribePatchProperties implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchProperties of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchProperties(*ssm.DescribePatchPropertiesInput) (*ssm.DescribePatchPropertiesOutput, error) { + panic("unimplemented") +} + +// DescribePatchPropertiesPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchPropertiesPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchPropertiesPages(*ssm.DescribePatchPropertiesInput, func(*ssm.DescribePatchPropertiesOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribePatchPropertiesPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchPropertiesPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchPropertiesPagesWithContext(context.Context, *ssm.DescribePatchPropertiesInput, func(*ssm.DescribePatchPropertiesOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribePatchPropertiesRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchPropertiesRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchPropertiesRequest(*ssm.DescribePatchPropertiesInput) (*request.Request, *ssm.DescribePatchPropertiesOutput) { + panic("unimplemented") +} + +// DescribePatchPropertiesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribePatchPropertiesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribePatchPropertiesWithContext(context.Context, *ssm.DescribePatchPropertiesInput, ...request.Option) (*ssm.DescribePatchPropertiesOutput, error) { + panic("unimplemented") +} + +// DescribeSessions implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeSessions of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeSessions(*ssm.DescribeSessionsInput) (*ssm.DescribeSessionsOutput, error) { + panic("unimplemented") +} + +// DescribeSessionsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeSessionsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeSessionsPages(*ssm.DescribeSessionsInput, func(*ssm.DescribeSessionsOutput, bool) bool) error { + panic("unimplemented") +} + +// DescribeSessionsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeSessionsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeSessionsPagesWithContext(context.Context, *ssm.DescribeSessionsInput, func(*ssm.DescribeSessionsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// DescribeSessionsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeSessionsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeSessionsRequest(*ssm.DescribeSessionsInput) (*request.Request, *ssm.DescribeSessionsOutput) { + panic("unimplemented") +} + +// DescribeSessionsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DescribeSessionsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DescribeSessionsWithContext(context.Context, *ssm.DescribeSessionsInput, ...request.Option) (*ssm.DescribeSessionsOutput, error) { + panic("unimplemented") +} + +// DisassociateOpsItemRelatedItem implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DisassociateOpsItemRelatedItem of mockedSSM.SSMAPI. +func (m *mockedSSM) DisassociateOpsItemRelatedItem(*ssm.DisassociateOpsItemRelatedItemInput) (*ssm.DisassociateOpsItemRelatedItemOutput, error) { + panic("unimplemented") +} + +// DisassociateOpsItemRelatedItemRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DisassociateOpsItemRelatedItemRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) DisassociateOpsItemRelatedItemRequest(*ssm.DisassociateOpsItemRelatedItemInput) (*request.Request, *ssm.DisassociateOpsItemRelatedItemOutput) { + panic("unimplemented") +} + +// DisassociateOpsItemRelatedItemWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).DisassociateOpsItemRelatedItemWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) DisassociateOpsItemRelatedItemWithContext(context.Context, *ssm.DisassociateOpsItemRelatedItemInput, ...request.Option) (*ssm.DisassociateOpsItemRelatedItemOutput, error) { + panic("unimplemented") +} + +// GetAutomationExecution implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetAutomationExecution of mockedSSM.SSMAPI. +func (m *mockedSSM) GetAutomationExecution(*ssm.GetAutomationExecutionInput) (*ssm.GetAutomationExecutionOutput, error) { + panic("unimplemented") +} + +// GetAutomationExecutionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetAutomationExecutionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetAutomationExecutionRequest(*ssm.GetAutomationExecutionInput) (*request.Request, *ssm.GetAutomationExecutionOutput) { + panic("unimplemented") +} + +// GetAutomationExecutionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetAutomationExecutionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetAutomationExecutionWithContext(context.Context, *ssm.GetAutomationExecutionInput, ...request.Option) (*ssm.GetAutomationExecutionOutput, error) { + panic("unimplemented") +} + +// GetCalendarState implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetCalendarState of mockedSSM.SSMAPI. +func (m *mockedSSM) GetCalendarState(*ssm.GetCalendarStateInput) (*ssm.GetCalendarStateOutput, error) { + panic("unimplemented") +} + +// GetCalendarStateRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetCalendarStateRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetCalendarStateRequest(*ssm.GetCalendarStateInput) (*request.Request, *ssm.GetCalendarStateOutput) { + panic("unimplemented") +} + +// GetCalendarStateWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetCalendarStateWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetCalendarStateWithContext(context.Context, *ssm.GetCalendarStateInput, ...request.Option) (*ssm.GetCalendarStateOutput, error) { + panic("unimplemented") +} + +// GetCommandInvocation implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetCommandInvocation of mockedSSM.SSMAPI. +func (m *mockedSSM) GetCommandInvocation(*ssm.GetCommandInvocationInput) (*ssm.GetCommandInvocationOutput, error) { + panic("unimplemented") +} + +// GetCommandInvocationRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetCommandInvocationRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetCommandInvocationRequest(*ssm.GetCommandInvocationInput) (*request.Request, *ssm.GetCommandInvocationOutput) { + panic("unimplemented") +} + +// GetCommandInvocationWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetCommandInvocationWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetCommandInvocationWithContext(context.Context, *ssm.GetCommandInvocationInput, ...request.Option) (*ssm.GetCommandInvocationOutput, error) { + panic("unimplemented") +} + +// GetConnectionStatus implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetConnectionStatus of mockedSSM.SSMAPI. +func (m *mockedSSM) GetConnectionStatus(*ssm.GetConnectionStatusInput) (*ssm.GetConnectionStatusOutput, error) { + panic("unimplemented") +} + +// GetConnectionStatusRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetConnectionStatusRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetConnectionStatusRequest(*ssm.GetConnectionStatusInput) (*request.Request, *ssm.GetConnectionStatusOutput) { + panic("unimplemented") +} + +// GetConnectionStatusWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetConnectionStatusWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetConnectionStatusWithContext(context.Context, *ssm.GetConnectionStatusInput, ...request.Option) (*ssm.GetConnectionStatusOutput, error) { + panic("unimplemented") +} + +// GetDefaultPatchBaseline implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetDefaultPatchBaseline of mockedSSM.SSMAPI. +func (m *mockedSSM) GetDefaultPatchBaseline(*ssm.GetDefaultPatchBaselineInput) (*ssm.GetDefaultPatchBaselineOutput, error) { + panic("unimplemented") +} + +// GetDefaultPatchBaselineRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetDefaultPatchBaselineRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetDefaultPatchBaselineRequest(*ssm.GetDefaultPatchBaselineInput) (*request.Request, *ssm.GetDefaultPatchBaselineOutput) { + panic("unimplemented") +} + +// GetDefaultPatchBaselineWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetDefaultPatchBaselineWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetDefaultPatchBaselineWithContext(context.Context, *ssm.GetDefaultPatchBaselineInput, ...request.Option) (*ssm.GetDefaultPatchBaselineOutput, error) { + panic("unimplemented") +} + +// GetDeployablePatchSnapshotForInstance implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetDeployablePatchSnapshotForInstance of mockedSSM.SSMAPI. +func (m *mockedSSM) GetDeployablePatchSnapshotForInstance(*ssm.GetDeployablePatchSnapshotForInstanceInput) (*ssm.GetDeployablePatchSnapshotForInstanceOutput, error) { + panic("unimplemented") +} + +// GetDeployablePatchSnapshotForInstanceRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetDeployablePatchSnapshotForInstanceRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetDeployablePatchSnapshotForInstanceRequest(*ssm.GetDeployablePatchSnapshotForInstanceInput) (*request.Request, *ssm.GetDeployablePatchSnapshotForInstanceOutput) { + panic("unimplemented") +} + +// GetDeployablePatchSnapshotForInstanceWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetDeployablePatchSnapshotForInstanceWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetDeployablePatchSnapshotForInstanceWithContext(context.Context, *ssm.GetDeployablePatchSnapshotForInstanceInput, ...request.Option) (*ssm.GetDeployablePatchSnapshotForInstanceOutput, error) { + panic("unimplemented") +} + +// GetDocument implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetDocument of mockedSSM.SSMAPI. +func (m *mockedSSM) GetDocument(*ssm.GetDocumentInput) (*ssm.GetDocumentOutput, error) { + panic("unimplemented") +} + +// GetDocumentRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetDocumentRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetDocumentRequest(*ssm.GetDocumentInput) (*request.Request, *ssm.GetDocumentOutput) { + panic("unimplemented") +} + +// GetDocumentWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetDocumentWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetDocumentWithContext(context.Context, *ssm.GetDocumentInput, ...request.Option) (*ssm.GetDocumentOutput, error) { + panic("unimplemented") +} + +// GetInventory implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetInventory of mockedSSM.SSMAPI. +func (m *mockedSSM) GetInventory(*ssm.GetInventoryInput) (*ssm.GetInventoryOutput, error) { + panic("unimplemented") +} + +// GetInventoryPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetInventoryPages of mockedSSM.SSMAPI. +func (m *mockedSSM) GetInventoryPages(*ssm.GetInventoryInput, func(*ssm.GetInventoryOutput, bool) bool) error { + panic("unimplemented") +} + +// GetInventoryPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetInventoryPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetInventoryPagesWithContext(context.Context, *ssm.GetInventoryInput, func(*ssm.GetInventoryOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// GetInventoryRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetInventoryRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetInventoryRequest(*ssm.GetInventoryInput) (*request.Request, *ssm.GetInventoryOutput) { + panic("unimplemented") +} + +// GetInventorySchema implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetInventorySchema of mockedSSM.SSMAPI. +func (m *mockedSSM) GetInventorySchema(*ssm.GetInventorySchemaInput) (*ssm.GetInventorySchemaOutput, error) { + panic("unimplemented") +} + +// GetInventorySchemaPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetInventorySchemaPages of mockedSSM.SSMAPI. +func (m *mockedSSM) GetInventorySchemaPages(*ssm.GetInventorySchemaInput, func(*ssm.GetInventorySchemaOutput, bool) bool) error { + panic("unimplemented") +} + +// GetInventorySchemaPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetInventorySchemaPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetInventorySchemaPagesWithContext(context.Context, *ssm.GetInventorySchemaInput, func(*ssm.GetInventorySchemaOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// GetInventorySchemaRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetInventorySchemaRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetInventorySchemaRequest(*ssm.GetInventorySchemaInput) (*request.Request, *ssm.GetInventorySchemaOutput) { + panic("unimplemented") +} + +// GetInventorySchemaWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetInventorySchemaWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetInventorySchemaWithContext(context.Context, *ssm.GetInventorySchemaInput, ...request.Option) (*ssm.GetInventorySchemaOutput, error) { + panic("unimplemented") +} + +// GetInventoryWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetInventoryWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetInventoryWithContext(context.Context, *ssm.GetInventoryInput, ...request.Option) (*ssm.GetInventoryOutput, error) { + panic("unimplemented") +} + +// GetMaintenanceWindow implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindow of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindow(*ssm.GetMaintenanceWindowInput) (*ssm.GetMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// GetMaintenanceWindowExecution implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowExecution of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowExecution(*ssm.GetMaintenanceWindowExecutionInput) (*ssm.GetMaintenanceWindowExecutionOutput, error) { + panic("unimplemented") +} + +// GetMaintenanceWindowExecutionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowExecutionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowExecutionRequest(*ssm.GetMaintenanceWindowExecutionInput) (*request.Request, *ssm.GetMaintenanceWindowExecutionOutput) { + panic("unimplemented") +} + +// GetMaintenanceWindowExecutionTask implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowExecutionTask of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowExecutionTask(*ssm.GetMaintenanceWindowExecutionTaskInput) (*ssm.GetMaintenanceWindowExecutionTaskOutput, error) { + panic("unimplemented") +} + +// GetMaintenanceWindowExecutionTaskInvocation implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowExecutionTaskInvocation of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowExecutionTaskInvocation(*ssm.GetMaintenanceWindowExecutionTaskInvocationInput) (*ssm.GetMaintenanceWindowExecutionTaskInvocationOutput, error) { + panic("unimplemented") +} + +// GetMaintenanceWindowExecutionTaskInvocationRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowExecutionTaskInvocationRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowExecutionTaskInvocationRequest(*ssm.GetMaintenanceWindowExecutionTaskInvocationInput) (*request.Request, *ssm.GetMaintenanceWindowExecutionTaskInvocationOutput) { + panic("unimplemented") +} + +// GetMaintenanceWindowExecutionTaskInvocationWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowExecutionTaskInvocationWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowExecutionTaskInvocationWithContext(context.Context, *ssm.GetMaintenanceWindowExecutionTaskInvocationInput, ...request.Option) (*ssm.GetMaintenanceWindowExecutionTaskInvocationOutput, error) { + panic("unimplemented") +} + +// GetMaintenanceWindowExecutionTaskRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowExecutionTaskRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowExecutionTaskRequest(*ssm.GetMaintenanceWindowExecutionTaskInput) (*request.Request, *ssm.GetMaintenanceWindowExecutionTaskOutput) { + panic("unimplemented") +} + +// GetMaintenanceWindowExecutionTaskWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowExecutionTaskWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowExecutionTaskWithContext(context.Context, *ssm.GetMaintenanceWindowExecutionTaskInput, ...request.Option) (*ssm.GetMaintenanceWindowExecutionTaskOutput, error) { + panic("unimplemented") +} + +// GetMaintenanceWindowExecutionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowExecutionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowExecutionWithContext(context.Context, *ssm.GetMaintenanceWindowExecutionInput, ...request.Option) (*ssm.GetMaintenanceWindowExecutionOutput, error) { + panic("unimplemented") +} + +// GetMaintenanceWindowRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowRequest(*ssm.GetMaintenanceWindowInput) (*request.Request, *ssm.GetMaintenanceWindowOutput) { + panic("unimplemented") +} + +// GetMaintenanceWindowTask implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowTask of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowTask(*ssm.GetMaintenanceWindowTaskInput) (*ssm.GetMaintenanceWindowTaskOutput, error) { + panic("unimplemented") +} + +// GetMaintenanceWindowTaskRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowTaskRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowTaskRequest(*ssm.GetMaintenanceWindowTaskInput) (*request.Request, *ssm.GetMaintenanceWindowTaskOutput) { + panic("unimplemented") +} + +// GetMaintenanceWindowTaskWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowTaskWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowTaskWithContext(context.Context, *ssm.GetMaintenanceWindowTaskInput, ...request.Option) (*ssm.GetMaintenanceWindowTaskOutput, error) { + panic("unimplemented") +} + +// GetMaintenanceWindowWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetMaintenanceWindowWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetMaintenanceWindowWithContext(context.Context, *ssm.GetMaintenanceWindowInput, ...request.Option) (*ssm.GetMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// GetOpsItem implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsItem of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsItem(*ssm.GetOpsItemInput) (*ssm.GetOpsItemOutput, error) { + panic("unimplemented") +} + +// GetOpsItemRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsItemRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsItemRequest(*ssm.GetOpsItemInput) (*request.Request, *ssm.GetOpsItemOutput) { + panic("unimplemented") +} + +// GetOpsItemWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsItemWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsItemWithContext(context.Context, *ssm.GetOpsItemInput, ...request.Option) (*ssm.GetOpsItemOutput, error) { + panic("unimplemented") +} + +// GetOpsMetadata implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsMetadata of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsMetadata(*ssm.GetOpsMetadataInput) (*ssm.GetOpsMetadataOutput, error) { + panic("unimplemented") +} + +// GetOpsMetadataRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsMetadataRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsMetadataRequest(*ssm.GetOpsMetadataInput) (*request.Request, *ssm.GetOpsMetadataOutput) { + panic("unimplemented") +} + +// GetOpsMetadataWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsMetadataWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsMetadataWithContext(context.Context, *ssm.GetOpsMetadataInput, ...request.Option) (*ssm.GetOpsMetadataOutput, error) { + panic("unimplemented") +} + +// GetOpsSummary implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsSummary of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsSummary(*ssm.GetOpsSummaryInput) (*ssm.GetOpsSummaryOutput, error) { + panic("unimplemented") +} + +// GetOpsSummaryPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsSummaryPages of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsSummaryPages(*ssm.GetOpsSummaryInput, func(*ssm.GetOpsSummaryOutput, bool) bool) error { + panic("unimplemented") +} + +// GetOpsSummaryPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsSummaryPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsSummaryPagesWithContext(context.Context, *ssm.GetOpsSummaryInput, func(*ssm.GetOpsSummaryOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// GetOpsSummaryRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsSummaryRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsSummaryRequest(*ssm.GetOpsSummaryInput) (*request.Request, *ssm.GetOpsSummaryOutput) { + panic("unimplemented") +} + +// GetOpsSummaryWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetOpsSummaryWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetOpsSummaryWithContext(context.Context, *ssm.GetOpsSummaryInput, ...request.Option) (*ssm.GetOpsSummaryOutput, error) { + panic("unimplemented") +} + +// GetParameterHistory implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParameterHistory of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParameterHistory(*ssm.GetParameterHistoryInput) (*ssm.GetParameterHistoryOutput, error) { + panic("unimplemented") +} + +// GetParameterHistoryPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParameterHistoryPages of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParameterHistoryPages(*ssm.GetParameterHistoryInput, func(*ssm.GetParameterHistoryOutput, bool) bool) error { + panic("unimplemented") +} + +// GetParameterHistoryPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParameterHistoryPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParameterHistoryPagesWithContext(context.Context, *ssm.GetParameterHistoryInput, func(*ssm.GetParameterHistoryOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// GetParameterHistoryRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParameterHistoryRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParameterHistoryRequest(*ssm.GetParameterHistoryInput) (*request.Request, *ssm.GetParameterHistoryOutput) { + panic("unimplemented") +} + +// GetParameterHistoryWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParameterHistoryWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParameterHistoryWithContext(context.Context, *ssm.GetParameterHistoryInput, ...request.Option) (*ssm.GetParameterHistoryOutput, error) { + panic("unimplemented") +} + +// GetParameterRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParameterRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParameterRequest(*ssm.GetParameterInput) (*request.Request, *ssm.GetParameterOutput) { + panic("unimplemented") +} + +// GetParameterWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParameterWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParameterWithContext(context.Context, *ssm.GetParameterInput, ...request.Option) (*ssm.GetParameterOutput, error) { + panic("unimplemented") +} + +// GetParameters implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParameters of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParameters(*ssm.GetParametersInput) (*ssm.GetParametersOutput, error) { + panic("unimplemented") +} + +// GetParametersByPath implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParametersByPath of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParametersByPath(*ssm.GetParametersByPathInput) (*ssm.GetParametersByPathOutput, error) { + panic("unimplemented") +} + +// GetParametersByPathPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParametersByPathPages of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParametersByPathPages(*ssm.GetParametersByPathInput, func(*ssm.GetParametersByPathOutput, bool) bool) error { + panic("unimplemented") +} + +// GetParametersByPathPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParametersByPathPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParametersByPathPagesWithContext(context.Context, *ssm.GetParametersByPathInput, func(*ssm.GetParametersByPathOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// GetParametersByPathRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParametersByPathRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParametersByPathRequest(*ssm.GetParametersByPathInput) (*request.Request, *ssm.GetParametersByPathOutput) { + panic("unimplemented") +} + +// GetParametersByPathWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParametersByPathWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParametersByPathWithContext(context.Context, *ssm.GetParametersByPathInput, ...request.Option) (*ssm.GetParametersByPathOutput, error) { + panic("unimplemented") +} + +// GetParametersRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParametersRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParametersRequest(*ssm.GetParametersInput) (*request.Request, *ssm.GetParametersOutput) { + panic("unimplemented") +} + +// GetParametersWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetParametersWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetParametersWithContext(context.Context, *ssm.GetParametersInput, ...request.Option) (*ssm.GetParametersOutput, error) { + panic("unimplemented") +} + +// GetPatchBaseline implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetPatchBaseline of mockedSSM.SSMAPI. +func (m *mockedSSM) GetPatchBaseline(*ssm.GetPatchBaselineInput) (*ssm.GetPatchBaselineOutput, error) { + panic("unimplemented") +} + +// GetPatchBaselineForPatchGroup implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetPatchBaselineForPatchGroup of mockedSSM.SSMAPI. +func (m *mockedSSM) GetPatchBaselineForPatchGroup(*ssm.GetPatchBaselineForPatchGroupInput) (*ssm.GetPatchBaselineForPatchGroupOutput, error) { + panic("unimplemented") +} + +// GetPatchBaselineForPatchGroupRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetPatchBaselineForPatchGroupRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetPatchBaselineForPatchGroupRequest(*ssm.GetPatchBaselineForPatchGroupInput) (*request.Request, *ssm.GetPatchBaselineForPatchGroupOutput) { + panic("unimplemented") +} + +// GetPatchBaselineForPatchGroupWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetPatchBaselineForPatchGroupWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetPatchBaselineForPatchGroupWithContext(context.Context, *ssm.GetPatchBaselineForPatchGroupInput, ...request.Option) (*ssm.GetPatchBaselineForPatchGroupOutput, error) { + panic("unimplemented") +} + +// GetPatchBaselineRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetPatchBaselineRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetPatchBaselineRequest(*ssm.GetPatchBaselineInput) (*request.Request, *ssm.GetPatchBaselineOutput) { + panic("unimplemented") +} + +// GetPatchBaselineWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetPatchBaselineWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetPatchBaselineWithContext(context.Context, *ssm.GetPatchBaselineInput, ...request.Option) (*ssm.GetPatchBaselineOutput, error) { + panic("unimplemented") +} + +// GetResourcePolicies implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetResourcePolicies of mockedSSM.SSMAPI. +func (m *mockedSSM) GetResourcePolicies(*ssm.GetResourcePoliciesInput) (*ssm.GetResourcePoliciesOutput, error) { + panic("unimplemented") +} + +// GetResourcePoliciesPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetResourcePoliciesPages of mockedSSM.SSMAPI. +func (m *mockedSSM) GetResourcePoliciesPages(*ssm.GetResourcePoliciesInput, func(*ssm.GetResourcePoliciesOutput, bool) bool) error { + panic("unimplemented") +} + +// GetResourcePoliciesPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetResourcePoliciesPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetResourcePoliciesPagesWithContext(context.Context, *ssm.GetResourcePoliciesInput, func(*ssm.GetResourcePoliciesOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// GetResourcePoliciesRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetResourcePoliciesRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetResourcePoliciesRequest(*ssm.GetResourcePoliciesInput) (*request.Request, *ssm.GetResourcePoliciesOutput) { + panic("unimplemented") +} + +// GetResourcePoliciesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetResourcePoliciesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetResourcePoliciesWithContext(context.Context, *ssm.GetResourcePoliciesInput, ...request.Option) (*ssm.GetResourcePoliciesOutput, error) { + panic("unimplemented") +} + +// GetServiceSetting implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetServiceSetting of mockedSSM.SSMAPI. +func (m *mockedSSM) GetServiceSetting(*ssm.GetServiceSettingInput) (*ssm.GetServiceSettingOutput, error) { + panic("unimplemented") +} + +// GetServiceSettingRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetServiceSettingRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) GetServiceSettingRequest(*ssm.GetServiceSettingInput) (*request.Request, *ssm.GetServiceSettingOutput) { + panic("unimplemented") +} + +// GetServiceSettingWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).GetServiceSettingWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) GetServiceSettingWithContext(context.Context, *ssm.GetServiceSettingInput, ...request.Option) (*ssm.GetServiceSettingOutput, error) { + panic("unimplemented") +} + +// LabelParameterVersion implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).LabelParameterVersion of mockedSSM.SSMAPI. +func (m *mockedSSM) LabelParameterVersion(*ssm.LabelParameterVersionInput) (*ssm.LabelParameterVersionOutput, error) { + panic("unimplemented") +} + +// LabelParameterVersionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).LabelParameterVersionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) LabelParameterVersionRequest(*ssm.LabelParameterVersionInput) (*request.Request, *ssm.LabelParameterVersionOutput) { + panic("unimplemented") +} + +// LabelParameterVersionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).LabelParameterVersionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) LabelParameterVersionWithContext(context.Context, *ssm.LabelParameterVersionInput, ...request.Option) (*ssm.LabelParameterVersionOutput, error) { + panic("unimplemented") +} + +// ListAssociationVersions implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListAssociationVersions of mockedSSM.SSMAPI. +func (m *mockedSSM) ListAssociationVersions(*ssm.ListAssociationVersionsInput) (*ssm.ListAssociationVersionsOutput, error) { + panic("unimplemented") +} + +// ListAssociationVersionsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListAssociationVersionsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListAssociationVersionsPages(*ssm.ListAssociationVersionsInput, func(*ssm.ListAssociationVersionsOutput, bool) bool) error { + panic("unimplemented") +} + +// ListAssociationVersionsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListAssociationVersionsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListAssociationVersionsPagesWithContext(context.Context, *ssm.ListAssociationVersionsInput, func(*ssm.ListAssociationVersionsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListAssociationVersionsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListAssociationVersionsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListAssociationVersionsRequest(*ssm.ListAssociationVersionsInput) (*request.Request, *ssm.ListAssociationVersionsOutput) { + panic("unimplemented") +} + +// ListAssociationVersionsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListAssociationVersionsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListAssociationVersionsWithContext(context.Context, *ssm.ListAssociationVersionsInput, ...request.Option) (*ssm.ListAssociationVersionsOutput, error) { + panic("unimplemented") +} + +// ListAssociations implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListAssociations of mockedSSM.SSMAPI. +func (m *mockedSSM) ListAssociations(*ssm.ListAssociationsInput) (*ssm.ListAssociationsOutput, error) { + panic("unimplemented") +} + +// ListAssociationsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListAssociationsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListAssociationsPages(*ssm.ListAssociationsInput, func(*ssm.ListAssociationsOutput, bool) bool) error { + panic("unimplemented") +} + +// ListAssociationsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListAssociationsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListAssociationsPagesWithContext(context.Context, *ssm.ListAssociationsInput, func(*ssm.ListAssociationsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListAssociationsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListAssociationsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListAssociationsRequest(*ssm.ListAssociationsInput) (*request.Request, *ssm.ListAssociationsOutput) { + panic("unimplemented") +} + +// ListAssociationsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListAssociationsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListAssociationsWithContext(context.Context, *ssm.ListAssociationsInput, ...request.Option) (*ssm.ListAssociationsOutput, error) { + panic("unimplemented") +} + +// ListCommandInvocations implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListCommandInvocations of mockedSSM.SSMAPI. +func (m *mockedSSM) ListCommandInvocations(*ssm.ListCommandInvocationsInput) (*ssm.ListCommandInvocationsOutput, error) { + panic("unimplemented") +} + +// ListCommandInvocationsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListCommandInvocationsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListCommandInvocationsPages(*ssm.ListCommandInvocationsInput, func(*ssm.ListCommandInvocationsOutput, bool) bool) error { + panic("unimplemented") +} + +// ListCommandInvocationsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListCommandInvocationsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListCommandInvocationsPagesWithContext(context.Context, *ssm.ListCommandInvocationsInput, func(*ssm.ListCommandInvocationsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListCommandInvocationsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListCommandInvocationsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListCommandInvocationsRequest(*ssm.ListCommandInvocationsInput) (*request.Request, *ssm.ListCommandInvocationsOutput) { + panic("unimplemented") +} + +// ListCommandInvocationsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListCommandInvocationsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListCommandInvocationsWithContext(context.Context, *ssm.ListCommandInvocationsInput, ...request.Option) (*ssm.ListCommandInvocationsOutput, error) { + panic("unimplemented") +} + +// ListCommands implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListCommands of mockedSSM.SSMAPI. +func (m *mockedSSM) ListCommands(*ssm.ListCommandsInput) (*ssm.ListCommandsOutput, error) { + panic("unimplemented") +} + +// ListCommandsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListCommandsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListCommandsPages(*ssm.ListCommandsInput, func(*ssm.ListCommandsOutput, bool) bool) error { + panic("unimplemented") +} + +// ListCommandsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListCommandsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListCommandsPagesWithContext(context.Context, *ssm.ListCommandsInput, func(*ssm.ListCommandsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListCommandsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListCommandsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListCommandsRequest(*ssm.ListCommandsInput) (*request.Request, *ssm.ListCommandsOutput) { + panic("unimplemented") +} + +// ListCommandsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListCommandsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListCommandsWithContext(context.Context, *ssm.ListCommandsInput, ...request.Option) (*ssm.ListCommandsOutput, error) { + panic("unimplemented") +} + +// ListComplianceItems implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListComplianceItems of mockedSSM.SSMAPI. +func (m *mockedSSM) ListComplianceItems(*ssm.ListComplianceItemsInput) (*ssm.ListComplianceItemsOutput, error) { + panic("unimplemented") +} + +// ListComplianceItemsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListComplianceItemsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListComplianceItemsPages(*ssm.ListComplianceItemsInput, func(*ssm.ListComplianceItemsOutput, bool) bool) error { + panic("unimplemented") +} + +// ListComplianceItemsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListComplianceItemsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListComplianceItemsPagesWithContext(context.Context, *ssm.ListComplianceItemsInput, func(*ssm.ListComplianceItemsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListComplianceItemsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListComplianceItemsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListComplianceItemsRequest(*ssm.ListComplianceItemsInput) (*request.Request, *ssm.ListComplianceItemsOutput) { + panic("unimplemented") +} + +// ListComplianceItemsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListComplianceItemsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListComplianceItemsWithContext(context.Context, *ssm.ListComplianceItemsInput, ...request.Option) (*ssm.ListComplianceItemsOutput, error) { + panic("unimplemented") +} + +// ListComplianceSummaries implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListComplianceSummaries of mockedSSM.SSMAPI. +func (m *mockedSSM) ListComplianceSummaries(*ssm.ListComplianceSummariesInput) (*ssm.ListComplianceSummariesOutput, error) { + panic("unimplemented") +} + +// ListComplianceSummariesPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListComplianceSummariesPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListComplianceSummariesPages(*ssm.ListComplianceSummariesInput, func(*ssm.ListComplianceSummariesOutput, bool) bool) error { + panic("unimplemented") +} + +// ListComplianceSummariesPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListComplianceSummariesPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListComplianceSummariesPagesWithContext(context.Context, *ssm.ListComplianceSummariesInput, func(*ssm.ListComplianceSummariesOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListComplianceSummariesRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListComplianceSummariesRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListComplianceSummariesRequest(*ssm.ListComplianceSummariesInput) (*request.Request, *ssm.ListComplianceSummariesOutput) { + panic("unimplemented") +} + +// ListComplianceSummariesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListComplianceSummariesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListComplianceSummariesWithContext(context.Context, *ssm.ListComplianceSummariesInput, ...request.Option) (*ssm.ListComplianceSummariesOutput, error) { + panic("unimplemented") +} + +// ListDocumentMetadataHistory implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentMetadataHistory of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentMetadataHistory(*ssm.ListDocumentMetadataHistoryInput) (*ssm.ListDocumentMetadataHistoryOutput, error) { + panic("unimplemented") +} + +// ListDocumentMetadataHistoryRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentMetadataHistoryRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentMetadataHistoryRequest(*ssm.ListDocumentMetadataHistoryInput) (*request.Request, *ssm.ListDocumentMetadataHistoryOutput) { + panic("unimplemented") +} + +// ListDocumentMetadataHistoryWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentMetadataHistoryWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentMetadataHistoryWithContext(context.Context, *ssm.ListDocumentMetadataHistoryInput, ...request.Option) (*ssm.ListDocumentMetadataHistoryOutput, error) { + panic("unimplemented") +} + +// ListDocumentVersions implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentVersions of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentVersions(*ssm.ListDocumentVersionsInput) (*ssm.ListDocumentVersionsOutput, error) { + panic("unimplemented") +} + +// ListDocumentVersionsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentVersionsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentVersionsPages(*ssm.ListDocumentVersionsInput, func(*ssm.ListDocumentVersionsOutput, bool) bool) error { + panic("unimplemented") +} + +// ListDocumentVersionsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentVersionsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentVersionsPagesWithContext(context.Context, *ssm.ListDocumentVersionsInput, func(*ssm.ListDocumentVersionsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListDocumentVersionsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentVersionsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentVersionsRequest(*ssm.ListDocumentVersionsInput) (*request.Request, *ssm.ListDocumentVersionsOutput) { + panic("unimplemented") +} + +// ListDocumentVersionsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentVersionsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentVersionsWithContext(context.Context, *ssm.ListDocumentVersionsInput, ...request.Option) (*ssm.ListDocumentVersionsOutput, error) { + panic("unimplemented") +} + +// ListDocuments implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocuments of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocuments(*ssm.ListDocumentsInput) (*ssm.ListDocumentsOutput, error) { + panic("unimplemented") +} + +// ListDocumentsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentsPages(*ssm.ListDocumentsInput, func(*ssm.ListDocumentsOutput, bool) bool) error { + panic("unimplemented") +} + +// ListDocumentsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentsPagesWithContext(context.Context, *ssm.ListDocumentsInput, func(*ssm.ListDocumentsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListDocumentsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentsRequest(*ssm.ListDocumentsInput) (*request.Request, *ssm.ListDocumentsOutput) { + panic("unimplemented") +} + +// ListDocumentsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListDocumentsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListDocumentsWithContext(context.Context, *ssm.ListDocumentsInput, ...request.Option) (*ssm.ListDocumentsOutput, error) { + panic("unimplemented") +} + +// ListInventoryEntries implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListInventoryEntries of mockedSSM.SSMAPI. +func (m *mockedSSM) ListInventoryEntries(*ssm.ListInventoryEntriesInput) (*ssm.ListInventoryEntriesOutput, error) { + panic("unimplemented") +} + +// ListInventoryEntriesRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListInventoryEntriesRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListInventoryEntriesRequest(*ssm.ListInventoryEntriesInput) (*request.Request, *ssm.ListInventoryEntriesOutput) { + panic("unimplemented") +} + +// ListInventoryEntriesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListInventoryEntriesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListInventoryEntriesWithContext(context.Context, *ssm.ListInventoryEntriesInput, ...request.Option) (*ssm.ListInventoryEntriesOutput, error) { + panic("unimplemented") +} + +// ListOpsItemEvents implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsItemEvents of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsItemEvents(*ssm.ListOpsItemEventsInput) (*ssm.ListOpsItemEventsOutput, error) { + panic("unimplemented") +} + +// ListOpsItemEventsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsItemEventsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsItemEventsPages(*ssm.ListOpsItemEventsInput, func(*ssm.ListOpsItemEventsOutput, bool) bool) error { + panic("unimplemented") +} + +// ListOpsItemEventsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsItemEventsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsItemEventsPagesWithContext(context.Context, *ssm.ListOpsItemEventsInput, func(*ssm.ListOpsItemEventsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListOpsItemEventsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsItemEventsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsItemEventsRequest(*ssm.ListOpsItemEventsInput) (*request.Request, *ssm.ListOpsItemEventsOutput) { + panic("unimplemented") +} + +// ListOpsItemEventsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsItemEventsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsItemEventsWithContext(context.Context, *ssm.ListOpsItemEventsInput, ...request.Option) (*ssm.ListOpsItemEventsOutput, error) { + panic("unimplemented") +} + +// ListOpsItemRelatedItems implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsItemRelatedItems of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsItemRelatedItems(*ssm.ListOpsItemRelatedItemsInput) (*ssm.ListOpsItemRelatedItemsOutput, error) { + panic("unimplemented") +} + +// ListOpsItemRelatedItemsPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsItemRelatedItemsPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsItemRelatedItemsPages(*ssm.ListOpsItemRelatedItemsInput, func(*ssm.ListOpsItemRelatedItemsOutput, bool) bool) error { + panic("unimplemented") +} + +// ListOpsItemRelatedItemsPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsItemRelatedItemsPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsItemRelatedItemsPagesWithContext(context.Context, *ssm.ListOpsItemRelatedItemsInput, func(*ssm.ListOpsItemRelatedItemsOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListOpsItemRelatedItemsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsItemRelatedItemsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsItemRelatedItemsRequest(*ssm.ListOpsItemRelatedItemsInput) (*request.Request, *ssm.ListOpsItemRelatedItemsOutput) { + panic("unimplemented") +} + +// ListOpsItemRelatedItemsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsItemRelatedItemsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsItemRelatedItemsWithContext(context.Context, *ssm.ListOpsItemRelatedItemsInput, ...request.Option) (*ssm.ListOpsItemRelatedItemsOutput, error) { + panic("unimplemented") +} + +// ListOpsMetadata implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsMetadata of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsMetadata(*ssm.ListOpsMetadataInput) (*ssm.ListOpsMetadataOutput, error) { + panic("unimplemented") } -func (m *mockedAws) GetSecretValue(input *secretsmanager.GetSecretValueInput) (*secretsmanager.GetSecretValueOutput, error) { - return m.MockGetSecretValue(input) +// ListOpsMetadataPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsMetadataPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsMetadataPages(*ssm.ListOpsMetadataInput, func(*ssm.ListOpsMetadataOutput, bool) bool) error { + panic("unimplemented") +} + +// ListOpsMetadataPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsMetadataPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsMetadataPagesWithContext(context.Context, *ssm.ListOpsMetadataInput, func(*ssm.ListOpsMetadataOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListOpsMetadataRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsMetadataRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsMetadataRequest(*ssm.ListOpsMetadataInput) (*request.Request, *ssm.ListOpsMetadataOutput) { + panic("unimplemented") +} + +// ListOpsMetadataWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListOpsMetadataWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListOpsMetadataWithContext(context.Context, *ssm.ListOpsMetadataInput, ...request.Option) (*ssm.ListOpsMetadataOutput, error) { + panic("unimplemented") +} + +// ListResourceComplianceSummaries implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListResourceComplianceSummaries of mockedSSM.SSMAPI. +func (m *mockedSSM) ListResourceComplianceSummaries(*ssm.ListResourceComplianceSummariesInput) (*ssm.ListResourceComplianceSummariesOutput, error) { + panic("unimplemented") +} + +// ListResourceComplianceSummariesPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListResourceComplianceSummariesPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListResourceComplianceSummariesPages(*ssm.ListResourceComplianceSummariesInput, func(*ssm.ListResourceComplianceSummariesOutput, bool) bool) error { + panic("unimplemented") +} + +// ListResourceComplianceSummariesPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListResourceComplianceSummariesPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListResourceComplianceSummariesPagesWithContext(context.Context, *ssm.ListResourceComplianceSummariesInput, func(*ssm.ListResourceComplianceSummariesOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListResourceComplianceSummariesRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListResourceComplianceSummariesRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListResourceComplianceSummariesRequest(*ssm.ListResourceComplianceSummariesInput) (*request.Request, *ssm.ListResourceComplianceSummariesOutput) { + panic("unimplemented") +} + +// ListResourceComplianceSummariesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListResourceComplianceSummariesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListResourceComplianceSummariesWithContext(context.Context, *ssm.ListResourceComplianceSummariesInput, ...request.Option) (*ssm.ListResourceComplianceSummariesOutput, error) { + panic("unimplemented") +} + +// ListResourceDataSync implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListResourceDataSync of mockedSSM.SSMAPI. +func (m *mockedSSM) ListResourceDataSync(*ssm.ListResourceDataSyncInput) (*ssm.ListResourceDataSyncOutput, error) { + panic("unimplemented") +} + +// ListResourceDataSyncPages implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListResourceDataSyncPages of mockedSSM.SSMAPI. +func (m *mockedSSM) ListResourceDataSyncPages(*ssm.ListResourceDataSyncInput, func(*ssm.ListResourceDataSyncOutput, bool) bool) error { + panic("unimplemented") +} + +// ListResourceDataSyncPagesWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListResourceDataSyncPagesWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListResourceDataSyncPagesWithContext(context.Context, *ssm.ListResourceDataSyncInput, func(*ssm.ListResourceDataSyncOutput, bool) bool, ...request.Option) error { + panic("unimplemented") +} + +// ListResourceDataSyncRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListResourceDataSyncRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListResourceDataSyncRequest(*ssm.ListResourceDataSyncInput) (*request.Request, *ssm.ListResourceDataSyncOutput) { + panic("unimplemented") +} + +// ListResourceDataSyncWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListResourceDataSyncWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListResourceDataSyncWithContext(context.Context, *ssm.ListResourceDataSyncInput, ...request.Option) (*ssm.ListResourceDataSyncOutput, error) { + panic("unimplemented") +} + +// ListTagsForResource implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListTagsForResource of mockedSSM.SSMAPI. +func (m *mockedSSM) ListTagsForResource(*ssm.ListTagsForResourceInput) (*ssm.ListTagsForResourceOutput, error) { + panic("unimplemented") +} + +// ListTagsForResourceRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListTagsForResourceRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ListTagsForResourceRequest(*ssm.ListTagsForResourceInput) (*request.Request, *ssm.ListTagsForResourceOutput) { + panic("unimplemented") +} + +// ListTagsForResourceWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ListTagsForResourceWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ListTagsForResourceWithContext(context.Context, *ssm.ListTagsForResourceInput, ...request.Option) (*ssm.ListTagsForResourceOutput, error) { + panic("unimplemented") +} + +// ModifyDocumentPermission implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ModifyDocumentPermission of mockedSSM.SSMAPI. +func (m *mockedSSM) ModifyDocumentPermission(*ssm.ModifyDocumentPermissionInput) (*ssm.ModifyDocumentPermissionOutput, error) { + panic("unimplemented") +} + +// ModifyDocumentPermissionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ModifyDocumentPermissionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ModifyDocumentPermissionRequest(*ssm.ModifyDocumentPermissionInput) (*request.Request, *ssm.ModifyDocumentPermissionOutput) { + panic("unimplemented") +} + +// ModifyDocumentPermissionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ModifyDocumentPermissionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ModifyDocumentPermissionWithContext(context.Context, *ssm.ModifyDocumentPermissionInput, ...request.Option) (*ssm.ModifyDocumentPermissionOutput, error) { + panic("unimplemented") +} + +// PutComplianceItems implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).PutComplianceItems of mockedSSM.SSMAPI. +func (m *mockedSSM) PutComplianceItems(*ssm.PutComplianceItemsInput) (*ssm.PutComplianceItemsOutput, error) { + panic("unimplemented") +} + +// PutComplianceItemsRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).PutComplianceItemsRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) PutComplianceItemsRequest(*ssm.PutComplianceItemsInput) (*request.Request, *ssm.PutComplianceItemsOutput) { + panic("unimplemented") +} + +// PutComplianceItemsWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).PutComplianceItemsWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) PutComplianceItemsWithContext(context.Context, *ssm.PutComplianceItemsInput, ...request.Option) (*ssm.PutComplianceItemsOutput, error) { + panic("unimplemented") +} + +// PutInventory implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).PutInventory of mockedSSM.SSMAPI. +func (m *mockedSSM) PutInventory(*ssm.PutInventoryInput) (*ssm.PutInventoryOutput, error) { + panic("unimplemented") +} + +// PutInventoryRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).PutInventoryRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) PutInventoryRequest(*ssm.PutInventoryInput) (*request.Request, *ssm.PutInventoryOutput) { + panic("unimplemented") +} + +// PutInventoryWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).PutInventoryWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) PutInventoryWithContext(context.Context, *ssm.PutInventoryInput, ...request.Option) (*ssm.PutInventoryOutput, error) { + panic("unimplemented") +} + +// PutParameter implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).PutParameter of mockedSSM.SSMAPI. +func (m *mockedSSM) PutParameter(*ssm.PutParameterInput) (*ssm.PutParameterOutput, error) { + panic("unimplemented") +} + +// PutParameterRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).PutParameterRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) PutParameterRequest(*ssm.PutParameterInput) (*request.Request, *ssm.PutParameterOutput) { + panic("unimplemented") +} + +// PutParameterWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).PutParameterWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) PutParameterWithContext(context.Context, *ssm.PutParameterInput, ...request.Option) (*ssm.PutParameterOutput, error) { + panic("unimplemented") +} + +// PutResourcePolicy implements ssmiface.SSMAPI. +func (m *mockedSSM) PutResourcePolicy(*ssm.PutResourcePolicyInput) (*ssm.PutResourcePolicyOutput, error) { + panic("unimplemented") +} + +// PutResourcePolicyRequest implements ssmiface.SSMAPI. +func (m *mockedSSM) PutResourcePolicyRequest(*ssm.PutResourcePolicyInput) (*request.Request, *ssm.PutResourcePolicyOutput) { + panic("unimplemented") +} + +// PutResourcePolicyWithContext implements ssmiface.SSMAPI. +func (m *mockedSSM) PutResourcePolicyWithContext(context.Context, *ssm.PutResourcePolicyInput, ...request.Option) (*ssm.PutResourcePolicyOutput, error) { + panic("unimplemented") +} + +// RegisterDefaultPatchBaseline implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterDefaultPatchBaseline of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterDefaultPatchBaseline(*ssm.RegisterDefaultPatchBaselineInput) (*ssm.RegisterDefaultPatchBaselineOutput, error) { + panic("unimplemented") +} + +// RegisterDefaultPatchBaselineRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterDefaultPatchBaselineRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterDefaultPatchBaselineRequest(*ssm.RegisterDefaultPatchBaselineInput) (*request.Request, *ssm.RegisterDefaultPatchBaselineOutput) { + panic("unimplemented") +} + +// RegisterDefaultPatchBaselineWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterDefaultPatchBaselineWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterDefaultPatchBaselineWithContext(context.Context, *ssm.RegisterDefaultPatchBaselineInput, ...request.Option) (*ssm.RegisterDefaultPatchBaselineOutput, error) { + panic("unimplemented") +} + +// RegisterPatchBaselineForPatchGroup implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterPatchBaselineForPatchGroup of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterPatchBaselineForPatchGroup(*ssm.RegisterPatchBaselineForPatchGroupInput) (*ssm.RegisterPatchBaselineForPatchGroupOutput, error) { + panic("unimplemented") +} + +// RegisterPatchBaselineForPatchGroupRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterPatchBaselineForPatchGroupRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterPatchBaselineForPatchGroupRequest(*ssm.RegisterPatchBaselineForPatchGroupInput) (*request.Request, *ssm.RegisterPatchBaselineForPatchGroupOutput) { + panic("unimplemented") +} + +// RegisterPatchBaselineForPatchGroupWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterPatchBaselineForPatchGroupWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterPatchBaselineForPatchGroupWithContext(context.Context, *ssm.RegisterPatchBaselineForPatchGroupInput, ...request.Option) (*ssm.RegisterPatchBaselineForPatchGroupOutput, error) { + panic("unimplemented") +} + +// RegisterTargetWithMaintenanceWindow implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterTargetWithMaintenanceWindow of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterTargetWithMaintenanceWindow(*ssm.RegisterTargetWithMaintenanceWindowInput) (*ssm.RegisterTargetWithMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// RegisterTargetWithMaintenanceWindowRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterTargetWithMaintenanceWindowRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterTargetWithMaintenanceWindowRequest(*ssm.RegisterTargetWithMaintenanceWindowInput) (*request.Request, *ssm.RegisterTargetWithMaintenanceWindowOutput) { + panic("unimplemented") +} + +// RegisterTargetWithMaintenanceWindowWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterTargetWithMaintenanceWindowWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterTargetWithMaintenanceWindowWithContext(context.Context, *ssm.RegisterTargetWithMaintenanceWindowInput, ...request.Option) (*ssm.RegisterTargetWithMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// RegisterTaskWithMaintenanceWindow implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterTaskWithMaintenanceWindow of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterTaskWithMaintenanceWindow(*ssm.RegisterTaskWithMaintenanceWindowInput) (*ssm.RegisterTaskWithMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// RegisterTaskWithMaintenanceWindowRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterTaskWithMaintenanceWindowRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterTaskWithMaintenanceWindowRequest(*ssm.RegisterTaskWithMaintenanceWindowInput) (*request.Request, *ssm.RegisterTaskWithMaintenanceWindowOutput) { + panic("unimplemented") +} + +// RegisterTaskWithMaintenanceWindowWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RegisterTaskWithMaintenanceWindowWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) RegisterTaskWithMaintenanceWindowWithContext(context.Context, *ssm.RegisterTaskWithMaintenanceWindowInput, ...request.Option) (*ssm.RegisterTaskWithMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// RemoveTagsFromResource implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RemoveTagsFromResource of mockedSSM.SSMAPI. +func (m *mockedSSM) RemoveTagsFromResource(*ssm.RemoveTagsFromResourceInput) (*ssm.RemoveTagsFromResourceOutput, error) { + panic("unimplemented") +} + +// RemoveTagsFromResourceRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RemoveTagsFromResourceRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) RemoveTagsFromResourceRequest(*ssm.RemoveTagsFromResourceInput) (*request.Request, *ssm.RemoveTagsFromResourceOutput) { + panic("unimplemented") +} + +// RemoveTagsFromResourceWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).RemoveTagsFromResourceWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) RemoveTagsFromResourceWithContext(context.Context, *ssm.RemoveTagsFromResourceInput, ...request.Option) (*ssm.RemoveTagsFromResourceOutput, error) { + panic("unimplemented") +} + +// ResetServiceSetting implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ResetServiceSetting of mockedSSM.SSMAPI. +func (m *mockedSSM) ResetServiceSetting(*ssm.ResetServiceSettingInput) (*ssm.ResetServiceSettingOutput, error) { + panic("unimplemented") +} + +// ResetServiceSettingRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ResetServiceSettingRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ResetServiceSettingRequest(*ssm.ResetServiceSettingInput) (*request.Request, *ssm.ResetServiceSettingOutput) { + panic("unimplemented") +} + +// ResetServiceSettingWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ResetServiceSettingWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ResetServiceSettingWithContext(context.Context, *ssm.ResetServiceSettingInput, ...request.Option) (*ssm.ResetServiceSettingOutput, error) { + panic("unimplemented") +} + +// ResumeSession implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ResumeSession of mockedSSM.SSMAPI. +func (m *mockedSSM) ResumeSession(*ssm.ResumeSessionInput) (*ssm.ResumeSessionOutput, error) { + panic("unimplemented") +} + +// ResumeSessionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ResumeSessionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) ResumeSessionRequest(*ssm.ResumeSessionInput) (*request.Request, *ssm.ResumeSessionOutput) { + panic("unimplemented") +} + +// ResumeSessionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).ResumeSessionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) ResumeSessionWithContext(context.Context, *ssm.ResumeSessionInput, ...request.Option) (*ssm.ResumeSessionOutput, error) { + panic("unimplemented") +} + +// SendAutomationSignal implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).SendAutomationSignal of mockedSSM.SSMAPI. +func (m *mockedSSM) SendAutomationSignal(*ssm.SendAutomationSignalInput) (*ssm.SendAutomationSignalOutput, error) { + panic("unimplemented") +} + +// SendAutomationSignalRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).SendAutomationSignalRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) SendAutomationSignalRequest(*ssm.SendAutomationSignalInput) (*request.Request, *ssm.SendAutomationSignalOutput) { + panic("unimplemented") +} + +// SendAutomationSignalWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).SendAutomationSignalWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) SendAutomationSignalWithContext(context.Context, *ssm.SendAutomationSignalInput, ...request.Option) (*ssm.SendAutomationSignalOutput, error) { + panic("unimplemented") +} + +// SendCommand implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).SendCommand of mockedSSM.SSMAPI. +func (m *mockedSSM) SendCommand(*ssm.SendCommandInput) (*ssm.SendCommandOutput, error) { + panic("unimplemented") +} + +// SendCommandRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).SendCommandRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) SendCommandRequest(*ssm.SendCommandInput) (*request.Request, *ssm.SendCommandOutput) { + panic("unimplemented") +} + +// SendCommandWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).SendCommandWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) SendCommandWithContext(context.Context, *ssm.SendCommandInput, ...request.Option) (*ssm.SendCommandOutput, error) { + panic("unimplemented") +} + +// StartAssociationsOnce implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartAssociationsOnce of mockedSSM.SSMAPI. +func (m *mockedSSM) StartAssociationsOnce(*ssm.StartAssociationsOnceInput) (*ssm.StartAssociationsOnceOutput, error) { + panic("unimplemented") +} + +// StartAssociationsOnceRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartAssociationsOnceRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) StartAssociationsOnceRequest(*ssm.StartAssociationsOnceInput) (*request.Request, *ssm.StartAssociationsOnceOutput) { + panic("unimplemented") +} + +// StartAssociationsOnceWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartAssociationsOnceWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) StartAssociationsOnceWithContext(context.Context, *ssm.StartAssociationsOnceInput, ...request.Option) (*ssm.StartAssociationsOnceOutput, error) { + panic("unimplemented") +} + +// StartAutomationExecution implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartAutomationExecution of mockedSSM.SSMAPI. +func (m *mockedSSM) StartAutomationExecution(*ssm.StartAutomationExecutionInput) (*ssm.StartAutomationExecutionOutput, error) { + panic("unimplemented") +} + +// StartAutomationExecutionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartAutomationExecutionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) StartAutomationExecutionRequest(*ssm.StartAutomationExecutionInput) (*request.Request, *ssm.StartAutomationExecutionOutput) { + panic("unimplemented") } -func (m *mockedAws) GetParameter(input *ssm.GetParameterInput) (*ssm.GetParameterOutput, error) { +// StartAutomationExecutionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartAutomationExecutionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) StartAutomationExecutionWithContext(context.Context, *ssm.StartAutomationExecutionInput, ...request.Option) (*ssm.StartAutomationExecutionOutput, error) { + panic("unimplemented") +} + +// StartChangeRequestExecution implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartChangeRequestExecution of mockedSSM.SSMAPI. +func (m *mockedSSM) StartChangeRequestExecution(*ssm.StartChangeRequestExecutionInput) (*ssm.StartChangeRequestExecutionOutput, error) { + panic("unimplemented") +} + +// StartChangeRequestExecutionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartChangeRequestExecutionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) StartChangeRequestExecutionRequest(*ssm.StartChangeRequestExecutionInput) (*request.Request, *ssm.StartChangeRequestExecutionOutput) { + panic("unimplemented") +} + +// StartChangeRequestExecutionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartChangeRequestExecutionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) StartChangeRequestExecutionWithContext(context.Context, *ssm.StartChangeRequestExecutionInput, ...request.Option) (*ssm.StartChangeRequestExecutionOutput, error) { + panic("unimplemented") +} + +// StartSession implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartSession of mockedSSM.SSMAPI. +func (m *mockedSSM) StartSession(*ssm.StartSessionInput) (*ssm.StartSessionOutput, error) { + panic("unimplemented") +} + +// StartSessionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartSessionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) StartSessionRequest(*ssm.StartSessionInput) (*request.Request, *ssm.StartSessionOutput) { + panic("unimplemented") +} + +// StartSessionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StartSessionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) StartSessionWithContext(context.Context, *ssm.StartSessionInput, ...request.Option) (*ssm.StartSessionOutput, error) { + panic("unimplemented") +} + +// StopAutomationExecution implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StopAutomationExecution of mockedSSM.SSMAPI. +func (m *mockedSSM) StopAutomationExecution(*ssm.StopAutomationExecutionInput) (*ssm.StopAutomationExecutionOutput, error) { + panic("unimplemented") +} + +// StopAutomationExecutionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StopAutomationExecutionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) StopAutomationExecutionRequest(*ssm.StopAutomationExecutionInput) (*request.Request, *ssm.StopAutomationExecutionOutput) { + panic("unimplemented") +} + +// StopAutomationExecutionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).StopAutomationExecutionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) StopAutomationExecutionWithContext(context.Context, *ssm.StopAutomationExecutionInput, ...request.Option) (*ssm.StopAutomationExecutionOutput, error) { + panic("unimplemented") +} + +// TerminateSession implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).TerminateSession of mockedSSM.SSMAPI. +func (m *mockedSSM) TerminateSession(*ssm.TerminateSessionInput) (*ssm.TerminateSessionOutput, error) { + panic("unimplemented") +} + +// TerminateSessionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).TerminateSessionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) TerminateSessionRequest(*ssm.TerminateSessionInput) (*request.Request, *ssm.TerminateSessionOutput) { + panic("unimplemented") +} + +// TerminateSessionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).TerminateSessionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) TerminateSessionWithContext(context.Context, *ssm.TerminateSessionInput, ...request.Option) (*ssm.TerminateSessionOutput, error) { + panic("unimplemented") +} + +// UnlabelParameterVersion implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UnlabelParameterVersion of mockedSSM.SSMAPI. +func (m *mockedSSM) UnlabelParameterVersion(*ssm.UnlabelParameterVersionInput) (*ssm.UnlabelParameterVersionOutput, error) { + panic("unimplemented") +} + +// UnlabelParameterVersionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UnlabelParameterVersionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UnlabelParameterVersionRequest(*ssm.UnlabelParameterVersionInput) (*request.Request, *ssm.UnlabelParameterVersionOutput) { + panic("unimplemented") +} + +// UnlabelParameterVersionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UnlabelParameterVersionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UnlabelParameterVersionWithContext(context.Context, *ssm.UnlabelParameterVersionInput, ...request.Option) (*ssm.UnlabelParameterVersionOutput, error) { + panic("unimplemented") +} + +// UpdateAssociation implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateAssociation of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateAssociation(*ssm.UpdateAssociationInput) (*ssm.UpdateAssociationOutput, error) { + panic("unimplemented") +} + +// UpdateAssociationRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateAssociationRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateAssociationRequest(*ssm.UpdateAssociationInput) (*request.Request, *ssm.UpdateAssociationOutput) { + panic("unimplemented") +} + +// UpdateAssociationStatus implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateAssociationStatus of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateAssociationStatus(*ssm.UpdateAssociationStatusInput) (*ssm.UpdateAssociationStatusOutput, error) { + panic("unimplemented") +} + +// UpdateAssociationStatusRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateAssociationStatusRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateAssociationStatusRequest(*ssm.UpdateAssociationStatusInput) (*request.Request, *ssm.UpdateAssociationStatusOutput) { + panic("unimplemented") +} + +// UpdateAssociationStatusWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateAssociationStatusWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateAssociationStatusWithContext(context.Context, *ssm.UpdateAssociationStatusInput, ...request.Option) (*ssm.UpdateAssociationStatusOutput, error) { + panic("unimplemented") +} + +// UpdateAssociationWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateAssociationWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateAssociationWithContext(context.Context, *ssm.UpdateAssociationInput, ...request.Option) (*ssm.UpdateAssociationOutput, error) { + panic("unimplemented") +} + +// UpdateDocument implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateDocument of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateDocument(*ssm.UpdateDocumentInput) (*ssm.UpdateDocumentOutput, error) { + panic("unimplemented") +} + +// UpdateDocumentDefaultVersion implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateDocumentDefaultVersion of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateDocumentDefaultVersion(*ssm.UpdateDocumentDefaultVersionInput) (*ssm.UpdateDocumentDefaultVersionOutput, error) { + panic("unimplemented") +} + +// UpdateDocumentDefaultVersionRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateDocumentDefaultVersionRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateDocumentDefaultVersionRequest(*ssm.UpdateDocumentDefaultVersionInput) (*request.Request, *ssm.UpdateDocumentDefaultVersionOutput) { + panic("unimplemented") +} + +// UpdateDocumentDefaultVersionWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateDocumentDefaultVersionWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateDocumentDefaultVersionWithContext(context.Context, *ssm.UpdateDocumentDefaultVersionInput, ...request.Option) (*ssm.UpdateDocumentDefaultVersionOutput, error) { + panic("unimplemented") +} + +// UpdateDocumentMetadata implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateDocumentMetadata of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateDocumentMetadata(*ssm.UpdateDocumentMetadataInput) (*ssm.UpdateDocumentMetadataOutput, error) { + panic("unimplemented") +} + +// UpdateDocumentMetadataRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateDocumentMetadataRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateDocumentMetadataRequest(*ssm.UpdateDocumentMetadataInput) (*request.Request, *ssm.UpdateDocumentMetadataOutput) { + panic("unimplemented") +} + +// UpdateDocumentMetadataWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateDocumentMetadataWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateDocumentMetadataWithContext(context.Context, *ssm.UpdateDocumentMetadataInput, ...request.Option) (*ssm.UpdateDocumentMetadataOutput, error) { + panic("unimplemented") +} + +// UpdateDocumentRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateDocumentRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateDocumentRequest(*ssm.UpdateDocumentInput) (*request.Request, *ssm.UpdateDocumentOutput) { + panic("unimplemented") +} + +// UpdateDocumentWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateDocumentWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateDocumentWithContext(context.Context, *ssm.UpdateDocumentInput, ...request.Option) (*ssm.UpdateDocumentOutput, error) { + panic("unimplemented") +} + +// UpdateMaintenanceWindow implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateMaintenanceWindow of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateMaintenanceWindow(*ssm.UpdateMaintenanceWindowInput) (*ssm.UpdateMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// UpdateMaintenanceWindowRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateMaintenanceWindowRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateMaintenanceWindowRequest(*ssm.UpdateMaintenanceWindowInput) (*request.Request, *ssm.UpdateMaintenanceWindowOutput) { + panic("unimplemented") +} + +// UpdateMaintenanceWindowTarget implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateMaintenanceWindowTarget of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateMaintenanceWindowTarget(*ssm.UpdateMaintenanceWindowTargetInput) (*ssm.UpdateMaintenanceWindowTargetOutput, error) { + panic("unimplemented") +} + +// UpdateMaintenanceWindowTargetRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateMaintenanceWindowTargetRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateMaintenanceWindowTargetRequest(*ssm.UpdateMaintenanceWindowTargetInput) (*request.Request, *ssm.UpdateMaintenanceWindowTargetOutput) { + panic("unimplemented") +} + +// UpdateMaintenanceWindowTargetWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateMaintenanceWindowTargetWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateMaintenanceWindowTargetWithContext(context.Context, *ssm.UpdateMaintenanceWindowTargetInput, ...request.Option) (*ssm.UpdateMaintenanceWindowTargetOutput, error) { + panic("unimplemented") +} + +// UpdateMaintenanceWindowTask implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateMaintenanceWindowTask of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateMaintenanceWindowTask(*ssm.UpdateMaintenanceWindowTaskInput) (*ssm.UpdateMaintenanceWindowTaskOutput, error) { + panic("unimplemented") +} + +// UpdateMaintenanceWindowTaskRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateMaintenanceWindowTaskRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateMaintenanceWindowTaskRequest(*ssm.UpdateMaintenanceWindowTaskInput) (*request.Request, *ssm.UpdateMaintenanceWindowTaskOutput) { + panic("unimplemented") +} + +// UpdateMaintenanceWindowTaskWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateMaintenanceWindowTaskWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateMaintenanceWindowTaskWithContext(context.Context, *ssm.UpdateMaintenanceWindowTaskInput, ...request.Option) (*ssm.UpdateMaintenanceWindowTaskOutput, error) { + panic("unimplemented") +} + +// UpdateMaintenanceWindowWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateMaintenanceWindowWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateMaintenanceWindowWithContext(context.Context, *ssm.UpdateMaintenanceWindowInput, ...request.Option) (*ssm.UpdateMaintenanceWindowOutput, error) { + panic("unimplemented") +} + +// UpdateManagedInstanceRole implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateManagedInstanceRole of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateManagedInstanceRole(*ssm.UpdateManagedInstanceRoleInput) (*ssm.UpdateManagedInstanceRoleOutput, error) { + panic("unimplemented") +} + +// UpdateManagedInstanceRoleRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateManagedInstanceRoleRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateManagedInstanceRoleRequest(*ssm.UpdateManagedInstanceRoleInput) (*request.Request, *ssm.UpdateManagedInstanceRoleOutput) { + panic("unimplemented") +} + +// UpdateManagedInstanceRoleWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateManagedInstanceRoleWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateManagedInstanceRoleWithContext(context.Context, *ssm.UpdateManagedInstanceRoleInput, ...request.Option) (*ssm.UpdateManagedInstanceRoleOutput, error) { + panic("unimplemented") +} + +// UpdateOpsItem implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateOpsItem of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateOpsItem(*ssm.UpdateOpsItemInput) (*ssm.UpdateOpsItemOutput, error) { + panic("unimplemented") +} + +// UpdateOpsItemRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateOpsItemRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateOpsItemRequest(*ssm.UpdateOpsItemInput) (*request.Request, *ssm.UpdateOpsItemOutput) { + panic("unimplemented") +} + +// UpdateOpsItemWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateOpsItemWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateOpsItemWithContext(context.Context, *ssm.UpdateOpsItemInput, ...request.Option) (*ssm.UpdateOpsItemOutput, error) { + panic("unimplemented") +} + +// UpdateOpsMetadata implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateOpsMetadata of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateOpsMetadata(*ssm.UpdateOpsMetadataInput) (*ssm.UpdateOpsMetadataOutput, error) { + panic("unimplemented") +} + +// UpdateOpsMetadataRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateOpsMetadataRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateOpsMetadataRequest(*ssm.UpdateOpsMetadataInput) (*request.Request, *ssm.UpdateOpsMetadataOutput) { + panic("unimplemented") +} + +// UpdateOpsMetadataWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateOpsMetadataWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateOpsMetadataWithContext(context.Context, *ssm.UpdateOpsMetadataInput, ...request.Option) (*ssm.UpdateOpsMetadataOutput, error) { + panic("unimplemented") +} + +// UpdatePatchBaseline implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdatePatchBaseline of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdatePatchBaseline(*ssm.UpdatePatchBaselineInput) (*ssm.UpdatePatchBaselineOutput, error) { + panic("unimplemented") +} + +// UpdatePatchBaselineRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdatePatchBaselineRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdatePatchBaselineRequest(*ssm.UpdatePatchBaselineInput) (*request.Request, *ssm.UpdatePatchBaselineOutput) { + panic("unimplemented") +} + +// UpdatePatchBaselineWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdatePatchBaselineWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdatePatchBaselineWithContext(context.Context, *ssm.UpdatePatchBaselineInput, ...request.Option) (*ssm.UpdatePatchBaselineOutput, error) { + panic("unimplemented") +} + +// UpdateResourceDataSync implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateResourceDataSync of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateResourceDataSync(*ssm.UpdateResourceDataSyncInput) (*ssm.UpdateResourceDataSyncOutput, error) { + panic("unimplemented") +} + +// UpdateResourceDataSyncRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateResourceDataSyncRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateResourceDataSyncRequest(*ssm.UpdateResourceDataSyncInput) (*request.Request, *ssm.UpdateResourceDataSyncOutput) { + panic("unimplemented") +} + +// UpdateResourceDataSyncWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateResourceDataSyncWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateResourceDataSyncWithContext(context.Context, *ssm.UpdateResourceDataSyncInput, ...request.Option) (*ssm.UpdateResourceDataSyncOutput, error) { + panic("unimplemented") +} + +// UpdateServiceSetting implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateServiceSetting of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateServiceSetting(*ssm.UpdateServiceSettingInput) (*ssm.UpdateServiceSettingOutput, error) { + panic("unimplemented") +} + +// UpdateServiceSettingRequest implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateServiceSettingRequest of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateServiceSettingRequest(*ssm.UpdateServiceSettingInput) (*request.Request, *ssm.UpdateServiceSettingOutput) { + panic("unimplemented") +} + +// UpdateServiceSettingWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).UpdateServiceSettingWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) UpdateServiceSettingWithContext(context.Context, *ssm.UpdateServiceSettingInput, ...request.Option) (*ssm.UpdateServiceSettingOutput, error) { + panic("unimplemented") +} + +// WaitUntilCommandExecuted implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).WaitUntilCommandExecuted of mockedSSM.SSMAPI. +func (m *mockedSSM) WaitUntilCommandExecuted(*ssm.GetCommandInvocationInput) error { + panic("unimplemented") +} + +// WaitUntilCommandExecutedWithContext implements ssmiface.SSMAPI. +// Subtle: this method shadows the method (SSMAPI).WaitUntilCommandExecutedWithContext of mockedSSM.SSMAPI. +func (m *mockedSSM) WaitUntilCommandExecutedWithContext(context.Context, *ssm.GetCommandInvocationInput, ...request.WaiterOption) error { + panic("unimplemented") +} + +func (m *mockedSSM) GetParameter(input *ssm.GetParameterInput) (*ssm.GetParameterOutput, error) { return m.MockGetParameter(input) } +type mockedSecretsManager struct { + secretsmanageriface.SecretsManagerAPI + + MockGetSecretValue func(*secretsmanager.GetSecretValueInput) (*secretsmanager.GetSecretValueOutput, error) +} + +func (m *mockedSecretsManager) GetSecretValue(input *secretsmanager.GetSecretValueInput) (*secretsmanager.GetSecretValueOutput, error) { + return m.MockGetSecretValue(input) +} + func TestOperators(t *testing.T) { cursor := func(s string) *tree.Cursor { c, err := tree.ParseCursor(s) @@ -2003,13 +5058,14 @@ meta: Tree: YAML(`{ "testval": "test", "testmap": {}, "testarr": [] }`), Here: &tree.Cursor{}, } - mock := &mockedAws{} + mockSSM := &mockedSSM{} + mockSecretsManager := &mockedSecretsManager{} var ssmKey string var ssmRet string var ssmErr error - mock.MockGetParameter = func(in *ssm.GetParameterInput) (*ssm.GetParameterOutput, error) { + mockSSM.MockGetParameter = func(in *ssm.GetParameterInput) (*ssm.GetParameterOutput, error) { ssmKey = aws.StringValue(in.Name) return &ssm.GetParameterOutput{ Parameter: &ssm.Parameter{ @@ -2018,8 +5074,8 @@ meta: }, ssmErr } - parameterstoreClient = mock.SSMAPI - secretsManagerClient = mock.SecretsManagerAPI + parameterstoreClient = mockSSM + secretsManagerClient = mockSecretsManager Convey("in shared logic", func() { Convey("should return error if no key given", func() { @@ -2086,7 +5142,7 @@ meta: Convey("should not call AWS API if SkipAws true", func() { SkipAws = true count := 0 - mock.MockGetParameter = func(in *ssm.GetParameterInput) (*ssm.GetParameterOutput, error) { + mockSSM.MockGetParameter = func(in *ssm.GetParameterInput) (*ssm.GetParameterOutput, error) { count = count + 1 return &ssm.GetParameterOutput{ Parameter: &ssm.Parameter{ @@ -2104,7 +5160,7 @@ meta: Convey("awsparam", func() { Convey("should cache lookups", func() { count := 0 - mock.MockGetParameter = func(in *ssm.GetParameterInput) (*ssm.GetParameterOutput, error) { + mockSSM.MockGetParameter = func(in *ssm.GetParameterInput) (*ssm.GetParameterOutput, error) { count = count + 1 return &ssm.GetParameterOutput{ Parameter: &ssm.Parameter{ @@ -2125,7 +5181,7 @@ meta: op = AwsOperator{variant: "awssecret"} Convey("should cache lookups", func() { count := 0 - mock.MockGetSecretValue = func(in *secretsmanager.GetSecretValueInput) (*secretsmanager.GetSecretValueOutput, error) { + mockSecretsManager.MockGetSecretValue = func(in *secretsmanager.GetSecretValueInput) (*secretsmanager.GetSecretValueOutput, error) { count = count + 1 return &secretsmanager.GetSecretValueOutput{ SecretString: aws.String(""), @@ -2141,7 +5197,7 @@ meta: Convey("should use stage if provided", func() { stage := "" - mock.MockGetSecretValue = func(in *secretsmanager.GetSecretValueInput) (*secretsmanager.GetSecretValueOutput, error) { + mockSecretsManager.MockGetSecretValue = func(in *secretsmanager.GetSecretValueInput) (*secretsmanager.GetSecretValueOutput, error) { stage = aws.StringValue(in.VersionStage) return &secretsmanager.GetSecretValueOutput{ SecretString: aws.String(""), @@ -2155,7 +5211,7 @@ meta: Convey("should use version if provided", func() { version := "" - mock.MockGetSecretValue = func(in *secretsmanager.GetSecretValueInput) (*secretsmanager.GetSecretValueOutput, error) { + mockSecretsManager.MockGetSecretValue = func(in *secretsmanager.GetSecretValueInput) (*secretsmanager.GetSecretValueOutput, error) { version = aws.StringValue(in.VersionId) return &secretsmanager.GetSecretValueOutput{ SecretString: aws.String(""), diff --git a/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go b/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go index 069debf1..c3516e01 100644 --- a/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go +++ b/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go @@ -9503,6 +9503,12 @@ var awsPartition = partition{ endpointKey{ Region: "eu-central-1", }: endpoint{}, + endpointKey{ + Region: "eu-north-1", + }: endpoint{}, + endpointKey{ + Region: "eu-south-2", + }: endpoint{}, endpointKey{ Region: "eu-west-1", }: endpoint{}, @@ -32566,6 +32572,9 @@ var awsPartition = partition{ endpointKey{ Region: "ca-central-1", }: endpoint{}, + endpointKey{ + Region: "ca-west-1", + }: endpoint{}, endpointKey{ Region: "eu-central-1", }: endpoint{}, diff --git a/vendor/github.com/aws/aws-sdk-go/aws/version.go b/vendor/github.com/aws/aws-sdk-go/aws/version.go index 514bf3ad..d15e3c84 100644 --- a/vendor/github.com/aws/aws-sdk-go/aws/version.go +++ b/vendor/github.com/aws/aws-sdk-go/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.55.3" +const SDKVersion = "1.55.5" diff --git a/vendor/github.com/homeport/dyff/pkg/dyff/core.go b/vendor/github.com/homeport/dyff/pkg/dyff/core.go index 64dde67e..77c300e5 100644 --- a/vendor/github.com/homeport/dyff/pkg/dyff/core.go +++ b/vendor/github.com/homeport/dyff/pkg/dyff/core.go @@ -38,6 +38,7 @@ type CompareOption func(*compareSettings) type compareSettings struct { NonStandardIdentifierGuessCountThreshold int IgnoreOrderChanges bool + IgnoreWhitespaceChanges bool KubernetesEntityDetection bool AdditionalIdentifiers []string } @@ -71,6 +72,13 @@ func IgnoreOrderChanges(value bool) CompareOption { } } +// IgnoreWhitespaceChanges disables the detection for whitespace only changes +func IgnoreWhitespaceChanges(value bool) CompareOption { + return func(settings *compareSettings) { + settings.IgnoreWhitespaceChanges = value + } +} + // KubernetesEntityDetection enabled detecting entity identifiers from Kubernetes "kind:" and "metadata:" fields. func KubernetesEntityDetection(value bool) CompareOption { return func(settings *compareSettings) { @@ -595,19 +603,24 @@ func (compare *compare) namedEntryLists(path ytbx.Path, identifier listItemIdent } func (compare *compare) nodeValues(path ytbx.Path, from *yamlv3.Node, to *yamlv3.Node) ([]Diff, error) { - result := make([]Diff, 0) if strings.Compare(from.Value, to.Value) != 0 { - result = append(result, Diff{ + // leave and don't report any differences if ignore whitespaces changes is + // configured and it is really only a whitespace only change between the strings + if compare.settings.IgnoreWhitespaceChanges && isWhitespaceOnlyChange(from.Value, to.Value) { + return nil, nil + } + + return []Diff{{ &path, []Detail{{ Kind: MODIFICATION, From: from, To: to, }}, - }) + }}, nil } - return result, nil + return nil, nil } func (compare *compare) boolValues(path ytbx.Path, from *yamlv3.Node, to *yamlv3.Node) ([]Diff, error) { @@ -1135,3 +1148,7 @@ func grab(node *yamlv3.Node, pathString string) (*yamlv3.Node, error) { pathString, ) } + +func isWhitespaceOnlyChange(from string, to string) bool { + return strings.Trim(from, " \n") == strings.Trim(to, " \n") +} diff --git a/vendor/github.com/homeport/dyff/pkg/dyff/output_human.go b/vendor/github.com/homeport/dyff/pkg/dyff/output_human.go index 66c864f8..d3d9dd25 100644 --- a/vendor/github.com/homeport/dyff/pkg/dyff/output_human.go +++ b/vendor/github.com/homeport/dyff/pkg/dyff/output_human.go @@ -632,10 +632,6 @@ func isMultiLine(from string, to string) bool { return strings.Contains(from, "\n") || strings.Contains(to, "\n") } -func isWhitespaceOnlyChange(from string, to string) bool { - return strings.Trim(from, " \n") == strings.Trim(to, " \n") -} - func showWhitespaceCharacters(text string) string { return strings.Replace(strings.Replace(text, "\n", bold("↵\n"), -1), " ", bold("·"), -1) } diff --git a/vendor/golang.org/x/sync/LICENSE b/vendor/golang.org/x/sync/LICENSE index 6a66aea5..2a7cf70d 100644 --- a/vendor/golang.org/x/sync/LICENSE +++ b/vendor/golang.org/x/sync/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009 The Go Authors. All rights reserved. +Copyright 2009 The Go Authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -10,7 +10,7 @@ notice, this list of conditions and the following disclaimer. copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/vendor/golang.org/x/sys/LICENSE b/vendor/golang.org/x/sys/LICENSE index 6a66aea5..2a7cf70d 100644 --- a/vendor/golang.org/x/sys/LICENSE +++ b/vendor/golang.org/x/sys/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009 The Go Authors. All rights reserved. +Copyright 2009 The Go Authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -10,7 +10,7 @@ notice, this list of conditions and the following disclaimer. copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/vendor/golang.org/x/sys/unix/mkerrors.sh b/vendor/golang.org/x/sys/unix/mkerrors.sh index 4ed2e488..d07dd09e 100644 --- a/vendor/golang.org/x/sys/unix/mkerrors.sh +++ b/vendor/golang.org/x/sys/unix/mkerrors.sh @@ -58,6 +58,7 @@ includes_Darwin=' #define _DARWIN_USE_64_BIT_INODE #define __APPLE_USE_RFC_3542 #include +#include #include #include #include diff --git a/vendor/golang.org/x/sys/unix/syscall_darwin.go b/vendor/golang.org/x/sys/unix/syscall_darwin.go index 4cc7b005..2d15200a 100644 --- a/vendor/golang.org/x/sys/unix/syscall_darwin.go +++ b/vendor/golang.org/x/sys/unix/syscall_darwin.go @@ -402,6 +402,18 @@ func IoctlSetIfreqMTU(fd int, ifreq *IfreqMTU) error { return ioctlPtr(fd, SIOCSIFMTU, unsafe.Pointer(ifreq)) } +//sys renamexNp(from string, to string, flag uint32) (err error) + +func RenamexNp(from string, to string, flag uint32) (err error) { + return renamexNp(from, to, flag) +} + +//sys renameatxNp(fromfd int, from string, tofd int, to string, flag uint32) (err error) + +func RenameatxNp(fromfd int, from string, tofd int, to string, flag uint32) (err error) { + return renameatxNp(fromfd, from, tofd, to, flag) +} + //sys sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS_SYSCTL func Uname(uname *Utsname) error { diff --git a/vendor/golang.org/x/sys/unix/syscall_linux.go b/vendor/golang.org/x/sys/unix/syscall_linux.go index 5682e262..3f1d3d4c 100644 --- a/vendor/golang.org/x/sys/unix/syscall_linux.go +++ b/vendor/golang.org/x/sys/unix/syscall_linux.go @@ -2592,3 +2592,4 @@ func SchedGetAttr(pid int, flags uint) (*SchedAttr, error) { } //sys Cachestat(fd uint, crange *CachestatRange, cstat *Cachestat_t, flags uint) (err error) +//sys Mseal(b []byte, flags uint) (err error) diff --git a/vendor/golang.org/x/sys/unix/syscall_openbsd.go b/vendor/golang.org/x/sys/unix/syscall_openbsd.go index b25343c7..b86ded54 100644 --- a/vendor/golang.org/x/sys/unix/syscall_openbsd.go +++ b/vendor/golang.org/x/sys/unix/syscall_openbsd.go @@ -293,6 +293,7 @@ func Uname(uname *Utsname) error { //sys Mkfifoat(dirfd int, path string, mode uint32) (err error) //sys Mknod(path string, mode uint32, dev int) (err error) //sys Mknodat(dirfd int, path string, mode uint32, dev int) (err error) +//sys Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) //sys Nanosleep(time *Timespec, leftover *Timespec) (err error) //sys Open(path string, mode int, perm uint32) (fd int, err error) //sys Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) diff --git a/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go index e40fa852..4308ac17 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go @@ -1169,6 +1169,11 @@ const ( PT_WRITE_D = 0x5 PT_WRITE_I = 0x4 PT_WRITE_U = 0x6 + RENAME_EXCL = 0x4 + RENAME_NOFOLLOW_ANY = 0x10 + RENAME_RESERVED1 = 0x8 + RENAME_SECLUDE = 0x1 + RENAME_SWAP = 0x2 RLIMIT_AS = 0x5 RLIMIT_CORE = 0x4 RLIMIT_CPU = 0x0 diff --git a/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go b/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go index bb02aa6c..c8068a7a 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go @@ -1169,6 +1169,11 @@ const ( PT_WRITE_D = 0x5 PT_WRITE_I = 0x4 PT_WRITE_U = 0x6 + RENAME_EXCL = 0x4 + RENAME_NOFOLLOW_ANY = 0x10 + RENAME_RESERVED1 = 0x8 + RENAME_SECLUDE = 0x1 + RENAME_SWAP = 0x2 RLIMIT_AS = 0x5 RLIMIT_CORE = 0x4 RLIMIT_CPU = 0x0 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux.go b/vendor/golang.org/x/sys/unix/zerrors_linux.go index 877a62b4..01a70b24 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux.go @@ -457,6 +457,7 @@ const ( B600 = 0x8 B75 = 0x2 B9600 = 0xd + BCACHEFS_SUPER_MAGIC = 0xca451a4e BDEVFS_MAGIC = 0x62646576 BINDERFS_SUPER_MAGIC = 0x6c6f6f70 BINFMTFS_MAGIC = 0x42494e4d @@ -928,6 +929,7 @@ const ( EPOLL_CTL_ADD = 0x1 EPOLL_CTL_DEL = 0x2 EPOLL_CTL_MOD = 0x3 + EPOLL_IOC_TYPE = 0x8a EROFS_SUPER_MAGIC_V1 = 0xe0f5e1e2 ESP_V4_FLOW = 0xa ESP_V6_FLOW = 0xc @@ -941,9 +943,6 @@ const ( ETHTOOL_FEC_OFF = 0x4 ETHTOOL_FEC_RS = 0x8 ETHTOOL_FLAG_ALL = 0x7 - ETHTOOL_FLAG_COMPACT_BITSETS = 0x1 - ETHTOOL_FLAG_OMIT_REPLY = 0x2 - ETHTOOL_FLAG_STATS = 0x4 ETHTOOL_FLASHDEV = 0x33 ETHTOOL_FLASH_MAX_FILENAME = 0x80 ETHTOOL_FWVERS_LEN = 0x20 @@ -1705,6 +1704,7 @@ const ( KEXEC_ARCH_S390 = 0x160000 KEXEC_ARCH_SH = 0x2a0000 KEXEC_ARCH_X86_64 = 0x3e0000 + KEXEC_CRASH_HOTPLUG_SUPPORT = 0x8 KEXEC_FILE_DEBUG = 0x8 KEXEC_FILE_NO_INITRAMFS = 0x4 KEXEC_FILE_ON_CRASH = 0x2 @@ -1780,6 +1780,7 @@ const ( KEY_SPEC_USER_KEYRING = -0x4 KEY_SPEC_USER_SESSION_KEYRING = -0x5 LANDLOCK_ACCESS_FS_EXECUTE = 0x1 + LANDLOCK_ACCESS_FS_IOCTL_DEV = 0x8000 LANDLOCK_ACCESS_FS_MAKE_BLOCK = 0x800 LANDLOCK_ACCESS_FS_MAKE_CHAR = 0x40 LANDLOCK_ACCESS_FS_MAKE_DIR = 0x80 @@ -1861,6 +1862,19 @@ const ( MAP_FILE = 0x0 MAP_FIXED = 0x10 MAP_FIXED_NOREPLACE = 0x100000 + MAP_HUGE_16GB = 0x88000000 + MAP_HUGE_16KB = 0x38000000 + MAP_HUGE_16MB = 0x60000000 + MAP_HUGE_1GB = 0x78000000 + MAP_HUGE_1MB = 0x50000000 + MAP_HUGE_256MB = 0x70000000 + MAP_HUGE_2GB = 0x7c000000 + MAP_HUGE_2MB = 0x54000000 + MAP_HUGE_32MB = 0x64000000 + MAP_HUGE_512KB = 0x4c000000 + MAP_HUGE_512MB = 0x74000000 + MAP_HUGE_64KB = 0x40000000 + MAP_HUGE_8MB = 0x5c000000 MAP_HUGE_MASK = 0x3f MAP_HUGE_SHIFT = 0x1a MAP_PRIVATE = 0x2 @@ -2498,6 +2512,23 @@ const ( PR_PAC_GET_ENABLED_KEYS = 0x3d PR_PAC_RESET_KEYS = 0x36 PR_PAC_SET_ENABLED_KEYS = 0x3c + PR_PPC_DEXCR_CTRL_CLEAR = 0x4 + PR_PPC_DEXCR_CTRL_CLEAR_ONEXEC = 0x10 + PR_PPC_DEXCR_CTRL_EDITABLE = 0x1 + PR_PPC_DEXCR_CTRL_MASK = 0x1f + PR_PPC_DEXCR_CTRL_SET = 0x2 + PR_PPC_DEXCR_CTRL_SET_ONEXEC = 0x8 + PR_PPC_DEXCR_IBRTPD = 0x1 + PR_PPC_DEXCR_NPHIE = 0x3 + PR_PPC_DEXCR_SBHE = 0x0 + PR_PPC_DEXCR_SRAPD = 0x2 + PR_PPC_GET_DEXCR = 0x48 + PR_PPC_SET_DEXCR = 0x49 + PR_RISCV_CTX_SW_FENCEI_OFF = 0x1 + PR_RISCV_CTX_SW_FENCEI_ON = 0x0 + PR_RISCV_SCOPE_PER_PROCESS = 0x0 + PR_RISCV_SCOPE_PER_THREAD = 0x1 + PR_RISCV_SET_ICACHE_FLUSH_CTX = 0x47 PR_RISCV_V_GET_CONTROL = 0x46 PR_RISCV_V_SET_CONTROL = 0x45 PR_RISCV_V_VSTATE_CTRL_CUR_MASK = 0x3 @@ -3192,6 +3223,7 @@ const ( STATX_MTIME = 0x40 STATX_NLINK = 0x4 STATX_SIZE = 0x200 + STATX_SUBVOL = 0x8000 STATX_TYPE = 0x1 STATX_UID = 0x8 STATX__RESERVED = 0x80000000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_386.go b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go index e4bc0bd5..684a5168 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x800 + EPIOCGPARAMS = 0x80088a02 + EPIOCSPARAMS = 0x40088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go index 689317af..61d74b59 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x800 + EPIOCGPARAMS = 0x80088a02 + EPIOCSPARAMS = 0x40088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go index 5cca668a..a28c9e3e 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x800 + EPIOCGPARAMS = 0x80088a02 + EPIOCSPARAMS = 0x40088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go index 14270508..ab5d1fe8 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x800 + EPIOCGPARAMS = 0x80088a02 + EPIOCSPARAMS = 0x40088a01 EPOLL_CLOEXEC = 0x80000 ESR_MAGIC = 0x45535201 EXTPROC = 0x10000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go index 28e39afd..c523090e 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x800 + EPIOCGPARAMS = 0x80088a02 + EPIOCSPARAMS = 0x40088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go index cd66e92c..01e6ea78 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x80 + EPIOCGPARAMS = 0x40088a02 + EPIOCSPARAMS = 0x80088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go index c1595eba..7aa610b1 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x80 + EPIOCGPARAMS = 0x40088a02 + EPIOCSPARAMS = 0x80088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go index ee9456b0..92af771b 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x80 + EPIOCGPARAMS = 0x40088a02 + EPIOCSPARAMS = 0x80088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go index 8cfca81e..b27ef5e6 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x80 + EPIOCGPARAMS = 0x40088a02 + EPIOCSPARAMS = 0x80088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go index 60b0deb3..237a2cef 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x20 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x800 + EPIOCGPARAMS = 0x40088a02 + EPIOCSPARAMS = 0x80088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000000 FF1 = 0x4000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go index f90aa728..4a5c555a 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x20 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x800 + EPIOCGPARAMS = 0x40088a02 + EPIOCSPARAMS = 0x80088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000000 FF1 = 0x4000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go index ba9e0150..a02fb49a 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x20 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x800 + EPIOCGPARAMS = 0x40088a02 + EPIOCSPARAMS = 0x80088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000000 FF1 = 0x4000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go index 07cdfd6e..e26a7c61 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x800 + EPIOCGPARAMS = 0x80088a02 + EPIOCSPARAMS = 0x40088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go b/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go index 2f1dd214..c48f7c21 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go @@ -78,6 +78,8 @@ const ( ECHOPRT = 0x400 EFD_CLOEXEC = 0x80000 EFD_NONBLOCK = 0x800 + EPIOCGPARAMS = 0x80088a02 + EPIOCSPARAMS = 0x40088a01 EPOLL_CLOEXEC = 0x80000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go index f40519d9..ad4b9aac 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go @@ -82,6 +82,8 @@ const ( EFD_CLOEXEC = 0x400000 EFD_NONBLOCK = 0x4000 EMT_TAGOVF = 0x1 + EPIOCGPARAMS = 0x40088a02 + EPIOCSPARAMS = 0x80088a01 EPOLL_CLOEXEC = 0x400000 EXTPROC = 0x10000 FF1 = 0x8000 diff --git a/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go index 07642c30..b622533e 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go @@ -740,6 +740,54 @@ func ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) { // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func renamexNp(from string, to string, flag uint32) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(from) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(to) + if err != nil { + return + } + _, _, e1 := syscall_syscall(libc_renamex_np_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flag)) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_renamex_np_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_renamex_np renamex_np "/usr/lib/libSystem.B.dylib" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + +func renameatxNp(fromfd int, from string, tofd int, to string, flag uint32) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(from) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(to) + if err != nil { + return + } + _, _, e1 := syscall_syscall6(libc_renameatx_np_trampoline_addr, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), uintptr(flag), 0) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_renameatx_np_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_renameatx_np renameatx_np "/usr/lib/libSystem.B.dylib" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) { var _p0 unsafe.Pointer if len(mib) > 0 { diff --git a/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s b/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s index 923e08cb..cfe6646b 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +++ b/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s @@ -223,6 +223,16 @@ TEXT libc_ioctl_trampoline<>(SB),NOSPLIT,$0-0 GLOBL ·libc_ioctl_trampoline_addr(SB), RODATA, $8 DATA ·libc_ioctl_trampoline_addr(SB)/8, $libc_ioctl_trampoline<>(SB) +TEXT libc_renamex_np_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_renamex_np(SB) +GLOBL ·libc_renamex_np_trampoline_addr(SB), RODATA, $8 +DATA ·libc_renamex_np_trampoline_addr(SB)/8, $libc_renamex_np_trampoline<>(SB) + +TEXT libc_renameatx_np_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_renameatx_np(SB) +GLOBL ·libc_renameatx_np_trampoline_addr(SB), RODATA, $8 +DATA ·libc_renameatx_np_trampoline_addr(SB)/8, $libc_renameatx_np_trampoline<>(SB) + TEXT libc_sysctl_trampoline<>(SB),NOSPLIT,$0-0 JMP libc_sysctl(SB) GLOBL ·libc_sysctl_trampoline_addr(SB), RODATA, $8 diff --git a/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go b/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go index 7d73dda6..13f624f6 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go @@ -740,6 +740,54 @@ func ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) { // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func renamexNp(from string, to string, flag uint32) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(from) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(to) + if err != nil { + return + } + _, _, e1 := syscall_syscall(libc_renamex_np_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flag)) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_renamex_np_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_renamex_np renamex_np "/usr/lib/libSystem.B.dylib" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + +func renameatxNp(fromfd int, from string, tofd int, to string, flag uint32) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(from) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(to) + if err != nil { + return + } + _, _, e1 := syscall_syscall6(libc_renameatx_np_trampoline_addr, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), uintptr(flag), 0) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_renameatx_np_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_renameatx_np renameatx_np "/usr/lib/libSystem.B.dylib" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) { var _p0 unsafe.Pointer if len(mib) > 0 { diff --git a/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s b/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s index 05770011..fe222b75 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +++ b/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s @@ -223,6 +223,16 @@ TEXT libc_ioctl_trampoline<>(SB),NOSPLIT,$0-0 GLOBL ·libc_ioctl_trampoline_addr(SB), RODATA, $8 DATA ·libc_ioctl_trampoline_addr(SB)/8, $libc_ioctl_trampoline<>(SB) +TEXT libc_renamex_np_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_renamex_np(SB) +GLOBL ·libc_renamex_np_trampoline_addr(SB), RODATA, $8 +DATA ·libc_renamex_np_trampoline_addr(SB)/8, $libc_renamex_np_trampoline<>(SB) + +TEXT libc_renameatx_np_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_renameatx_np(SB) +GLOBL ·libc_renameatx_np_trampoline_addr(SB), RODATA, $8 +DATA ·libc_renameatx_np_trampoline_addr(SB)/8, $libc_renameatx_np_trampoline<>(SB) + TEXT libc_sysctl_trampoline<>(SB),NOSPLIT,$0-0 JMP libc_sysctl(SB) GLOBL ·libc_sysctl_trampoline_addr(SB), RODATA, $8 diff --git a/vendor/golang.org/x/sys/unix/zsyscall_linux.go b/vendor/golang.org/x/sys/unix/zsyscall_linux.go index 87d8612a..1bc1a5ad 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_linux.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_linux.go @@ -2229,3 +2229,19 @@ func Cachestat(fd uint, crange *CachestatRange, cstat *Cachestat_t, flags uint) } return } + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + +func Mseal(b []byte, flags uint) (err error) { + var _p0 unsafe.Pointer + if len(b) > 0 { + _p0 = unsafe.Pointer(&b[0]) + } else { + _p0 = unsafe.Pointer(&_zero) + } + _, _, e1 := Syscall(SYS_MSEAL, uintptr(_p0), uintptr(len(b)), uintptr(flags)) + if e1 != 0 { + err = errnoErr(e1) + } + return +} diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go index 9dc42410..1851df14 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go @@ -1493,6 +1493,30 @@ var libc_mknodat_trampoline_addr uintptr // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(fsType) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(dir) + if err != nil { + return + } + _, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_mount_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_mount mount "libc.so" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + func Nanosleep(time *Timespec, leftover *Timespec) (err error) { _, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0) if e1 != 0 { diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s index 41b56173..0b43c693 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s @@ -463,6 +463,11 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0 GLOBL ·libc_mknodat_trampoline_addr(SB), RODATA, $4 DATA ·libc_mknodat_trampoline_addr(SB)/4, $libc_mknodat_trampoline<>(SB) +TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_mount(SB) +GLOBL ·libc_mount_trampoline_addr(SB), RODATA, $4 +DATA ·libc_mount_trampoline_addr(SB)/4, $libc_mount_trampoline<>(SB) + TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0 JMP libc_nanosleep(SB) GLOBL ·libc_nanosleep_trampoline_addr(SB), RODATA, $4 diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go index 0d3a0751..e1ec0dbe 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go @@ -1493,6 +1493,30 @@ var libc_mknodat_trampoline_addr uintptr // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(fsType) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(dir) + if err != nil { + return + } + _, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_mount_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_mount mount "libc.so" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + func Nanosleep(time *Timespec, leftover *Timespec) (err error) { _, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0) if e1 != 0 { diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s index 4019a656..880c6d6e 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s @@ -463,6 +463,11 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0 GLOBL ·libc_mknodat_trampoline_addr(SB), RODATA, $8 DATA ·libc_mknodat_trampoline_addr(SB)/8, $libc_mknodat_trampoline<>(SB) +TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_mount(SB) +GLOBL ·libc_mount_trampoline_addr(SB), RODATA, $8 +DATA ·libc_mount_trampoline_addr(SB)/8, $libc_mount_trampoline<>(SB) + TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0 JMP libc_nanosleep(SB) GLOBL ·libc_nanosleep_trampoline_addr(SB), RODATA, $8 diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go index c39f7776..7c8452a6 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go @@ -1493,6 +1493,30 @@ var libc_mknodat_trampoline_addr uintptr // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(fsType) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(dir) + if err != nil { + return + } + _, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_mount_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_mount mount "libc.so" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + func Nanosleep(time *Timespec, leftover *Timespec) (err error) { _, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0) if e1 != 0 { diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s index ac4af24f..b8ef95b0 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s @@ -463,6 +463,11 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0 GLOBL ·libc_mknodat_trampoline_addr(SB), RODATA, $4 DATA ·libc_mknodat_trampoline_addr(SB)/4, $libc_mknodat_trampoline<>(SB) +TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_mount(SB) +GLOBL ·libc_mount_trampoline_addr(SB), RODATA, $4 +DATA ·libc_mount_trampoline_addr(SB)/4, $libc_mount_trampoline<>(SB) + TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0 JMP libc_nanosleep(SB) GLOBL ·libc_nanosleep_trampoline_addr(SB), RODATA, $4 diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go index 57571d07..2ffdf861 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go @@ -1493,6 +1493,30 @@ var libc_mknodat_trampoline_addr uintptr // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(fsType) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(dir) + if err != nil { + return + } + _, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_mount_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_mount mount "libc.so" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + func Nanosleep(time *Timespec, leftover *Timespec) (err error) { _, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0) if e1 != 0 { diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s index f77d5321..2af3b5c7 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s @@ -463,6 +463,11 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0 GLOBL ·libc_mknodat_trampoline_addr(SB), RODATA, $8 DATA ·libc_mknodat_trampoline_addr(SB)/8, $libc_mknodat_trampoline<>(SB) +TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_mount(SB) +GLOBL ·libc_mount_trampoline_addr(SB), RODATA, $8 +DATA ·libc_mount_trampoline_addr(SB)/8, $libc_mount_trampoline<>(SB) + TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0 JMP libc_nanosleep(SB) GLOBL ·libc_nanosleep_trampoline_addr(SB), RODATA, $8 diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go index e62963e6..1da08d52 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go @@ -1493,6 +1493,30 @@ var libc_mknodat_trampoline_addr uintptr // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(fsType) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(dir) + if err != nil { + return + } + _, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_mount_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_mount mount "libc.so" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + func Nanosleep(time *Timespec, leftover *Timespec) (err error) { _, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0) if e1 != 0 { diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s index fae140b6..b7a25135 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s @@ -463,6 +463,11 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0 GLOBL ·libc_mknodat_trampoline_addr(SB), RODATA, $8 DATA ·libc_mknodat_trampoline_addr(SB)/8, $libc_mknodat_trampoline<>(SB) +TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_mount(SB) +GLOBL ·libc_mount_trampoline_addr(SB), RODATA, $8 +DATA ·libc_mount_trampoline_addr(SB)/8, $libc_mount_trampoline<>(SB) + TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0 JMP libc_nanosleep(SB) GLOBL ·libc_nanosleep_trampoline_addr(SB), RODATA, $8 diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go index 00831354..6e85b0aa 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go @@ -1493,6 +1493,30 @@ var libc_mknodat_trampoline_addr uintptr // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(fsType) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(dir) + if err != nil { + return + } + _, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_mount_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_mount mount "libc.so" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + func Nanosleep(time *Timespec, leftover *Timespec) (err error) { _, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0) if e1 != 0 { diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s index 9d1e0ff0..f15dadf0 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s @@ -555,6 +555,12 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0 GLOBL ·libc_mknodat_trampoline_addr(SB), RODATA, $8 DATA ·libc_mknodat_trampoline_addr(SB)/8, $libc_mknodat_trampoline<>(SB) +TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0 + CALL libc_mount(SB) + RET +GLOBL ·libc_mount_trampoline_addr(SB), RODATA, $8 +DATA ·libc_mount_trampoline_addr(SB)/8, $libc_mount_trampoline<>(SB) + TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0 CALL libc_nanosleep(SB) RET diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go index 79029ed5..28b487df 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go @@ -1493,6 +1493,30 @@ var libc_mknodat_trampoline_addr uintptr // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) { + var _p0 *byte + _p0, err = BytePtrFromString(fsType) + if err != nil { + return + } + var _p1 *byte + _p1, err = BytePtrFromString(dir) + if err != nil { + return + } + _, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +var libc_mount_trampoline_addr uintptr + +//go:cgo_import_dynamic libc_mount mount "libc.so" + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + func Nanosleep(time *Timespec, leftover *Timespec) (err error) { _, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0) if e1 != 0 { diff --git a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s index da115f9a..1e7f321e 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s +++ b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s @@ -463,6 +463,11 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0 GLOBL ·libc_mknodat_trampoline_addr(SB), RODATA, $8 DATA ·libc_mknodat_trampoline_addr(SB)/8, $libc_mknodat_trampoline<>(SB) +TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_mount(SB) +GLOBL ·libc_mount_trampoline_addr(SB), RODATA, $8 +DATA ·libc_mount_trampoline_addr(SB)/8, $libc_mount_trampoline<>(SB) + TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0 JMP libc_nanosleep(SB) GLOBL ·libc_nanosleep_trampoline_addr(SB), RODATA, $8 diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go index 53aef5dc..524b0820 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go @@ -457,4 +457,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go index 71d52476..d3e38f68 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go @@ -379,4 +379,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go index c7477061..70b35bf3 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go @@ -421,4 +421,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go index f96e214f..6c778c23 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go @@ -324,4 +324,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go index 28425346..37281cf5 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go @@ -318,4 +318,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go index d0953018..7e567f1e 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go @@ -441,4 +441,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 4459 SYS_LSM_SET_SELF_ATTR = 4460 SYS_LSM_LIST_MODULES = 4461 + SYS_MSEAL = 4462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go index 295c7f4b..38ae55e5 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go @@ -371,4 +371,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 5459 SYS_LSM_SET_SELF_ATTR = 5460 SYS_LSM_LIST_MODULES = 5461 + SYS_MSEAL = 5462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go index d1a9eaca..55e92e60 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go @@ -371,4 +371,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 5459 SYS_LSM_SET_SELF_ATTR = 5460 SYS_LSM_LIST_MODULES = 5461 + SYS_MSEAL = 5462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go index bec157c3..60658d6a 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go @@ -441,4 +441,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 4459 SYS_LSM_SET_SELF_ATTR = 4460 SYS_LSM_LIST_MODULES = 4461 + SYS_MSEAL = 4462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go index 7ee7bdc4..e203e8a7 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go @@ -448,4 +448,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go index fad1f25b..5944b97d 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go @@ -420,4 +420,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go index 7d3e1635..c66d416d 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go @@ -420,4 +420,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go index 0ed53ad9..9889f6a5 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go @@ -325,4 +325,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go index 2fba04ad..01d86825 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go @@ -386,4 +386,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go index 621d00d7..7b703e77 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go @@ -399,4 +399,5 @@ const ( SYS_LSM_GET_SELF_ATTR = 459 SYS_LSM_SET_SELF_ATTR = 460 SYS_LSM_LIST_MODULES = 461 + SYS_MSEAL = 462 ) diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux.go b/vendor/golang.org/x/sys/unix/ztypes_linux.go index 4740b834..b102b95a 100644 --- a/vendor/golang.org/x/sys/unix/ztypes_linux.go +++ b/vendor/golang.org/x/sys/unix/ztypes_linux.go @@ -110,7 +110,8 @@ type Statx_t struct { Mnt_id uint64 Dio_mem_align uint32 Dio_offset_align uint32 - _ [12]uint64 + Subvol uint64 + _ [11]uint64 } type Fsid struct { @@ -3473,7 +3474,7 @@ const ( DEVLINK_PORT_FN_ATTR_STATE = 0x2 DEVLINK_PORT_FN_ATTR_OPSTATE = 0x3 DEVLINK_PORT_FN_ATTR_CAPS = 0x4 - DEVLINK_PORT_FUNCTION_ATTR_MAX = 0x5 + DEVLINK_PORT_FUNCTION_ATTR_MAX = 0x6 ) type FsverityDigest struct { @@ -3975,7 +3976,7 @@ const ( ETHTOOL_A_TSINFO_TX_TYPES = 0x3 ETHTOOL_A_TSINFO_RX_FILTERS = 0x4 ETHTOOL_A_TSINFO_PHC_INDEX = 0x5 - ETHTOOL_A_TSINFO_MAX = 0x5 + ETHTOOL_A_TSINFO_MAX = 0x6 ETHTOOL_A_CABLE_TEST_UNSPEC = 0x0 ETHTOOL_A_CABLE_TEST_HEADER = 0x1 ETHTOOL_A_CABLE_TEST_MAX = 0x1 diff --git a/vendor/golang.org/x/sys/windows/security_windows.go b/vendor/golang.org/x/sys/windows/security_windows.go index 97651b5b..b6e1ab76 100644 --- a/vendor/golang.org/x/sys/windows/security_windows.go +++ b/vendor/golang.org/x/sys/windows/security_windows.go @@ -1179,7 +1179,7 @@ type OBJECTS_AND_NAME struct { //sys makeSelfRelativeSD(absoluteSD *SECURITY_DESCRIPTOR, selfRelativeSD *SECURITY_DESCRIPTOR, selfRelativeSDSize *uint32) (err error) = advapi32.MakeSelfRelativeSD //sys setEntriesInAcl(countExplicitEntries uint32, explicitEntries *EXPLICIT_ACCESS, oldACL *ACL, newACL **ACL) (ret error) = advapi32.SetEntriesInAclW -//sys GetAce(acl *ACL, aceIndex uint32, pAce **ACCESS_ALLOWED_ACE) (ret error) = advapi32.GetAce +//sys GetAce(acl *ACL, aceIndex uint32, pAce **ACCESS_ALLOWED_ACE) (err error) = advapi32.GetAce // Control returns the security descriptor control bits. func (sd *SECURITY_DESCRIPTOR) Control() (control SECURITY_DESCRIPTOR_CONTROL, revision uint32, err error) { diff --git a/vendor/golang.org/x/sys/windows/syscall_windows.go b/vendor/golang.org/x/sys/windows/syscall_windows.go index 6525c62f..1fa34fd1 100644 --- a/vendor/golang.org/x/sys/windows/syscall_windows.go +++ b/vendor/golang.org/x/sys/windows/syscall_windows.go @@ -17,8 +17,10 @@ import ( "unsafe" ) -type Handle uintptr -type HWND uintptr +type ( + Handle uintptr + HWND uintptr +) const ( InvalidHandle = ^Handle(0) @@ -211,6 +213,10 @@ func NewCallbackCDecl(fn interface{}) uintptr { //sys OpenProcess(desiredAccess uint32, inheritHandle bool, processId uint32) (handle Handle, err error) //sys ShellExecute(hwnd Handle, verb *uint16, file *uint16, args *uint16, cwd *uint16, showCmd int32) (err error) [failretval<=32] = shell32.ShellExecuteW //sys GetWindowThreadProcessId(hwnd HWND, pid *uint32) (tid uint32, err error) = user32.GetWindowThreadProcessId +//sys LoadKeyboardLayout(name *uint16, flags uint32) (hkl Handle, err error) [failretval==0] = user32.LoadKeyboardLayoutW +//sys UnloadKeyboardLayout(hkl Handle) (err error) = user32.UnloadKeyboardLayout +//sys GetKeyboardLayout(tid uint32) (hkl Handle) = user32.GetKeyboardLayout +//sys ToUnicodeEx(vkey uint32, scancode uint32, keystate *byte, pwszBuff *uint16, cchBuff int32, flags uint32, hkl Handle) (ret int32) = user32.ToUnicodeEx //sys GetShellWindow() (shellWindow HWND) = user32.GetShellWindow //sys MessageBox(hwnd HWND, text *uint16, caption *uint16, boxtype uint32) (ret int32, err error) [failretval==0] = user32.MessageBoxW //sys ExitWindowsEx(flags uint32, reason uint32) (err error) = user32.ExitWindowsEx @@ -1368,9 +1374,11 @@ func SetsockoptLinger(fd Handle, level, opt int, l *Linger) (err error) { func SetsockoptInet4Addr(fd Handle, level, opt int, value [4]byte) (err error) { return Setsockopt(fd, int32(level), int32(opt), (*byte)(unsafe.Pointer(&value[0])), 4) } + func SetsockoptIPMreq(fd Handle, level, opt int, mreq *IPMreq) (err error) { return Setsockopt(fd, int32(level), int32(opt), (*byte)(unsafe.Pointer(mreq)), int32(unsafe.Sizeof(*mreq))) } + func SetsockoptIPv6Mreq(fd Handle, level, opt int, mreq *IPv6Mreq) (err error) { return syscall.EWINDOWS } diff --git a/vendor/golang.org/x/sys/windows/types_windows.go b/vendor/golang.org/x/sys/windows/types_windows.go index d8cb71db..4d0c1574 100644 --- a/vendor/golang.org/x/sys/windows/types_windows.go +++ b/vendor/golang.org/x/sys/windows/types_windows.go @@ -2003,7 +2003,21 @@ const ( MOVEFILE_FAIL_IF_NOT_TRACKABLE = 0x20 ) -const GAA_FLAG_INCLUDE_PREFIX = 0x00000010 +// Flags for GetAdaptersAddresses, see +// https://learn.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-getadaptersaddresses. +const ( + GAA_FLAG_SKIP_UNICAST = 0x1 + GAA_FLAG_SKIP_ANYCAST = 0x2 + GAA_FLAG_SKIP_MULTICAST = 0x4 + GAA_FLAG_SKIP_DNS_SERVER = 0x8 + GAA_FLAG_INCLUDE_PREFIX = 0x10 + GAA_FLAG_SKIP_FRIENDLY_NAME = 0x20 + GAA_FLAG_INCLUDE_WINS_INFO = 0x40 + GAA_FLAG_INCLUDE_GATEWAYS = 0x80 + GAA_FLAG_INCLUDE_ALL_INTERFACES = 0x100 + GAA_FLAG_INCLUDE_ALL_COMPARTMENTS = 0x200 + GAA_FLAG_INCLUDE_TUNNEL_BINDINGORDER = 0x400 +) const ( IF_TYPE_OTHER = 1 @@ -3404,3 +3418,14 @@ type DCB struct { EvtChar byte wReserved1 uint16 } + +// Keyboard Layout Flags. +// See https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-loadkeyboardlayoutw +const ( + KLF_ACTIVATE = 0x00000001 + KLF_SUBSTITUTE_OK = 0x00000002 + KLF_REORDER = 0x00000008 + KLF_REPLACELANG = 0x00000010 + KLF_NOTELLSHELL = 0x00000080 + KLF_SETFORPROCESS = 0x00000100 +) diff --git a/vendor/golang.org/x/sys/windows/zsyscall_windows.go b/vendor/golang.org/x/sys/windows/zsyscall_windows.go index eba76101..9bb979a3 100644 --- a/vendor/golang.org/x/sys/windows/zsyscall_windows.go +++ b/vendor/golang.org/x/sys/windows/zsyscall_windows.go @@ -478,12 +478,16 @@ var ( procGetDesktopWindow = moduser32.NewProc("GetDesktopWindow") procGetForegroundWindow = moduser32.NewProc("GetForegroundWindow") procGetGUIThreadInfo = moduser32.NewProc("GetGUIThreadInfo") + procGetKeyboardLayout = moduser32.NewProc("GetKeyboardLayout") procGetShellWindow = moduser32.NewProc("GetShellWindow") procGetWindowThreadProcessId = moduser32.NewProc("GetWindowThreadProcessId") procIsWindow = moduser32.NewProc("IsWindow") procIsWindowUnicode = moduser32.NewProc("IsWindowUnicode") procIsWindowVisible = moduser32.NewProc("IsWindowVisible") + procLoadKeyboardLayoutW = moduser32.NewProc("LoadKeyboardLayoutW") procMessageBoxW = moduser32.NewProc("MessageBoxW") + procToUnicodeEx = moduser32.NewProc("ToUnicodeEx") + procUnloadKeyboardLayout = moduser32.NewProc("UnloadKeyboardLayout") procCreateEnvironmentBlock = moduserenv.NewProc("CreateEnvironmentBlock") procDestroyEnvironmentBlock = moduserenv.NewProc("DestroyEnvironmentBlock") procGetUserProfileDirectoryW = moduserenv.NewProc("GetUserProfileDirectoryW") @@ -789,6 +793,14 @@ func FreeSid(sid *SID) (err error) { return } +func GetAce(acl *ACL, aceIndex uint32, pAce **ACCESS_ALLOWED_ACE) (err error) { + r1, _, e1 := syscall.Syscall(procGetAce.Addr(), 3, uintptr(unsafe.Pointer(acl)), uintptr(aceIndex), uintptr(unsafe.Pointer(pAce))) + if r1 == 0 { + err = errnoErr(e1) + } + return +} + func GetLengthSid(sid *SID) (len uint32) { r0, _, _ := syscall.Syscall(procGetLengthSid.Addr(), 1, uintptr(unsafe.Pointer(sid)), 0, 0) len = uint32(r0) @@ -1225,14 +1237,6 @@ func setEntriesInAcl(countExplicitEntries uint32, explicitEntries *EXPLICIT_ACCE return } -func GetAce(acl *ACL, aceIndex uint32, pAce **ACCESS_ALLOWED_ACE) (ret error) { - r0, _, _ := syscall.Syscall(procGetAce.Addr(), 3, uintptr(unsafe.Pointer(acl)), uintptr(aceIndex), uintptr(unsafe.Pointer(pAce))) - if r0 == 0 { - ret = GetLastError() - } - return -} - func SetKernelObjectSecurity(handle Handle, securityInformation SECURITY_INFORMATION, securityDescriptor *SECURITY_DESCRIPTOR) (err error) { r1, _, e1 := syscall.Syscall(procSetKernelObjectSecurity.Addr(), 3, uintptr(handle), uintptr(securityInformation), uintptr(unsafe.Pointer(securityDescriptor))) if r1 == 0 { @@ -4082,6 +4086,12 @@ func GetGUIThreadInfo(thread uint32, info *GUIThreadInfo) (err error) { return } +func GetKeyboardLayout(tid uint32) (hkl Handle) { + r0, _, _ := syscall.Syscall(procGetKeyboardLayout.Addr(), 1, uintptr(tid), 0, 0) + hkl = Handle(r0) + return +} + func GetShellWindow() (shellWindow HWND) { r0, _, _ := syscall.Syscall(procGetShellWindow.Addr(), 0, 0, 0, 0) shellWindow = HWND(r0) @@ -4115,6 +4125,15 @@ func IsWindowVisible(hwnd HWND) (isVisible bool) { return } +func LoadKeyboardLayout(name *uint16, flags uint32) (hkl Handle, err error) { + r0, _, e1 := syscall.Syscall(procLoadKeyboardLayoutW.Addr(), 2, uintptr(unsafe.Pointer(name)), uintptr(flags), 0) + hkl = Handle(r0) + if hkl == 0 { + err = errnoErr(e1) + } + return +} + func MessageBox(hwnd HWND, text *uint16, caption *uint16, boxtype uint32) (ret int32, err error) { r0, _, e1 := syscall.Syscall6(procMessageBoxW.Addr(), 4, uintptr(hwnd), uintptr(unsafe.Pointer(text)), uintptr(unsafe.Pointer(caption)), uintptr(boxtype), 0, 0) ret = int32(r0) @@ -4124,6 +4143,20 @@ func MessageBox(hwnd HWND, text *uint16, caption *uint16, boxtype uint32) (ret i return } +func ToUnicodeEx(vkey uint32, scancode uint32, keystate *byte, pwszBuff *uint16, cchBuff int32, flags uint32, hkl Handle) (ret int32) { + r0, _, _ := syscall.Syscall9(procToUnicodeEx.Addr(), 7, uintptr(vkey), uintptr(scancode), uintptr(unsafe.Pointer(keystate)), uintptr(unsafe.Pointer(pwszBuff)), uintptr(cchBuff), uintptr(flags), uintptr(hkl), 0, 0) + ret = int32(r0) + return +} + +func UnloadKeyboardLayout(hkl Handle) (err error) { + r1, _, e1 := syscall.Syscall(procUnloadKeyboardLayout.Addr(), 1, uintptr(hkl), 0, 0) + if r1 == 0 { + err = errnoErr(e1) + } + return +} + func CreateEnvironmentBlock(block **uint16, token Token, inheritExisting bool) (err error) { var _p0 uint32 if inheritExisting { diff --git a/vendor/modules.txt b/vendor/modules.txt index e8c07113..f14d71f9 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -5,7 +5,7 @@ github.com/BurntSushi/toml/internal # github.com/Knetic/govaluate v3.0.0+incompatible ## explicit github.com/Knetic/govaluate -# github.com/aws/aws-sdk-go v1.55.3 +# github.com/aws/aws-sdk-go v1.55.5 ## explicit; go 1.19 github.com/aws/aws-sdk-go/aws github.com/aws/aws-sdk-go/aws/auth/bearer @@ -86,7 +86,7 @@ github.com/gonvenience/ytbx # github.com/gopherjs/gopherjs v1.17.2 ## explicit; go 1.17 github.com/gopherjs/gopherjs/js -# github.com/hashicorp/cap v0.6.0 +# github.com/hashicorp/cap v0.7.0 ## explicit; go 1.21 github.com/hashicorp/cap/util # github.com/hashicorp/errwrap v1.1.0 @@ -101,7 +101,7 @@ github.com/hashicorp/go-secure-stdlib/base62 # github.com/hashicorp/go-uuid v1.0.3 ## explicit github.com/hashicorp/go-uuid -# github.com/homeport/dyff v1.8.1 +# github.com/homeport/dyff v1.9.0 ## explicit; go 1.20 github.com/homeport/dyff/pkg/dyff # github.com/jmespath/go-jmespath v0.4.0 @@ -155,10 +155,10 @@ github.com/voxelbrain/goptions # github.com/ziutek/utils v0.0.0-20190626152656-eb2a3b364d6c ## explicit github.com/ziutek/utils/netaddr -# golang.org/x/sync v0.7.0 +# golang.org/x/sync v0.8.0 ## explicit; go 1.18 golang.org/x/sync/syncmap -# golang.org/x/sys v0.22.0 +# golang.org/x/sys v0.23.0 ## explicit; go 1.18 golang.org/x/sys/plan9 golang.org/x/sys/unix