@@ -8805,17 +8805,18 @@ public struct Client: APIProtocol {
8805
8805
///
8806
8806
/// OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
8807
8807
///
8808
- /// - Remark: HTTP `GET /repositories/{repository_id }/environments/{environment_name}/secrets`.
8809
- /// - Remark: Generated from `#/paths//repositories/{repository_id }/environments/{environment_name}/secrets/get(actions/list-environment-secrets)`.
8808
+ /// - Remark: HTTP `GET /repos/{owner}/{repo }/environments/{environment_name}/secrets`.
8809
+ /// - Remark: Generated from `#/paths//repos/{owner}/{repo }/environments/{environment_name}/secrets/get(actions/list-environment-secrets)`.
8810
8810
public func actions_sol_list_hyphen_environment_hyphen_secrets( _ input: Operations . actions_sol_list_hyphen_environment_hyphen_secrets . Input ) async throws -> Operations . actions_sol_list_hyphen_environment_hyphen_secrets . Output {
8811
8811
try await client. send (
8812
8812
input: input,
8813
8813
forOperation: Operations . actions_sol_list_hyphen_environment_hyphen_secrets. id,
8814
8814
serializer: { input in
8815
8815
let path = try converter. renderedPath (
8816
- template: " /repositories /{}/environments/{}/secrets " ,
8816
+ template: " /repos/{} /{}/environments/{}/secrets " ,
8817
8817
parameters: [
8818
- input. path. repository_id,
8818
+ input. path. owner,
8819
+ input. path. repo,
8819
8820
input. path. environment_name
8820
8821
]
8821
8822
)
@@ -8897,17 +8898,18 @@ public struct Client: APIProtocol {
8897
8898
///
8898
8899
/// If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
8899
8900
///
8900
- /// - Remark: HTTP `GET /repositories/{repository_id }/environments/{environment_name}/secrets/public-key`.
8901
- /// - Remark: Generated from `#/paths//repositories/{repository_id }/environments/{environment_name}/secrets/public-key/get(actions/get-environment-public-key)`.
8901
+ /// - Remark: HTTP `GET /repos/{owner}/{repo }/environments/{environment_name}/secrets/public-key`.
8902
+ /// - Remark: Generated from `#/paths//repos/{owner}/{repo }/environments/{environment_name}/secrets/public-key/get(actions/get-environment-public-key)`.
8902
8903
public func actions_sol_get_hyphen_environment_hyphen_public_hyphen_key( _ input: Operations . actions_sol_get_hyphen_environment_hyphen_public_hyphen_key . Input ) async throws -> Operations . actions_sol_get_hyphen_environment_hyphen_public_hyphen_key . Output {
8903
8904
try await client. send (
8904
8905
input: input,
8905
8906
forOperation: Operations . actions_sol_get_hyphen_environment_hyphen_public_hyphen_key. id,
8906
8907
serializer: { input in
8907
8908
let path = try converter. renderedPath (
8908
- template: " /repositories /{}/environments/{}/secrets/public-key " ,
8909
+ template: " /repos/{} /{}/environments/{}/secrets/public-key " ,
8909
8910
parameters: [
8910
- input. path. repository_id,
8911
+ input. path. owner,
8912
+ input. path. repo,
8911
8913
input. path. environment_name
8912
8914
]
8913
8915
)
@@ -8966,17 +8968,18 @@ public struct Client: APIProtocol {
8966
8968
///
8967
8969
/// OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
8968
8970
///
8969
- /// - Remark: HTTP `GET /repositories/{repository_id }/environments/{environment_name}/secrets/{secret_name}`.
8970
- /// - Remark: Generated from `#/paths//repositories/{repository_id }/environments/{environment_name}/secrets/{secret_name}/get(actions/get-environment-secret)`.
8971
+ /// - Remark: HTTP `GET /repos/{owner}/{repo }/environments/{environment_name}/secrets/{secret_name}`.
8972
+ /// - Remark: Generated from `#/paths//repos/{owner}/{repo }/environments/{environment_name}/secrets/{secret_name}/get(actions/get-environment-secret)`.
8971
8973
public func actions_sol_get_hyphen_environment_hyphen_secret( _ input: Operations . actions_sol_get_hyphen_environment_hyphen_secret . Input ) async throws -> Operations . actions_sol_get_hyphen_environment_hyphen_secret . Output {
8972
8974
try await client. send (
8973
8975
input: input,
8974
8976
forOperation: Operations . actions_sol_get_hyphen_environment_hyphen_secret. id,
8975
8977
serializer: { input in
8976
8978
let path = try converter. renderedPath (
8977
- template: " /repositories /{}/environments/{}/secrets/{} " ,
8979
+ template: " /repos/{} /{}/environments/{}/secrets/{} " ,
8978
8980
parameters: [
8979
- input. path. repository_id,
8981
+ input. path. owner,
8982
+ input. path. repo,
8980
8983
input. path. environment_name,
8981
8984
input. path. secret_name
8982
8985
]
@@ -9037,17 +9040,18 @@ public struct Client: APIProtocol {
9037
9040
///
9038
9041
/// OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
9039
9042
///
9040
- /// - Remark: HTTP `PUT /repositories/{repository_id }/environments/{environment_name}/secrets/{secret_name}`.
9041
- /// - Remark: Generated from `#/paths//repositories/{repository_id }/environments/{environment_name}/secrets/{secret_name}/put(actions/create-or-update-environment-secret)`.
9043
+ /// - Remark: HTTP `PUT /repos/{owner}/{repo }/environments/{environment_name}/secrets/{secret_name}`.
9044
+ /// - Remark: Generated from `#/paths//repos/{owner}/{repo }/environments/{environment_name}/secrets/{secret_name}/put(actions/create-or-update-environment-secret)`.
9042
9045
public func actions_sol_create_hyphen_or_hyphen_update_hyphen_environment_hyphen_secret( _ input: Operations . actions_sol_create_hyphen_or_hyphen_update_hyphen_environment_hyphen_secret . Input ) async throws -> Operations . actions_sol_create_hyphen_or_hyphen_update_hyphen_environment_hyphen_secret . Output {
9043
9046
try await client. send (
9044
9047
input: input,
9045
9048
forOperation: Operations . actions_sol_create_hyphen_or_hyphen_update_hyphen_environment_hyphen_secret. id,
9046
9049
serializer: { input in
9047
9050
let path = try converter. renderedPath (
9048
- template: " /repositories /{}/environments/{}/secrets/{} " ,
9051
+ template: " /repos/{} /{}/environments/{}/secrets/{} " ,
9049
9052
parameters: [
9050
- input. path. repository_id,
9053
+ input. path. owner,
9054
+ input. path. repo,
9051
9055
input. path. environment_name,
9052
9056
input. path. secret_name
9053
9057
]
@@ -9118,17 +9122,18 @@ public struct Client: APIProtocol {
9118
9122
///
9119
9123
/// OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
9120
9124
///
9121
- /// - Remark: HTTP `DELETE /repositories/{repository_id }/environments/{environment_name}/secrets/{secret_name}`.
9122
- /// - Remark: Generated from `#/paths//repositories/{repository_id }/environments/{environment_name}/secrets/{secret_name}/delete(actions/delete-environment-secret)`.
9125
+ /// - Remark: HTTP `DELETE /repos/{owner}/{repo }/environments/{environment_name}/secrets/{secret_name}`.
9126
+ /// - Remark: Generated from `#/paths//repos/{owner}/{repo }/environments/{environment_name}/secrets/{secret_name}/delete(actions/delete-environment-secret)`.
9123
9127
public func actions_sol_delete_hyphen_environment_hyphen_secret( _ input: Operations . actions_sol_delete_hyphen_environment_hyphen_secret . Input ) async throws -> Operations . actions_sol_delete_hyphen_environment_hyphen_secret . Output {
9124
9128
try await client. send (
9125
9129
input: input,
9126
9130
forOperation: Operations . actions_sol_delete_hyphen_environment_hyphen_secret. id,
9127
9131
serializer: { input in
9128
9132
let path = try converter. renderedPath (
9129
- template: " /repositories /{}/environments/{}/secrets/{} " ,
9133
+ template: " /repos/{} /{}/environments/{}/secrets/{} " ,
9130
9134
parameters: [
9131
- input. path. repository_id,
9135
+ input. path. owner,
9136
+ input. path. repo,
9132
9137
input. path. environment_name,
9133
9138
input. path. secret_name
9134
9139
]
@@ -9164,17 +9169,18 @@ public struct Client: APIProtocol {
9164
9169
///
9165
9170
/// OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
9166
9171
///
9167
- /// - Remark: HTTP `GET /repositories/{repository_id }/environments/{environment_name}/variables`.
9168
- /// - Remark: Generated from `#/paths//repositories/{repository_id }/environments/{environment_name}/variables/get(actions/list-environment-variables)`.
9172
+ /// - Remark: HTTP `GET /repos/{owner}/{repo }/environments/{environment_name}/variables`.
9173
+ /// - Remark: Generated from `#/paths//repos/{owner}/{repo }/environments/{environment_name}/variables/get(actions/list-environment-variables)`.
9169
9174
public func actions_sol_list_hyphen_environment_hyphen_variables( _ input: Operations . actions_sol_list_hyphen_environment_hyphen_variables . Input ) async throws -> Operations . actions_sol_list_hyphen_environment_hyphen_variables . Output {
9170
9175
try await client. send (
9171
9176
input: input,
9172
9177
forOperation: Operations . actions_sol_list_hyphen_environment_hyphen_variables. id,
9173
9178
serializer: { input in
9174
9179
let path = try converter. renderedPath (
9175
- template: " /repositories /{}/environments/{}/variables " ,
9180
+ template: " /repos/{} /{}/environments/{}/variables " ,
9176
9181
parameters: [
9177
- input. path. repository_id,
9182
+ input. path. owner,
9183
+ input. path. repo,
9178
9184
input. path. environment_name
9179
9185
]
9180
9186
)
@@ -9255,17 +9261,18 @@ public struct Client: APIProtocol {
9255
9261
///
9256
9262
/// OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
9257
9263
///
9258
- /// - Remark: HTTP `POST /repositories/{repository_id }/environments/{environment_name}/variables`.
9259
- /// - Remark: Generated from `#/paths//repositories/{repository_id }/environments/{environment_name}/variables/post(actions/create-environment-variable)`.
9264
+ /// - Remark: HTTP `POST /repos/{owner}/{repo }/environments/{environment_name}/variables`.
9265
+ /// - Remark: Generated from `#/paths//repos/{owner}/{repo }/environments/{environment_name}/variables/post(actions/create-environment-variable)`.
9260
9266
public func actions_sol_create_hyphen_environment_hyphen_variable( _ input: Operations . actions_sol_create_hyphen_environment_hyphen_variable . Input ) async throws -> Operations . actions_sol_create_hyphen_environment_hyphen_variable . Output {
9261
9267
try await client. send (
9262
9268
input: input,
9263
9269
forOperation: Operations . actions_sol_create_hyphen_environment_hyphen_variable. id,
9264
9270
serializer: { input in
9265
9271
let path = try converter. renderedPath (
9266
- template: " /repositories /{}/environments/{}/variables " ,
9272
+ template: " /repos/{} /{}/environments/{}/variables " ,
9267
9273
parameters: [
9268
- input. path. repository_id,
9274
+ input. path. owner,
9275
+ input. path. repo,
9269
9276
input. path. environment_name
9270
9277
]
9271
9278
)
@@ -9333,17 +9340,18 @@ public struct Client: APIProtocol {
9333
9340
///
9334
9341
/// OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
9335
9342
///
9336
- /// - Remark: HTTP `GET /repositories/{repository_id }/environments/{environment_name}/variables/{name}`.
9337
- /// - Remark: Generated from `#/paths//repositories/{repository_id }/environments/{environment_name}/variables/{name}/get(actions/get-environment-variable)`.
9343
+ /// - Remark: HTTP `GET /repos/{owner}/{repo }/environments/{environment_name}/variables/{name}`.
9344
+ /// - Remark: Generated from `#/paths//repos/{owner}/{repo }/environments/{environment_name}/variables/{name}/get(actions/get-environment-variable)`.
9338
9345
public func actions_sol_get_hyphen_environment_hyphen_variable( _ input: Operations . actions_sol_get_hyphen_environment_hyphen_variable . Input ) async throws -> Operations . actions_sol_get_hyphen_environment_hyphen_variable . Output {
9339
9346
try await client. send (
9340
9347
input: input,
9341
9348
forOperation: Operations . actions_sol_get_hyphen_environment_hyphen_variable. id,
9342
9349
serializer: { input in
9343
9350
let path = try converter. renderedPath (
9344
- template: " /repositories /{}/environments/{}/variables/{} " ,
9351
+ template: " /repos/{} /{}/environments/{}/variables/{} " ,
9345
9352
parameters: [
9346
- input. path. repository_id,
9353
+ input. path. owner,
9354
+ input. path. repo,
9347
9355
input. path. environment_name,
9348
9356
input. path. name
9349
9357
]
@@ -9403,17 +9411,18 @@ public struct Client: APIProtocol {
9403
9411
///
9404
9412
/// OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
9405
9413
///
9406
- /// - Remark: HTTP `PATCH /repositories/{repository_id }/environments/{environment_name}/variables/{name}`.
9407
- /// - Remark: Generated from `#/paths//repositories/{repository_id }/environments/{environment_name}/variables/{name}/patch(actions/update-environment-variable)`.
9414
+ /// - Remark: HTTP `PATCH /repos/{owner}/{repo }/environments/{environment_name}/variables/{name}`.
9415
+ /// - Remark: Generated from `#/paths//repos/{owner}/{repo }/environments/{environment_name}/variables/{name}/patch(actions/update-environment-variable)`.
9408
9416
public func actions_sol_update_hyphen_environment_hyphen_variable( _ input: Operations . actions_sol_update_hyphen_environment_hyphen_variable . Input ) async throws -> Operations . actions_sol_update_hyphen_environment_hyphen_variable . Output {
9409
9417
try await client. send (
9410
9418
input: input,
9411
9419
forOperation: Operations . actions_sol_update_hyphen_environment_hyphen_variable. id,
9412
9420
serializer: { input in
9413
9421
let path = try converter. renderedPath (
9414
- template: " /repositories /{}/environments/{}/variables/{} " ,
9422
+ template: " /repos/{} /{}/environments/{}/variables/{} " ,
9415
9423
parameters: [
9416
- input. path. repository_id,
9424
+ input. path. owner,
9425
+ input. path. repo,
9417
9426
input. path. environment_name,
9418
9427
input. path. name
9419
9428
]
@@ -9458,17 +9467,18 @@ public struct Client: APIProtocol {
9458
9467
///
9459
9468
/// OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
9460
9469
///
9461
- /// - Remark: HTTP `DELETE /repositories/{repository_id }/environments/{environment_name}/variables/{name}`.
9462
- /// - Remark: Generated from `#/paths//repositories/{repository_id }/environments/{environment_name}/variables/{name}/delete(actions/delete-environment-variable)`.
9470
+ /// - Remark: HTTP `DELETE /repos/{owner}/{repo }/environments/{environment_name}/variables/{name}`.
9471
+ /// - Remark: Generated from `#/paths//repos/{owner}/{repo }/environments/{environment_name}/variables/{name}/delete(actions/delete-environment-variable)`.
9463
9472
public func actions_sol_delete_hyphen_environment_hyphen_variable( _ input: Operations . actions_sol_delete_hyphen_environment_hyphen_variable . Input ) async throws -> Operations . actions_sol_delete_hyphen_environment_hyphen_variable . Output {
9464
9473
try await client. send (
9465
9474
input: input,
9466
9475
forOperation: Operations . actions_sol_delete_hyphen_environment_hyphen_variable. id,
9467
9476
serializer: { input in
9468
9477
let path = try converter. renderedPath (
9469
- template: " /repositories /{}/environments/{}/variables/{} " ,
9478
+ template: " /repos/{} /{}/environments/{}/variables/{} " ,
9470
9479
parameters: [
9471
- input. path. repository_id,
9480
+ input. path. owner,
9481
+ input. path. repo,
9472
9482
input. path. environment_name,
9473
9483
input. path. name
9474
9484
]
0 commit comments