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
|
// Package dataflow provides access to the Google Dataflow API.
//
// Usage example:
//
// import "google.golang.org/api/dataflow/v1beta3"
// ...
// dataflowService, err := dataflow.New(oauthHttpClient)
package dataflow
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"golang.org/x/net/context"
"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 _ = googleapi.Version
var _ = errors.New
var _ = strings.Replace
var _ = context.Background
const apiId = "dataflow:v1beta3"
const apiName = "dataflow"
const apiVersion = "v1beta3"
const basePath = "https://www.googleapis.com/dataflow/v1b3/projects/"
// OAuth2 scopes used by this API.
const (
// View and manage your data across Google Cloud Platform services
CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"
// View your email address
UserinfoEmailScope = "https://www.googleapis.com/auth/userinfo.email"
)
func New(client *http.Client) (*Service, error) {
if client == nil {
return nil, errors.New("client is nil")
}
s := &Service{client: client, BasePath: basePath}
s.V1b3 = NewV1b3Service(s)
return s, nil
}
type Service struct {
client *http.Client
BasePath string // API endpoint base URL
UserAgent string // optional additional User-Agent fragment
V1b3 *V1b3Service
}
func (s *Service) userAgent() string {
if s.UserAgent == "" {
return googleapi.UserAgent
}
return googleapi.UserAgent + " " + s.UserAgent
}
func NewV1b3Service(s *Service) *V1b3Service {
rs := &V1b3Service{s: s}
rs.Projects = NewV1b3ProjectsService(s)
return rs
}
type V1b3Service struct {
s *Service
Projects *V1b3ProjectsService
}
func NewV1b3ProjectsService(s *Service) *V1b3ProjectsService {
rs := &V1b3ProjectsService{s: s}
rs.Jobs = NewV1b3ProjectsJobsService(s)
return rs
}
type V1b3ProjectsService struct {
s *Service
Jobs *V1b3ProjectsJobsService
}
func NewV1b3ProjectsJobsService(s *Service) *V1b3ProjectsJobsService {
rs := &V1b3ProjectsJobsService{s: s}
rs.Messages = NewV1b3ProjectsJobsMessagesService(s)
rs.WorkItems = NewV1b3ProjectsJobsWorkItemsService(s)
return rs
}
type V1b3ProjectsJobsService struct {
s *Service
Messages *V1b3ProjectsJobsMessagesService
WorkItems *V1b3ProjectsJobsWorkItemsService
}
func NewV1b3ProjectsJobsMessagesService(s *Service) *V1b3ProjectsJobsMessagesService {
rs := &V1b3ProjectsJobsMessagesService{s: s}
return rs
}
type V1b3ProjectsJobsMessagesService struct {
s *Service
}
func NewV1b3ProjectsJobsWorkItemsService(s *Service) *V1b3ProjectsJobsWorkItemsService {
rs := &V1b3ProjectsJobsWorkItemsService{s: s}
return rs
}
type V1b3ProjectsJobsWorkItemsService struct {
s *Service
}
type ApproximateProgress struct {
PercentComplete float64 `json:"percentComplete,omitempty"`
Position *Position `json:"position,omitempty"`
RemainingTime string `json:"remainingTime,omitempty"`
}
type AutoscalingSettings struct {
// Possible values:
// "AUTOSCALING_ALGORITHM_BASIC"
// "AUTOSCALING_ALGORITHM_NONE"
// "AUTOSCALING_ALGORITHM_UNKNOWN"
Algorithm string `json:"algorithm,omitempty"`
MaxNumWorkers int64 `json:"maxNumWorkers,omitempty"`
}
type ComputationTopology struct {
ComputationId string `json:"computationId,omitempty"`
Inputs []*StreamLocation `json:"inputs,omitempty"`
KeyRanges []*KeyRangeLocation `json:"keyRanges,omitempty"`
Outputs []*StreamLocation `json:"outputs,omitempty"`
}
type DataDiskAssignment struct {
DataDisks []string `json:"dataDisks,omitempty"`
VmInstance string `json:"vmInstance,omitempty"`
}
type DerivedSource struct {
// Possible values:
// "SOURCE_DERIVATION_MODE_CHILD_OF_CURRENT"
// "SOURCE_DERIVATION_MODE_INDEPENDENT"
// "SOURCE_DERIVATION_MODE_SIBLING_OF_CURRENT"
// "SOURCE_DERIVATION_MODE_UNKNOWN"
DerivationMode string `json:"derivationMode,omitempty"`
Source *Source `json:"source,omitempty"`
}
type Disk struct {
DiskType string `json:"diskType,omitempty"`
MountPoint string `json:"mountPoint,omitempty"`
SizeGb int64 `json:"sizeGb,omitempty"`
}
type DynamicSourceSplit struct {
Primary *DerivedSource `json:"primary,omitempty"`
Residual *DerivedSource `json:"residual,omitempty"`
}
type Environment struct {
ClusterManagerApiService string `json:"clusterManagerApiService,omitempty"`
Dataset string `json:"dataset,omitempty"`
Experiments []string `json:"experiments,omitempty"`
SdkPipelineOptions EnvironmentSdkPipelineOptions `json:"sdkPipelineOptions,omitempty"`
TempStoragePrefix string `json:"tempStoragePrefix,omitempty"`
UserAgent EnvironmentUserAgent `json:"userAgent,omitempty"`
Version EnvironmentVersion `json:"version,omitempty"`
WorkerPools []*WorkerPool `json:"workerPools,omitempty"`
}
type EnvironmentSdkPipelineOptions interface{}
type EnvironmentUserAgent interface{}
type EnvironmentVersion interface{}
type FlattenInstruction struct {
Inputs []*InstructionInput `json:"inputs,omitempty"`
}
type GoogleprotobufValue interface{}
type InstructionInput struct {
OutputNum int64 `json:"outputNum,omitempty"`
ProducerInstructionIndex int64 `json:"producerInstructionIndex,omitempty"`
}
type InstructionOutput struct {
Codec InstructionOutputCodec `json:"codec,omitempty"`
Name string `json:"name,omitempty"`
}
type InstructionOutputCodec interface{}
type Job struct {
CreateTime string `json:"createTime,omitempty"`
// Possible values:
// "JOB_STATE_CANCELLED"
// "JOB_STATE_DONE"
// "JOB_STATE_FAILED"
// "JOB_STATE_RUNNING"
// "JOB_STATE_STOPPED"
// "JOB_STATE_UNKNOWN"
CurrentState string `json:"currentState,omitempty"`
CurrentStateTime string `json:"currentStateTime,omitempty"`
Environment *Environment `json:"environment,omitempty"`
ExecutionInfo *JobExecutionInfo `json:"executionInfo,omitempty"`
Id string `json:"id,omitempty"`
Name string `json:"name,omitempty"`
ProjectId string `json:"projectId,omitempty"`
// Possible values:
// "JOB_STATE_CANCELLED"
// "JOB_STATE_DONE"
// "JOB_STATE_FAILED"
// "JOB_STATE_RUNNING"
// "JOB_STATE_STOPPED"
// "JOB_STATE_UNKNOWN"
RequestedState string `json:"requestedState,omitempty"`
Steps []*Step `json:"steps,omitempty"`
// Possible values:
// "JOB_TYPE_BATCH"
// "JOB_TYPE_STREAMING"
// "JOB_TYPE_UNKNOWN"
Type string `json:"type,omitempty"`
}
type JobExecutionInfo struct {
Stages map[string]JobExecutionStageInfo `json:"stages,omitempty"`
}
type JobExecutionStageInfo struct {
StepName []string `json:"stepName,omitempty"`
}
type JobMessage struct {
Id string `json:"id,omitempty"`
// Possible values:
// "JOB_MESSAGE_DEBUG"
// "JOB_MESSAGE_DETAILED"
// "JOB_MESSAGE_ERROR"
// "JOB_MESSAGE_IMPORTANCE_UNKNOWN"
// "JOB_MESSAGE_WARNING"
MessageImportance string `json:"messageImportance,omitempty"`
MessageText string `json:"messageText,omitempty"`
Time string `json:"time,omitempty"`
}
type JobMetrics struct {
MetricTime string `json:"metricTime,omitempty"`
Metrics []*MetricUpdate `json:"metrics,omitempty"`
}
type KeyRangeDataDiskAssignment struct {
DataDisk string `json:"dataDisk,omitempty"`
End string `json:"end,omitempty"`
Start string `json:"start,omitempty"`
}
type KeyRangeLocation struct {
DataDisk string `json:"dataDisk,omitempty"`
DeliveryEndpoint string `json:"deliveryEndpoint,omitempty"`
End string `json:"end,omitempty"`
PersistentDirectory string `json:"persistentDirectory,omitempty"`
Start string `json:"start,omitempty"`
}
type LeaseWorkItemRequest struct {
CurrentWorkerTime string `json:"currentWorkerTime,omitempty"`
RequestedLeaseDuration string `json:"requestedLeaseDuration,omitempty"`
WorkItemTypes []string `json:"workItemTypes,omitempty"`
WorkerCapabilities []string `json:"workerCapabilities,omitempty"`
WorkerId string `json:"workerId,omitempty"`
}
type LeaseWorkItemResponse struct {
WorkItems []*WorkItem `json:"workItems,omitempty"`
}
type ListJobMessagesResponse struct {
JobMessages []*JobMessage `json:"jobMessages,omitempty"`
NextPageToken string `json:"nextPageToken,omitempty"`
}
type ListJobsResponse struct {
Jobs []*Job `json:"jobs,omitempty"`
NextPageToken string `json:"nextPageToken,omitempty"`
}
type MapTask struct {
Instructions []*ParallelInstruction `json:"instructions,omitempty"`
StageName string `json:"stageName,omitempty"`
SystemName string `json:"systemName,omitempty"`
}
type MetricStructuredName struct {
Context map[string]string `json:"context,omitempty"`
Name string `json:"name,omitempty"`
Origin string `json:"origin,omitempty"`
}
type MetricUpdate struct {
Cumulative bool `json:"cumulative,omitempty"`
Internal interface{} `json:"internal,omitempty"`
Kind string `json:"kind,omitempty"`
MeanCount interface{} `json:"meanCount,omitempty"`
MeanSum interface{} `json:"meanSum,omitempty"`
Name *MetricStructuredName `json:"name,omitempty"`
Scalar interface{} `json:"scalar,omitempty"`
Set interface{} `json:"set,omitempty"`
UpdateTime string `json:"updateTime,omitempty"`
}
type MountedDataDisk struct {
DataDisk string `json:"dataDisk,omitempty"`
}
type MultiOutputInfo struct {
Tag string `json:"tag,omitempty"`
}
type Package struct {
Location string `json:"location,omitempty"`
Name string `json:"name,omitempty"`
}
type ParDoInstruction struct {
Input *InstructionInput `json:"input,omitempty"`
MultiOutputInfos []*MultiOutputInfo `json:"multiOutputInfos,omitempty"`
NumOutputs int64 `json:"numOutputs,omitempty"`
SideInputs []*SideInputInfo `json:"sideInputs,omitempty"`
UserFn ParDoInstructionUserFn `json:"userFn,omitempty"`
}
type ParDoInstructionUserFn interface{}
type ParallelInstruction struct {
Flatten *FlattenInstruction `json:"flatten,omitempty"`
Name string `json:"name,omitempty"`
Outputs []*InstructionOutput `json:"outputs,omitempty"`
ParDo *ParDoInstruction `json:"parDo,omitempty"`
PartialGroupByKey *PartialGroupByKeyInstruction `json:"partialGroupByKey,omitempty"`
Read *ReadInstruction `json:"read,omitempty"`
SystemName string `json:"systemName,omitempty"`
Write *WriteInstruction `json:"write,omitempty"`
}
type PartialGroupByKeyInstruction struct {
Input *InstructionInput `json:"input,omitempty"`
InputElementCodec PartialGroupByKeyInstructionInputElementCodec `json:"inputElementCodec,omitempty"`
ValueCombiningFn PartialGroupByKeyInstructionValueCombiningFn `json:"valueCombiningFn,omitempty"`
}
type PartialGroupByKeyInstructionInputElementCodec interface{}
type PartialGroupByKeyInstructionValueCombiningFn interface{}
type Position struct {
ByteOffset int64 `json:"byteOffset,omitempty,string"`
End bool `json:"end,omitempty"`
Key string `json:"key,omitempty"`
RecordIndex int64 `json:"recordIndex,omitempty,string"`
ShufflePosition string `json:"shufflePosition,omitempty"`
}
type PubsubLocation struct {
DropLateData bool `json:"dropLateData,omitempty"`
IdLabel string `json:"idLabel,omitempty"`
Subscription string `json:"subscription,omitempty"`
TimestampLabel string `json:"timestampLabel,omitempty"`
Topic string `json:"topic,omitempty"`
TrackingSubscription string `json:"trackingSubscription,omitempty"`
}
type ReadInstruction struct {
Source *Source `json:"source,omitempty"`
}
type ReportWorkItemStatusRequest struct {
CurrentWorkerTime string `json:"currentWorkerTime,omitempty"`
WorkItemStatuses []*WorkItemStatus `json:"workItemStatuses,omitempty"`
WorkerId string `json:"workerId,omitempty"`
}
type ReportWorkItemStatusResponse struct {
WorkItemServiceStates []*WorkItemServiceState `json:"workItemServiceStates,omitempty"`
}
type SeqMapTask struct {
Inputs []*SideInputInfo `json:"inputs,omitempty"`
Name string `json:"name,omitempty"`
OutputInfos []*SeqMapTaskOutputInfo `json:"outputInfos,omitempty"`
StageName string `json:"stageName,omitempty"`
SystemName string `json:"systemName,omitempty"`
UserFn SeqMapTaskUserFn `json:"userFn,omitempty"`
}
type SeqMapTaskUserFn interface{}
type SeqMapTaskOutputInfo struct {
Sink *Sink `json:"sink,omitempty"`
Tag string `json:"tag,omitempty"`
}
type ShellTask struct {
Command string `json:"command,omitempty"`
ExitCode int64 `json:"exitCode,omitempty"`
}
type SideInputInfo struct {
Kind SideInputInfoKind `json:"kind,omitempty"`
Sources []*Source `json:"sources,omitempty"`
Tag string `json:"tag,omitempty"`
}
type SideInputInfoKind interface{}
type Sink struct {
Codec SinkCodec `json:"codec,omitempty"`
Spec SinkSpec `json:"spec,omitempty"`
}
type SinkCodec interface{}
type SinkSpec interface{}
type Source struct {
BaseSpecs []SourceBaseSpecs `json:"baseSpecs,omitempty"`
Codec SourceCodec `json:"codec,omitempty"`
DoesNotNeedSplitting bool `json:"doesNotNeedSplitting,omitempty"`
Metadata *SourceMetadata `json:"metadata,omitempty"`
Spec SourceSpec `json:"spec,omitempty"`
}
type SourceBaseSpecs interface{}
type SourceCodec interface{}
type SourceSpec interface{}
type SourceFork struct {
Primary *SourceSplitShard `json:"primary,omitempty"`
PrimarySource *DerivedSource `json:"primarySource,omitempty"`
Residual *SourceSplitShard `json:"residual,omitempty"`
ResidualSource *DerivedSource `json:"residualSource,omitempty"`
}
type SourceGetMetadataRequest struct {
Source *Source `json:"source,omitempty"`
}
type SourceGetMetadataResponse struct {
Metadata *SourceMetadata `json:"metadata,omitempty"`
}
type SourceMetadata struct {
EstimatedSizeBytes int64 `json:"estimatedSizeBytes,omitempty,string"`
Infinite bool `json:"infinite,omitempty"`
ProducesSortedKeys bool `json:"producesSortedKeys,omitempty"`
}
type SourceOperationRequest struct {
GetMetadata *SourceGetMetadataRequest `json:"getMetadata,omitempty"`
Split *SourceSplitRequest `json:"split,omitempty"`
}
type SourceOperationResponse struct {
GetMetadata *SourceGetMetadataResponse `json:"getMetadata,omitempty"`
Split *SourceSplitResponse `json:"split,omitempty"`
}
type SourceSplitOptions struct {
DesiredBundleSizeBytes int64 `json:"desiredBundleSizeBytes,omitempty,string"`
DesiredShardSizeBytes int64 `json:"desiredShardSizeBytes,omitempty,string"`
}
type SourceSplitRequest struct {
Options *SourceSplitOptions `json:"options,omitempty"`
Source *Source `json:"source,omitempty"`
}
type SourceSplitResponse struct {
Bundles []*DerivedSource `json:"bundles,omitempty"`
// Possible values:
// "SOURCE_SPLIT_OUTCOME_SPLITTING_HAPPENED"
// "SOURCE_SPLIT_OUTCOME_UNKNOWN"
// "SOURCE_SPLIT_OUTCOME_USE_CURRENT"
Outcome string `json:"outcome,omitempty"`
Shards []*SourceSplitShard `json:"shards,omitempty"`
}
type SourceSplitShard struct {
// Possible values:
// "SOURCE_DERIVATION_MODE_CHILD_OF_CURRENT"
// "SOURCE_DERIVATION_MODE_INDEPENDENT"
// "SOURCE_DERIVATION_MODE_SIBLING_OF_CURRENT"
// "SOURCE_DERIVATION_MODE_UNKNOWN"
DerivationMode string `json:"derivationMode,omitempty"`
Source *Source `json:"source,omitempty"`
}
type Status struct {
Code int64 `json:"code,omitempty"`
Details []StatusDetails `json:"details,omitempty"`
Message string `json:"message,omitempty"`
}
type StatusDetails interface{}
type Step struct {
Kind string `json:"kind,omitempty"`
Name string `json:"name,omitempty"`
Properties StepProperties `json:"properties,omitempty"`
}
type StepProperties interface{}
type StreamLocation struct {
PubsubLocation *PubsubLocation `json:"pubsubLocation,omitempty"`
SideInputLocation *StreamingSideInputLocation `json:"sideInputLocation,omitempty"`
StreamingStageLocation *StreamingStageLocation `json:"streamingStageLocation,omitempty"`
}
type StreamingComputationRanges struct {
ComputationId string `json:"computationId,omitempty"`
RangeAssignments []*KeyRangeDataDiskAssignment `json:"rangeAssignments,omitempty"`
}
type StreamingComputationTask struct {
ComputationRanges []*StreamingComputationRanges `json:"computationRanges,omitempty"`
DataDisks []*MountedDataDisk `json:"dataDisks,omitempty"`
// Possible values:
// "STREAMING_COMPUTATION_TASK_START"
// "STREAMING_COMPUTATION_TASK_STOP"
// "STREAMING_COMPUTATION_TASK_UNKNOWN"
TaskType string `json:"taskType,omitempty"`
}
type StreamingSetupTask struct {
ReceiveWorkPort int64 `json:"receiveWorkPort,omitempty"`
StreamingComputationTopology *TopologyConfig `json:"streamingComputationTopology,omitempty"`
WorkerHarnessPort int64 `json:"workerHarnessPort,omitempty"`
}
type StreamingSideInputLocation struct {
Tag string `json:"tag,omitempty"`
}
type StreamingStageLocation struct {
StreamId string `json:"streamId,omitempty"`
}
type TaskRunnerSettings struct {
Alsologtostderr bool `json:"alsologtostderr,omitempty"`
BaseTaskDir string `json:"baseTaskDir,omitempty"`
BaseUrl string `json:"baseUrl,omitempty"`
CommandlinesFileName string `json:"commandlinesFileName,omitempty"`
ContinueOnException bool `json:"continueOnException,omitempty"`
DataflowApiVersion string `json:"dataflowApiVersion,omitempty"`
HarnessCommand string `json:"harnessCommand,omitempty"`
LanguageHint string `json:"languageHint,omitempty"`
LogDir string `json:"logDir,omitempty"`
LogToSerialconsole bool `json:"logToSerialconsole,omitempty"`
LogUploadLocation string `json:"logUploadLocation,omitempty"`
OauthScopes []string `json:"oauthScopes,omitempty"`
ParallelWorkerSettings *WorkerSettings `json:"parallelWorkerSettings,omitempty"`
StreamingWorkerMainClass string `json:"streamingWorkerMainClass,omitempty"`
TaskGroup string `json:"taskGroup,omitempty"`
TaskUser string `json:"taskUser,omitempty"`
TempStoragePrefix string `json:"tempStoragePrefix,omitempty"`
VmId string `json:"vmId,omitempty"`
WorkflowFileName string `json:"workflowFileName,omitempty"`
}
type TopologyConfig struct {
Computations []*ComputationTopology `json:"computations,omitempty"`
DataDiskAssignments []*DataDiskAssignment `json:"dataDiskAssignments,omitempty"`
}
type WorkItem struct {
Configuration string `json:"configuration,omitempty"`
Id int64 `json:"id,omitempty,string"`
InitialReportIndex int64 `json:"initialReportIndex,omitempty,string"`
JobId string `json:"jobId,omitempty"`
LeaseExpireTime string `json:"leaseExpireTime,omitempty"`
MapTask *MapTask `json:"mapTask,omitempty"`
Packages []*Package `json:"packages,omitempty"`
ProjectId string `json:"projectId,omitempty"`
ReportStatusInterval string `json:"reportStatusInterval,omitempty"`
SeqMapTask *SeqMapTask `json:"seqMapTask,omitempty"`
ShellTask *ShellTask `json:"shellTask,omitempty"`
SourceOperationTask *SourceOperationRequest `json:"sourceOperationTask,omitempty"`
StreamingComputationTask *StreamingComputationTask `json:"streamingComputationTask,omitempty"`
StreamingSetupTask *StreamingSetupTask `json:"streamingSetupTask,omitempty"`
}
type WorkItemServiceState struct {
HarnessData WorkItemServiceStateHarnessData `json:"harnessData,omitempty"`
LeaseExpireTime string `json:"leaseExpireTime,omitempty"`
NextReportIndex int64 `json:"nextReportIndex,omitempty,string"`
ReportStatusInterval string `json:"reportStatusInterval,omitempty"`
SuggestedStopPoint *ApproximateProgress `json:"suggestedStopPoint,omitempty"`
SuggestedStopPosition *Position `json:"suggestedStopPosition,omitempty"`
}
type WorkItemServiceStateHarnessData interface{}
type WorkItemStatus struct {
Completed bool `json:"completed,omitempty"`
DynamicSourceSplit *DynamicSourceSplit `json:"dynamicSourceSplit,omitempty"`
Errors []*Status `json:"errors,omitempty"`
MetricUpdates []*MetricUpdate `json:"metricUpdates,omitempty"`
Progress *ApproximateProgress `json:"progress,omitempty"`
ReportIndex int64 `json:"reportIndex,omitempty,string"`
RequestedLeaseDuration string `json:"requestedLeaseDuration,omitempty"`
SourceFork *SourceFork `json:"sourceFork,omitempty"`
SourceOperationResponse *SourceOperationResponse `json:"sourceOperationResponse,omitempty"`
StopPosition *Position `json:"stopPosition,omitempty"`
WorkItemId string `json:"workItemId,omitempty"`
}
type WorkerPool struct {
AutoscalingSettings *AutoscalingSettings `json:"autoscalingSettings,omitempty"`
DataDisks []*Disk `json:"dataDisks,omitempty"`
// Possible values:
// "DEFAULT_PACKAGE_SET_JAVA"
// "DEFAULT_PACKAGE_SET_NONE"
// "DEFAULT_PACKAGE_SET_PYTHON"
// "DEFAULT_PACKAGE_SET_UNKNOWN"
DefaultPackageSet string `json:"defaultPackageSet,omitempty"`
DiskSizeGb int64 `json:"diskSizeGb,omitempty"`
DiskSourceImage string `json:"diskSourceImage,omitempty"`
DiskType string `json:"diskType,omitempty"`
Kind string `json:"kind,omitempty"`
MachineType string `json:"machineType,omitempty"`
Metadata map[string]string `json:"metadata,omitempty"`
NumWorkers int64 `json:"numWorkers,omitempty"`
OnHostMaintenance string `json:"onHostMaintenance,omitempty"`
Packages []*Package `json:"packages,omitempty"`
PoolArgs WorkerPoolPoolArgs `json:"poolArgs,omitempty"`
TaskrunnerSettings *TaskRunnerSettings `json:"taskrunnerSettings,omitempty"`
// Possible values:
// "TEARDOWN_ALWAYS"
// "TEARDOWN_NEVER"
// "TEARDOWN_ON_SUCCESS"
// "TEARDOWN_POLICY_UNKNOWN"
TeardownPolicy string `json:"teardownPolicy,omitempty"`
Zone string `json:"zone,omitempty"`
}
type WorkerPoolPoolArgs interface{}
type WorkerSettings struct {
BaseUrl string `json:"baseUrl,omitempty"`
ReportingEnabled bool `json:"reportingEnabled,omitempty"`
ServicePath string `json:"servicePath,omitempty"`
ShuffleServicePath string `json:"shuffleServicePath,omitempty"`
TempStoragePrefix string `json:"tempStoragePrefix,omitempty"`
WorkerId string `json:"workerId,omitempty"`
}
type WriteInstruction struct {
Input *InstructionInput `json:"input,omitempty"`
Sink *Sink `json:"sink,omitempty"`
}
// method id "dataflow.v1b3.projects.jobs.create":
type V1b3ProjectsJobsCreateCall struct {
s *Service
projectId string
job *Job
opt_ map[string]interface{}
}
// Create: Creates a dataflow job.
func (r *V1b3ProjectsJobsService) Create(projectId string, job *Job) *V1b3ProjectsJobsCreateCall {
c := &V1b3ProjectsJobsCreateCall{s: r.s, opt_: make(map[string]interface{})}
c.projectId = projectId
c.job = job
return c
}
// ReplaceJobId sets the optional parameter "replaceJobId":
func (c *V1b3ProjectsJobsCreateCall) ReplaceJobId(replaceJobId string) *V1b3ProjectsJobsCreateCall {
c.opt_["replaceJobId"] = replaceJobId
return c
}
// View sets the optional parameter "view":
//
// Possible values:
// "JOB_VIEW_ALL"
// "JOB_VIEW_SUMMARY"
// "JOB_VIEW_UNKNOWN"
func (c *V1b3ProjectsJobsCreateCall) View(view string) *V1b3ProjectsJobsCreateCall {
c.opt_["view"] = view
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 *V1b3ProjectsJobsCreateCall) Fields(s ...googleapi.Field) *V1b3ProjectsJobsCreateCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *V1b3ProjectsJobsCreateCall) Do() (*Job, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.job)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["replaceJobId"]; ok {
params.Set("replaceJobId", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["view"]; ok {
params.Set("view", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "{projectId}/jobs")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.Expand(req.URL, map[string]string{
"projectId": c.projectId,
})
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *Job
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Creates a dataflow job.",
// "httpMethod": "POST",
// "id": "dataflow.v1b3.projects.jobs.create",
// "parameterOrder": [
// "projectId"
// ],
// "parameters": {
// "projectId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "replaceJobId": {
// "location": "query",
// "type": "string"
// },
// "view": {
// "enum": [
// "JOB_VIEW_ALL",
// "JOB_VIEW_SUMMARY",
// "JOB_VIEW_UNKNOWN"
// ],
// "enumDescriptions": [
// "",
// "",
// ""
// ],
// "location": "query",
// "type": "string"
// }
// },
// "path": "{projectId}/jobs",
// "request": {
// "$ref": "Job"
// },
// "response": {
// "$ref": "Job"
// },
// "scopes": [
// "https://www.googleapis.com/auth/cloud-platform",
// "https://www.googleapis.com/auth/userinfo.email"
// ]
// }
}
// method id "dataflow.v1b3.projects.jobs.get":
type V1b3ProjectsJobsGetCall struct {
s *Service
projectId string
jobId string
opt_ map[string]interface{}
}
// Get: Gets the state of the specified dataflow job.
func (r *V1b3ProjectsJobsService) Get(projectId string, jobId string) *V1b3ProjectsJobsGetCall {
c := &V1b3ProjectsJobsGetCall{s: r.s, opt_: make(map[string]interface{})}
c.projectId = projectId
c.jobId = jobId
return c
}
// View sets the optional parameter "view":
//
// Possible values:
// "JOB_VIEW_ALL"
// "JOB_VIEW_SUMMARY"
// "JOB_VIEW_UNKNOWN"
func (c *V1b3ProjectsJobsGetCall) View(view string) *V1b3ProjectsJobsGetCall {
c.opt_["view"] = view
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 *V1b3ProjectsJobsGetCall) Fields(s ...googleapi.Field) *V1b3ProjectsJobsGetCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *V1b3ProjectsJobsGetCall) Do() (*Job, error) {
var body io.Reader = nil
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["view"]; ok {
params.Set("view", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "{projectId}/jobs/{jobId}")
urls += "?" + params.Encode()
req, _ := http.NewRequest("GET", urls, body)
googleapi.Expand(req.URL, map[string]string{
"projectId": c.projectId,
"jobId": c.jobId,
})
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *Job
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Gets the state of the specified dataflow job.",
// "httpMethod": "GET",
// "id": "dataflow.v1b3.projects.jobs.get",
// "parameterOrder": [
// "projectId",
// "jobId"
// ],
// "parameters": {
// "jobId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "projectId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "view": {
// "enum": [
// "JOB_VIEW_ALL",
// "JOB_VIEW_SUMMARY",
// "JOB_VIEW_UNKNOWN"
// ],
// "enumDescriptions": [
// "",
// "",
// ""
// ],
// "location": "query",
// "type": "string"
// }
// },
// "path": "{projectId}/jobs/{jobId}",
// "response": {
// "$ref": "Job"
// },
// "scopes": [
// "https://www.googleapis.com/auth/cloud-platform",
// "https://www.googleapis.com/auth/userinfo.email"
// ]
// }
}
// method id "dataflow.v1b3.projects.jobs.getMetrics":
type V1b3ProjectsJobsGetMetricsCall struct {
s *Service
projectId string
jobId string
opt_ map[string]interface{}
}
// GetMetrics: Request the job status.
func (r *V1b3ProjectsJobsService) GetMetrics(projectId string, jobId string) *V1b3ProjectsJobsGetMetricsCall {
c := &V1b3ProjectsJobsGetMetricsCall{s: r.s, opt_: make(map[string]interface{})}
c.projectId = projectId
c.jobId = jobId
return c
}
// StartTime sets the optional parameter "startTime":
func (c *V1b3ProjectsJobsGetMetricsCall) StartTime(startTime string) *V1b3ProjectsJobsGetMetricsCall {
c.opt_["startTime"] = startTime
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 *V1b3ProjectsJobsGetMetricsCall) Fields(s ...googleapi.Field) *V1b3ProjectsJobsGetMetricsCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *V1b3ProjectsJobsGetMetricsCall) Do() (*JobMetrics, error) {
var body io.Reader = nil
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["startTime"]; ok {
params.Set("startTime", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "{projectId}/jobs/{jobId}/metrics")
urls += "?" + params.Encode()
req, _ := http.NewRequest("GET", urls, body)
googleapi.Expand(req.URL, map[string]string{
"projectId": c.projectId,
"jobId": c.jobId,
})
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *JobMetrics
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Request the job status.",
// "httpMethod": "GET",
// "id": "dataflow.v1b3.projects.jobs.getMetrics",
// "parameterOrder": [
// "projectId",
// "jobId"
// ],
// "parameters": {
// "jobId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "projectId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "startTime": {
// "location": "query",
// "type": "string"
// }
// },
// "path": "{projectId}/jobs/{jobId}/metrics",
// "response": {
// "$ref": "JobMetrics"
// },
// "scopes": [
// "https://www.googleapis.com/auth/cloud-platform",
// "https://www.googleapis.com/auth/userinfo.email"
// ]
// }
}
// method id "dataflow.v1b3.projects.jobs.list":
type V1b3ProjectsJobsListCall struct {
s *Service
projectId string
opt_ map[string]interface{}
}
// List: List the jobs of a project
func (r *V1b3ProjectsJobsService) List(projectId string) *V1b3ProjectsJobsListCall {
c := &V1b3ProjectsJobsListCall{s: r.s, opt_: make(map[string]interface{})}
c.projectId = projectId
return c
}
// PageSize sets the optional parameter "pageSize":
func (c *V1b3ProjectsJobsListCall) PageSize(pageSize int64) *V1b3ProjectsJobsListCall {
c.opt_["pageSize"] = pageSize
return c
}
// PageToken sets the optional parameter "pageToken":
func (c *V1b3ProjectsJobsListCall) PageToken(pageToken string) *V1b3ProjectsJobsListCall {
c.opt_["pageToken"] = pageToken
return c
}
// View sets the optional parameter "view":
//
// Possible values:
// "JOB_VIEW_ALL"
// "JOB_VIEW_SUMMARY"
// "JOB_VIEW_UNKNOWN"
func (c *V1b3ProjectsJobsListCall) View(view string) *V1b3ProjectsJobsListCall {
c.opt_["view"] = view
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 *V1b3ProjectsJobsListCall) Fields(s ...googleapi.Field) *V1b3ProjectsJobsListCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *V1b3ProjectsJobsListCall) Do() (*ListJobsResponse, error) {
var body io.Reader = nil
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["pageSize"]; ok {
params.Set("pageSize", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["pageToken"]; ok {
params.Set("pageToken", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["view"]; ok {
params.Set("view", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "{projectId}/jobs")
urls += "?" + params.Encode()
req, _ := http.NewRequest("GET", urls, body)
googleapi.Expand(req.URL, map[string]string{
"projectId": c.projectId,
})
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *ListJobsResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "List the jobs of a project",
// "httpMethod": "GET",
// "id": "dataflow.v1b3.projects.jobs.list",
// "parameterOrder": [
// "projectId"
// ],
// "parameters": {
// "pageSize": {
// "format": "int32",
// "location": "query",
// "type": "integer"
// },
// "pageToken": {
// "location": "query",
// "type": "string"
// },
// "projectId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "view": {
// "enum": [
// "JOB_VIEW_ALL",
// "JOB_VIEW_SUMMARY",
// "JOB_VIEW_UNKNOWN"
// ],
// "enumDescriptions": [
// "",
// "",
// ""
// ],
// "location": "query",
// "type": "string"
// }
// },
// "path": "{projectId}/jobs",
// "response": {
// "$ref": "ListJobsResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/cloud-platform",
// "https://www.googleapis.com/auth/userinfo.email"
// ]
// }
}
// method id "dataflow.v1b3.projects.jobs.patch":
type V1b3ProjectsJobsPatchCall struct {
s *Service
projectId string
jobId string
job *Job
opt_ map[string]interface{}
}
// Patch: Updates the state of an existing dataflow job. This method
// supports patch semantics.
func (r *V1b3ProjectsJobsService) Patch(projectId string, jobId string, job *Job) *V1b3ProjectsJobsPatchCall {
c := &V1b3ProjectsJobsPatchCall{s: r.s, opt_: make(map[string]interface{})}
c.projectId = projectId
c.jobId = jobId
c.job = job
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 *V1b3ProjectsJobsPatchCall) Fields(s ...googleapi.Field) *V1b3ProjectsJobsPatchCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *V1b3ProjectsJobsPatchCall) Do() (*Job, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.job)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "{projectId}/jobs/{jobId}")
urls += "?" + params.Encode()
req, _ := http.NewRequest("PATCH", urls, body)
googleapi.Expand(req.URL, map[string]string{
"projectId": c.projectId,
"jobId": c.jobId,
})
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *Job
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Updates the state of an existing dataflow job. This method supports patch semantics.",
// "httpMethod": "PATCH",
// "id": "dataflow.v1b3.projects.jobs.patch",
// "parameterOrder": [
// "projectId",
// "jobId"
// ],
// "parameters": {
// "jobId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "projectId": {
// "location": "path",
// "required": true,
// "type": "string"
// }
// },
// "path": "{projectId}/jobs/{jobId}",
// "request": {
// "$ref": "Job"
// },
// "response": {
// "$ref": "Job"
// },
// "scopes": [
// "https://www.googleapis.com/auth/cloud-platform",
// "https://www.googleapis.com/auth/userinfo.email"
// ]
// }
}
// method id "dataflow.v1b3.projects.jobs.update":
type V1b3ProjectsJobsUpdateCall struct {
s *Service
projectId string
jobId string
job *Job
opt_ map[string]interface{}
}
// Update: Updates the state of an existing dataflow job.
func (r *V1b3ProjectsJobsService) Update(projectId string, jobId string, job *Job) *V1b3ProjectsJobsUpdateCall {
c := &V1b3ProjectsJobsUpdateCall{s: r.s, opt_: make(map[string]interface{})}
c.projectId = projectId
c.jobId = jobId
c.job = job
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 *V1b3ProjectsJobsUpdateCall) Fields(s ...googleapi.Field) *V1b3ProjectsJobsUpdateCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *V1b3ProjectsJobsUpdateCall) Do() (*Job, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.job)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "{projectId}/jobs/{jobId}")
urls += "?" + params.Encode()
req, _ := http.NewRequest("PUT", urls, body)
googleapi.Expand(req.URL, map[string]string{
"projectId": c.projectId,
"jobId": c.jobId,
})
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *Job
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Updates the state of an existing dataflow job.",
// "httpMethod": "PUT",
// "id": "dataflow.v1b3.projects.jobs.update",
// "parameterOrder": [
// "projectId",
// "jobId"
// ],
// "parameters": {
// "jobId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "projectId": {
// "location": "path",
// "required": true,
// "type": "string"
// }
// },
// "path": "{projectId}/jobs/{jobId}",
// "request": {
// "$ref": "Job"
// },
// "response": {
// "$ref": "Job"
// },
// "scopes": [
// "https://www.googleapis.com/auth/cloud-platform",
// "https://www.googleapis.com/auth/userinfo.email"
// ]
// }
}
// method id "dataflow.v1b3.projects.jobs.messages.list":
type V1b3ProjectsJobsMessagesListCall struct {
s *Service
projectId string
jobId string
opt_ map[string]interface{}
}
// List: Request the job status.
func (r *V1b3ProjectsJobsMessagesService) List(projectId string, jobId string) *V1b3ProjectsJobsMessagesListCall {
c := &V1b3ProjectsJobsMessagesListCall{s: r.s, opt_: make(map[string]interface{})}
c.projectId = projectId
c.jobId = jobId
return c
}
// EndTime sets the optional parameter "endTime":
func (c *V1b3ProjectsJobsMessagesListCall) EndTime(endTime string) *V1b3ProjectsJobsMessagesListCall {
c.opt_["endTime"] = endTime
return c
}
// MinimumImportance sets the optional parameter "minimumImportance":
//
// Possible values:
// "JOB_MESSAGE_DEBUG"
// "JOB_MESSAGE_DETAILED"
// "JOB_MESSAGE_ERROR"
// "JOB_MESSAGE_IMPORTANCE_UNKNOWN"
// "JOB_MESSAGE_WARNING"
func (c *V1b3ProjectsJobsMessagesListCall) MinimumImportance(minimumImportance string) *V1b3ProjectsJobsMessagesListCall {
c.opt_["minimumImportance"] = minimumImportance
return c
}
// PageSize sets the optional parameter "pageSize":
func (c *V1b3ProjectsJobsMessagesListCall) PageSize(pageSize int64) *V1b3ProjectsJobsMessagesListCall {
c.opt_["pageSize"] = pageSize
return c
}
// PageToken sets the optional parameter "pageToken":
func (c *V1b3ProjectsJobsMessagesListCall) PageToken(pageToken string) *V1b3ProjectsJobsMessagesListCall {
c.opt_["pageToken"] = pageToken
return c
}
// StartTime sets the optional parameter "startTime":
func (c *V1b3ProjectsJobsMessagesListCall) StartTime(startTime string) *V1b3ProjectsJobsMessagesListCall {
c.opt_["startTime"] = startTime
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 *V1b3ProjectsJobsMessagesListCall) Fields(s ...googleapi.Field) *V1b3ProjectsJobsMessagesListCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *V1b3ProjectsJobsMessagesListCall) Do() (*ListJobMessagesResponse, error) {
var body io.Reader = nil
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["endTime"]; ok {
params.Set("endTime", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["minimumImportance"]; ok {
params.Set("minimumImportance", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["pageSize"]; ok {
params.Set("pageSize", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["pageToken"]; ok {
params.Set("pageToken", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["startTime"]; ok {
params.Set("startTime", fmt.Sprintf("%v", v))
}
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "{projectId}/jobs/{jobId}/messages")
urls += "?" + params.Encode()
req, _ := http.NewRequest("GET", urls, body)
googleapi.Expand(req.URL, map[string]string{
"projectId": c.projectId,
"jobId": c.jobId,
})
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *ListJobMessagesResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Request the job status.",
// "httpMethod": "GET",
// "id": "dataflow.v1b3.projects.jobs.messages.list",
// "parameterOrder": [
// "projectId",
// "jobId"
// ],
// "parameters": {
// "endTime": {
// "location": "query",
// "type": "string"
// },
// "jobId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "minimumImportance": {
// "enum": [
// "JOB_MESSAGE_DEBUG",
// "JOB_MESSAGE_DETAILED",
// "JOB_MESSAGE_ERROR",
// "JOB_MESSAGE_IMPORTANCE_UNKNOWN",
// "JOB_MESSAGE_WARNING"
// ],
// "enumDescriptions": [
// "",
// "",
// "",
// "",
// ""
// ],
// "location": "query",
// "type": "string"
// },
// "pageSize": {
// "format": "int32",
// "location": "query",
// "type": "integer"
// },
// "pageToken": {
// "location": "query",
// "type": "string"
// },
// "projectId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "startTime": {
// "location": "query",
// "type": "string"
// }
// },
// "path": "{projectId}/jobs/{jobId}/messages",
// "response": {
// "$ref": "ListJobMessagesResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/cloud-platform",
// "https://www.googleapis.com/auth/userinfo.email"
// ]
// }
}
// method id "dataflow.v1b3.projects.jobs.workItems.lease":
type V1b3ProjectsJobsWorkItemsLeaseCall struct {
s *Service
projectId string
jobId string
leaseworkitemrequest *LeaseWorkItemRequest
opt_ map[string]interface{}
}
// Lease: Leases a dataflow WorkItem to run.
func (r *V1b3ProjectsJobsWorkItemsService) Lease(projectId string, jobId string, leaseworkitemrequest *LeaseWorkItemRequest) *V1b3ProjectsJobsWorkItemsLeaseCall {
c := &V1b3ProjectsJobsWorkItemsLeaseCall{s: r.s, opt_: make(map[string]interface{})}
c.projectId = projectId
c.jobId = jobId
c.leaseworkitemrequest = leaseworkitemrequest
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 *V1b3ProjectsJobsWorkItemsLeaseCall) Fields(s ...googleapi.Field) *V1b3ProjectsJobsWorkItemsLeaseCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *V1b3ProjectsJobsWorkItemsLeaseCall) Do() (*LeaseWorkItemResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.leaseworkitemrequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "{projectId}/jobs/{jobId}/workItems:lease")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.Expand(req.URL, map[string]string{
"projectId": c.projectId,
"jobId": c.jobId,
})
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *LeaseWorkItemResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Leases a dataflow WorkItem to run.",
// "httpMethod": "POST",
// "id": "dataflow.v1b3.projects.jobs.workItems.lease",
// "parameterOrder": [
// "projectId",
// "jobId"
// ],
// "parameters": {
// "jobId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "projectId": {
// "location": "path",
// "required": true,
// "type": "string"
// }
// },
// "path": "{projectId}/jobs/{jobId}/workItems:lease",
// "request": {
// "$ref": "LeaseWorkItemRequest"
// },
// "response": {
// "$ref": "LeaseWorkItemResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/cloud-platform",
// "https://www.googleapis.com/auth/userinfo.email"
// ]
// }
}
// method id "dataflow.v1b3.projects.jobs.workItems.reportStatus":
type V1b3ProjectsJobsWorkItemsReportStatusCall struct {
s *Service
projectId string
jobId string
reportworkitemstatusrequest *ReportWorkItemStatusRequest
opt_ map[string]interface{}
}
// ReportStatus: Reports the status of dataflow WorkItems leased by a
// worker.
func (r *V1b3ProjectsJobsWorkItemsService) ReportStatus(projectId string, jobId string, reportworkitemstatusrequest *ReportWorkItemStatusRequest) *V1b3ProjectsJobsWorkItemsReportStatusCall {
c := &V1b3ProjectsJobsWorkItemsReportStatusCall{s: r.s, opt_: make(map[string]interface{})}
c.projectId = projectId
c.jobId = jobId
c.reportworkitemstatusrequest = reportworkitemstatusrequest
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 *V1b3ProjectsJobsWorkItemsReportStatusCall) Fields(s ...googleapi.Field) *V1b3ProjectsJobsWorkItemsReportStatusCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *V1b3ProjectsJobsWorkItemsReportStatusCall) Do() (*ReportWorkItemStatusResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.reportworkitemstatusrequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "{projectId}/jobs/{jobId}/workItems:reportStatus")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.Expand(req.URL, map[string]string{
"projectId": c.projectId,
"jobId": c.jobId,
})
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *ReportWorkItemStatusResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Reports the status of dataflow WorkItems leased by a worker.",
// "httpMethod": "POST",
// "id": "dataflow.v1b3.projects.jobs.workItems.reportStatus",
// "parameterOrder": [
// "projectId",
// "jobId"
// ],
// "parameters": {
// "jobId": {
// "location": "path",
// "required": true,
// "type": "string"
// },
// "projectId": {
// "location": "path",
// "required": true,
// "type": "string"
// }
// },
// "path": "{projectId}/jobs/{jobId}/workItems:reportStatus",
// "request": {
// "$ref": "ReportWorkItemStatusRequest"
// },
// "response": {
// "$ref": "ReportWorkItemStatusResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/cloud-platform",
// "https://www.googleapis.com/auth/userinfo.email"
// ]
// }
}
|