Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 941a30a

Browse files
committedMar 13, 2025
feat(api): api update (#5293)
1 parent cb5bee3 commit 941a30a

File tree

7 files changed

+13
-1
lines changed

7 files changed

+13
-1
lines changed
 

‎.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 1608
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-90e340b831573a4b2cb1327a72bdb7ac34d744f89ab29828978c0c3abcff1441.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-018acd6ba2924e877835061e9ffdbc9e5e8e8962c811987e9de085796176c050.yml

‎examples/resources/cloudflare_account_dns_settings_internal_view/import.sh

100644100755
File mode changed.

‎internal/services/calls_sfu_app/schema.go

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ func ResourceSchema(ctx context.Context) schema.Schema {
4747
"secret": schema.StringAttribute{
4848
Description: "Bearer token",
4949
Computed: true,
50+
Sensitive: true,
5051
},
5152
"uid": schema.StringAttribute{
5253
Description: "A Cloudflare-generated unique identifier for a item.",

‎internal/services/calls_turn_app/schema.go

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ func ResourceSchema(ctx context.Context) schema.Schema {
4242
"key": schema.StringAttribute{
4343
Description: "Bearer token",
4444
Computed: true,
45+
Sensitive: true,
4546
},
4647
"modified": schema.StringAttribute{
4748
Description: "The date and time the item was last modified.",

‎internal/services/stream_key/schema.go

+2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@ func ResourceSchema(ctx context.Context) schema.Schema {
3535
"jwk": schema.StringAttribute{
3636
Description: "The signing key in JWK format.",
3737
Computed: true,
38+
Sensitive: true,
3839
},
3940
"pem": schema.StringAttribute{
4041
Description: "The signing key in PEM format.",
4142
Computed: true,
43+
Sensitive: true,
4244
},
4345
},
4446
}

‎internal/services/stream_live_input/data_source_schema.go

+4
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ func DataSourceSchema(ctx context.Context) schema.Schema {
106106
"stream_key": schema.StringAttribute{
107107
Description: "The secret key to use when streaming via RTMPS to a live input.",
108108
Computed: true,
109+
Sensitive: true,
109110
},
110111
"url": schema.StringAttribute{
111112
Description: "The RTMPS URL you provide to the broadcaster, which they stream live video to.",
@@ -121,6 +122,7 @@ func DataSourceSchema(ctx context.Context) schema.Schema {
121122
"stream_key": schema.StringAttribute{
122123
Description: "The secret key to use for playback via RTMPS.",
123124
Computed: true,
125+
Sensitive: true,
124126
},
125127
"url": schema.StringAttribute{
126128
Description: "The URL used to play live video over RTMPS.",
@@ -136,6 +138,7 @@ func DataSourceSchema(ctx context.Context) schema.Schema {
136138
"passphrase": schema.StringAttribute{
137139
Description: "The secret key to use when streaming via SRT to a live input.",
138140
Computed: true,
141+
Sensitive: true,
139142
},
140143
"stream_id": schema.StringAttribute{
141144
Description: "The identifier of the live input to use when streaming via SRT.",
@@ -155,6 +158,7 @@ func DataSourceSchema(ctx context.Context) schema.Schema {
155158
"passphrase": schema.StringAttribute{
156159
Description: "The secret key to use for playback via SRT.",
157160
Computed: true,
161+
Sensitive: true,
158162
},
159163
"stream_id": schema.StringAttribute{
160164
Description: "The identifier of the live input to use for playback via SRT.",

‎internal/services/stream_live_input/schema.go

+4
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ func ResourceSchema(ctx context.Context) schema.Schema {
130130
"stream_key": schema.StringAttribute{
131131
Description: "The secret key to use when streaming via RTMPS to a live input.",
132132
Computed: true,
133+
Sensitive: true,
133134
},
134135
"url": schema.StringAttribute{
135136
Description: "The RTMPS URL you provide to the broadcaster, which they stream live video to.",
@@ -145,6 +146,7 @@ func ResourceSchema(ctx context.Context) schema.Schema {
145146
"stream_key": schema.StringAttribute{
146147
Description: "The secret key to use for playback via RTMPS.",
147148
Computed: true,
149+
Sensitive: true,
148150
},
149151
"url": schema.StringAttribute{
150152
Description: "The URL used to play live video over RTMPS.",
@@ -160,6 +162,7 @@ func ResourceSchema(ctx context.Context) schema.Schema {
160162
"passphrase": schema.StringAttribute{
161163
Description: "The secret key to use when streaming via SRT to a live input.",
162164
Computed: true,
165+
Sensitive: true,
163166
},
164167
"stream_id": schema.StringAttribute{
165168
Description: "The identifier of the live input to use when streaming via SRT.",
@@ -179,6 +182,7 @@ func ResourceSchema(ctx context.Context) schema.Schema {
179182
"passphrase": schema.StringAttribute{
180183
Description: "The secret key to use for playback via SRT.",
181184
Computed: true,
185+
Sensitive: true,
182186
},
183187
"stream_id": schema.StringAttribute{
184188
Description: "The identifier of the live input to use for playback via SRT.",

0 commit comments

Comments
 (0)
Please sign in to comment.