Skip to content

Commit def4a62

Browse files
authored
[GitHubEnterpriseCloud] Update to 1.1.4-020b0f53b2d18b74f5f8fb51fc6feeaa from 1.1.4-c87cc56b9cb13568aee41ebf298d04c5
Detected Schema changes: ERROR: error: Error thrown when comparing: open /__w/github-root/github-root/server-statistics-actions.yaml: no such file or directory ERROR: open /__w/github-root/github-root/server-statistics-actions.yaml: no such file or directory ERROR: component 'server-statistics-actions.yaml' does not exist in the specification ERROR: open /__w/github-root/github-root/server-statistics-packages.yaml: no such file or directory ERROR: component 'server-statistics-packages.yaml' does not exist in the specification ERROR: cannot resolve reference `server-statistics-actions.yaml`, it's missing: [218326:11] ERROR: cannot resolve reference `server-statistics-packages.yaml`, it's missing: [218328:11] ERROR: open /__w/github-root/github-root/server-statistics-actions.yaml: no such file or directory ERROR: component 'server-statistics-actions.yaml' does not exist in the specification ERROR: open /__w/github-root/github-root/server-statistics-packages.yaml: no such file or directory ERROR: component 'server-statistics-packages.yaml' does not exist in the specification ERROR: cannot resolve reference `server-statistics-actions.yaml`, it's missing: [217827:11] ERROR: cannot resolve reference `server-statistics-packages.yaml`, it's missing: [217829:11]
1 parent b1012da commit def4a62

File tree

62 files changed

+5561
-44
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+5561
-44
lines changed

README.md

Lines changed: 196 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8174,6 +8174,180 @@ $client->operations()->projects()->createForOrg( org: 'generated',
81748174
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-an-organization-project).
81758175

81768176

8177+
### orgs/get-all-custom-properties
8178+
8179+
Get all custom properties for an organization
8180+
8181+
Using the `call` method:
8182+
```php
8183+
$client->call('GET /orgs/{org}/properties/schema', [
8184+
'org' => 'generated',
8185+
]);
8186+
```
8187+
8188+
Operations method:
8189+
```php
8190+
$client->operations()->orgs()->getAllCustomProperties( org: 'generated',
8191+
);
8192+
```
8193+
8194+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/properties#get-all-custom-properties-for-an-organization).
8195+
8196+
8197+
### orgs/create-or-update-custom-properties
8198+
8199+
Create or update custom properties for an organization
8200+
8201+
Using the `call` method:
8202+
```php
8203+
$client->call('PATCH /orgs/{org}/properties/schema', [
8204+
'org' => 'generated',
8205+
]);
8206+
```
8207+
8208+
Operations method:
8209+
```php
8210+
$client->operations()->orgs()->createOrUpdateCustomProperties( org: 'generated',
8211+
);
8212+
```
8213+
8214+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/properties#create-or-update-custom-properties-for-an-organization).
8215+
8216+
8217+
### orgs/get-custom-property
8218+
8219+
Get a custom property for an organization
8220+
8221+
Using the `call` method:
8222+
```php
8223+
$client->call('GET /orgs/{org}/properties/schema/{custom_property_name}', [
8224+
'org' => 'generated',
8225+
'custom_property_name' => 'generated',
8226+
]);
8227+
```
8228+
8229+
Operations method:
8230+
```php
8231+
$client->operations()->orgs()->getCustomProperty( org: 'generated',
8232+
custom_property_name: 'generated',
8233+
);
8234+
```
8235+
8236+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/properties#get-a-custom-property-for-an-organization).
8237+
8238+
8239+
### orgs/create-or-update-custom-property
8240+
8241+
Create or update a custom property for an organization
8242+
8243+
Using the `call` method:
8244+
```php
8245+
$client->call('PUT /orgs/{org}/properties/schema/{custom_property_name}', [
8246+
'org' => 'generated',
8247+
'custom_property_name' => 'generated',
8248+
]);
8249+
```
8250+
8251+
Operations method:
8252+
```php
8253+
$client->operations()->orgs()->createOrUpdateCustomProperty( org: 'generated',
8254+
custom_property_name: 'generated',
8255+
);
8256+
```
8257+
8258+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/properties#create-or-update-a-custom-property-for-an-organization).
8259+
8260+
8261+
### orgs/remove-custom-property
8262+
8263+
Remove a custom property for an organization
8264+
8265+
Using the `call` method:
8266+
```php
8267+
$client->call('DELETE /orgs/{org}/properties/schema/{custom_property_name}', [
8268+
'org' => 'generated',
8269+
'custom_property_name' => 'generated',
8270+
]);
8271+
```
8272+
8273+
Operations method:
8274+
```php
8275+
$client->operations()->orgs()->removeCustomProperty( org: 'generated',
8276+
custom_property_name: 'generated',
8277+
);
8278+
```
8279+
8280+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/properties#remove-a-custom-property-for-an-organization).
8281+
8282+
8283+
### orgs/list-custom-properties-values-for-repos
8284+
8285+
List custom property values for organization repositories
8286+
8287+
Using the `call` method:
8288+
```php
8289+
$client->call('GET /orgs/{org}/properties/values', [
8290+
'org' => 'generated',
8291+
'per_page' => 8,
8292+
'page' => 1,
8293+
]);
8294+
```
8295+
8296+
Operations method:
8297+
```php
8298+
$client->operations()->orgs()->listCustomPropertiesValuesForRepos( org: 'generated',
8299+
per_page: 8,
8300+
page: 1,
8301+
);
8302+
```
8303+
8304+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/properties#list-custom-property-values-for-organization-repositories).
8305+
8306+
8307+
### orgs/list-custom-properties-values-for-repos
8308+
8309+
List custom property values for organization repositories
8310+
8311+
Using the `call` method:
8312+
```php
8313+
$client->call('LIST /orgs/{org}/properties/values', [
8314+
'org' => 'generated',
8315+
'per_page' => 8,
8316+
'page' => 1,
8317+
]);
8318+
```
8319+
8320+
Operations method:
8321+
```php
8322+
$client->operations()->orgs()->listCustomPropertiesValuesForReposListing( org: 'generated',
8323+
per_page: 8,
8324+
page: 1,
8325+
);
8326+
```
8327+
8328+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/properties#list-custom-property-values-for-organization-repositories).
8329+
8330+
8331+
### orgs/create-or-update-custom-properties-values-for-repos
8332+
8333+
Create or update custom property values for organization repositories
8334+
8335+
Using the `call` method:
8336+
```php
8337+
$client->call('PATCH /orgs/{org}/properties/values', [
8338+
'org' => 'generated',
8339+
]);
8340+
```
8341+
8342+
Operations method:
8343+
```php
8344+
$client->operations()->orgs()->createOrUpdateCustomPropertiesValuesForRepos( org: 'generated',
8345+
);
8346+
```
8347+
8348+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/properties#create-or-update-custom-property-values-for-organization-repositories).
8349+
8350+
81778351
### orgs/list-public-members
81788352

81798353
List public organization members
@@ -20047,6 +20221,28 @@ $client->operations()->projects()->createForRepo( owner: 'generated',
2004720221
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project).
2004820222

2004920223

20224+
### repos/get-custom-properties-values
20225+
20226+
Get all custom property values for a repository
20227+
20228+
Using the `call` method:
20229+
```php
20230+
$client->call('GET /repos/{owner}/{repo}/properties/values', [
20231+
'owner' => 'generated',
20232+
'repo' => 'generated',
20233+
]);
20234+
```
20235+
20236+
Operations method:
20237+
```php
20238+
$client->operations()->repos()->getCustomPropertiesValues( owner: 'generated',
20239+
repo: 'generated',
20240+
);
20241+
```
20242+
20243+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/repos/properties#get-all-custom-property-values-for-a-repository).
20244+
20245+
2005020246
### pulls/list
2005120247

2005220248
List pull requests

0 commit comments

Comments
 (0)