@@ -70,20 +70,13 @@ public ObservabilityPipelineGoogleCloudStorageDestination() {}
7070
7171 @ JsonCreator
7272 public ObservabilityPipelineGoogleCloudStorageDestination (
73- @ JsonProperty (required = true , value = JSON_PROPERTY_ACL )
74- ObservabilityPipelineGoogleCloudStorageDestinationAcl acl ,
75- @ JsonProperty (required = true , value = JSON_PROPERTY_AUTH ) ObservabilityPipelineGcpAuth auth ,
7673 @ JsonProperty (required = true , value = JSON_PROPERTY_BUCKET ) String bucket ,
7774 @ JsonProperty (required = true , value = JSON_PROPERTY_ID ) String id ,
7875 @ JsonProperty (required = true , value = JSON_PROPERTY_INPUTS ) List <String > inputs ,
7976 @ JsonProperty (required = true , value = JSON_PROPERTY_STORAGE_CLASS )
8077 ObservabilityPipelineGoogleCloudStorageDestinationStorageClass storageClass ,
8178 @ JsonProperty (required = true , value = JSON_PROPERTY_TYPE )
8279 ObservabilityPipelineGoogleCloudStorageDestinationType type ) {
83- this .acl = acl ;
84- this .unparsed |= !acl .isValid ();
85- this .auth = auth ;
86- this .unparsed |= auth .unparsed ;
8780 this .bucket = bucket ;
8881 this .id = id ;
8982 this .inputs = inputs ;
@@ -105,8 +98,9 @@ public ObservabilityPipelineGoogleCloudStorageDestination acl(
10598 *
10699 * @return acl
107100 */
101+ @ jakarta .annotation .Nullable
108102 @ JsonProperty (JSON_PROPERTY_ACL )
109- @ JsonInclude (value = JsonInclude .Include .ALWAYS )
103+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
110104 public ObservabilityPipelineGoogleCloudStorageDestinationAcl getAcl () {
111105 return acl ;
112106 }
@@ -130,8 +124,9 @@ public ObservabilityPipelineGoogleCloudStorageDestination auth(
130124 *
131125 * @return auth
132126 */
127+ @ jakarta .annotation .Nullable
133128 @ JsonProperty (JSON_PROPERTY_AUTH )
134- @ JsonInclude (value = JsonInclude .Include .ALWAYS )
129+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
135130 public ObservabilityPipelineGcpAuth getAuth () {
136131 return auth ;
137132 }
0 commit comments