google-apis-dataproc_v1 0.25.0 → 0.28.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 447663f50afa0700111e4cd0af753c38ff0951407de6569e9232db45f0d2dad7
4
- data.tar.gz: fec7402dcdc23ca35552f62ef39714d29f213db2169cbc11f4fd8381f4154661
3
+ metadata.gz: 5c7e8469b0f2b23825ade2e148e6a8160804ffbe8ae9a5b06416640e4ad1f477
4
+ data.tar.gz: 3200537811ee763bb5e63d5ca1cd2b7cdea88ad4fd31f7f2fce4542104253ae9
5
5
  SHA512:
6
- metadata.gz: b4c71d6881d1ec30569f91725dc617e664af3be1bd8cc699227e953c2f43684e6d4864f5d4f4397b64e179d3eab2a8bf4b8e0080e6d6027ccda36c4423b2a4bd
7
- data.tar.gz: 2109312c7bb863a3a564ab3a542cd74a8cdc68e3aa7b37af71daadbb6600458ce9c9a7e23048273d29607cf9d4e0c2c6e1420a599e57777979d66ec7705c99ef
6
+ metadata.gz: 8a023abe7c2b78c787ccd167e796509a5a57f0e96652b017d530eb0234832cb188edb23a7c209fd723ceeefeb4b9571fffc7dce201133edd582bd72570374a83
7
+ data.tar.gz: 232bde112092e632e63d6a36644a41ea227e1e98ae2b1b5f4ba4070917b6fc8f880efc22393cfa2fd044d59bd06b0191260ee54b513501d89e8387bac7c4e984
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.28.0 (2022-06-17)
4
+
5
+ * Regenerated using generator version 0.6.0
6
+
7
+ ### v0.27.0 (2022-06-07)
8
+
9
+ * Regenerated from discovery document revision 20220526
10
+ * Regenerated using generator version 0.5.0
11
+
12
+ ### v0.26.0 (2022-05-25)
13
+
14
+ * Regenerated from discovery document revision 20220511
15
+
3
16
  ### v0.25.0 (2022-05-05)
4
17
 
5
18
  * Regenerated from discovery document revision 20220429
@@ -58,31 +58,6 @@ module Google
58
58
  end
59
59
  end
60
60
 
61
- # Configuration for using injectable credentials or service account
62
- class AuthenticationConfig
63
- include Google::Apis::Core::Hashable
64
-
65
- # Authentication type for session execution.
66
- # Corresponds to the JSON property `authenticationType`
67
- # @return [String]
68
- attr_accessor :authentication_type
69
-
70
- # Specific injectable credentials authentication parameters
71
- # Corresponds to the JSON property `injectableCredentialsConfig`
72
- # @return [Google::Apis::DataprocV1::InjectableCredentialsConfig]
73
- attr_accessor :injectable_credentials_config
74
-
75
- def initialize(**args)
76
- update!(**args)
77
- end
78
-
79
- # Update properties of this object
80
- def update!(**args)
81
- @authentication_type = args[:authentication_type] if args.key?(:authentication_type)
82
- @injectable_credentials_config = args[:injectable_credentials_config] if args.key?(:injectable_credentials_config)
83
- end
84
- end
85
-
86
61
  # Autoscaling Policy config associated with the cluster.
87
62
  class AutoscalingConfig
88
63
  include Google::Apis::Core::Hashable
@@ -569,8 +544,10 @@ module Google
569
544
  class Cluster
570
545
  include Google::Apis::Core::Hashable
571
546
 
572
- # Required. The cluster name. Cluster names within a project must be unique.
573
- # Names of deleted clusters can be reused.
547
+ # Required. The cluster name, which must be unique within a project. The name
548
+ # must start with a lowercase letter, and can contain up to 51 lowercase letters,
549
+ # numbers, and hyphens. It cannot end with a hyphen. The name of a deleted
550
+ # cluster can be reused.
574
551
  # Corresponds to the JSON property `clusterName`
575
552
  # @return [String]
576
553
  attr_accessor :cluster_name
@@ -1537,6 +1514,15 @@ module Google
1537
1514
  # @return [Array<Google::Apis::DataprocV1::GkeNodePoolAcceleratorConfig>]
1538
1515
  attr_accessor :accelerators
1539
1516
 
1517
+ # Optional. The Customer Managed Encryption Key (CMEK) (https://cloud.google.com/
1518
+ # compute/docs/disks/customer-managed-encryption) used to encrypt the boot disk
1519
+ # attached to each node in the node pool. Specify the key using the following
1520
+ # format: projects/KEY_PROJECT_ID /locations/LOCATION/keyRings/RING_NAME/
1521
+ # cryptoKeys/KEY_NAME.
1522
+ # Corresponds to the JSON property `bootDiskKmsKey`
1523
+ # @return [String]
1524
+ attr_accessor :boot_disk_kms_key
1525
+
1540
1526
  # Optional. The number of local SSD disks to attach to the node, which is
1541
1527
  # limited by the maximum number of disks allowable per zone (see Adding Local
1542
1528
  # SSDs (https://cloud.google.com/compute/docs/disks/local-ssd)).
@@ -1583,6 +1569,7 @@ module Google
1583
1569
  # Update properties of this object
1584
1570
  def update!(**args)
1585
1571
  @accelerators = args[:accelerators] if args.key?(:accelerators)
1572
+ @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
1586
1573
  @local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
1587
1574
  @machine_type = args[:machine_type] if args.key?(:machine_type)
1588
1575
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
@@ -1910,19 +1897,6 @@ module Google
1910
1897
  end
1911
1898
  end
1912
1899
 
1913
- # Specific injectable credentials authentication parameters
1914
- class InjectableCredentialsConfig
1915
- include Google::Apis::Core::Hashable
1916
-
1917
- def initialize(**args)
1918
- update!(**args)
1919
- end
1920
-
1921
- # Update properties of this object
1922
- def update!(**args)
1923
- end
1924
- end
1925
-
1926
1900
  # Configuration for the size bounds of an instance group, including its
1927
1901
  # proportional size to other groups.
1928
1902
  class InstanceGroupAutoscalingPolicyConfig
@@ -3085,6 +3059,41 @@ module Google
3085
3059
  end
3086
3060
  end
3087
3061
 
3062
+ # indicating a list of workers of same type
3063
+ class NodePool
3064
+ include Google::Apis::Core::Hashable
3065
+
3066
+ # Required. A unique id of the node pool. Primary and Secondary workers can be
3067
+ # specified using special reserved ids PRIMARY_WORKER_POOL and
3068
+ # SECONDARY_WORKER_POOL respectively. Aux node pools can be referenced using
3069
+ # corresponding pool id.
3070
+ # Corresponds to the JSON property `id`
3071
+ # @return [String]
3072
+ attr_accessor :id
3073
+
3074
+ # Name of instances to be repaired. These instances must belong to specified
3075
+ # node pool.
3076
+ # Corresponds to the JSON property `instanceNames`
3077
+ # @return [Array<String>]
3078
+ attr_accessor :instance_names
3079
+
3080
+ # Required. Repair action to take on specified resources of the node pool.
3081
+ # Corresponds to the JSON property `repairAction`
3082
+ # @return [String]
3083
+ attr_accessor :repair_action
3084
+
3085
+ def initialize(**args)
3086
+ update!(**args)
3087
+ end
3088
+
3089
+ # Update properties of this object
3090
+ def update!(**args)
3091
+ @id = args[:id] if args.key?(:id)
3092
+ @instance_names = args[:instance_names] if args.key?(:instance_names)
3093
+ @repair_action = args[:repair_action] if args.key?(:repair_action)
3094
+ end
3095
+ end
3096
+
3088
3097
  # This resource represents a long-running operation that is the result of a
3089
3098
  # network API call.
3090
3099
  class Operation
@@ -3703,6 +3712,13 @@ module Google
3703
3712
  # @return [String]
3704
3713
  attr_accessor :cluster_uuid
3705
3714
 
3715
+ # Optional. Node pools and corresponding repair action to be taken. All node
3716
+ # pools should be unique in this request. i.e. Multiple entries for the same
3717
+ # node pool id are not allowed.
3718
+ # Corresponds to the JSON property `nodePools`
3719
+ # @return [Array<Google::Apis::DataprocV1::NodePool>]
3720
+ attr_accessor :node_pools
3721
+
3706
3722
  # Optional. A unique ID used to identify the request. If the server receives two
3707
3723
  # RepairClusterRequests with the same ID, the second request is ignored, and the
3708
3724
  # first google.longrunning.Operation created and stored in the backend is
@@ -3721,6 +3737,7 @@ module Google
3721
3737
  # Update properties of this object
3722
3738
  def update!(**args)
3723
3739
  @cluster_uuid = args[:cluster_uuid] if args.key?(:cluster_uuid)
3740
+ @node_pools = args[:node_pools] if args.key?(:node_pools)
3724
3741
  @request_id = args[:request_id] if args.key?(:request_id)
3725
3742
  end
3726
3743
  end
@@ -3772,11 +3789,6 @@ module Google
3772
3789
  # @return [Hash<String,String>]
3773
3790
  attr_accessor :properties
3774
3791
 
3775
- # Configuration for using injectable credentials or service account
3776
- # Corresponds to the JSON property `sessionAuthenticationConfig`
3777
- # @return [Google::Apis::DataprocV1::AuthenticationConfig]
3778
- attr_accessor :session_authentication_config
3779
-
3780
3792
  # Optional. Version of the batch runtime.
3781
3793
  # Corresponds to the JSON property `version`
3782
3794
  # @return [String]
@@ -3790,7 +3802,6 @@ module Google
3790
3802
  def update!(**args)
3791
3803
  @container_image = args[:container_image] if args.key?(:container_image)
3792
3804
  @properties = args[:properties] if args.key?(:properties)
3793
- @session_authentication_config = args[:session_authentication_config] if args.key?(:session_authentication_config)
3794
3805
  @version = args[:version] if args.key?(:version)
3795
3806
  end
3796
3807
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataprocV1
18
18
  # Version of the google-apis-dataproc_v1 gem
19
- GEM_VERSION = "0.25.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.6.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220429"
25
+ REVISION = "20220526"
26
26
  end
27
27
  end
28
28
  end
@@ -28,12 +28,6 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
- class AuthenticationConfig
32
- class Representation < Google::Apis::Core::JsonRepresentation; end
33
-
34
- include Google::Apis::Core::JsonObjectSupport
35
- end
36
-
37
31
  class AutoscalingConfig
38
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
33
 
@@ -280,12 +274,6 @@ module Google
280
274
  include Google::Apis::Core::JsonObjectSupport
281
275
  end
282
276
 
283
- class InjectableCredentialsConfig
284
- class Representation < Google::Apis::Core::JsonRepresentation; end
285
-
286
- include Google::Apis::Core::JsonObjectSupport
287
- end
288
-
289
277
  class InstanceGroupAutoscalingPolicyConfig
290
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
279
 
@@ -454,6 +442,12 @@ module Google
454
442
  include Google::Apis::Core::JsonObjectSupport
455
443
  end
456
444
 
445
+ class NodePool
446
+ class Representation < Google::Apis::Core::JsonRepresentation; end
447
+
448
+ include Google::Apis::Core::JsonObjectSupport
449
+ end
450
+
457
451
  class Operation
458
452
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
453
 
@@ -726,15 +720,6 @@ module Google
726
720
  end
727
721
  end
728
722
 
729
- class AuthenticationConfig
730
- # @private
731
- class Representation < Google::Apis::Core::JsonRepresentation
732
- property :authentication_type, as: 'authenticationType'
733
- property :injectable_credentials_config, as: 'injectableCredentialsConfig', class: Google::Apis::DataprocV1::InjectableCredentialsConfig, decorator: Google::Apis::DataprocV1::InjectableCredentialsConfig::Representation
734
-
735
- end
736
- end
737
-
738
723
  class AutoscalingConfig
739
724
  # @private
740
725
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1111,6 +1096,7 @@ module Google
1111
1096
  class Representation < Google::Apis::Core::JsonRepresentation
1112
1097
  collection :accelerators, as: 'accelerators', class: Google::Apis::DataprocV1::GkeNodePoolAcceleratorConfig, decorator: Google::Apis::DataprocV1::GkeNodePoolAcceleratorConfig::Representation
1113
1098
 
1099
+ property :boot_disk_kms_key, as: 'bootDiskKmsKey'
1114
1100
  property :local_ssd_count, as: 'localSsdCount'
1115
1101
  property :machine_type, as: 'machineType'
1116
1102
  property :min_cpu_platform, as: 'minCpuPlatform'
@@ -1200,12 +1186,6 @@ module Google
1200
1186
  end
1201
1187
  end
1202
1188
 
1203
- class InjectableCredentialsConfig
1204
- # @private
1205
- class Representation < Google::Apis::Core::JsonRepresentation
1206
- end
1207
- end
1208
-
1209
1189
  class InstanceGroupAutoscalingPolicyConfig
1210
1190
  # @private
1211
1191
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1507,6 +1487,15 @@ module Google
1507
1487
  end
1508
1488
  end
1509
1489
 
1490
+ class NodePool
1491
+ # @private
1492
+ class Representation < Google::Apis::Core::JsonRepresentation
1493
+ property :id, as: 'id'
1494
+ collection :instance_names, as: 'instanceNames'
1495
+ property :repair_action, as: 'repairAction'
1496
+ end
1497
+ end
1498
+
1510
1499
  class Operation
1511
1500
  # @private
1512
1501
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1650,6 +1639,8 @@ module Google
1650
1639
  # @private
1651
1640
  class Representation < Google::Apis::Core::JsonRepresentation
1652
1641
  property :cluster_uuid, as: 'clusterUuid'
1642
+ collection :node_pools, as: 'nodePools', class: Google::Apis::DataprocV1::NodePool, decorator: Google::Apis::DataprocV1::NodePool::Representation
1643
+
1653
1644
  property :request_id, as: 'requestId'
1654
1645
  end
1655
1646
  end
@@ -1668,8 +1659,6 @@ module Google
1668
1659
  class Representation < Google::Apis::Core::JsonRepresentation
1669
1660
  property :container_image, as: 'containerImage'
1670
1661
  hash :properties, as: 'properties'
1671
- property :session_authentication_config, as: 'sessionAuthenticationConfig', class: Google::Apis::DataprocV1::AuthenticationConfig, decorator: Google::Apis::DataprocV1::AuthenticationConfig::Representation
1672
-
1673
1662
  property :version, as: 'version'
1674
1663
  end
1675
1664
  end
@@ -163,8 +163,9 @@ module Google
163
163
  # Gets the access control policy for a resource. Returns an empty policy if the
164
164
  # resource exists and does not have a policy set.
165
165
  # @param [String] resource
166
- # REQUIRED: The resource for which the policy is being requested. See the
167
- # operation documentation for the appropriate value for this field.
166
+ # REQUIRED: The resource for which the policy is being requested. See Resource
167
+ # names (https://cloud.google.com/apis/design/resource_names) for the
168
+ # appropriate value for this field.
168
169
  # @param [Google::Apis::DataprocV1::GetIamPolicyRequest] get_iam_policy_request_object
169
170
  # @param [String] fields
170
171
  # Selector specifying which fields to include in a partial response.
@@ -242,8 +243,9 @@ module Google
242
243
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
243
244
  # errors.
244
245
  # @param [String] resource
245
- # REQUIRED: The resource for which the policy is being specified. See the
246
- # operation documentation for the appropriate value for this field.
246
+ # REQUIRED: The resource for which the policy is being specified. See Resource
247
+ # names (https://cloud.google.com/apis/design/resource_names) for the
248
+ # appropriate value for this field.
247
249
  # @param [Google::Apis::DataprocV1::SetIamPolicyRequest] set_iam_policy_request_object
248
250
  # @param [String] fields
249
251
  # Selector specifying which fields to include in a partial response.
@@ -280,8 +282,9 @@ module Google
280
282
  # permission-aware UIs and command-line tools, not for authorization checking.
281
283
  # This operation may "fail open" without warning.
282
284
  # @param [String] resource
283
- # REQUIRED: The resource for which the policy detail is being requested. See the
284
- # operation documentation for the appropriate value for this field.
285
+ # REQUIRED: The resource for which the policy detail is being requested. See
286
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
287
+ # appropriate value for this field.
285
288
  # @param [Google::Apis::DataprocV1::TestIamPermissionsRequest] test_iam_permissions_request_object
286
289
  # @param [String] fields
287
290
  # Selector specifying which fields to include in a partial response.
@@ -624,8 +627,9 @@ module Google
624
627
  # Gets the access control policy for a resource. Returns an empty policy if the
625
628
  # resource exists and does not have a policy set.
626
629
  # @param [String] resource
627
- # REQUIRED: The resource for which the policy is being requested. See the
628
- # operation documentation for the appropriate value for this field.
630
+ # REQUIRED: The resource for which the policy is being requested. See Resource
631
+ # names (https://cloud.google.com/apis/design/resource_names) for the
632
+ # appropriate value for this field.
629
633
  # @param [Google::Apis::DataprocV1::GetIamPolicyRequest] get_iam_policy_request_object
630
634
  # @param [String] fields
631
635
  # Selector specifying which fields to include in a partial response.
@@ -806,8 +810,9 @@ module Google
806
810
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
807
811
  # errors.
808
812
  # @param [String] resource
809
- # REQUIRED: The resource for which the policy is being specified. See the
810
- # operation documentation for the appropriate value for this field.
813
+ # REQUIRED: The resource for which the policy is being specified. See Resource
814
+ # names (https://cloud.google.com/apis/design/resource_names) for the
815
+ # appropriate value for this field.
811
816
  # @param [Google::Apis::DataprocV1::SetIamPolicyRequest] set_iam_policy_request_object
812
817
  # @param [String] fields
813
818
  # Selector specifying which fields to include in a partial response.
@@ -844,8 +849,9 @@ module Google
844
849
  # permission-aware UIs and command-line tools, not for authorization checking.
845
850
  # This operation may "fail open" without warning.
846
851
  # @param [String] resource
847
- # REQUIRED: The resource for which the policy detail is being requested. See the
848
- # operation documentation for the appropriate value for this field.
852
+ # REQUIRED: The resource for which the policy detail is being requested. See
853
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
854
+ # appropriate value for this field.
849
855
  # @param [Google::Apis::DataprocV1::TestIamPermissionsRequest] test_iam_permissions_request_object
850
856
  # @param [String] fields
851
857
  # Selector specifying which fields to include in a partial response.
@@ -1030,8 +1036,9 @@ module Google
1030
1036
  # Gets the access control policy for a resource. Returns an empty policy if the
1031
1037
  # resource exists and does not have a policy set.
1032
1038
  # @param [String] resource
1033
- # REQUIRED: The resource for which the policy is being requested. See the
1034
- # operation documentation for the appropriate value for this field.
1039
+ # REQUIRED: The resource for which the policy is being requested. See Resource
1040
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1041
+ # appropriate value for this field.
1035
1042
  # @param [Google::Apis::DataprocV1::GetIamPolicyRequest] get_iam_policy_request_object
1036
1043
  # @param [String] fields
1037
1044
  # Selector specifying which fields to include in a partial response.
@@ -1109,8 +1116,9 @@ module Google
1109
1116
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
1110
1117
  # errors.
1111
1118
  # @param [String] resource
1112
- # REQUIRED: The resource for which the policy is being specified. See the
1113
- # operation documentation for the appropriate value for this field.
1119
+ # REQUIRED: The resource for which the policy is being specified. See Resource
1120
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1121
+ # appropriate value for this field.
1114
1122
  # @param [Google::Apis::DataprocV1::SetIamPolicyRequest] set_iam_policy_request_object
1115
1123
  # @param [String] fields
1116
1124
  # Selector specifying which fields to include in a partial response.
@@ -1147,8 +1155,9 @@ module Google
1147
1155
  # permission-aware UIs and command-line tools, not for authorization checking.
1148
1156
  # This operation may "fail open" without warning.
1149
1157
  # @param [String] resource
1150
- # REQUIRED: The resource for which the policy detail is being requested. See the
1151
- # operation documentation for the appropriate value for this field.
1158
+ # REQUIRED: The resource for which the policy detail is being requested. See
1159
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
1160
+ # appropriate value for this field.
1152
1161
  # @param [Google::Apis::DataprocV1::TestIamPermissionsRequest] test_iam_permissions_request_object
1153
1162
  # @param [String] fields
1154
1163
  # Selector specifying which fields to include in a partial response.
@@ -1411,8 +1420,9 @@ module Google
1411
1420
  # Gets the access control policy for a resource. Returns an empty policy if the
1412
1421
  # resource exists and does not have a policy set.
1413
1422
  # @param [String] resource
1414
- # REQUIRED: The resource for which the policy is being requested. See the
1415
- # operation documentation for the appropriate value for this field.
1423
+ # REQUIRED: The resource for which the policy is being requested. See Resource
1424
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1425
+ # appropriate value for this field.
1416
1426
  # @param [Google::Apis::DataprocV1::GetIamPolicyRequest] get_iam_policy_request_object
1417
1427
  # @param [String] fields
1418
1428
  # Selector specifying which fields to include in a partial response.
@@ -1659,8 +1669,9 @@ module Google
1659
1669
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
1660
1670
  # errors.
1661
1671
  # @param [String] resource
1662
- # REQUIRED: The resource for which the policy is being specified. See the
1663
- # operation documentation for the appropriate value for this field.
1672
+ # REQUIRED: The resource for which the policy is being specified. See Resource
1673
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1674
+ # appropriate value for this field.
1664
1675
  # @param [Google::Apis::DataprocV1::SetIamPolicyRequest] set_iam_policy_request_object
1665
1676
  # @param [String] fields
1666
1677
  # Selector specifying which fields to include in a partial response.
@@ -1775,8 +1786,9 @@ module Google
1775
1786
  # permission-aware UIs and command-line tools, not for authorization checking.
1776
1787
  # This operation may "fail open" without warning.
1777
1788
  # @param [String] resource
1778
- # REQUIRED: The resource for which the policy detail is being requested. See the
1779
- # operation documentation for the appropriate value for this field.
1789
+ # REQUIRED: The resource for which the policy detail is being requested. See
1790
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
1791
+ # appropriate value for this field.
1780
1792
  # @param [Google::Apis::DataprocV1::TestIamPermissionsRequest] test_iam_permissions_request_object
1781
1793
  # @param [String] fields
1782
1794
  # Selector specifying which fields to include in a partial response.
@@ -1926,8 +1938,9 @@ module Google
1926
1938
  # Gets the access control policy for a resource. Returns an empty policy if the
1927
1939
  # resource exists and does not have a policy set.
1928
1940
  # @param [String] resource
1929
- # REQUIRED: The resource for which the policy is being requested. See the
1930
- # operation documentation for the appropriate value for this field.
1941
+ # REQUIRED: The resource for which the policy is being requested. See Resource
1942
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1943
+ # appropriate value for this field.
1931
1944
  # @param [Google::Apis::DataprocV1::GetIamPolicyRequest] get_iam_policy_request_object
1932
1945
  # @param [String] fields
1933
1946
  # Selector specifying which fields to include in a partial response.
@@ -2064,8 +2077,9 @@ module Google
2064
2077
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
2065
2078
  # errors.
2066
2079
  # @param [String] resource
2067
- # REQUIRED: The resource for which the policy is being specified. See the
2068
- # operation documentation for the appropriate value for this field.
2080
+ # REQUIRED: The resource for which the policy is being specified. See Resource
2081
+ # names (https://cloud.google.com/apis/design/resource_names) for the
2082
+ # appropriate value for this field.
2069
2083
  # @param [Google::Apis::DataprocV1::SetIamPolicyRequest] set_iam_policy_request_object
2070
2084
  # @param [String] fields
2071
2085
  # Selector specifying which fields to include in a partial response.
@@ -2174,8 +2188,9 @@ module Google
2174
2188
  # permission-aware UIs and command-line tools, not for authorization checking.
2175
2189
  # This operation may "fail open" without warning.
2176
2190
  # @param [String] resource
2177
- # REQUIRED: The resource for which the policy detail is being requested. See the
2178
- # operation documentation for the appropriate value for this field.
2191
+ # REQUIRED: The resource for which the policy detail is being requested. See
2192
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
2193
+ # appropriate value for this field.
2179
2194
  # @param [Google::Apis::DataprocV1::TestIamPermissionsRequest] test_iam_permissions_request_object
2180
2195
  # @param [String] fields
2181
2196
  # Selector specifying which fields to include in a partial response.
@@ -2310,8 +2325,9 @@ module Google
2310
2325
  # Gets the access control policy for a resource. Returns an empty policy if the
2311
2326
  # resource exists and does not have a policy set.
2312
2327
  # @param [String] resource
2313
- # REQUIRED: The resource for which the policy is being requested. See the
2314
- # operation documentation for the appropriate value for this field.
2328
+ # REQUIRED: The resource for which the policy is being requested. See Resource
2329
+ # names (https://cloud.google.com/apis/design/resource_names) for the
2330
+ # appropriate value for this field.
2315
2331
  # @param [Google::Apis::DataprocV1::GetIamPolicyRequest] get_iam_policy_request_object
2316
2332
  # @param [String] fields
2317
2333
  # Selector specifying which fields to include in a partial response.
@@ -2392,8 +2408,9 @@ module Google
2392
2408
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
2393
2409
  # errors.
2394
2410
  # @param [String] resource
2395
- # REQUIRED: The resource for which the policy is being specified. See the
2396
- # operation documentation for the appropriate value for this field.
2411
+ # REQUIRED: The resource for which the policy is being specified. See Resource
2412
+ # names (https://cloud.google.com/apis/design/resource_names) for the
2413
+ # appropriate value for this field.
2397
2414
  # @param [Google::Apis::DataprocV1::SetIamPolicyRequest] set_iam_policy_request_object
2398
2415
  # @param [String] fields
2399
2416
  # Selector specifying which fields to include in a partial response.
@@ -2430,8 +2447,9 @@ module Google
2430
2447
  # permission-aware UIs and command-line tools, not for authorization checking.
2431
2448
  # This operation may "fail open" without warning.
2432
2449
  # @param [String] resource
2433
- # REQUIRED: The resource for which the policy detail is being requested. See the
2434
- # operation documentation for the appropriate value for this field.
2450
+ # REQUIRED: The resource for which the policy detail is being requested. See
2451
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
2452
+ # appropriate value for this field.
2435
2453
  # @param [Google::Apis::DataprocV1::TestIamPermissionsRequest] test_iam_permissions_request_object
2436
2454
  # @param [String] fields
2437
2455
  # Selector specifying which fields to include in a partial response.
@@ -2585,8 +2603,9 @@ module Google
2585
2603
  # Gets the access control policy for a resource. Returns an empty policy if the
2586
2604
  # resource exists and does not have a policy set.
2587
2605
  # @param [String] resource
2588
- # REQUIRED: The resource for which the policy is being requested. See the
2589
- # operation documentation for the appropriate value for this field.
2606
+ # REQUIRED: The resource for which the policy is being requested. See Resource
2607
+ # names (https://cloud.google.com/apis/design/resource_names) for the
2608
+ # appropriate value for this field.
2590
2609
  # @param [Google::Apis::DataprocV1::GetIamPolicyRequest] get_iam_policy_request_object
2591
2610
  # @param [String] fields
2592
2611
  # Selector specifying which fields to include in a partial response.
@@ -2767,8 +2786,9 @@ module Google
2767
2786
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
2768
2787
  # errors.
2769
2788
  # @param [String] resource
2770
- # REQUIRED: The resource for which the policy is being specified. See the
2771
- # operation documentation for the appropriate value for this field.
2789
+ # REQUIRED: The resource for which the policy is being specified. See Resource
2790
+ # names (https://cloud.google.com/apis/design/resource_names) for the
2791
+ # appropriate value for this field.
2772
2792
  # @param [Google::Apis::DataprocV1::SetIamPolicyRequest] set_iam_policy_request_object
2773
2793
  # @param [String] fields
2774
2794
  # Selector specifying which fields to include in a partial response.
@@ -2805,8 +2825,9 @@ module Google
2805
2825
  # permission-aware UIs and command-line tools, not for authorization checking.
2806
2826
  # This operation may "fail open" without warning.
2807
2827
  # @param [String] resource
2808
- # REQUIRED: The resource for which the policy detail is being requested. See the
2809
- # operation documentation for the appropriate value for this field.
2828
+ # REQUIRED: The resource for which the policy detail is being requested. See
2829
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
2830
+ # appropriate value for this field.
2810
2831
  # @param [Google::Apis::DataprocV1::TestIamPermissionsRequest] test_iam_permissions_request_object
2811
2832
  # @param [String] fields
2812
2833
  # Selector specifying which fields to include in a partial response.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataproc_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-09 00:00:00.000000000 Z
11
+ date: 2022-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.6'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.6'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.28.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Dataproc API V1