@byteplus/pulumi-bytepluscc 0.0.31 → 0.0.32

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/types/output.d.ts CHANGED
@@ -9063,6 +9063,30 @@ export declare namespace cloudidentity {
9063
9063
  }
9064
9064
  }
9065
9065
  export declare namespace cloudmonitor {
9066
+ interface ContactGroupContact {
9067
+ /**
9068
+ * 联系人ID。
9069
+ */
9070
+ contactId: string;
9071
+ }
9072
+ interface GetContactGroupContact {
9073
+ /**
9074
+ * 联系人ID。
9075
+ */
9076
+ contactId: string;
9077
+ /**
9078
+ * 联系人邮箱地址。
9079
+ */
9080
+ email: string;
9081
+ /**
9082
+ * 联系人名称。
9083
+ */
9084
+ name: string;
9085
+ /**
9086
+ * 联系人手机号码。
9087
+ */
9088
+ phone: string;
9089
+ }
9066
9090
  interface GetRuleCondition {
9067
9091
  /**
9068
9092
  * Comparison operators. Supports standard threshold alerting: >, >=, <, <=, !=, =, as well as the following period-over-period alerting: last*period*increase*pct: Increased compared to last period. last*period*decrease*pct: Decreased compared to last period. last*period*abs*pct: Increased or decreased compared to last period. last*day*increase*pct: Increased compared to the same period yesterday. last*day*decrease*pct: Decreased compared to the same period yesterday. last*day*abs*pct: Increased or decreased compared to the same period yesterday. last*week*increase*pct: Increased compared to the same period last week. last*week*decrease*pct: Decreased compared to the same period last week. last*week*abs_pct: Increased or decreased compared to the same period last week.
@@ -14449,6 +14473,315 @@ export declare namespace iam {
14449
14473
  value: string;
14450
14474
  }
14451
14475
  }
14476
+ export declare namespace id {
14477
+ interface GetServiceBackend {
14478
+ /**
14479
+ * Backend service domain name, for example api.example.com
14480
+ */
14481
+ backendDomain: string;
14482
+ /**
14483
+ * Backend service port, default is 443
14484
+ */
14485
+ backendPort: number;
14486
+ /**
14487
+ * Whether to enable TLS
14488
+ */
14489
+ enableTls: boolean;
14490
+ /**
14491
+ * Communication protocol, for example HTTP or HTTPS
14492
+ */
14493
+ protocol: string;
14494
+ /**
14495
+ * Request timeout in seconds, default is 30 seconds
14496
+ */
14497
+ timeoutSeconds: number;
14498
+ }
14499
+ interface GetServiceRoute {
14500
+ /**
14501
+ * API specification configuration
14502
+ */
14503
+ apiSpec: outputs.id.GetServiceRouteApiSpec;
14504
+ /**
14505
+ * Authentication resource type
14506
+ */
14507
+ authResourceType: string;
14508
+ /**
14509
+ * Route description
14510
+ */
14511
+ description: string;
14512
+ /**
14513
+ * HTTP methods, separated by commas
14514
+ */
14515
+ method: string;
14516
+ /**
14517
+ * Request path, 1–256 characters
14518
+ */
14519
+ path: string;
14520
+ /**
14521
+ * Path match type, for example Exact, Prefix
14522
+ */
14523
+ pathMatchType: string;
14524
+ /**
14525
+ * Permission pool name
14526
+ */
14527
+ permissionPool: string;
14528
+ /**
14529
+ * Route priority, lower values indicate higher priority
14530
+ */
14531
+ priority: number;
14532
+ /**
14533
+ * Resource type, for example Collection
14534
+ */
14535
+ resourceType: string;
14536
+ /**
14537
+ * Route name, 1–64 characters
14538
+ */
14539
+ routeName: string;
14540
+ }
14541
+ interface GetServiceRouteApiSpec {
14542
+ /**
14543
+ * Operation type, for example READ
14544
+ */
14545
+ actionType: string;
14546
+ /**
14547
+ * Operation value, for example search
14548
+ */
14549
+ actionValue: string;
14550
+ /**
14551
+ * Attribute extractor list
14552
+ */
14553
+ extractors: outputs.id.GetServiceRouteApiSpecExtractor[];
14554
+ /**
14555
+ * Resource identifier type
14556
+ */
14557
+ identifierType: number;
14558
+ /**
14559
+ * Resource identifier value, for example JSON Pointer
14560
+ */
14561
+ identifierValue: string;
14562
+ /**
14563
+ * Response filter list
14564
+ */
14565
+ responseFilters: outputs.id.GetServiceRouteApiSpecResponseFilter[];
14566
+ }
14567
+ interface GetServiceRouteApiSpecExtractor {
14568
+ /**
14569
+ * Whether used for authentication
14570
+ */
14571
+ isAuth: boolean;
14572
+ /**
14573
+ * JSON Pointer expression
14574
+ */
14575
+ path: string;
14576
+ /**
14577
+ * Extracted resource type
14578
+ */
14579
+ resourceType: string;
14580
+ /**
14581
+ * Extraction source enumeration value
14582
+ */
14583
+ source: number;
14584
+ }
14585
+ interface GetServiceRouteApiSpecResponseFilter {
14586
+ /**
14587
+ * Attribute mapping list
14588
+ */
14589
+ attributes: outputs.id.GetServiceRouteApiSpecResponseFilterAttribute[];
14590
+ /**
14591
+ * Array path JSON Pointer
14592
+ */
14593
+ filterPath: string;
14594
+ /**
14595
+ * ID field name
14596
+ */
14597
+ idField: string;
14598
+ /**
14599
+ * Whether used for authentication
14600
+ */
14601
+ isAuth: boolean;
14602
+ /**
14603
+ * Filter mode enumeration value
14604
+ */
14605
+ mode: number;
14606
+ /**
14607
+ * Resource path JSON Pointer
14608
+ */
14609
+ resourcePath: string;
14610
+ /**
14611
+ * Filtered resource type
14612
+ */
14613
+ resourceType: string;
14614
+ }
14615
+ interface GetServiceRouteApiSpecResponseFilterAttribute {
14616
+ /**
14617
+ * Source field path JSON Pointer
14618
+ */
14619
+ field: string;
14620
+ /**
14621
+ * Target attribute name
14622
+ */
14623
+ target: string;
14624
+ }
14625
+ interface GetServiceTag {
14626
+ /**
14627
+ * Tag key
14628
+ */
14629
+ key: string;
14630
+ /**
14631
+ * Tag value
14632
+ */
14633
+ value: string;
14634
+ }
14635
+ interface ServiceBackend {
14636
+ /**
14637
+ * Backend service domain name, for example api.example.com
14638
+ */
14639
+ backendDomain: string;
14640
+ /**
14641
+ * Backend service port, default is 443
14642
+ */
14643
+ backendPort: number;
14644
+ /**
14645
+ * Whether to enable TLS
14646
+ */
14647
+ enableTls: boolean;
14648
+ /**
14649
+ * Communication protocol, for example HTTP or HTTPS
14650
+ */
14651
+ protocol: string;
14652
+ /**
14653
+ * Request timeout in seconds, default is 30 seconds
14654
+ */
14655
+ timeoutSeconds: number;
14656
+ }
14657
+ interface ServiceRoute {
14658
+ /**
14659
+ * API specification configuration
14660
+ */
14661
+ apiSpec: outputs.id.ServiceRouteApiSpec;
14662
+ /**
14663
+ * Authentication resource type
14664
+ */
14665
+ authResourceType: string;
14666
+ /**
14667
+ * Route description
14668
+ */
14669
+ description: string;
14670
+ /**
14671
+ * HTTP methods, separated by commas
14672
+ */
14673
+ method: string;
14674
+ /**
14675
+ * Request path, 1–256 characters
14676
+ */
14677
+ path: string;
14678
+ /**
14679
+ * Path match type, for example Exact, Prefix
14680
+ */
14681
+ pathMatchType: string;
14682
+ /**
14683
+ * Permission pool name
14684
+ */
14685
+ permissionPool: string;
14686
+ /**
14687
+ * Route priority, lower values indicate higher priority
14688
+ */
14689
+ priority: number;
14690
+ /**
14691
+ * Resource type, for example Collection
14692
+ */
14693
+ resourceType: string;
14694
+ /**
14695
+ * Route name, 1–64 characters
14696
+ */
14697
+ routeName: string;
14698
+ }
14699
+ interface ServiceRouteApiSpec {
14700
+ /**
14701
+ * Operation type, for example READ
14702
+ */
14703
+ actionType: string;
14704
+ /**
14705
+ * Operation value, for example search
14706
+ */
14707
+ actionValue: string;
14708
+ extractors: outputs.id.ServiceRouteApiSpecExtractor[];
14709
+ /**
14710
+ * Resource identifier type
14711
+ */
14712
+ identifierType: number;
14713
+ /**
14714
+ * Resource identifier value, for example JSON Pointer
14715
+ */
14716
+ identifierValue: string;
14717
+ responseFilters: outputs.id.ServiceRouteApiSpecResponseFilter[];
14718
+ }
14719
+ interface ServiceRouteApiSpecExtractor {
14720
+ /**
14721
+ * Whether used for authentication
14722
+ */
14723
+ isAuth: boolean;
14724
+ /**
14725
+ * JSON Pointer expression
14726
+ */
14727
+ path: string;
14728
+ /**
14729
+ * Extracted resource type
14730
+ */
14731
+ resourceType: string;
14732
+ /**
14733
+ * Extraction source enumeration value
14734
+ */
14735
+ source: number;
14736
+ }
14737
+ interface ServiceRouteApiSpecResponseFilter {
14738
+ attributes: outputs.id.ServiceRouteApiSpecResponseFilterAttribute[];
14739
+ /**
14740
+ * Array path JSON Pointer
14741
+ */
14742
+ filterPath: string;
14743
+ /**
14744
+ * ID field name
14745
+ */
14746
+ idField: string;
14747
+ /**
14748
+ * Whether used for authentication
14749
+ */
14750
+ isAuth: boolean;
14751
+ /**
14752
+ * Filter mode enumeration value
14753
+ */
14754
+ mode: number;
14755
+ /**
14756
+ * Resource path JSON Pointer
14757
+ */
14758
+ resourcePath: string;
14759
+ /**
14760
+ * Filtered resource type
14761
+ */
14762
+ resourceType: string;
14763
+ }
14764
+ interface ServiceRouteApiSpecResponseFilterAttribute {
14765
+ /**
14766
+ * Source field path JSON Pointer
14767
+ */
14768
+ field: string;
14769
+ /**
14770
+ * Target attribute name
14771
+ */
14772
+ target: string;
14773
+ }
14774
+ interface ServiceTag {
14775
+ /**
14776
+ * Tag key
14777
+ */
14778
+ key: string;
14779
+ /**
14780
+ * Tag value
14781
+ */
14782
+ value: string;
14783
+ }
14784
+ }
14452
14785
  export declare namespace kafka {
14453
14786
  interface AllowListAssociatedInstance {
14454
14787
  /**