Skip to content

Commit

Permalink
Upgrade terraform-provider-mist to v0.1.43 (#128)
Browse files Browse the repository at this point in the history
* make tfgen

* make build_sdks
  • Loading branch information
pulumi-bot authored Sep 20, 2024
1 parent 6170d0f commit 18377c2
Show file tree
Hide file tree
Showing 44 changed files with 2,407 additions and 29 deletions.
26 changes: 26 additions & 0 deletions provider/cmd/pulumi-resource-junipermist/bridge-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2329,6 +2329,9 @@
"dst_deny_wxtags": {
"maxItemsOne": false
},
"dst_wxtags": {
"maxItemsOne": false
},
"src_wxtags": {
"maxItemsOne": false
}
Expand Down Expand Up @@ -2710,6 +2713,26 @@
},
"probe_hosts": {
"maxItemsOne": false
},
"protect_re": {
"fields": {
"allowed_services": {
"maxItemsOne": false
},
"custom": {
"maxItemsOne": false,
"elem": {
"fields": {
"subnets": {
"maxItemsOne": false
}
}
}
},
"trusted_hosts": {
"maxItemsOne": false
}
}
}
}
},
Expand Down Expand Up @@ -2952,6 +2975,9 @@
"dst_deny_wxtags": {
"maxItemsOne": false
},
"dst_wxtags": {
"maxItemsOne": false
},
"src_wxtags": {
"maxItemsOne": false
}
Expand Down
122 changes: 122 additions & 0 deletions provider/cmd/pulumi-resource-junipermist/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -24229,6 +24229,10 @@
"type": "string"
}
},
"protectRe": {
"$ref": "#/types/junipermist:site/SettingGatewayMgmtProtectRe:SettingGatewayMgmtProtectRe",
"description": "restrict inbound-traffic to host\nwhen enabled, all traffic that is not essential to our operation will be dropped \ne.g. ntp / dns / traffic to mist will be allowed by default, if dhcpd is enabled, we'll make sure it works\n"
},
"rootPassword": {
"type": "string",
"description": "for SRX only\n",
Expand Down Expand Up @@ -24299,6 +24303,10 @@
"network": {
"type": "string"
},
"packetSize": {
"type": "integer",
"description": "if `protocol`==`icmp`\n"
},
"protocol": {
"type": "string",
"description": "enum: `http`, `icmp`\n"
Expand Down Expand Up @@ -24352,6 +24360,76 @@
}
}
},
"junipermist:site/SettingGatewayMgmtProtectRe:SettingGatewayMgmtProtectRe": {
"properties": {
"allowedServices": {
"type": "array",
"items": {
"type": "string"
},
"description": "optionally, services we'll allow. enum: `icmp`, `ssh`\n"
},
"customs": {
"type": "array",
"items": {
"$ref": "#/types/junipermist:site/SettingGatewayMgmtProtectReCustom:SettingGatewayMgmtProtectReCustom"
}
},
"enabled": {
"type": "boolean",
"description": "when enabled, all traffic that is not essential to our operation will be dropped\ne.g. ntp / dns / traffic to mist will be allowed by default\n if dhcpd is enabled, we'll make sure it works\n"
},
"trustedHosts": {
"type": "array",
"items": {
"type": "string"
},
"description": "host/subnets we'll allow traffic to/from\n"
}
},
"type": "object",
"language": {
"nodejs": {
"requiredOutputs": [
"allowedServices",
"customs",
"enabled",
"trustedHosts"
]
}
}
},
"junipermist:site/SettingGatewayMgmtProtectReCustom:SettingGatewayMgmtProtectReCustom": {
"properties": {
"portRange": {
"type": "string",
"description": "matched dst port, \"0\" means any. Note: For `protocol`==`any` and `port_range`==`any`, configure `trusted_hosts` instead\n"
},
"protocol": {
"type": "string",
"description": "enum: `any`, `icmp`, `tcp`, `udp`. Note: For `protocol`==`any` and `port_range`==`any`, configure `trusted_hosts` instead\n"
},
"subnets": {
"type": "array",
"items": {
"type": "string"
}
}
},
"type": "object",
"required": [
"subnets"
],
"language": {
"nodejs": {
"requiredOutputs": [
"portRange",
"protocol",
"subnets"
]
}
}
},
"junipermist:site/SettingLed:SettingLed": {
"properties": {
"brightness": {
Expand Down Expand Up @@ -34713,6 +34791,13 @@
},
"description": "tag list to indicate these tags are blocked access\n"
},
"dstWxtags": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of WxTag UUID\n"
},
"enabled": {
"type": "boolean"
},
Expand All @@ -34739,6 +34824,7 @@
"action",
"dstAllowWxtags",
"dstDenyWxtags",
"dstWxtags",
"enabled",
"order",
"orgId",
Expand Down Expand Up @@ -34777,6 +34863,13 @@
},
"description": "tag list to indicate these tags are blocked access\n"
},
"dstWxtags": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of WxTag UUID\n"
},
"enabled": {
"type": "boolean"
},
Expand Down Expand Up @@ -34839,6 +34932,13 @@
},
"description": "tag list to indicate these tags are blocked access\n"
},
"dstWxtags": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of WxTag UUID\n"
},
"enabled": {
"type": "boolean"
},
Expand Down Expand Up @@ -37981,6 +38081,13 @@
},
"description": "tag list to indicate these tags are blocked access\n"
},
"dstWxtags": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of WxTag UUID\n"
},
"enabled": {
"type": "boolean"
},
Expand All @@ -38007,6 +38114,7 @@
"action",
"dstAllowWxtags",
"dstDenyWxtags",
"dstWxtags",
"enabled",
"order",
"siteId",
Expand Down Expand Up @@ -38044,6 +38152,13 @@
},
"description": "tag list to indicate these tags are blocked access\n"
},
"dstWxtags": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of WxTag UUID\n"
},
"enabled": {
"type": "boolean"
},
Expand Down Expand Up @@ -38105,6 +38220,13 @@
},
"description": "tag list to indicate these tags are blocked access\n"
},
"dstWxtags": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of WxTag UUID\n"
},
"enabled": {
"type": "boolean"
},
Expand Down
12 changes: 6 additions & 6 deletions provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ require (

require (
cloud.google.com/go v0.112.1 // indirect
cloud.google.com/go/compute/metadata v0.3.0 // indirect
cloud.google.com/go/compute/metadata v0.5.0 // indirect
cloud.google.com/go/iam v1.1.6 // indirect
cloud.google.com/go/kms v1.15.7 // indirect
cloud.google.com/go/logging v1.9.0 // indirect
Expand Down Expand Up @@ -87,7 +87,7 @@ require (
github.com/gofrs/uuid v4.4.0+incompatible // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
github.com/golang/glog v1.2.1 // indirect
github.com/golang/glog v1.2.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-querystring v1.1.0 // indirect
Expand Down Expand Up @@ -192,7 +192,7 @@ require (
github.com/stretchr/testify v1.9.0 // indirect
github.com/teekennedy/goldmark-markdown v0.3.0 // indirect
github.com/texttheater/golang-levenshtein v1.0.1 // indirect
github.com/tmunzer/mistapi-go v0.3.23 // indirect
github.com/tmunzer/mistapi-go v0.3.25 // indirect
github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
github.com/ulikunitz/xz v0.5.11 // indirect
Expand All @@ -217,7 +217,7 @@ require (
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/net v0.29.0 // indirect
golang.org/x/oauth2 v0.21.0 // indirect
golang.org/x/oauth2 v0.22.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/term v0.24.0 // indirect
Expand All @@ -227,9 +227,9 @@ require (
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
google.golang.org/api v0.169.0 // indirect
google.golang.org/genproto v0.0.0-20240311173647-c811ad7063a7 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/grpc v1.66.2 // indirect
google.golang.org/grpc v1.67.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
24 changes: 12 additions & 12 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz
cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU=
cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U=
cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU=
cloud.google.com/go/compute/metadata v0.3.0 h1:Tz+eQXMEqDIKRsmY3cHTL6FVaynIjX2QxYC4trgAKZc=
cloud.google.com/go/compute/metadata v0.3.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k=
cloud.google.com/go/compute/metadata v0.5.0 h1:Zr0eK8JbFv6+Wi4ilXAR8FJ3wyNdpxHKJNPos6LTZOY=
cloud.google.com/go/compute/metadata v0.5.0/go.mod h1:aHnloV2TPI38yx4s9+wAZhHykWvVCfu7hQbF+9CWoiY=
cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I=
cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4=
cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0=
Expand Down Expand Up @@ -404,8 +404,8 @@ github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69
github.com/golang-jwt/jwt/v5 v5.2.1 h1:OuVbFODueb089Lh128TAcimifWaLhJwVflnrgM17wHk=
github.com/golang-jwt/jwt/v5 v5.2.1/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk=
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
github.com/golang/glog v1.2.1 h1:OptwRhECazUx5ix5TTWC3EZhsZEHWcYWY4FQHTIubm4=
github.com/golang/glog v1.2.1/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w=
github.com/golang/glog v1.2.2 h1:1+mZ9upx1Dh6FmUTFR1naJ77miKiXgALjWOZ3NVFPmY=
github.com/golang/glog v1.2.2/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w=
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
Expand Down Expand Up @@ -809,8 +809,8 @@ github.com/teekennedy/goldmark-markdown v0.3.0 h1:ik9/biVGCwGWFg8dQ3KVm2pQ/wiiG0
github.com/teekennedy/goldmark-markdown v0.3.0/go.mod h1:kMhDz8La77A9UHvJGsxejd0QUflN9sS+QXCqnhmxmNo=
github.com/texttheater/golang-levenshtein v1.0.1 h1:+cRNoVrfiwufQPhoMzB6N0Yf/Mqajr6t1lOv8GyGE2U=
github.com/texttheater/golang-levenshtein v1.0.1/go.mod h1:PYAKrbF5sAiq9wd+H82hs7gNaen0CplQ9uvm6+enD/8=
github.com/tmunzer/mistapi-go v0.3.23 h1:DSYSGPa1ONv/WO0dMyN3O0igs2kCU06czMGh9woA2aQ=
github.com/tmunzer/mistapi-go v0.3.23/go.mod h1:48zrTq/p+Shri8YNOzthmnK+lzMTqql4t4QaRt1vTmg=
github.com/tmunzer/mistapi-go v0.3.25 h1:gNjlFg6HbjGZsEHvyiKksAiObFNleOforS7flBFZzBw=
github.com/tmunzer/mistapi-go v0.3.25/go.mod h1:48zrTq/p+Shri8YNOzthmnK+lzMTqql4t4QaRt1vTmg=
github.com/uber/jaeger-client-go v2.30.0+incompatible h1:D6wyKGCecFaSRUpo8lCVbaOOb6ThwMmTEbhRwtKR97o=
github.com/uber/jaeger-client-go v2.30.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk=
github.com/uber/jaeger-lib v2.4.1+incompatible h1:td4jdvLcExb4cBISKIpHuGoVXh+dVKhn2Um6rjCsSsg=
Expand Down Expand Up @@ -1013,8 +1013,8 @@ golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg=
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg=
golang.org/x/oauth2 v0.1.0/go.mod h1:G9FE4dLTsbXUu90h/Pf85g4w1D+SSAgR+q46nJZ8M4A=
golang.org/x/oauth2 v0.21.0 h1:tsimM75w1tF/uws5rbeHzIWxEqElMehnc+iW793zsZs=
golang.org/x/oauth2 v0.21.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
golang.org/x/oauth2 v0.22.0 h1:BzDx2FehcG7jJwgWLELCdmLuxk2i+x9UDpSiss2u0ZA=
golang.org/x/oauth2 v0.22.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
Expand Down Expand Up @@ -1377,8 +1377,8 @@ google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz
google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s=
google.golang.org/genproto v0.0.0-20240311173647-c811ad7063a7 h1:ImUcDPHjTrAqNhlOkSocDLfG9rrNHH7w7uoKWPaWZ8s=
google.golang.org/genproto v0.0.0-20240311173647-c811ad7063a7/go.mod h1:/3XmxOjePkvmKrHuBy4zNFw7IzxJXtAgdpXi8Ll990U=
google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 h1:+rdxYoE3E5htTEWIe15GlN6IfvbURM//Jt0mmkmm6ZU=
google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117/go.mod h1:OimBR/bc1wPO9iV4NC2bpyjy3VnAwZh5EBPQdtaE5oo=
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 h1:wKguEg1hsxI2/L3hUYrpo1RVi48K+uTyzKqprwLXsb8=
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142/go.mod h1:d6be+8HhtEtucleCbxpPW9PA9XwISACu8nvpPqF0BVo=
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 h1:pPJltXNxVzT4pK9yD8vR9X75DaWYYmLGMsEvBfFQZzQ=
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1/go.mod h1:UqMtugtsSgubUsoxbuAoiCXvqvErP7Gf0so0mK9tHxU=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
Expand Down Expand Up @@ -1416,8 +1416,8 @@ google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACu
google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI=
google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI=
google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI=
google.golang.org/grpc v1.66.2 h1:3QdXkuq3Bkh7w+ywLdLvM56cmGvQHUMZpiCzt6Rqaoo=
google.golang.org/grpc v1.66.2/go.mod h1:s3/l6xSSCURdVfAnL+TqCNMyTDAGN6+lZeVxnZR128Y=
google.golang.org/grpc v1.67.0 h1:IdH9y6PF5MPSdAntIcpjQ+tXO41pcQsfZV2RxtQgVcw=
google.golang.org/grpc v1.67.0/go.mod h1:1gLDyUQU7CTLJI90u3nXZ9ekeghjeM7pTDZlqFNg2AA=
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw=
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
Expand Down
Loading

0 comments on commit 18377c2

Please sign in to comment.