@@ -1048,6 +1048,7 @@ $client->call('GET /enterprises/{enterprise}/dependabot/alerts', [
1048
1048
'severity' => 'generated',
1049
1049
'ecosystem' => 'generated',
1050
1050
'package' => 'generated',
1051
+ 'epss_percentage' => 'generated',
1051
1052
'scope' => 'generated',
1052
1053
'before' => 'generated',
1053
1054
'after' => 'generated',
@@ -1066,6 +1067,7 @@ $client->operations()->dependabot()->listAlertsForEnterprise( enterprise:
1066
1067
severity: 'generated',
1067
1068
ecosystem: 'generated',
1068
1069
package: 'generated',
1070
+ epss_percentage: 'generated',
1069
1071
scope: 'generated',
1070
1072
before: 'generated',
1071
1073
after: 'generated',
@@ -5128,6 +5130,7 @@ $client->call('GET /orgs/{org}/dependabot/alerts', [
5128
5130
'severity' => 'generated',
5129
5131
'ecosystem' => 'generated',
5130
5132
'package' => 'generated',
5133
+ 'epss_percentage' => 'generated',
5131
5134
'scope' => 'generated',
5132
5135
'before' => 'generated',
5133
5136
'after' => 'generated',
@@ -5146,6 +5149,7 @@ $client->operations()->dependabot()->listAlertsForOrg( org: 'generated',
5146
5149
severity: 'generated',
5147
5150
ecosystem: 'generated',
5148
5151
package: 'generated',
5152
+ epss_percentage: 'generated',
5149
5153
scope: 'generated',
5150
5154
before: 'generated',
5151
5155
after: 'generated',
@@ -8996,6 +9000,138 @@ $client->operations()->billing()->getSharedStorageBillingOrg( org: 'gener
8996
9000
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/billing/billing#get-shared-storage-billing-for-an-organization).
8997
9001
8998
9002
9003
+ ### hosted-compute/list-network-configurations-for-org
9004
+
9005
+ List hosted compute network configurations for an organization
9006
+
9007
+ Using the `call` method:
9008
+ ```php
9009
+ $client->call('GET /orgs/{org}/settings/network-configurations', [
9010
+ 'org' => 'generated',
9011
+ 'per_page' => 8,
9012
+ 'page' => 1,
9013
+ ]);
9014
+ ```
9015
+
9016
+ Operations method:
9017
+ ```php
9018
+ $client->operations()->hostedCompute()->listNetworkConfigurationsForOrg( org: 'generated',
9019
+ per_page: 8,
9020
+ page: 1,
9021
+ );
9022
+ ```
9023
+
9024
+ You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization).
9025
+
9026
+
9027
+ ### hosted-compute/create-network-configuration-for-org
9028
+
9029
+ Create a hosted compute network configuration for an organization
9030
+
9031
+ Using the `call` method:
9032
+ ```php
9033
+ $client->call('POST /orgs/{org}/settings/network-configurations', [
9034
+ 'org' => 'generated',
9035
+ ]);
9036
+ ```
9037
+
9038
+ Operations method:
9039
+ ```php
9040
+ $client->operations()->hostedCompute()->createNetworkConfigurationForOrg( org: 'generated',
9041
+ );
9042
+ ```
9043
+
9044
+ You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization).
9045
+
9046
+
9047
+ ### hosted-compute/get-network-configuration-for-org
9048
+
9049
+ Get a hosted compute network configuration for an organization
9050
+
9051
+ Using the `call` method:
9052
+ ```php
9053
+ $client->call('GET /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
9054
+ 'org' => 'generated',
9055
+ 'network_configuration_id' => 'generated',
9056
+ ]);
9057
+ ```
9058
+
9059
+ Operations method:
9060
+ ```php
9061
+ $client->operations()->hostedCompute()->getNetworkConfigurationForOrg( org: 'generated',
9062
+ network_configuration_id: 'generated',
9063
+ );
9064
+ ```
9065
+
9066
+ You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization).
9067
+
9068
+
9069
+ ### hosted-compute/delete-network-configuration-from-org
9070
+
9071
+ Delete a hosted compute network configuration from an organization
9072
+
9073
+ Using the `call` method:
9074
+ ```php
9075
+ $client->call('DELETE /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
9076
+ 'org' => 'generated',
9077
+ 'network_configuration_id' => 'generated',
9078
+ ]);
9079
+ ```
9080
+
9081
+ Operations method:
9082
+ ```php
9083
+ $client->operations()->hostedCompute()->deleteNetworkConfigurationFromOrg( org: 'generated',
9084
+ network_configuration_id: 'generated',
9085
+ );
9086
+ ```
9087
+
9088
+ You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization).
9089
+
9090
+
9091
+ ### hosted-compute/update-network-configuration-for-org
9092
+
9093
+ Update a hosted compute network configuration for an organization
9094
+
9095
+ Using the `call` method:
9096
+ ```php
9097
+ $client->call('PATCH /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
9098
+ 'org' => 'generated',
9099
+ 'network_configuration_id' => 'generated',
9100
+ ]);
9101
+ ```
9102
+
9103
+ Operations method:
9104
+ ```php
9105
+ $client->operations()->hostedCompute()->updateNetworkConfigurationForOrg( org: 'generated',
9106
+ network_configuration_id: 'generated',
9107
+ );
9108
+ ```
9109
+
9110
+ You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization).
9111
+
9112
+
9113
+ ### hosted-compute/get-network-settings-for-org
9114
+
9115
+ Get a hosted compute network settings resource for an organization
9116
+
9117
+ Using the `call` method:
9118
+ ```php
9119
+ $client->call('GET /orgs/{org}/settings/network-settings/{network_settings_id}', [
9120
+ 'org' => 'generated',
9121
+ 'network_settings_id' => 'generated',
9122
+ ]);
9123
+ ```
9124
+
9125
+ Operations method:
9126
+ ```php
9127
+ $client->operations()->hostedCompute()->getNetworkSettingsForOrg( org: 'generated',
9128
+ network_settings_id: 'generated',
9129
+ );
9130
+ ```
9131
+
9132
+ You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization).
9133
+
9134
+
8999
9135
### copilot/copilot-metrics-for-team
9000
9136
9001
9137
Get Copilot metrics for a team
@@ -16213,6 +16349,7 @@ $client->call('GET /repos/{owner}/{repo}/dependabot/alerts', [
16213
16349
'ecosystem' => 'generated',
16214
16350
'package' => 'generated',
16215
16351
'manifest' => 'generated',
16352
+ 'epss_percentage' => 'generated',
16216
16353
'scope' => 'generated',
16217
16354
'before' => 'generated',
16218
16355
'after' => 'generated',
@@ -16234,6 +16371,7 @@ $client->operations()->dependabot()->listAlertsForRepo( owner: 'generated
16234
16371
ecosystem: 'generated',
16235
16372
package: 'generated',
16236
16373
manifest: 'generated',
16374
+ epss_percentage: 'generated',
16237
16375
scope: 'generated',
16238
16376
before: 'generated',
16239
16377
after: 'generated',
@@ -16263,6 +16401,7 @@ $client->call('LIST /repos/{owner}/{repo}/dependabot/alerts', [
16263
16401
'ecosystem' => 'generated',
16264
16402
'package' => 'generated',
16265
16403
'manifest' => 'generated',
16404
+ 'epss_percentage' => 'generated',
16266
16405
'scope' => 'generated',
16267
16406
'before' => 'generated',
16268
16407
'after' => 'generated',
@@ -16284,6 +16423,7 @@ $client->operations()->dependabot()->listAlertsForRepoListing( owner: 'ge
16284
16423
ecosystem: 'generated',
16285
16424
package: 'generated',
16286
16425
manifest: 'generated',
16426
+ epss_percentage: 'generated',
16287
16427
scope: 'generated',
16288
16428
before: 'generated',
16289
16429
after: 'generated',
0 commit comments