Skip to content

Commit 099522b

Browse files
gcf-owl-bot[bot]jskeet
authored andcommitted
feat: add read_mask to ListPipelineJobsRequest in aiplatform v1 pipeline_service
feat: add input_artifacts to PipelineJob.runtime_config in aiplatform v1 pipeline_job PiperOrigin-RevId: 469843667 Source-Link: googleapis/googleapis@eb382ed Source-Link: googleapis/googleapis-gen@7af72d7 Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuQUlQbGF0Zm9ybS5WMS8uT3dsQm90LnlhbWwiLCJoIjoiN2FmNzJkNzFmMTYwNjBmMjI5Yjc3YWU3ZWRjNzRkYTVjZmI4ZWU3OSJ9
1 parent 80d91f3 commit 099522b

File tree

5 files changed

+459
-129
lines changed

5 files changed

+459
-129
lines changed

apis/Google.Cloud.AIPlatform.V1/Google.Cloud.AIPlatform.V1.GeneratedSnippets/PipelineServiceClient.ListPipelineJobsRequestObjectAsyncSnippet.g.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ namespace Google.Cloud.AIPlatform.V1.Snippets
2020
using Google.Api.Gax;
2121
using Google.Api.Gax.ResourceNames;
2222
using Google.Cloud.AIPlatform.V1;
23+
using Google.Protobuf.WellKnownTypes;
2324
using System;
2425
using System.Linq;
2526
using System.Threading.Tasks;
@@ -41,6 +42,7 @@ public async Task ListPipelineJobsRequestObjectAsync()
4142
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
4243
Filter = "",
4344
OrderBy = "",
45+
ReadMask = new FieldMask(),
4446
};
4547
// Make the request
4648
PagedAsyncEnumerable<ListPipelineJobsResponse, PipelineJob> response = pipelineServiceClient.ListPipelineJobsAsync(request);

apis/Google.Cloud.AIPlatform.V1/Google.Cloud.AIPlatform.V1.GeneratedSnippets/PipelineServiceClient.ListPipelineJobsRequestObjectSnippet.g.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ namespace Google.Cloud.AIPlatform.V1.Snippets
2020
using Google.Api.Gax;
2121
using Google.Api.Gax.ResourceNames;
2222
using Google.Cloud.AIPlatform.V1;
23+
using Google.Protobuf.WellKnownTypes;
2324
using System;
2425

2526
public sealed partial class GeneratedPipelineServiceClientSnippets
@@ -39,6 +40,7 @@ public void ListPipelineJobsRequestObject()
3940
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
4041
Filter = "",
4142
OrderBy = "",
43+
ReadMask = new FieldMask(),
4244
};
4345
// Make the request
4446
PagedEnumerable<ListPipelineJobsResponse, PipelineJob> response = pipelineServiceClient.ListPipelineJobs(request);

apis/Google.Cloud.AIPlatform.V1/Google.Cloud.AIPlatform.V1.Snippets/PipelineServiceClientSnippets.g.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -955,6 +955,7 @@ public void ListPipelineJobsRequestObject()
955955
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
956956
Filter = "",
957957
OrderBy = "",
958+
ReadMask = new FieldMask(),
958959
};
959960
// Make the request
960961
PagedEnumerable<ListPipelineJobsResponse, PipelineJob> response = pipelineServiceClient.ListPipelineJobs(request);
@@ -1005,6 +1006,7 @@ public async Task ListPipelineJobsRequestObjectAsync()
10051006
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
10061007
Filter = "",
10071008
OrderBy = "",
1009+
ReadMask = new FieldMask(),
10081010
};
10091011
// Make the request
10101012
PagedAsyncEnumerable<ListPipelineJobsResponse, PipelineJob> response = pipelineServiceClient.ListPipelineJobsAsync(request);

0 commit comments

Comments
 (0)