You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -114,10 +114,12 @@ $filters = array('key' => new \stdClass); // object | A list of dynamic filters
114
114
$resource_ids = 'resource_ids_example'; // string | A comma-separated list of resource IDs to filter on.
115
115
$page = 1; // int | The page number to return.
116
116
$per_page = 25; // float | The number of resources to return per page.
117
-
$no_dependencies = True; // bool
117
+
$no_dependencies = True; // bool | Whether or not to exclude resources with dependencies listed.
118
+
$excluded_resource_ids = 'excluded_resource_ids_example'; // string | A comma-separated list of resource IDs to exclude. No filter will be applied if empty.
119
+
$excluded_creator_ids = 'excluded_creator_ids_example'; // string | A comma-separated list of creator IDs to exclude. No filter will be applied if empty.
* @param bool $no_dependencies Whether or not to exclude resources with dependencies listed. (optional)
487
+
* @param string $excluded_resource_ids A comma-separated list of resource IDs to exclude. No filter will be applied if empty. (optional)
488
+
* @param string $excluded_creator_ids A comma-separated list of creator IDs to exclude. No filter will be applied if empty. (optional)
487
489
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['getResourcesDiscoverResources'] to see the possible values for this operation
488
490
*
489
491
* @throws \OpenAPI\Client\ApiException on non-2xx response or if the response body is not in the expected format
@@ -507,16 +509,18 @@ public function getResourcesDiscoverResources($category_id = null, $with = null,
507
509
* @param string $resource_ids A comma-separated list of resource IDs to filter on. (optional)
508
510
* @param int $page The page number to return. (optional, default to 1)
509
511
* @param float $per_page The number of resources to return per page. (optional, default to 25)
510
-
* @param bool $no_dependencies (optional)
512
+
* @param bool $no_dependencies Whether or not to exclude resources with dependencies listed. (optional)
513
+
* @param string $excluded_resource_ids A comma-separated list of resource IDs to exclude. No filter will be applied if empty. (optional)
514
+
* @param string $excluded_creator_ids A comma-separated list of creator IDs to exclude. No filter will be applied if empty. (optional)
511
515
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['getResourcesDiscoverResources'] to see the possible values for this operation
512
516
*
513
517
* @throws \OpenAPI\Client\ApiException on non-2xx response or if the response body is not in the expected format
514
518
* @throws \InvalidArgumentException
515
519
* @return array of \OpenAPI\Client\Model\GetResourcesDiscoverResources200Response|\OpenAPI\Client\Model\GetResourcesDiscoverResources4XXResponse|\OpenAPI\Client\Model\GetResourcesDiscoverResources4XXResponse, HTTP status code, HTTP response headers (array of strings)
@@ -641,15 +645,17 @@ public function getResourcesDiscoverResourcesWithHttpInfo($category_id = null, $
641
645
* @param string $resource_ids A comma-separated list of resource IDs to filter on. (optional)
642
646
* @param int $page The page number to return. (optional, default to 1)
643
647
* @param float $per_page The number of resources to return per page. (optional, default to 25)
644
-
* @param bool $no_dependencies (optional)
648
+
* @param bool $no_dependencies Whether or not to exclude resources with dependencies listed. (optional)
649
+
* @param string $excluded_resource_ids A comma-separated list of resource IDs to exclude. No filter will be applied if empty. (optional)
650
+
* @param string $excluded_creator_ids A comma-separated list of creator IDs to exclude. No filter will be applied if empty. (optional)
645
651
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['getResourcesDiscoverResources'] to see the possible values for this operation
* @param string $resource_ids A comma-separated list of resource IDs to filter on. (optional)
669
675
* @param int $page The page number to return. (optional, default to 1)
670
676
* @param float $per_page The number of resources to return per page. (optional, default to 25)
671
-
* @param bool $no_dependencies (optional)
677
+
* @param bool $no_dependencies Whether or not to exclude resources with dependencies listed. (optional)
678
+
* @param string $excluded_resource_ids A comma-separated list of resource IDs to exclude. No filter will be applied if empty. (optional)
679
+
* @param string $excluded_creator_ids A comma-separated list of creator IDs to exclude. No filter will be applied if empty. (optional)
672
680
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['getResourcesDiscoverResources'] to see the possible values for this operation
* @param string $resource_ids A comma-separated list of resource IDs to filter on. (optional)
725
733
* @param int $page The page number to return. (optional, default to 1)
726
734
* @param float $per_page The number of resources to return per page. (optional, default to 25)
727
-
* @param bool $no_dependencies (optional)
735
+
* @param bool $no_dependencies Whether or not to exclude resources with dependencies listed. (optional)
736
+
* @param string $excluded_resource_ids A comma-separated list of resource IDs to exclude. No filter will be applied if empty. (optional)
737
+
* @param string $excluded_creator_ids A comma-separated list of creator IDs to exclude. No filter will be applied if empty. (optional)
728
738
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['getResourcesDiscoverResources'] to see the possible values for this operation
0 commit comments