You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cloudrunv2: Added the following output only fields to `google_cloud_run_v2_job` resource: `create_time`, `update_time`, `delete_time`, `expire_time`, `creator` and `last_modifier`.
3
+
```
4
+
```release-note:enhancement
5
+
cloudrunv2: Added the following output only fields to `google_cloud_run_v2_service` resource: `create_time`, `update_time`, `delete_time`, `expire_time`, `creator` and `last_modifier`.
Copy file name to clipboardExpand all lines: google/services/cloudrunv2/resource_cloud_run_v2_job.go
+72
Original file line number
Diff line number
Diff line change
@@ -680,6 +680,21 @@ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to n
680
680
},
681
681
},
682
682
},
683
+
"create_time": {
684
+
Type: schema.TypeString,
685
+
Computed: true,
686
+
Description: `The creation time.`,
687
+
},
688
+
"creator": {
689
+
Type: schema.TypeString,
690
+
Computed: true,
691
+
Description: `Email address of the authenticated creator.`,
692
+
},
693
+
"delete_time": {
694
+
Type: schema.TypeString,
695
+
Computed: true,
696
+
Description: `The deletion time.`,
697
+
},
683
698
"etag": {
684
699
Type: schema.TypeString,
685
700
Computed: true,
@@ -690,11 +705,21 @@ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to n
690
705
Computed: true,
691
706
Description: `Number of executions created for this job.`,
692
707
},
708
+
"expire_time": {
709
+
Type: schema.TypeString,
710
+
Computed: true,
711
+
Description: `For a deleted resource, the time after which it will be permamently deleted.`,
712
+
},
693
713
"generation": {
694
714
Type: schema.TypeString,
695
715
Computed: true,
696
716
Description: `A number that monotonically increases every time the user modifies the desired state.`,
697
717
},
718
+
"last_modifier": {
719
+
Type: schema.TypeString,
720
+
Computed: true,
721
+
Description: `Email address of the last authenticated modifier.`,
722
+
},
698
723
"latest_created_execution": {
699
724
Type: schema.TypeList,
700
725
Computed: true,
@@ -795,6 +820,11 @@ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to n
795
820
Computed: true,
796
821
Description: `Server assigned unique identifier for the Execution. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted.`,
Copy file name to clipboardExpand all lines: google/services/cloudrunv2/resource_cloud_run_v2_service.go
+72
Original file line number
Diff line number
Diff line change
@@ -803,16 +803,41 @@ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to n
803
803
},
804
804
},
805
805
},
806
+
"create_time": {
807
+
Type: schema.TypeString,
808
+
Computed: true,
809
+
Description: `The creation time.`,
810
+
},
811
+
"creator": {
812
+
Type: schema.TypeString,
813
+
Computed: true,
814
+
Description: `Email address of the authenticated creator.`,
815
+
},
816
+
"delete_time": {
817
+
Type: schema.TypeString,
818
+
Computed: true,
819
+
Description: `The deletion time.`,
820
+
},
806
821
"etag": {
807
822
Type: schema.TypeString,
808
823
Computed: true,
809
824
Description: `A system-generated fingerprint for this version of the resource. May be used to detect modification conflict during updates.`,
810
825
},
826
+
"expire_time": {
827
+
Type: schema.TypeString,
828
+
Computed: true,
829
+
Description: `For a deleted resource, the time after which it will be permamently deleted.`,
830
+
},
811
831
"generation": {
812
832
Type: schema.TypeString,
813
833
Computed: true,
814
834
Description: `A number that monotonically increases every time the user modifies the desired state. Please note that unlike v1, this is an int64 value. As with most Google APIs, its JSON representation will be a string instead of an integer.`,
815
835
},
836
+
"last_modifier": {
837
+
Type: schema.TypeString,
838
+
Computed: true,
839
+
Description: `Email address of the last authenticated modifier.`,
840
+
},
816
841
"latest_created_revision": {
817
842
Type: schema.TypeString,
818
843
Computed: true,
@@ -927,6 +952,11 @@ If reconciliation failed, trafficStatuses, observedGeneration, and latestReadyRe
927
952
Computed: true,
928
953
Description: `Server assigned unique identifier for the trigger. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted.`,
929
954
},
955
+
"update_time": {
956
+
Type: schema.TypeString,
957
+
Computed: true,
958
+
Description: `The last-modified time.`,
959
+
},
930
960
"uri": {
931
961
Type: schema.TypeString,
932
962
Computed: true,
@@ -1131,6 +1161,24 @@ func resourceCloudRunV2ServiceRead(d *schema.ResourceData, meta interface{}) err
Copy file name to clipboardExpand all lines: website/docs/r/cloud_run_v2_service.html.markdown
+18
Original file line number
Diff line number
Diff line change
@@ -891,6 +891,24 @@ In addition to the arguments listed above, the following computed attributes are
891
891
*`generation` -
892
892
A number that monotonically increases every time the user modifies the desired state. Please note that unlike v1, this is an int64 value. As with most Google APIs, its JSON representation will be a string instead of an integer.
893
893
894
+
*`create_time` -
895
+
The creation time.
896
+
897
+
*`update_time` -
898
+
The last-modified time.
899
+
900
+
*`delete_time` -
901
+
The deletion time.
902
+
903
+
*`expire_time` -
904
+
For a deleted resource, the time after which it will be permamently deleted.
905
+
906
+
*`creator` -
907
+
Email address of the authenticated creator.
908
+
909
+
*`last_modifier` -
910
+
Email address of the last authenticated modifier.
911
+
894
912
*`observed_generation` -
895
913
The generation of this Service currently serving traffic. See comments in reconciling for additional information on reconciliation process in Cloud Run. Please note that unlike v1, this is an int64 value. As with most Google APIs, its JSON representation will be a string instead of an integer.
0 commit comments