@volcengine/pulumi-volcenginecc 0.0.39 → 0.0.40

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
@@ -9273,6 +9273,30 @@ export declare namespace cloudidentity {
9273
9273
  }
9274
9274
  }
9275
9275
  export declare namespace cloudmonitor {
9276
+ interface ContactGroupContact {
9277
+ /**
9278
+ * 联系人ID。
9279
+ */
9280
+ contactId: string;
9281
+ }
9282
+ interface GetContactGroupContact {
9283
+ /**
9284
+ * 联系人ID。
9285
+ */
9286
+ contactId: string;
9287
+ /**
9288
+ * 联系人邮箱地址。
9289
+ */
9290
+ email: string;
9291
+ /**
9292
+ * 联系人名称。
9293
+ */
9294
+ name: string;
9295
+ /**
9296
+ * 联系人手机号码。
9297
+ */
9298
+ phone: string;
9299
+ }
9276
9300
  interface GetRuleCondition {
9277
9301
  /**
9278
9302
  * 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.
@@ -14829,6 +14853,315 @@ export declare namespace iam {
14829
14853
  value: string;
14830
14854
  }
14831
14855
  }
14856
+ export declare namespace id {
14857
+ interface GetServiceBackend {
14858
+ /**
14859
+ * Backend service domain name, for example api.example.com
14860
+ */
14861
+ backendDomain: string;
14862
+ /**
14863
+ * Backend service port, default is 443
14864
+ */
14865
+ backendPort: number;
14866
+ /**
14867
+ * Whether to enable TLS
14868
+ */
14869
+ enableTls: boolean;
14870
+ /**
14871
+ * Communication protocol, for example HTTP or HTTPS
14872
+ */
14873
+ protocol: string;
14874
+ /**
14875
+ * Request timeout in seconds, default is 30 seconds
14876
+ */
14877
+ timeoutSeconds: number;
14878
+ }
14879
+ interface GetServiceRoute {
14880
+ /**
14881
+ * API specification configuration
14882
+ */
14883
+ apiSpec: outputs.id.GetServiceRouteApiSpec;
14884
+ /**
14885
+ * Authentication resource type
14886
+ */
14887
+ authResourceType: string;
14888
+ /**
14889
+ * Route description
14890
+ */
14891
+ description: string;
14892
+ /**
14893
+ * HTTP methods, separated by commas
14894
+ */
14895
+ method: string;
14896
+ /**
14897
+ * Request path, 1–256 characters
14898
+ */
14899
+ path: string;
14900
+ /**
14901
+ * Path match type, for example Exact, Prefix
14902
+ */
14903
+ pathMatchType: string;
14904
+ /**
14905
+ * Permission pool name
14906
+ */
14907
+ permissionPool: string;
14908
+ /**
14909
+ * Route priority, lower values indicate higher priority
14910
+ */
14911
+ priority: number;
14912
+ /**
14913
+ * Resource type, for example Collection
14914
+ */
14915
+ resourceType: string;
14916
+ /**
14917
+ * Route name, 1–64 characters
14918
+ */
14919
+ routeName: string;
14920
+ }
14921
+ interface GetServiceRouteApiSpec {
14922
+ /**
14923
+ * Operation type, for example READ
14924
+ */
14925
+ actionType: string;
14926
+ /**
14927
+ * Operation value, for example search
14928
+ */
14929
+ actionValue: string;
14930
+ /**
14931
+ * Attribute extractor list
14932
+ */
14933
+ extractors: outputs.id.GetServiceRouteApiSpecExtractor[];
14934
+ /**
14935
+ * Resource identifier type
14936
+ */
14937
+ identifierType: number;
14938
+ /**
14939
+ * Resource identifier value, for example JSON Pointer
14940
+ */
14941
+ identifierValue: string;
14942
+ /**
14943
+ * Response filter list
14944
+ */
14945
+ responseFilters: outputs.id.GetServiceRouteApiSpecResponseFilter[];
14946
+ }
14947
+ interface GetServiceRouteApiSpecExtractor {
14948
+ /**
14949
+ * Whether used for authentication
14950
+ */
14951
+ isAuth: boolean;
14952
+ /**
14953
+ * JSON Pointer expression
14954
+ */
14955
+ path: string;
14956
+ /**
14957
+ * Extracted resource type
14958
+ */
14959
+ resourceType: string;
14960
+ /**
14961
+ * Extraction source enumeration value
14962
+ */
14963
+ source: number;
14964
+ }
14965
+ interface GetServiceRouteApiSpecResponseFilter {
14966
+ /**
14967
+ * Attribute mapping list
14968
+ */
14969
+ attributes: outputs.id.GetServiceRouteApiSpecResponseFilterAttribute[];
14970
+ /**
14971
+ * Array path JSON Pointer
14972
+ */
14973
+ filterPath: string;
14974
+ /**
14975
+ * ID field name
14976
+ */
14977
+ idField: string;
14978
+ /**
14979
+ * Whether used for authentication
14980
+ */
14981
+ isAuth: boolean;
14982
+ /**
14983
+ * Filter mode enumeration value
14984
+ */
14985
+ mode: number;
14986
+ /**
14987
+ * Resource path JSON Pointer
14988
+ */
14989
+ resourcePath: string;
14990
+ /**
14991
+ * Filtered resource type
14992
+ */
14993
+ resourceType: string;
14994
+ }
14995
+ interface GetServiceRouteApiSpecResponseFilterAttribute {
14996
+ /**
14997
+ * Source field path JSON Pointer
14998
+ */
14999
+ field: string;
15000
+ /**
15001
+ * Target attribute name
15002
+ */
15003
+ target: string;
15004
+ }
15005
+ interface GetServiceTag {
15006
+ /**
15007
+ * Tag key
15008
+ */
15009
+ key: string;
15010
+ /**
15011
+ * Tag value
15012
+ */
15013
+ value: string;
15014
+ }
15015
+ interface ServiceBackend {
15016
+ /**
15017
+ * Backend service domain name, for example api.example.com
15018
+ */
15019
+ backendDomain: string;
15020
+ /**
15021
+ * Backend service port, default is 443
15022
+ */
15023
+ backendPort: number;
15024
+ /**
15025
+ * Whether to enable TLS
15026
+ */
15027
+ enableTls: boolean;
15028
+ /**
15029
+ * Communication protocol, for example HTTP or HTTPS
15030
+ */
15031
+ protocol: string;
15032
+ /**
15033
+ * Request timeout in seconds, default is 30 seconds
15034
+ */
15035
+ timeoutSeconds: number;
15036
+ }
15037
+ interface ServiceRoute {
15038
+ /**
15039
+ * API specification configuration
15040
+ */
15041
+ apiSpec: outputs.id.ServiceRouteApiSpec;
15042
+ /**
15043
+ * Authentication resource type
15044
+ */
15045
+ authResourceType: string;
15046
+ /**
15047
+ * Route description
15048
+ */
15049
+ description: string;
15050
+ /**
15051
+ * HTTP methods, separated by commas
15052
+ */
15053
+ method: string;
15054
+ /**
15055
+ * Request path, 1–256 characters
15056
+ */
15057
+ path: string;
15058
+ /**
15059
+ * Path match type, for example Exact, Prefix
15060
+ */
15061
+ pathMatchType: string;
15062
+ /**
15063
+ * Permission pool name
15064
+ */
15065
+ permissionPool: string;
15066
+ /**
15067
+ * Route priority, lower values indicate higher priority
15068
+ */
15069
+ priority: number;
15070
+ /**
15071
+ * Resource type, for example Collection
15072
+ */
15073
+ resourceType: string;
15074
+ /**
15075
+ * Route name, 1–64 characters
15076
+ */
15077
+ routeName: string;
15078
+ }
15079
+ interface ServiceRouteApiSpec {
15080
+ /**
15081
+ * Operation type, for example READ
15082
+ */
15083
+ actionType: string;
15084
+ /**
15085
+ * Operation value, for example search
15086
+ */
15087
+ actionValue: string;
15088
+ extractors: outputs.id.ServiceRouteApiSpecExtractor[];
15089
+ /**
15090
+ * Resource identifier type
15091
+ */
15092
+ identifierType: number;
15093
+ /**
15094
+ * Resource identifier value, for example JSON Pointer
15095
+ */
15096
+ identifierValue: string;
15097
+ responseFilters: outputs.id.ServiceRouteApiSpecResponseFilter[];
15098
+ }
15099
+ interface ServiceRouteApiSpecExtractor {
15100
+ /**
15101
+ * Whether used for authentication
15102
+ */
15103
+ isAuth: boolean;
15104
+ /**
15105
+ * JSON Pointer expression
15106
+ */
15107
+ path: string;
15108
+ /**
15109
+ * Extracted resource type
15110
+ */
15111
+ resourceType: string;
15112
+ /**
15113
+ * Extraction source enumeration value
15114
+ */
15115
+ source: number;
15116
+ }
15117
+ interface ServiceRouteApiSpecResponseFilter {
15118
+ attributes: outputs.id.ServiceRouteApiSpecResponseFilterAttribute[];
15119
+ /**
15120
+ * Array path JSON Pointer
15121
+ */
15122
+ filterPath: string;
15123
+ /**
15124
+ * ID field name
15125
+ */
15126
+ idField: string;
15127
+ /**
15128
+ * Whether used for authentication
15129
+ */
15130
+ isAuth: boolean;
15131
+ /**
15132
+ * Filter mode enumeration value
15133
+ */
15134
+ mode: number;
15135
+ /**
15136
+ * Resource path JSON Pointer
15137
+ */
15138
+ resourcePath: string;
15139
+ /**
15140
+ * Filtered resource type
15141
+ */
15142
+ resourceType: string;
15143
+ }
15144
+ interface ServiceRouteApiSpecResponseFilterAttribute {
15145
+ /**
15146
+ * Source field path JSON Pointer
15147
+ */
15148
+ field: string;
15149
+ /**
15150
+ * Target attribute name
15151
+ */
15152
+ target: string;
15153
+ }
15154
+ interface ServiceTag {
15155
+ /**
15156
+ * Tag key
15157
+ */
15158
+ key: string;
15159
+ /**
15160
+ * Tag value
15161
+ */
15162
+ value: string;
15163
+ }
15164
+ }
14832
15165
  export declare namespace kafka {
14833
15166
  interface AllowListAssociatedInstance {
14834
15167
  /**