1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647
|
// Package spectrum provides access to the Google Spectrum Database API.
//
// See http://developers.google.com/spectrum
//
// Usage example:
//
// import "google.golang.org/api/spectrum/v1explorer"
// ...
// spectrumService, err := spectrum.New(oauthHttpClient)
package spectrum // import "google.golang.org/api/spectrum/v1explorer"
import (
"bytes"
"encoding/json"
"errors"
"fmt"
context "golang.org/x/net/context"
ctxhttp "golang.org/x/net/context/ctxhttp"
gensupport "google.golang.org/api/gensupport"
googleapi "google.golang.org/api/googleapi"
"io"
"net/http"
"net/url"
"strconv"
"strings"
)
// Always reference these packages, just in case the auto-generated code
// below doesn't.
var _ = bytes.NewBuffer
var _ = strconv.Itoa
var _ = fmt.Sprintf
var _ = json.NewDecoder
var _ = io.Copy
var _ = url.Parse
var _ = gensupport.MarshalJSON
var _ = googleapi.Version
var _ = errors.New
var _ = strings.Replace
var _ = context.Canceled
var _ = ctxhttp.Do
const apiId = "spectrum:v1explorer"
const apiName = "spectrum"
const apiVersion = "v1explorer"
const basePath = "https://www.googleapis.com/spectrum/v1explorer/paws/"
func New(client *http.Client) (*Service, error) {
if client == nil {
return nil, errors.New("client is nil")
}
s := &Service{client: client, BasePath: basePath}
s.Paws = NewPawsService(s)
return s, nil
}
type Service struct {
client *http.Client
BasePath string // API endpoint base URL
UserAgent string // optional additional User-Agent fragment
Paws *PawsService
}
func (s *Service) userAgent() string {
if s.UserAgent == "" {
return googleapi.UserAgent
}
return googleapi.UserAgent + " " + s.UserAgent
}
func NewPawsService(s *Service) *PawsService {
rs := &PawsService{s: s}
return rs
}
type PawsService struct {
s *Service
}
// AntennaCharacteristics: Antenna characteristics provide additional
// information, such as the antenna height, antenna type, etc. Whether
// antenna characteristics must be provided in a request depends on the
// device type and regulatory domain.
type AntennaCharacteristics struct {
// Height: The antenna height in meters. Whether the antenna height is
// required depends on the device type and the regulatory domain. Note
// that the height may be negative.
Height float64 `json:"height,omitempty"`
// HeightType: If the height is required, then the height type (AGL for
// above ground level or AMSL for above mean sea level) is also
// required. The default is AGL.
HeightType string `json:"heightType,omitempty"`
// HeightUncertainty: The height uncertainty in meters. Whether this is
// required depends on the regulatory domain.
HeightUncertainty float64 `json:"heightUncertainty,omitempty"`
// ForceSendFields is a list of field names (e.g. "Height") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Height") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AntennaCharacteristics) MarshalJSON() ([]byte, error) {
type NoMethod AntennaCharacteristics
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *AntennaCharacteristics) UnmarshalJSON(data []byte) error {
type NoMethod AntennaCharacteristics
var s1 struct {
Height gensupport.JSONFloat64 `json:"height"`
HeightUncertainty gensupport.JSONFloat64 `json:"heightUncertainty"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.Height = float64(s1.Height)
s.HeightUncertainty = float64(s1.HeightUncertainty)
return nil
}
// DatabaseSpec: This message contains the name and URI of a database.
type DatabaseSpec struct {
// Name: The display name for a database.
Name string `json:"name,omitempty"`
// Uri: The corresponding URI of the database.
Uri string `json:"uri,omitempty"`
// ForceSendFields is a list of field names (e.g. "Name") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Name") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DatabaseSpec) MarshalJSON() ([]byte, error) {
type NoMethod DatabaseSpec
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DbUpdateSpec: This message is provided by the database to notify
// devices of an upcoming change to the database URI.
type DbUpdateSpec struct {
// Databases: A required list of one or more databases. A device should
// update its preconfigured list of databases to replace (only) the
// database that provided the response with the specified entries.
Databases []*DatabaseSpec `json:"databases,omitempty"`
// ForceSendFields is a list of field names (e.g. "Databases") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Databases") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DbUpdateSpec) MarshalJSON() ([]byte, error) {
type NoMethod DbUpdateSpec
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeviceCapabilities: Device capabilities provide additional
// information that may be used by a device to provide additional
// information to the database that may help it to determine available
// spectrum. If the database does not support device capabilities it
// will ignore the parameter altogether.
type DeviceCapabilities struct {
// FrequencyRanges: An optional list of frequency ranges supported by
// the device. Each element must contain start and stop frequencies in
// which the device can operate. Channel identifiers are optional. When
// specified, the database should not return available spectrum that
// falls outside these ranges or channel IDs.
FrequencyRanges []*FrequencyRange `json:"frequencyRanges,omitempty"`
// ForceSendFields is a list of field names (e.g. "FrequencyRanges") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "FrequencyRanges") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *DeviceCapabilities) MarshalJSON() ([]byte, error) {
type NoMethod DeviceCapabilities
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeviceDescriptor: The device descriptor contains parameters that
// identify the specific device, such as its manufacturer serial number,
// regulatory-specific identifier (e.g., FCC ID), and any other device
// characteristics required by regulatory domains.
type DeviceDescriptor struct {
// EtsiEnDeviceCategory: Specifies the ETSI white space device category.
// Valid values are the strings master and slave. This field is
// case-insensitive. Consult the ETSI documentation for details about
// the device types.
EtsiEnDeviceCategory string `json:"etsiEnDeviceCategory,omitempty"`
// EtsiEnDeviceEmissionsClass: Specifies the ETSI white space device
// emissions class. The values are represented by numeric strings, such
// as 1, 2, etc. Consult the ETSI documentation for details about the
// device types.
EtsiEnDeviceEmissionsClass string `json:"etsiEnDeviceEmissionsClass,omitempty"`
// EtsiEnDeviceType: Specifies the ETSI white space device type. Valid
// values are single-letter strings, such as A, B, etc. Consult the ETSI
// documentation for details about the device types.
EtsiEnDeviceType string `json:"etsiEnDeviceType,omitempty"`
// EtsiEnTechnologyId: Specifies the ETSI white space device technology
// identifier. The string value must not exceed 64 characters in length.
// Consult the ETSI documentation for details about the device types.
EtsiEnTechnologyId string `json:"etsiEnTechnologyId,omitempty"`
// FccId: Specifies the device's FCC certification identifier. The value
// is an identifier string whose length should not exceed 32 characters.
// Note that, in practice, a valid FCC ID may be limited to 19
// characters.
FccId string `json:"fccId,omitempty"`
// FccTvbdDeviceType: Specifies the TV Band White Space device type, as
// defined by the FCC. Valid values are FIXED, MODE_1, MODE_2.
FccTvbdDeviceType string `json:"fccTvbdDeviceType,omitempty"`
// ManufacturerId: The manufacturer's ID may be required by the
// regulatory domain. This should represent the name of the device
// manufacturer, should be consistent across all devices from the same
// manufacturer, and should be distinct from that of other
// manufacturers. The string value must not exceed 64 characters in
// length.
ManufacturerId string `json:"manufacturerId,omitempty"`
// ModelId: The device's model ID may be required by the regulatory
// domain. The string value must not exceed 64 characters in length.
ModelId string `json:"modelId,omitempty"`
// RulesetIds: The list of identifiers for rulesets supported by the
// device. A database may require that the device provide this list
// before servicing the device requests. If the database does not
// support any of the rulesets specified in the list, the database may
// refuse to service the device requests. If present, the list must
// contain at least one entry.
//
// For information about the valid requests, see section 9.2 of the PAWS
// specification. Currently, FccTvBandWhiteSpace-2010 is the only
// supported ruleset.
RulesetIds []string `json:"rulesetIds,omitempty"`
// SerialNumber: The manufacturer's device serial number; required by
// the applicable regulatory domain. The length of the value must not
// exceed 64 characters.
SerialNumber string `json:"serialNumber,omitempty"`
// ForceSendFields is a list of field names (e.g.
// "EtsiEnDeviceCategory") to unconditionally include in API requests.
// By default, fields with empty values are omitted from API requests.
// However, any non-pointer, non-interface field appearing in
// ForceSendFields will be sent to the server regardless of whether the
// field is empty or not. This may be used to include empty fields in
// Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "EtsiEnDeviceCategory") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *DeviceDescriptor) MarshalJSON() ([]byte, error) {
type NoMethod DeviceDescriptor
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeviceOwner: This parameter contains device-owner information
// required as part of device registration. The regulatory domains may
// require additional parameters.
//
// All contact information must be expressed using the structure defined
// by the vCard format specification. Only the contact fields of vCard
// are supported:
// - fn: Full name of an individual
// - org: Name of the organization
// - adr: Address fields
// - tel: Telephone numbers
// - email: Email addresses
//
// Note that the vCard specification defines maximum lengths for each
// field.
type DeviceOwner struct {
// Operator: The vCard contact information for the device operator is
// optional, but may be required by specific regulatory domains.
Operator *Vcard `json:"operator,omitempty"`
// Owner: The vCard contact information for the individual or business
// that owns the device is required.
Owner *Vcard `json:"owner,omitempty"`
// ForceSendFields is a list of field names (e.g. "Operator") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Operator") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeviceOwner) MarshalJSON() ([]byte, error) {
type NoMethod DeviceOwner
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeviceValidity: The device validity element describes whether a
// particular device is valid to operate in the regulatory domain.
type DeviceValidity struct {
// DeviceDesc: The descriptor of the device for which the validity check
// was requested. It will always be present.
DeviceDesc *DeviceDescriptor `json:"deviceDesc,omitempty"`
// IsValid: The validity status: true if the device is valid for
// operation, false otherwise. It will always be present.
IsValid bool `json:"isValid,omitempty"`
// Reason: If the device identifier is not valid, the database may
// include a reason. The reason may be in any language. The length of
// the value should not exceed 128 characters.
Reason string `json:"reason,omitempty"`
// ForceSendFields is a list of field names (e.g. "DeviceDesc") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DeviceDesc") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeviceValidity) MarshalJSON() ([]byte, error) {
type NoMethod DeviceValidity
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// EventTime: The start and stop times of an event. This is used to
// indicate the time period for which a spectrum profile is valid.
//
// Both times are expressed using the format, YYYY-MM-DDThh:mm:ssZ, as
// defined in RFC3339. The times must be expressed using UTC.
type EventTime struct {
// StartTime: The inclusive start of the event. It will be present.
StartTime string `json:"startTime,omitempty"`
// StopTime: The exclusive end of the event. It will be present.
StopTime string `json:"stopTime,omitempty"`
// ForceSendFields is a list of field names (e.g. "StartTime") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "StartTime") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *EventTime) MarshalJSON() ([]byte, error) {
type NoMethod EventTime
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// FrequencyRange: A specific range of frequencies together with the
// associated maximum power level and channel identifier.
type FrequencyRange struct {
// ChannelId: The database may include a channel identifier, when
// applicable. When it is included, the device should treat it as
// informative. The length of the identifier should not exceed 16
// characters.
ChannelId string `json:"channelId,omitempty"`
// MaxPowerDBm: The maximum total power level (EIRP)—computed over the
// corresponding operating bandwidth—that is permitted within the
// frequency range. Depending on the context in which the
// frequency-range element appears, this value may be required. For
// example, it is required in the available-spectrum response,
// available-spectrum-batch response, and spectrum-use notification
// message, but it should not be present (it is not applicable) when the
// frequency range appears inside a device-capabilities message.
MaxPowerDBm float64 `json:"maxPowerDBm,omitempty"`
// StartHz: The required inclusive start of the frequency range (in
// Hertz).
StartHz float64 `json:"startHz,omitempty"`
// StopHz: The required exclusive end of the frequency range (in Hertz).
StopHz float64 `json:"stopHz,omitempty"`
// ForceSendFields is a list of field names (e.g. "ChannelId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ChannelId") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *FrequencyRange) MarshalJSON() ([]byte, error) {
type NoMethod FrequencyRange
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *FrequencyRange) UnmarshalJSON(data []byte) error {
type NoMethod FrequencyRange
var s1 struct {
MaxPowerDBm gensupport.JSONFloat64 `json:"maxPowerDBm"`
StartHz gensupport.JSONFloat64 `json:"startHz"`
StopHz gensupport.JSONFloat64 `json:"stopHz"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.MaxPowerDBm = float64(s1.MaxPowerDBm)
s.StartHz = float64(s1.StartHz)
s.StopHz = float64(s1.StopHz)
return nil
}
// GeoLocation: This parameter is used to specify the geolocation of the
// device.
type GeoLocation struct {
// Confidence: The location confidence level, as an integer percentage,
// may be required, depending on the regulatory domain. When the
// parameter is optional and not provided, its value is assumed to be
// 95. Valid values range from 0 to 99, since, in practice, 100-percent
// confidence is not achievable. The confidence value is meaningful only
// when geolocation refers to a point with uncertainty.
Confidence int64 `json:"confidence,omitempty"`
// Point: If present, indicates that the geolocation represents a point.
// Paradoxically, a point is parameterized using an ellipse, where the
// center represents the location of the point and the distances along
// the major and minor axes represent the uncertainty. The uncertainty
// values may be required, depending on the regulatory domain.
Point *GeoLocationEllipse `json:"point,omitempty"`
// Region: If present, indicates that the geolocation represents a
// region. Database support for regions is optional.
Region *GeoLocationPolygon `json:"region,omitempty"`
// ForceSendFields is a list of field names (e.g. "Confidence") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Confidence") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *GeoLocation) MarshalJSON() ([]byte, error) {
type NoMethod GeoLocation
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// GeoLocationEllipse: A "point" with uncertainty is represented using
// the Ellipse shape.
type GeoLocationEllipse struct {
// Center: A required geo-spatial point representing the center of the
// ellipse.
Center *GeoLocationPoint `json:"center,omitempty"`
// Orientation: A floating-point number that expresses the orientation
// of the ellipse, representing the rotation, in degrees, of the
// semi-major axis from North towards the East. For example, when the
// uncertainty is greatest along the North-South direction, orientation
// is 0 degrees; conversely, if the uncertainty is greatest along the
// East-West direction, orientation is 90 degrees. When orientation is
// not present, the orientation is assumed to be 0.
Orientation float64 `json:"orientation,omitempty"`
// SemiMajorAxis: A floating-point number that expresses the location
// uncertainty along the major axis of the ellipse. May be required by
// the regulatory domain. When the uncertainty is optional, the default
// value is 0.
SemiMajorAxis float64 `json:"semiMajorAxis,omitempty"`
// SemiMinorAxis: A floating-point number that expresses the location
// uncertainty along the minor axis of the ellipse. May be required by
// the regulatory domain. When the uncertainty is optional, the default
// value is 0.
SemiMinorAxis float64 `json:"semiMinorAxis,omitempty"`
// ForceSendFields is a list of field names (e.g. "Center") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Center") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *GeoLocationEllipse) MarshalJSON() ([]byte, error) {
type NoMethod GeoLocationEllipse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *GeoLocationEllipse) UnmarshalJSON(data []byte) error {
type NoMethod GeoLocationEllipse
var s1 struct {
Orientation gensupport.JSONFloat64 `json:"orientation"`
SemiMajorAxis gensupport.JSONFloat64 `json:"semiMajorAxis"`
SemiMinorAxis gensupport.JSONFloat64 `json:"semiMinorAxis"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.Orientation = float64(s1.Orientation)
s.SemiMajorAxis = float64(s1.SemiMajorAxis)
s.SemiMinorAxis = float64(s1.SemiMinorAxis)
return nil
}
// GeoLocationPoint: A single geolocation on the globe.
type GeoLocationPoint struct {
// Latitude: A required floating-point number that expresses the
// latitude in degrees using the WGS84 datum. For details on this
// encoding, see the National Imagery and Mapping Agency's Technical
// Report TR8350.2.
Latitude float64 `json:"latitude,omitempty"`
// Longitude: A required floating-point number that expresses the
// longitude in degrees using the WGS84 datum. For details on this
// encoding, see the National Imagery and Mapping Agency's Technical
// Report TR8350.2.
Longitude float64 `json:"longitude,omitempty"`
// ForceSendFields is a list of field names (e.g. "Latitude") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Latitude") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *GeoLocationPoint) MarshalJSON() ([]byte, error) {
type NoMethod GeoLocationPoint
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *GeoLocationPoint) UnmarshalJSON(data []byte) error {
type NoMethod GeoLocationPoint
var s1 struct {
Latitude gensupport.JSONFloat64 `json:"latitude"`
Longitude gensupport.JSONFloat64 `json:"longitude"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.Latitude = float64(s1.Latitude)
s.Longitude = float64(s1.Longitude)
return nil
}
// GeoLocationPolygon: A region is represented using the polygonal
// shape.
type GeoLocationPolygon struct {
// Exterior: When the geolocation describes a region, the exterior field
// refers to a list of latitude/longitude points that represent the
// vertices of a polygon. The first and last points must be the same.
// Thus, a minimum of four points is required. The following polygon
// restrictions from RFC5491 apply:
// - A connecting line shall not cross another connecting line of the
// same polygon.
// - The vertices must be defined in a counterclockwise order.
// - The edges of a polygon are defined by the shortest path between two
// points in space (not a geodesic curve). Consequently, the length
// between two adjacent vertices should be restricted to a maximum of
// 130 km.
// - All vertices are assumed to be at the same altitude.
// - Polygon shapes should be restricted to a maximum of 15 vertices (16
// points that include the repeated vertex).
Exterior []*GeoLocationPoint `json:"exterior,omitempty"`
// ForceSendFields is a list of field names (e.g. "Exterior") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Exterior") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *GeoLocationPolygon) MarshalJSON() ([]byte, error) {
type NoMethod GeoLocationPolygon
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// GeoSpectrumSchedule: The schedule of spectrum profiles available at a
// particular geolocation.
type GeoSpectrumSchedule struct {
// Location: The geolocation identifies the location at which the
// spectrum schedule applies. It will always be present.
Location *GeoLocation `json:"location,omitempty"`
// SpectrumSchedules: A list of available spectrum profiles and
// associated times. It will always be present, and at least one
// schedule must be included (though it may be empty if there is no
// available spectrum). More than one schedule may be included to
// represent future changes to the available spectrum.
SpectrumSchedules []*SpectrumSchedule `json:"spectrumSchedules,omitempty"`
// ForceSendFields is a list of field names (e.g. "Location") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Location") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *GeoSpectrumSchedule) MarshalJSON() ([]byte, error) {
type NoMethod GeoSpectrumSchedule
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PawsGetSpectrumBatchRequest: The request message for a batch
// available spectrum query protocol.
type PawsGetSpectrumBatchRequest struct {
// Antenna: Depending on device type and regulatory domain, antenna
// characteristics may be required.
Antenna *AntennaCharacteristics `json:"antenna,omitempty"`
// Capabilities: The master device may include its device capabilities
// to limit the available-spectrum batch response to the spectrum that
// is compatible with its capabilities. The database should not return
// spectrum that is incompatible with the specified capabilities.
Capabilities *DeviceCapabilities `json:"capabilities,omitempty"`
// DeviceDesc: When the available spectrum request is made on behalf of
// a specific device (a master or slave device), device descriptor
// information for the device on whose behalf the request is made is
// required (in such cases, the requestType parameter must be empty).
// When a requestType value is specified, device descriptor information
// may be optional or required according to the rules of the applicable
// regulatory domain.
DeviceDesc *DeviceDescriptor `json:"deviceDesc,omitempty"`
// Locations: A geolocation list is required. This allows a device to
// specify its current location plus additional anticipated locations
// when allowed by the regulatory domain. At least one location must be
// included. Geolocation must be given as the location of the radiation
// center of the device's antenna. If a location specifies a region,
// rather than a point, the database may return an UNIMPLEMENTED error
// if it does not support query by region.
//
// There is no upper limit on the number of locations included in a
// available spectrum batch request, but the database may restrict the
// number of locations it supports by returning a response with fewer
// locations than specified in the batch request. Note that geolocations
// must be those of the master device (a device with geolocation
// capability that makes an available spectrum batch request), whether
// the master device is making the request on its own behalf or on
// behalf of a slave device (one without geolocation capability).
Locations []*GeoLocation `json:"locations,omitempty"`
// MasterDeviceDesc: When an available spectrum batch request is made by
// the master device (a device with geolocation capability) on behalf of
// a slave device (a device without geolocation capability), the rules
// of the applicable regulatory domain may require the master device to
// provide its own device descriptor information (in addition to device
// descriptor information for the slave device in a separate parameter).
MasterDeviceDesc *DeviceDescriptor `json:"masterDeviceDesc,omitempty"`
// Owner: Depending on device type and regulatory domain, device owner
// information may be included in an available spectrum batch request.
// This allows the device to register and get spectrum-availability
// information in a single request.
Owner *DeviceOwner `json:"owner,omitempty"`
// RequestType: The request type parameter is an optional parameter that
// can be used to modify an available spectrum batch request, but its
// use depends on applicable regulatory rules. For example, It may be
// used to request generic slave device parameters without having to
// specify the device descriptor for a specific device. When the
// requestType parameter is missing, the request is for a specific
// device (master or slave), and the device descriptor parameter for the
// device on whose behalf the batch request is made is required.
RequestType string `json:"requestType,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ForceSendFields is a list of field names (e.g. "Antenna") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Antenna") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PawsGetSpectrumBatchRequest) MarshalJSON() ([]byte, error) {
type NoMethod PawsGetSpectrumBatchRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PawsGetSpectrumBatchResponse: The response message for the batch
// available spectrum query contains a schedule of available spectrum
// for the device at multiple locations.
type PawsGetSpectrumBatchResponse struct {
// DatabaseChange: A database may include the databaseChange parameter
// to notify a device of a change to its database URI, providing one or
// more alternate database URIs. The device should use this information
// to update its list of pre-configured databases by (only) replacing
// its entry for the responding database with the list of alternate
// URIs.
DatabaseChange *DbUpdateSpec `json:"databaseChange,omitempty"`
// DeviceDesc: The database must return in its available spectrum
// response the device descriptor information it received in the master
// device's available spectrum batch request.
DeviceDesc *DeviceDescriptor `json:"deviceDesc,omitempty"`
// GeoSpectrumSchedules: The available spectrum batch response must
// contain a geo-spectrum schedule list, The list may be empty if
// spectrum is not available. The database may return more than one
// geo-spectrum schedule to represent future changes to the available
// spectrum. How far in advance a schedule may be provided depends upon
// the applicable regulatory domain. The database may return available
// spectrum for fewer geolocations than requested. The device must not
// make assumptions about the order of the entries in the list, and must
// use the geolocation value in each geo-spectrum schedule entry to
// match available spectrum to a location.
GeoSpectrumSchedules []*GeoSpectrumSchedule `json:"geoSpectrumSchedules,omitempty"`
// Kind: Identifies what kind of resource this is. Value: the fixed
// string "spectrum#pawsGetSpectrumBatchResponse".
Kind string `json:"kind,omitempty"`
// MaxContiguousBwHz: The database may return a constraint on the
// allowed maximum contiguous bandwidth (in Hertz). A regulatory domain
// may require the database to return this parameter. When this
// parameter is present in the response, the device must apply this
// constraint to its spectrum-selection logic to ensure that no single
// block of spectrum has bandwidth that exceeds this value.
MaxContiguousBwHz float64 `json:"maxContiguousBwHz,omitempty"`
// MaxTotalBwHz: The database may return a constraint on the allowed
// maximum total bandwidth (in Hertz), which does not need to be
// contiguous. A regulatory domain may require the database to return
// this parameter. When this parameter is present in the available
// spectrum batch response, the device must apply this constraint to its
// spectrum-selection logic to ensure that total bandwidth does not
// exceed this value.
MaxTotalBwHz float64 `json:"maxTotalBwHz,omitempty"`
// NeedsSpectrumReport: For regulatory domains that require a
// spectrum-usage report from devices, the database must return true for
// this parameter if the geo-spectrum schedules list is not empty;
// otherwise, the database should either return false or omit this
// parameter. If this parameter is present and its value is true, the
// device must send a spectrum use notify message to the database;
// otherwise, the device should not send the notification.
NeedsSpectrumReport bool `json:"needsSpectrumReport,omitempty"`
// RulesetInfo: The database should return ruleset information, which
// identifies the applicable regulatory authority and ruleset for the
// available spectrum batch response. If included, the device must use
// the corresponding ruleset to interpret the response. Values provided
// in the returned ruleset information, such as maxLocationChange, take
// precedence over any conflicting values provided in the ruleset
// information returned in a prior initialization response sent by the
// database to the device.
RulesetInfo *RulesetInfo `json:"rulesetInfo,omitempty"`
// Timestamp: The database includes a timestamp of the form,
// YYYY-MM-DDThh:mm:ssZ (Internet timestamp format per RFC3339), in its
// available spectrum batch response. The timestamp should be used by
// the device as a reference for the start and stop times specified in
// the response spectrum schedules.
Timestamp string `json:"timestamp,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "DatabaseChange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DatabaseChange") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *PawsGetSpectrumBatchResponse) MarshalJSON() ([]byte, error) {
type NoMethod PawsGetSpectrumBatchResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *PawsGetSpectrumBatchResponse) UnmarshalJSON(data []byte) error {
type NoMethod PawsGetSpectrumBatchResponse
var s1 struct {
MaxContiguousBwHz gensupport.JSONFloat64 `json:"maxContiguousBwHz"`
MaxTotalBwHz gensupport.JSONFloat64 `json:"maxTotalBwHz"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.MaxContiguousBwHz = float64(s1.MaxContiguousBwHz)
s.MaxTotalBwHz = float64(s1.MaxTotalBwHz)
return nil
}
// PawsGetSpectrumRequest: The request message for the available
// spectrum query protocol which must include the device's geolocation.
type PawsGetSpectrumRequest struct {
// Antenna: Depending on device type and regulatory domain, the
// characteristics of the antenna may be required.
Antenna *AntennaCharacteristics `json:"antenna,omitempty"`
// Capabilities: The master device may include its device capabilities
// to limit the available-spectrum response to the spectrum that is
// compatible with its capabilities. The database should not return
// spectrum that is incompatible with the specified capabilities.
Capabilities *DeviceCapabilities `json:"capabilities,omitempty"`
// DeviceDesc: When the available spectrum request is made on behalf of
// a specific device (a master or slave device), device descriptor
// information for that device is required (in such cases, the
// requestType parameter must be empty). When a requestType value is
// specified, device descriptor information may be optional or required
// according to the rules of the applicable regulatory domain.
DeviceDesc *DeviceDescriptor `json:"deviceDesc,omitempty"`
// Location: The geolocation of the master device (a device with
// geolocation capability that makes an available spectrum request) is
// required whether the master device is making the request on its own
// behalf or on behalf of a slave device (one without geolocation
// capability). The location must be the location of the radiation
// center of the master device's antenna. To support mobile devices, a
// regulatory domain may allow the anticipated position of the master
// device to be given instead. If the location specifies a region,
// rather than a point, the database may return an UNIMPLEMENTED error
// code if it does not support query by region.
Location *GeoLocation `json:"location,omitempty"`
// MasterDeviceDesc: When an available spectrum request is made by the
// master device (a device with geolocation capability) on behalf of a
// slave device (a device without geolocation capability), the rules of
// the applicable regulatory domain may require the master device to
// provide its own device descriptor information (in addition to device
// descriptor information for the slave device, which is provided in a
// separate parameter).
MasterDeviceDesc *DeviceDescriptor `json:"masterDeviceDesc,omitempty"`
// Owner: Depending on device type and regulatory domain, device owner
// information may be included in an available spectrum request. This
// allows the device to register and get spectrum-availability
// information in a single request.
Owner *DeviceOwner `json:"owner,omitempty"`
// RequestType: The request type parameter is an optional parameter that
// can be used to modify an available spectrum request, but its use
// depends on applicable regulatory rules. It may be used, for example,
// to request generic slave device parameters without having to specify
// the device descriptor for a specific device. When the requestType
// parameter is missing, the request is for a specific device (master or
// slave), and the deviceDesc parameter for the device on whose behalf
// the request is made is required.
RequestType string `json:"requestType,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ForceSendFields is a list of field names (e.g. "Antenna") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Antenna") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PawsGetSpectrumRequest) MarshalJSON() ([]byte, error) {
type NoMethod PawsGetSpectrumRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PawsGetSpectrumResponse: The response message for the available
// spectrum query which contains a schedule of available spectrum for
// the device.
type PawsGetSpectrumResponse struct {
// DatabaseChange: A database may include the databaseChange parameter
// to notify a device of a change to its database URI, providing one or
// more alternate database URIs. The device should use this information
// to update its list of pre-configured databases by (only) replacing
// its entry for the responding database with the list of alternate
// URIs.
DatabaseChange *DbUpdateSpec `json:"databaseChange,omitempty"`
// DeviceDesc: The database must return, in its available spectrum
// response, the device descriptor information it received in the master
// device's available spectrum request.
DeviceDesc *DeviceDescriptor `json:"deviceDesc,omitempty"`
// Kind: Identifies what kind of resource this is. Value: the fixed
// string "spectrum#pawsGetSpectrumResponse".
Kind string `json:"kind,omitempty"`
// MaxContiguousBwHz: The database may return a constraint on the
// allowed maximum contiguous bandwidth (in Hertz). A regulatory domain
// may require the database to return this parameter. When this
// parameter is present in the response, the device must apply this
// constraint to its spectrum-selection logic to ensure that no single
// block of spectrum has bandwidth that exceeds this value.
MaxContiguousBwHz float64 `json:"maxContiguousBwHz,omitempty"`
// MaxTotalBwHz: The database may return a constraint on the allowed
// maximum total bandwidth (in Hertz), which need not be contiguous. A
// regulatory domain may require the database to return this parameter.
// When this parameter is present in the available spectrum response,
// the device must apply this constraint to its spectrum-selection logic
// to ensure that total bandwidth does not exceed this value.
MaxTotalBwHz float64 `json:"maxTotalBwHz,omitempty"`
// NeedsSpectrumReport: For regulatory domains that require a
// spectrum-usage report from devices, the database must return true for
// this parameter if the spectrum schedule list is not empty; otherwise,
// the database will either return false or omit this parameter. If this
// parameter is present and its value is true, the device must send a
// spectrum use notify message to the database; otherwise, the device
// must not send the notification.
NeedsSpectrumReport bool `json:"needsSpectrumReport,omitempty"`
// RulesetInfo: The database should return ruleset information, which
// identifies the applicable regulatory authority and ruleset for the
// available spectrum response. If included, the device must use the
// corresponding ruleset to interpret the response. Values provided in
// the returned ruleset information, such as maxLocationChange, take
// precedence over any conflicting values provided in the ruleset
// information returned in a prior initialization response sent by the
// database to the device.
RulesetInfo *RulesetInfo `json:"rulesetInfo,omitempty"`
// SpectrumSchedules: The available spectrum response must contain a
// spectrum schedule list. The list may be empty if spectrum is not
// available. The database may return more than one spectrum schedule to
// represent future changes to the available spectrum. How far in
// advance a schedule may be provided depends on the applicable
// regulatory domain.
SpectrumSchedules []*SpectrumSchedule `json:"spectrumSchedules,omitempty"`
// Timestamp: The database includes a timestamp of the form
// YYYY-MM-DDThh:mm:ssZ (Internet timestamp format per RFC3339) in its
// available spectrum response. The timestamp should be used by the
// device as a reference for the start and stop times specified in the
// response spectrum schedules.
Timestamp string `json:"timestamp,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "DatabaseChange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DatabaseChange") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *PawsGetSpectrumResponse) MarshalJSON() ([]byte, error) {
type NoMethod PawsGetSpectrumResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *PawsGetSpectrumResponse) UnmarshalJSON(data []byte) error {
type NoMethod PawsGetSpectrumResponse
var s1 struct {
MaxContiguousBwHz gensupport.JSONFloat64 `json:"maxContiguousBwHz"`
MaxTotalBwHz gensupport.JSONFloat64 `json:"maxTotalBwHz"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.MaxContiguousBwHz = float64(s1.MaxContiguousBwHz)
s.MaxTotalBwHz = float64(s1.MaxTotalBwHz)
return nil
}
// PawsInitRequest: The initialization request message allows the master
// device to initiate exchange of capabilities with the database.
type PawsInitRequest struct {
// DeviceDesc: The DeviceDescriptor parameter is required. If the
// database does not support the device or any of the rulesets specified
// in the device descriptor, it must return an UNSUPPORTED error code in
// the error response.
DeviceDesc *DeviceDescriptor `json:"deviceDesc,omitempty"`
// Location: A device's geolocation is required.
Location *GeoLocation `json:"location,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ForceSendFields is a list of field names (e.g. "DeviceDesc") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DeviceDesc") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PawsInitRequest) MarshalJSON() ([]byte, error) {
type NoMethod PawsInitRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PawsInitResponse: The initialization response message communicates
// database parameters to the requesting device.
type PawsInitResponse struct {
// DatabaseChange: A database may include the databaseChange parameter
// to notify a device of a change to its database URI, providing one or
// more alternate database URIs. The device should use this information
// to update its list of pre-configured databases by (only) replacing
// its entry for the responding database with the list of alternate
// URIs.
DatabaseChange *DbUpdateSpec `json:"databaseChange,omitempty"`
// Kind: Identifies what kind of resource this is. Value: the fixed
// string "spectrum#pawsInitResponse".
Kind string `json:"kind,omitempty"`
// RulesetInfo: The rulesetInfo parameter must be included in the
// response. This parameter specifies the regulatory domain and
// parameters applicable to that domain. The database must include the
// authority field, which defines the regulatory domain for the location
// specified in the INIT_REQ message.
RulesetInfo *RulesetInfo `json:"rulesetInfo,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "DatabaseChange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DatabaseChange") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *PawsInitResponse) MarshalJSON() ([]byte, error) {
type NoMethod PawsInitResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PawsNotifySpectrumUseRequest: The spectrum-use notification message
// which must contain the geolocation of the Device and parameters
// required by the regulatory domain.
type PawsNotifySpectrumUseRequest struct {
// DeviceDesc: Device descriptor information is required in the
// spectrum-use notification message.
DeviceDesc *DeviceDescriptor `json:"deviceDesc,omitempty"`
// Location: The geolocation of the master device (the device that is
// sending the spectrum-use notification) to the database is required in
// the spectrum-use notification message.
Location *GeoLocation `json:"location,omitempty"`
// Spectra: A spectrum list is required in the spectrum-use
// notification. The list specifies the spectrum that the device expects
// to use, which includes frequency ranges and maximum power levels. The
// list may be empty if the device decides not to use any of spectrum.
// For consistency, the psdBandwidthHz value should match that from one
// of the spectrum elements in the corresponding available spectrum
// response previously sent to the device by the database. Note that
// maximum power levels in the spectrum element must be expressed as
// power spectral density over the specified psdBandwidthHz value. The
// actual bandwidth to be used (as computed from the start and stop
// frequencies) may be different from the psdBandwidthHz value. As an
// example, when regulatory rules express maximum power spectral density
// in terms of maximum power over any 100 kHz band, then the
// psdBandwidthHz value should be set to 100 kHz, even though the actual
// bandwidth used can be 20 kHz.
Spectra []*SpectrumMessage `json:"spectra,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ForceSendFields is a list of field names (e.g. "DeviceDesc") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DeviceDesc") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PawsNotifySpectrumUseRequest) MarshalJSON() ([]byte, error) {
type NoMethod PawsNotifySpectrumUseRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PawsNotifySpectrumUseResponse: An empty response to the notification.
type PawsNotifySpectrumUseResponse struct {
// Kind: Identifies what kind of resource this is. Value: the fixed
// string "spectrum#pawsNotifySpectrumUseResponse".
Kind string `json:"kind,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Kind") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Kind") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PawsNotifySpectrumUseResponse) MarshalJSON() ([]byte, error) {
type NoMethod PawsNotifySpectrumUseResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PawsRegisterRequest: The registration request message contains the
// required registration parameters.
type PawsRegisterRequest struct {
// Antenna: Antenna characteristics, including its height and height
// type.
Antenna *AntennaCharacteristics `json:"antenna,omitempty"`
// DeviceDesc: A DeviceDescriptor is required.
DeviceDesc *DeviceDescriptor `json:"deviceDesc,omitempty"`
// DeviceOwner: Device owner information is required.
DeviceOwner *DeviceOwner `json:"deviceOwner,omitempty"`
// Location: A device's geolocation is required.
Location *GeoLocation `json:"location,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ForceSendFields is a list of field names (e.g. "Antenna") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Antenna") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PawsRegisterRequest) MarshalJSON() ([]byte, error) {
type NoMethod PawsRegisterRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PawsRegisterResponse: The registration response message simply
// acknowledges receipt of the request and is otherwise empty.
type PawsRegisterResponse struct {
// DatabaseChange: A database may include the databaseChange parameter
// to notify a device of a change to its database URI, providing one or
// more alternate database URIs. The device should use this information
// to update its list of pre-configured databases by (only) replacing
// its entry for the responding database with the list of alternate
// URIs.
DatabaseChange *DbUpdateSpec `json:"databaseChange,omitempty"`
// Kind: Identifies what kind of resource this is. Value: the fixed
// string "spectrum#pawsRegisterResponse".
Kind string `json:"kind,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "DatabaseChange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DatabaseChange") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *PawsRegisterResponse) MarshalJSON() ([]byte, error) {
type NoMethod PawsRegisterResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PawsVerifyDeviceRequest: The device validation request message.
type PawsVerifyDeviceRequest struct {
// DeviceDescs: A list of device descriptors, which specifies the slave
// devices to be validated, is required.
DeviceDescs []*DeviceDescriptor `json:"deviceDescs,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ForceSendFields is a list of field names (e.g. "DeviceDescs") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DeviceDescs") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PawsVerifyDeviceRequest) MarshalJSON() ([]byte, error) {
type NoMethod PawsVerifyDeviceRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PawsVerifyDeviceResponse: The device validation response message.
type PawsVerifyDeviceResponse struct {
// DatabaseChange: A database may include the databaseChange parameter
// to notify a device of a change to its database URI, providing one or
// more alternate database URIs. The device should use this information
// to update its list of pre-configured databases by (only) replacing
// its entry for the responding database with the list of alternate
// URIs.
DatabaseChange *DbUpdateSpec `json:"databaseChange,omitempty"`
// DeviceValidities: A device validities list is required in the device
// validation response to report whether each slave device listed in a
// previous device validation request is valid. The number of entries
// must match the number of device descriptors listed in the previous
// device validation request.
DeviceValidities []*DeviceValidity `json:"deviceValidities,omitempty"`
// Kind: Identifies what kind of resource this is. Value: the fixed
// string "spectrum#pawsVerifyDeviceResponse".
Kind string `json:"kind,omitempty"`
// Type: The message type (e.g., INIT_REQ, AVAIL_SPECTRUM_REQ,
// ...).
//
// Required field.
Type string `json:"type,omitempty"`
// Version: The PAWS version. Must be exactly 1.0.
//
// Required field.
Version string `json:"version,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "DatabaseChange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DatabaseChange") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *PawsVerifyDeviceResponse) MarshalJSON() ([]byte, error) {
type NoMethod PawsVerifyDeviceResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// RulesetInfo: This contains parameters for the ruleset of a regulatory
// domain that is communicated using the initialization and
// available-spectrum processes.
type RulesetInfo struct {
// Authority: The regulatory domain to which the ruleset belongs is
// required. It must be a 2-letter country code. The device should use
// this to determine additional device behavior required by the
// associated regulatory domain.
Authority string `json:"authority,omitempty"`
// MaxLocationChange: The maximum location change in meters is required
// in the initialization response, but optional otherwise. When the
// device changes location by more than this specified distance, it must
// contact the database to get the available spectrum for the new
// location. If the device is using spectrum that is no longer
// available, it must immediately cease use of the spectrum under rules
// for database-managed spectrum. If this value is provided within the
// context of an available-spectrum response, it takes precedence over
// the value within the initialization response.
MaxLocationChange float64 `json:"maxLocationChange,omitempty"`
// MaxPollingSecs: The maximum duration, in seconds, between requests
// for available spectrum. It is required in the initialization
// response, but optional otherwise. The device must contact the
// database to get available spectrum no less frequently than this
// duration. If the new spectrum information indicates that the device
// is using spectrum that is no longer available, it must immediately
// cease use of those frequencies under rules for database-managed
// spectrum. If this value is provided within the context of an
// available-spectrum response, it takes precedence over the value
// within the initialization response.
MaxPollingSecs int64 `json:"maxPollingSecs,omitempty"`
// RulesetIds: The identifiers of the rulesets supported for the
// device's location. The database should include at least one
// applicable ruleset in the initialization response. The device may use
// the ruleset identifiers to determine parameters to include in
// subsequent requests. Within the context of the available-spectrum
// responses, the database should include the identifier of the ruleset
// that it used to determine the available-spectrum response. If
// included, the device must use the specified ruleset to interpret the
// response. If the device does not support the indicated ruleset, it
// must not operate in the spectrum governed by the ruleset.
RulesetIds []string `json:"rulesetIds,omitempty"`
// ForceSendFields is a list of field names (e.g. "Authority") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Authority") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *RulesetInfo) MarshalJSON() ([]byte, error) {
type NoMethod RulesetInfo
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *RulesetInfo) UnmarshalJSON(data []byte) error {
type NoMethod RulesetInfo
var s1 struct {
MaxLocationChange gensupport.JSONFloat64 `json:"maxLocationChange"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.MaxLocationChange = float64(s1.MaxLocationChange)
return nil
}
// SpectrumMessage: Available spectrum can be logically characterized by
// a list of frequency ranges and permissible power levels for each
// range.
type SpectrumMessage struct {
// Bandwidth: The bandwidth (in Hertz) for which permissible power
// levels are specified. For example, FCC regulation would require only
// one spectrum specification at 6MHz bandwidth, but Ofcom regulation
// would require two specifications, at 0.1MHz and 8MHz. This parameter
// may be empty if there is no available spectrum. It will be present
// otherwise.
Bandwidth float64 `json:"bandwidth,omitempty"`
// FrequencyRanges: The list of frequency ranges and permissible power
// levels. The list may be empty if there is no available spectrum,
// otherwise it will be present.
FrequencyRanges []*FrequencyRange `json:"frequencyRanges,omitempty"`
// ForceSendFields is a list of field names (e.g. "Bandwidth") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Bandwidth") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *SpectrumMessage) MarshalJSON() ([]byte, error) {
type NoMethod SpectrumMessage
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *SpectrumMessage) UnmarshalJSON(data []byte) error {
type NoMethod SpectrumMessage
var s1 struct {
Bandwidth gensupport.JSONFloat64 `json:"bandwidth"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.Bandwidth = float64(s1.Bandwidth)
return nil
}
// SpectrumSchedule: The spectrum schedule element combines an event
// time with spectrum profile to define a time period in which the
// profile is valid.
type SpectrumSchedule struct {
// EventTime: The event time expresses when the spectrum profile is
// valid. It will always be present.
EventTime *EventTime `json:"eventTime,omitempty"`
// Spectra: A list of spectrum messages representing the usable profile.
// It will always be present, but may be empty when there is no
// available spectrum.
Spectra []*SpectrumMessage `json:"spectra,omitempty"`
// ForceSendFields is a list of field names (e.g. "EventTime") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "EventTime") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *SpectrumSchedule) MarshalJSON() ([]byte, error) {
type NoMethod SpectrumSchedule
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Vcard: A vCard-in-JSON message that contains only the fields needed
// for PAWS:
// - fn: Full name of an individual
// - org: Name of the organization
// - adr: Address fields
// - tel: Telephone numbers
// - email: Email addresses
type Vcard struct {
// Adr: The street address of the entity.
Adr *VcardAddress `json:"adr,omitempty"`
// Email: An email address that can be used to reach the contact.
Email *VcardTypedText `json:"email,omitempty"`
// Fn: The full name of the contact person. For example: John A. Smith.
Fn string `json:"fn,omitempty"`
// Org: The organization associated with the registering entity.
Org *VcardTypedText `json:"org,omitempty"`
// Tel: A telephone number that can be used to call the contact.
Tel *VcardTelephone `json:"tel,omitempty"`
// ForceSendFields is a list of field names (e.g. "Adr") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Adr") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Vcard) MarshalJSON() ([]byte, error) {
type NoMethod Vcard
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// VcardAddress: The structure used to represent a street address.
type VcardAddress struct {
// Code: The postal code associated with the address. For example:
// 94423.
Code string `json:"code,omitempty"`
// Country: The country name. For example: US.
Country string `json:"country,omitempty"`
// Locality: The city or local equivalent portion of the address. For
// example: San Jose.
Locality string `json:"locality,omitempty"`
// Pobox: An optional post office box number.
Pobox string `json:"pobox,omitempty"`
// Region: The state or local equivalent portion of the address. For
// example: CA.
Region string `json:"region,omitempty"`
// Street: The street number and name. For example: 123 Any St.
Street string `json:"street,omitempty"`
// ForceSendFields is a list of field names (e.g. "Code") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Code") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *VcardAddress) MarshalJSON() ([]byte, error) {
type NoMethod VcardAddress
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// VcardTelephone: The structure used to represent a telephone number.
type VcardTelephone struct {
// Uri: A nested telephone URI of the form: tel:+1-123-456-7890.
Uri string `json:"uri,omitempty"`
// ForceSendFields is a list of field names (e.g. "Uri") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Uri") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *VcardTelephone) MarshalJSON() ([]byte, error) {
type NoMethod VcardTelephone
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// VcardTypedText: The structure used to represent an organization and
// an email address.
type VcardTypedText struct {
// Text: The text string associated with this item. For example, for an
// org field: ACME, inc. For an email field: smith@example.com.
Text string `json:"text,omitempty"`
// ForceSendFields is a list of field names (e.g. "Text") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Text") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *VcardTypedText) MarshalJSON() ([]byte, error) {
type NoMethod VcardTypedText
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// method id "spectrum.paws.getSpectrum":
type PawsGetSpectrumCall struct {
s *Service
pawsgetspectrumrequest *PawsGetSpectrumRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// GetSpectrum: Requests information about the available spectrum for a
// device at a location. Requests from a fixed-mode device must include
// owner information so the device can be registered with the database.
func (r *PawsService) GetSpectrum(pawsgetspectrumrequest *PawsGetSpectrumRequest) *PawsGetSpectrumCall {
c := &PawsGetSpectrumCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.pawsgetspectrumrequest = pawsgetspectrumrequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *PawsGetSpectrumCall) Fields(s ...googleapi.Field) *PawsGetSpectrumCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *PawsGetSpectrumCall) Context(ctx context.Context) *PawsGetSpectrumCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *PawsGetSpectrumCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PawsGetSpectrumCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.pawsgetspectrumrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "getSpectrum")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "spectrum.paws.getSpectrum" call.
// Exactly one of *PawsGetSpectrumResponse or error will be non-nil. Any
// non-2xx status code is an error. Response headers are in either
// *PawsGetSpectrumResponse.ServerResponse.Header or (if a response was
// returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *PawsGetSpectrumCall) Do(opts ...googleapi.CallOption) (*PawsGetSpectrumResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &PawsGetSpectrumResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Requests information about the available spectrum for a device at a location. Requests from a fixed-mode device must include owner information so the device can be registered with the database.",
// "httpMethod": "POST",
// "id": "spectrum.paws.getSpectrum",
// "path": "getSpectrum",
// "request": {
// "$ref": "PawsGetSpectrumRequest"
// },
// "response": {
// "$ref": "PawsGetSpectrumResponse"
// }
// }
}
// method id "spectrum.paws.getSpectrumBatch":
type PawsGetSpectrumBatchCall struct {
s *Service
pawsgetspectrumbatchrequest *PawsGetSpectrumBatchRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// GetSpectrumBatch: The Google Spectrum Database does not support batch
// requests, so this method always yields an UNIMPLEMENTED error.
func (r *PawsService) GetSpectrumBatch(pawsgetspectrumbatchrequest *PawsGetSpectrumBatchRequest) *PawsGetSpectrumBatchCall {
c := &PawsGetSpectrumBatchCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.pawsgetspectrumbatchrequest = pawsgetspectrumbatchrequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *PawsGetSpectrumBatchCall) Fields(s ...googleapi.Field) *PawsGetSpectrumBatchCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *PawsGetSpectrumBatchCall) Context(ctx context.Context) *PawsGetSpectrumBatchCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *PawsGetSpectrumBatchCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PawsGetSpectrumBatchCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.pawsgetspectrumbatchrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "getSpectrumBatch")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "spectrum.paws.getSpectrumBatch" call.
// Exactly one of *PawsGetSpectrumBatchResponse or error will be
// non-nil. Any non-2xx status code is an error. Response headers are in
// either *PawsGetSpectrumBatchResponse.ServerResponse.Header or (if a
// response was returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *PawsGetSpectrumBatchCall) Do(opts ...googleapi.CallOption) (*PawsGetSpectrumBatchResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &PawsGetSpectrumBatchResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "The Google Spectrum Database does not support batch requests, so this method always yields an UNIMPLEMENTED error.",
// "httpMethod": "POST",
// "id": "spectrum.paws.getSpectrumBatch",
// "path": "getSpectrumBatch",
// "request": {
// "$ref": "PawsGetSpectrumBatchRequest"
// },
// "response": {
// "$ref": "PawsGetSpectrumBatchResponse"
// }
// }
}
// method id "spectrum.paws.init":
type PawsInitCall struct {
s *Service
pawsinitrequest *PawsInitRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// Init: Initializes the connection between a white space device and the
// database.
func (r *PawsService) Init(pawsinitrequest *PawsInitRequest) *PawsInitCall {
c := &PawsInitCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.pawsinitrequest = pawsinitrequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *PawsInitCall) Fields(s ...googleapi.Field) *PawsInitCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *PawsInitCall) Context(ctx context.Context) *PawsInitCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *PawsInitCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PawsInitCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.pawsinitrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "init")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "spectrum.paws.init" call.
// Exactly one of *PawsInitResponse or error will be non-nil. Any
// non-2xx status code is an error. Response headers are in either
// *PawsInitResponse.ServerResponse.Header or (if a response was
// returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *PawsInitCall) Do(opts ...googleapi.CallOption) (*PawsInitResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &PawsInitResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Initializes the connection between a white space device and the database.",
// "httpMethod": "POST",
// "id": "spectrum.paws.init",
// "path": "init",
// "request": {
// "$ref": "PawsInitRequest"
// },
// "response": {
// "$ref": "PawsInitResponse"
// }
// }
}
// method id "spectrum.paws.notifySpectrumUse":
type PawsNotifySpectrumUseCall struct {
s *Service
pawsnotifyspectrumuserequest *PawsNotifySpectrumUseRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// NotifySpectrumUse: Notifies the database that the device has selected
// certain frequency ranges for transmission. Only to be invoked when
// required by the regulator. The Google Spectrum Database does not
// operate in domains that require notification, so this always yields
// an UNIMPLEMENTED error.
func (r *PawsService) NotifySpectrumUse(pawsnotifyspectrumuserequest *PawsNotifySpectrumUseRequest) *PawsNotifySpectrumUseCall {
c := &PawsNotifySpectrumUseCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.pawsnotifyspectrumuserequest = pawsnotifyspectrumuserequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *PawsNotifySpectrumUseCall) Fields(s ...googleapi.Field) *PawsNotifySpectrumUseCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *PawsNotifySpectrumUseCall) Context(ctx context.Context) *PawsNotifySpectrumUseCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *PawsNotifySpectrumUseCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PawsNotifySpectrumUseCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.pawsnotifyspectrumuserequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "notifySpectrumUse")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "spectrum.paws.notifySpectrumUse" call.
// Exactly one of *PawsNotifySpectrumUseResponse or error will be
// non-nil. Any non-2xx status code is an error. Response headers are in
// either *PawsNotifySpectrumUseResponse.ServerResponse.Header or (if a
// response was returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *PawsNotifySpectrumUseCall) Do(opts ...googleapi.CallOption) (*PawsNotifySpectrumUseResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &PawsNotifySpectrumUseResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Notifies the database that the device has selected certain frequency ranges for transmission. Only to be invoked when required by the regulator. The Google Spectrum Database does not operate in domains that require notification, so this always yields an UNIMPLEMENTED error.",
// "httpMethod": "POST",
// "id": "spectrum.paws.notifySpectrumUse",
// "path": "notifySpectrumUse",
// "request": {
// "$ref": "PawsNotifySpectrumUseRequest"
// },
// "response": {
// "$ref": "PawsNotifySpectrumUseResponse"
// }
// }
}
// method id "spectrum.paws.register":
type PawsRegisterCall struct {
s *Service
pawsregisterrequest *PawsRegisterRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// Register: The Google Spectrum Database implements registration in the
// getSpectrum method. As such this always returns an UNIMPLEMENTED
// error.
func (r *PawsService) Register(pawsregisterrequest *PawsRegisterRequest) *PawsRegisterCall {
c := &PawsRegisterCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.pawsregisterrequest = pawsregisterrequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *PawsRegisterCall) Fields(s ...googleapi.Field) *PawsRegisterCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *PawsRegisterCall) Context(ctx context.Context) *PawsRegisterCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *PawsRegisterCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PawsRegisterCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.pawsregisterrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "register")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "spectrum.paws.register" call.
// Exactly one of *PawsRegisterResponse or error will be non-nil. Any
// non-2xx status code is an error. Response headers are in either
// *PawsRegisterResponse.ServerResponse.Header or (if a response was
// returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *PawsRegisterCall) Do(opts ...googleapi.CallOption) (*PawsRegisterResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &PawsRegisterResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "The Google Spectrum Database implements registration in the getSpectrum method. As such this always returns an UNIMPLEMENTED error.",
// "httpMethod": "POST",
// "id": "spectrum.paws.register",
// "path": "register",
// "request": {
// "$ref": "PawsRegisterRequest"
// },
// "response": {
// "$ref": "PawsRegisterResponse"
// }
// }
}
// method id "spectrum.paws.verifyDevice":
type PawsVerifyDeviceCall struct {
s *Service
pawsverifydevicerequest *PawsVerifyDeviceRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// VerifyDevice: Validates a device for white space use in accordance
// with regulatory rules. The Google Spectrum Database does not support
// master/slave configurations, so this always yields an UNIMPLEMENTED
// error.
func (r *PawsService) VerifyDevice(pawsverifydevicerequest *PawsVerifyDeviceRequest) *PawsVerifyDeviceCall {
c := &PawsVerifyDeviceCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.pawsverifydevicerequest = pawsverifydevicerequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *PawsVerifyDeviceCall) Fields(s ...googleapi.Field) *PawsVerifyDeviceCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *PawsVerifyDeviceCall) Context(ctx context.Context) *PawsVerifyDeviceCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *PawsVerifyDeviceCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PawsVerifyDeviceCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.pawsverifydevicerequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "verifyDevice")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "spectrum.paws.verifyDevice" call.
// Exactly one of *PawsVerifyDeviceResponse or error will be non-nil.
// Any non-2xx status code is an error. Response headers are in either
// *PawsVerifyDeviceResponse.ServerResponse.Header or (if a response was
// returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *PawsVerifyDeviceCall) Do(opts ...googleapi.CallOption) (*PawsVerifyDeviceResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &PawsVerifyDeviceResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Validates a device for white space use in accordance with regulatory rules. The Google Spectrum Database does not support master/slave configurations, so this always yields an UNIMPLEMENTED error.",
// "httpMethod": "POST",
// "id": "spectrum.paws.verifyDevice",
// "path": "verifyDevice",
// "request": {
// "$ref": "PawsVerifyDeviceRequest"
// },
// "response": {
// "$ref": "PawsVerifyDeviceResponse"
// }
// }
}
|