|
37 | 37 | * @method InterruptLogstashTask interruptLogstashTask(array $options = [])
|
38 | 38 | * @method ListAllNode listAllNode(array $options = [])
|
39 | 39 | * @method ListAlternativeSnapshotRepos listAlternativeSnapshotRepos(array $options = [])
|
| 40 | + * @method ListConnectedClusters listConnectedClusters(array $options = []) |
40 | 41 | * @method ListInstance listInstance(array $options = [])
|
41 | 42 | * @method ListKibanaPlugins listKibanaPlugins(array $options = [])
|
42 | 43 | * @method ListLogstash listLogstash(array $options = [])
|
|
45 | 46 | * @method ListPlugins listPlugins(array $options = [])
|
46 | 47 | * @method ListSearchLog listSearchLog(array $options = [])
|
47 | 48 | * @method ListSnapshotReposByInstanceId listSnapshotReposByInstanceId(array $options = [])
|
| 49 | + * @method ListTagResources listTagResources(array $options = []) |
48 | 50 | * @method MoveResourceGroup moveResourceGroup(array $options = [])
|
49 | 51 | * @method OpenHttps openHttps(array $options = [])
|
50 | 52 | * @method RenewInstance renewInstance(array $options = [])
|
|
55 | 57 | * @method ResumeLogstashTask resumeLogstashTask(array $options = [])
|
56 | 58 | * @method RollbackInstance rollbackInstance(array $options = [])
|
57 | 59 | * @method ShrinkNode shrinkNode(array $options = [])
|
| 60 | + * @method TagResources tagResources(array $options = []) |
58 | 61 | * @method TransferNode transferNode(array $options = [])
|
59 | 62 | * @method TriggerNetwork triggerNetwork(array $options = [])
|
60 | 63 | * @method UninstallKibanaPlugin uninstallKibanaPlugin(array $options = [])
|
61 | 64 | * @method UninstallLogstashPlugin uninstallLogstashPlugin(array $options = [])
|
62 | 65 | * @method UninstallPlugin uninstallPlugin(array $options = [])
|
| 66 | + * @method UntagResources untagResources(array $options = []) |
63 | 67 | * @method UpdateAdminPassword updateAdminPassword(array $options = [])
|
64 | 68 | * @method UpdateAdvancedSetting updateAdvancedSetting(array $options = [])
|
65 | 69 | * @method UpdateAliwsDict updateAliwsDict(array $options = [])
|
@@ -840,6 +844,19 @@ public function withAlreadySetItems($value)
|
840 | 844 | }
|
841 | 845 | }
|
842 | 846 |
|
| 847 | +/** |
| 848 | + * @method string getInstanceId() |
| 849 | + * @method $this withInstanceId($value) |
| 850 | + */ |
| 851 | +class ListConnectedClusters extends Roa |
| 852 | +{ |
| 853 | + /** @var string */ |
| 854 | + public $pathPattern = '/openapi/instances/[InstanceId]/connected-clusters'; |
| 855 | + |
| 856 | + /** @var string */ |
| 857 | + public $method = 'GET'; |
| 858 | +} |
| 859 | + |
843 | 860 | /**
|
844 | 861 | * @method string getResourceGroupId()
|
845 | 862 | * @method string getInstanceId()
|
@@ -1444,6 +1461,101 @@ class ListSnapshotReposByInstanceId extends Roa
|
1444 | 1461 | public $method = 'GET';
|
1445 | 1462 | }
|
1446 | 1463 |
|
| 1464 | +/** |
| 1465 | + * @method string getSize() |
| 1466 | + * @method string getNextToken() |
| 1467 | + * @method string getPage() |
| 1468 | + * @method string getResourceType() |
| 1469 | + * @method string getResourceIds() |
| 1470 | + * @method string getTags() |
| 1471 | + */ |
| 1472 | +class ListTagResources extends Roa |
| 1473 | +{ |
| 1474 | + /** @var string */ |
| 1475 | + public $pathPattern = '/openapi/tags'; |
| 1476 | + |
| 1477 | + /** @var string */ |
| 1478 | + public $method = 'GET'; |
| 1479 | + |
| 1480 | + /** |
| 1481 | + * @param string $value |
| 1482 | + * |
| 1483 | + * @return $this |
| 1484 | + */ |
| 1485 | + public function withSize($value) |
| 1486 | + { |
| 1487 | + $this->data['Size'] = $value; |
| 1488 | + $this->options['query']['Size'] = $value; |
| 1489 | + |
| 1490 | + return $this; |
| 1491 | + } |
| 1492 | + |
| 1493 | + /** |
| 1494 | + * @param string $value |
| 1495 | + * |
| 1496 | + * @return $this |
| 1497 | + */ |
| 1498 | + public function withNextToken($value) |
| 1499 | + { |
| 1500 | + $this->data['NextToken'] = $value; |
| 1501 | + $this->options['query']['NextToken'] = $value; |
| 1502 | + |
| 1503 | + return $this; |
| 1504 | + } |
| 1505 | + |
| 1506 | + /** |
| 1507 | + * @param string $value |
| 1508 | + * |
| 1509 | + * @return $this |
| 1510 | + */ |
| 1511 | + public function withPage($value) |
| 1512 | + { |
| 1513 | + $this->data['Page'] = $value; |
| 1514 | + $this->options['query']['Page'] = $value; |
| 1515 | + |
| 1516 | + return $this; |
| 1517 | + } |
| 1518 | + |
| 1519 | + /** |
| 1520 | + * @param string $value |
| 1521 | + * |
| 1522 | + * @return $this |
| 1523 | + */ |
| 1524 | + public function withResourceType($value) |
| 1525 | + { |
| 1526 | + $this->data['ResourceType'] = $value; |
| 1527 | + $this->options['query']['ResourceType'] = $value; |
| 1528 | + |
| 1529 | + return $this; |
| 1530 | + } |
| 1531 | + |
| 1532 | + /** |
| 1533 | + * @param string $value |
| 1534 | + * |
| 1535 | + * @return $this |
| 1536 | + */ |
| 1537 | + public function withResourceIds($value) |
| 1538 | + { |
| 1539 | + $this->data['ResourceIds'] = $value; |
| 1540 | + $this->options['query']['ResourceIds'] = $value; |
| 1541 | + |
| 1542 | + return $this; |
| 1543 | + } |
| 1544 | + |
| 1545 | + /** |
| 1546 | + * @param string $value |
| 1547 | + * |
| 1548 | + * @return $this |
| 1549 | + */ |
| 1550 | + public function withTags($value) |
| 1551 | + { |
| 1552 | + $this->data['Tags'] = $value; |
| 1553 | + $this->options['query']['Tags'] = $value; |
| 1554 | + |
| 1555 | + return $this; |
| 1556 | + } |
| 1557 | +} |
| 1558 | + |
1447 | 1559 | /**
|
1448 | 1560 | * @method string getInstanceId()
|
1449 | 1561 | * @method $this withInstanceId($value)
|
@@ -1726,6 +1838,12 @@ public function withClientToken($value)
|
1726 | 1838 | }
|
1727 | 1839 | }
|
1728 | 1840 |
|
| 1841 | +class TagResources extends Roa |
| 1842 | +{ |
| 1843 | + /** @var string */ |
| 1844 | + public $pathPattern = '/openapi/tags'; |
| 1845 | +} |
| 1846 | + |
1729 | 1847 | /**
|
1730 | 1848 | * @method string getInstanceId()
|
1731 | 1849 | * @method $this withInstanceId($value)
|
@@ -1860,6 +1978,73 @@ public function withClientToken($value)
|
1860 | 1978 | }
|
1861 | 1979 | }
|
1862 | 1980 |
|
| 1981 | +/** |
| 1982 | + * @method string getAll() |
| 1983 | + * @method string getTagKeys() |
| 1984 | + * @method string getResourceType() |
| 1985 | + * @method string getResourceIds() |
| 1986 | + */ |
| 1987 | +class UntagResources extends Roa |
| 1988 | +{ |
| 1989 | + /** @var string */ |
| 1990 | + public $pathPattern = '/openapi/tags'; |
| 1991 | + |
| 1992 | + /** @var string */ |
| 1993 | + public $method = 'DELETE'; |
| 1994 | + |
| 1995 | + /** |
| 1996 | + * @param string $value |
| 1997 | + * |
| 1998 | + * @return $this |
| 1999 | + */ |
| 2000 | + public function withAll($value) |
| 2001 | + { |
| 2002 | + $this->data['All'] = $value; |
| 2003 | + $this->options['query']['All'] = $value; |
| 2004 | + |
| 2005 | + return $this; |
| 2006 | + } |
| 2007 | + |
| 2008 | + /** |
| 2009 | + * @param string $value |
| 2010 | + * |
| 2011 | + * @return $this |
| 2012 | + */ |
| 2013 | + public function withTagKeys($value) |
| 2014 | + { |
| 2015 | + $this->data['TagKeys'] = $value; |
| 2016 | + $this->options['query']['TagKeys'] = $value; |
| 2017 | + |
| 2018 | + return $this; |
| 2019 | + } |
| 2020 | + |
| 2021 | + /** |
| 2022 | + * @param string $value |
| 2023 | + * |
| 2024 | + * @return $this |
| 2025 | + */ |
| 2026 | + public function withResourceType($value) |
| 2027 | + { |
| 2028 | + $this->data['ResourceType'] = $value; |
| 2029 | + $this->options['query']['ResourceType'] = $value; |
| 2030 | + |
| 2031 | + return $this; |
| 2032 | + } |
| 2033 | + |
| 2034 | + /** |
| 2035 | + * @param string $value |
| 2036 | + * |
| 2037 | + * @return $this |
| 2038 | + */ |
| 2039 | + public function withResourceIds($value) |
| 2040 | + { |
| 2041 | + $this->data['ResourceIds'] = $value; |
| 2042 | + $this->options['query']['ResourceIds'] = $value; |
| 2043 | + |
| 2044 | + return $this; |
| 2045 | + } |
| 2046 | +} |
| 2047 | + |
1863 | 2048 | /**
|
1864 | 2049 | * @method string getInstanceId()
|
1865 | 2050 | * @method $this withInstanceId($value)
|
|
0 commit comments