waldur-js-client 8.0.9-dev.13 → 8.0.9-dev.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/sdk.gen.js CHANGED
@@ -3224,6 +3224,34 @@ export const autoprovisioningRulesUpdate = (options) => {
3224
3224
  }
3225
3225
  });
3226
3226
  };
3227
+ /**
3228
+ * Dry-run rule evaluation against a target user.
3229
+ * Evaluate this rule against the given user without provisioning. Returns per-filter outcomes, the customer-lookup verdict (when the rule uses use_user_organization_as_customer_name) and a top-line would_provision flag together with a human-readable block_reason.
3230
+ */
3231
+ export const autoprovisioningRulesTestMatch = (options) => {
3232
+ return (options.client ?? _heyApiClient).post({
3233
+ security: [
3234
+ {
3235
+ name: 'Authorization',
3236
+ type: 'apiKey'
3237
+ },
3238
+ {
3239
+ scheme: 'bearer',
3240
+ type: 'http'
3241
+ },
3242
+ {
3243
+ scheme: 'bearer',
3244
+ type: 'http'
3245
+ }
3246
+ ],
3247
+ url: '/api/autoprovisioning-rules/{uuid}/test-match/',
3248
+ ...options,
3249
+ headers: {
3250
+ 'Content-Type': 'application/json',
3251
+ ...options.headers
3252
+ }
3253
+ });
3254
+ };
3227
3255
  export const awsImagesList = (options) => {
3228
3256
  return (options?.client ?? _heyApiClient).get({
3229
3257
  security: [
@@ -21652,6 +21680,161 @@ export const marketplaceProjectEstimatedCostPoliciesActionsCount = (options) =>
21652
21680
  ...options
21653
21681
  });
21654
21682
  };
21683
+ export const marketplaceProjectOrderAutoApprovalsList = (options) => {
21684
+ return (options?.client ?? _heyApiClient).get({
21685
+ security: [
21686
+ {
21687
+ name: 'Authorization',
21688
+ type: 'apiKey'
21689
+ },
21690
+ {
21691
+ scheme: 'bearer',
21692
+ type: 'http'
21693
+ },
21694
+ {
21695
+ scheme: 'bearer',
21696
+ type: 'http'
21697
+ }
21698
+ ],
21699
+ url: '/api/marketplace-project-order-auto-approvals/',
21700
+ ...options
21701
+ });
21702
+ };
21703
+ /**
21704
+ * Get number of items in the collection matching the request parameters.
21705
+ */
21706
+ export const marketplaceProjectOrderAutoApprovalsCount = (options) => {
21707
+ return (options?.client ?? _heyApiClient).head({
21708
+ security: [
21709
+ {
21710
+ name: 'Authorization',
21711
+ type: 'apiKey'
21712
+ },
21713
+ {
21714
+ scheme: 'bearer',
21715
+ type: 'http'
21716
+ },
21717
+ {
21718
+ scheme: 'bearer',
21719
+ type: 'http'
21720
+ }
21721
+ ],
21722
+ url: '/api/marketplace-project-order-auto-approvals/',
21723
+ ...options
21724
+ });
21725
+ };
21726
+ export const marketplaceProjectOrderAutoApprovalsCreate = (options) => {
21727
+ return (options.client ?? _heyApiClient).post({
21728
+ security: [
21729
+ {
21730
+ name: 'Authorization',
21731
+ type: 'apiKey'
21732
+ },
21733
+ {
21734
+ scheme: 'bearer',
21735
+ type: 'http'
21736
+ },
21737
+ {
21738
+ scheme: 'bearer',
21739
+ type: 'http'
21740
+ }
21741
+ ],
21742
+ url: '/api/marketplace-project-order-auto-approvals/',
21743
+ ...options,
21744
+ headers: {
21745
+ 'Content-Type': 'application/json',
21746
+ ...options.headers
21747
+ }
21748
+ });
21749
+ };
21750
+ export const marketplaceProjectOrderAutoApprovalsDestroy = (options) => {
21751
+ return (options.client ?? _heyApiClient).delete({
21752
+ security: [
21753
+ {
21754
+ name: 'Authorization',
21755
+ type: 'apiKey'
21756
+ },
21757
+ {
21758
+ scheme: 'bearer',
21759
+ type: 'http'
21760
+ },
21761
+ {
21762
+ scheme: 'bearer',
21763
+ type: 'http'
21764
+ }
21765
+ ],
21766
+ url: '/api/marketplace-project-order-auto-approvals/{uuid}/',
21767
+ ...options
21768
+ });
21769
+ };
21770
+ export const marketplaceProjectOrderAutoApprovalsRetrieve = (options) => {
21771
+ return (options.client ?? _heyApiClient).get({
21772
+ security: [
21773
+ {
21774
+ name: 'Authorization',
21775
+ type: 'apiKey'
21776
+ },
21777
+ {
21778
+ scheme: 'bearer',
21779
+ type: 'http'
21780
+ },
21781
+ {
21782
+ scheme: 'bearer',
21783
+ type: 'http'
21784
+ }
21785
+ ],
21786
+ url: '/api/marketplace-project-order-auto-approvals/{uuid}/',
21787
+ ...options
21788
+ });
21789
+ };
21790
+ export const marketplaceProjectOrderAutoApprovalsPartialUpdate = (options) => {
21791
+ return (options.client ?? _heyApiClient).patch({
21792
+ security: [
21793
+ {
21794
+ name: 'Authorization',
21795
+ type: 'apiKey'
21796
+ },
21797
+ {
21798
+ scheme: 'bearer',
21799
+ type: 'http'
21800
+ },
21801
+ {
21802
+ scheme: 'bearer',
21803
+ type: 'http'
21804
+ }
21805
+ ],
21806
+ url: '/api/marketplace-project-order-auto-approvals/{uuid}/',
21807
+ ...options,
21808
+ headers: {
21809
+ 'Content-Type': 'application/json',
21810
+ ...options.headers
21811
+ }
21812
+ });
21813
+ };
21814
+ export const marketplaceProjectOrderAutoApprovalsUpdate = (options) => {
21815
+ return (options.client ?? _heyApiClient).put({
21816
+ security: [
21817
+ {
21818
+ name: 'Authorization',
21819
+ type: 'apiKey'
21820
+ },
21821
+ {
21822
+ scheme: 'bearer',
21823
+ type: 'http'
21824
+ },
21825
+ {
21826
+ scheme: 'bearer',
21827
+ type: 'http'
21828
+ }
21829
+ ],
21830
+ url: '/api/marketplace-project-order-auto-approvals/{uuid}/',
21831
+ ...options,
21832
+ headers: {
21833
+ 'Content-Type': 'application/json',
21834
+ ...options.headers
21835
+ }
21836
+ });
21837
+ };
21655
21838
  /**
21656
21839
  * List service accounts
21657
21840
  */
@@ -28264,6 +28447,29 @@ export const marketplaceServiceProvidersOfferingsList = (options) => {
28264
28447
  ...options
28265
28448
  });
28266
28449
  };
28450
+ /**
28451
+ * List distinct offering types for a service provider
28452
+ */
28453
+ export const marketplaceServiceProvidersOfferingsTypesList = (options) => {
28454
+ return (options.client ?? _heyApiClient).get({
28455
+ security: [
28456
+ {
28457
+ name: 'Authorization',
28458
+ type: 'apiKey'
28459
+ },
28460
+ {
28461
+ scheme: 'bearer',
28462
+ type: 'http'
28463
+ },
28464
+ {
28465
+ scheme: 'bearer',
28466
+ type: 'http'
28467
+ }
28468
+ ],
28469
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/',
28470
+ ...options
28471
+ });
28472
+ };
28267
28473
  /**
28268
28474
  * List project permissions of a service provider
28269
28475
  * Returns a paginated list of project permissions for all projects that have consumed resources from the specified service provider.