@@ -27,6 +27,10 @@ func TestAccProjectRateLimitResource(t *testing.T) {
27
27
statecheck .ExpectKnownValue (rn , tfjsonpath .New ("model" ), knownvalue .StringExact ("text-embedding-3-small" )),
28
28
statecheck .ExpectKnownValue (rn , tfjsonpath .New ("max_requests_per_1_minute" ), knownvalue .Int64Exact (3 )),
29
29
statecheck .ExpectKnownValue (rn , tfjsonpath .New ("max_tokens_per_1_minute" ), knownvalue .Int64Exact (3 )),
30
+ statecheck .ExpectKnownValue (rn , tfjsonpath .New ("max_images_per_1_minute" ), knownvalue .NotNull ()),
31
+ statecheck .ExpectKnownValue (rn , tfjsonpath .New ("max_audio_megabytes_per_1_minute" ), knownvalue .NotNull ()),
32
+ statecheck .ExpectKnownValue (rn , tfjsonpath .New ("max_requests_per_1_day" ), knownvalue .NotNull ()),
33
+ statecheck .ExpectKnownValue (rn , tfjsonpath .New ("batch_1_day_max_input_tokens" ), knownvalue .NotNull ()),
30
34
},
31
35
},
32
36
{
@@ -36,6 +40,10 @@ func TestAccProjectRateLimitResource(t *testing.T) {
36
40
statecheck .ExpectKnownValue (rn , tfjsonpath .New ("model" ), knownvalue .StringExact ("text-embedding-3-small" )),
37
41
statecheck .ExpectKnownValue (rn , tfjsonpath .New ("max_requests_per_1_minute" ), knownvalue .Int64Exact (2 )),
38
42
statecheck .ExpectKnownValue (rn , tfjsonpath .New ("max_tokens_per_1_minute" ), knownvalue .Int64Exact (2 )),
43
+ statecheck .ExpectKnownValue (rn , tfjsonpath .New ("max_images_per_1_minute" ), knownvalue .NotNull ()),
44
+ statecheck .ExpectKnownValue (rn , tfjsonpath .New ("max_audio_megabytes_per_1_minute" ), knownvalue .NotNull ()),
45
+ statecheck .ExpectKnownValue (rn , tfjsonpath .New ("max_requests_per_1_day" ), knownvalue .NotNull ()),
46
+ statecheck .ExpectKnownValue (rn , tfjsonpath .New ("batch_1_day_max_input_tokens" ), knownvalue .NotNull ()),
39
47
},
40
48
},
41
49
},
0 commit comments