google-cloud-dataproc-v1 0.23.1 → 0.24.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/dataproc/v1/autoscaling_policies_pb.rb +2 -2
  3. data/lib/google/cloud/dataproc/v1/batches_pb.rb +2 -2
  4. data/lib/google/cloud/dataproc/v1/clusters_pb.rb +2 -2
  5. data/lib/google/cloud/dataproc/v1/jobs_pb.rb +2 -2
  6. data/lib/google/cloud/dataproc/v1/node_groups_pb.rb +2 -2
  7. data/lib/google/cloud/dataproc/v1/operations_pb.rb +4 -2
  8. data/lib/google/cloud/dataproc/v1/rest.rb +2 -0
  9. data/lib/google/cloud/dataproc/v1/session_controller/client.rb +912 -0
  10. data/lib/google/cloud/dataproc/v1/session_controller/credentials.rb +51 -0
  11. data/lib/google/cloud/dataproc/v1/session_controller/operations.rb +801 -0
  12. data/lib/google/cloud/dataproc/v1/session_controller/paths.rb +107 -0
  13. data/lib/google/cloud/dataproc/v1/session_controller/rest/client.rb +859 -0
  14. data/lib/google/cloud/dataproc/v1/session_controller/rest/operations.rb +922 -0
  15. data/lib/google/cloud/dataproc/v1/session_controller/rest/service_stub.rb +366 -0
  16. data/lib/google/cloud/dataproc/v1/session_controller/rest.rb +54 -0
  17. data/lib/google/cloud/dataproc/v1/session_controller.rb +56 -0
  18. data/lib/google/cloud/dataproc/v1/session_template_controller/client.rb +822 -0
  19. data/lib/google/cloud/dataproc/v1/session_template_controller/credentials.rb +51 -0
  20. data/lib/google/cloud/dataproc/v1/session_template_controller/paths.rb +88 -0
  21. data/lib/google/cloud/dataproc/v1/session_template_controller/rest/client.rb +769 -0
  22. data/lib/google/cloud/dataproc/v1/session_template_controller/rest/service_stub.rb +366 -0
  23. data/lib/google/cloud/dataproc/v1/session_template_controller/rest.rb +53 -0
  24. data/lib/google/cloud/dataproc/v1/session_template_controller.rb +55 -0
  25. data/lib/google/cloud/dataproc/v1/session_templates_pb.rb +60 -0
  26. data/lib/google/cloud/dataproc/v1/session_templates_services_pb.rb +53 -0
  27. data/lib/google/cloud/dataproc/v1/sessions_pb.rb +62 -0
  28. data/lib/google/cloud/dataproc/v1/sessions_services_pb.rb +54 -0
  29. data/lib/google/cloud/dataproc/v1/shared_pb.rb +4 -2
  30. data/lib/google/cloud/dataproc/v1/version.rb +1 -1
  31. data/lib/google/cloud/dataproc/v1/workflow_templates_pb.rb +2 -2
  32. data/lib/google/cloud/dataproc/v1.rb +2 -0
  33. data/proto_docs/google/cloud/dataproc/v1/operations.rb +54 -0
  34. data/proto_docs/google/cloud/dataproc/v1/session_templates.rb +153 -0
  35. data/proto_docs/google/cloud/dataproc/v1/sessions.rb +295 -0
  36. data/proto_docs/google/cloud/dataproc/v1/shared.rb +86 -17
  37. data/proto_docs/google/protobuf/any.rb +2 -1
  38. metadata +24 -2
@@ -0,0 +1,107 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Cloud
22
+ module Dataproc
23
+ module V1
24
+ module SessionController
25
+ # Path helper methods for the SessionController API.
26
+ module Paths
27
+ ##
28
+ # Create a fully-qualified Location resource string.
29
+ #
30
+ # The resource will be in the following format:
31
+ #
32
+ # `projects/{project}/locations/{location}`
33
+ #
34
+ # @param project [String]
35
+ # @param location [String]
36
+ #
37
+ # @return [::String]
38
+ def location_path project:, location:
39
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
40
+
41
+ "projects/#{project}/locations/#{location}"
42
+ end
43
+
44
+ ##
45
+ # Create a fully-qualified Service resource string.
46
+ #
47
+ # The resource will be in the following format:
48
+ #
49
+ # `projects/{project}/locations/{location}/services/{service}`
50
+ #
51
+ # @param project [String]
52
+ # @param location [String]
53
+ # @param service [String]
54
+ #
55
+ # @return [::String]
56
+ def service_path project:, location:, service:
57
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
58
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
59
+
60
+ "projects/#{project}/locations/#{location}/services/#{service}"
61
+ end
62
+
63
+ ##
64
+ # Create a fully-qualified Session resource string.
65
+ #
66
+ # The resource will be in the following format:
67
+ #
68
+ # `projects/{project}/locations/{location}/sessions/{session}`
69
+ #
70
+ # @param project [String]
71
+ # @param location [String]
72
+ # @param session [String]
73
+ #
74
+ # @return [::String]
75
+ def session_path project:, location:, session:
76
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
77
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
78
+
79
+ "projects/#{project}/locations/#{location}/sessions/#{session}"
80
+ end
81
+
82
+ ##
83
+ # Create a fully-qualified SessionTemplate resource string.
84
+ #
85
+ # The resource will be in the following format:
86
+ #
87
+ # `projects/{project}/locations/{location}/sessionTemplates/{template}`
88
+ #
89
+ # @param project [String]
90
+ # @param location [String]
91
+ # @param template [String]
92
+ #
93
+ # @return [::String]
94
+ def session_template_path project:, location:, template:
95
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
96
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
97
+
98
+ "projects/#{project}/locations/#{location}/sessionTemplates/#{template}"
99
+ end
100
+
101
+ extend self
102
+ end
103
+ end
104
+ end
105
+ end
106
+ end
107
+ end