google-apis-cloudresourcemanager_v3 0.24.0 → 0.27.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: 10ca112d52fd9ada80459dc82a2d444bea7a47357facfcd4551ba98f903ce2ff
4
- data.tar.gz: 8d4a059dd13f5672e211028f03d23ebdfdd44b81621ccfc720da547a1cbedbc1
3
+ metadata.gz: db65a76840faf0775534981da8a879b8a2c4be95071c22e4e19703cb0fc97422
4
+ data.tar.gz: e4b7224195ef411de98dea8b4605c59599f32dc032725fada30e2d56dd050173
5
5
  SHA512:
6
- metadata.gz: 65042ea4a5ef5ad31a9bfc2621d0a386d984f6fe45d41196edb068d82d73f146b5abeb096b33ced412b73811cf63c474a27eee3bd4f7801c9dcc17058bda33a6
7
- data.tar.gz: 5a8a4cf2a04edfed17830e1f2bc1e9a7c8d796ce7b153a1c4a4a3355bb5fbd30eaae543a703027874c0fa681611650a61b357a9f7be8359e9d4bdc6b1865fb62
6
+ metadata.gz: aca8da0db22f81edf5b25b669cd4e1e2d66c1f2b32177dd46e6a8ee73dd27fe926fdeff915f7597a6108dee8275d07770b334781f5289f1c53a109ea8d5a0d1e
7
+ data.tar.gz: 1695d7dc620f04bab6daf63afa54b25432cd2332bcd0af5a8855f78ba06db3fdfb2b26ab976335ab02791fbc9a83ac7bc09a36269e718f11c61e38404db8efbf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v3
2
2
 
3
+ ### v0.27.0 (2022-06-06)
4
+
5
+ * Regenerated using generator version 0.5.0
6
+ * Regenerated from discovery document revision 20220523
7
+
8
+ ### v0.26.0 (2022-05-05)
9
+
10
+ * Regenerated from discovery document revision 20220501
11
+
12
+ ### v0.25.0 (2022-04-28)
13
+
14
+ * Regenerated from discovery document revision 20220424
15
+
3
16
  ### v0.24.0 (2022-04-07)
4
17
 
5
18
  * Regenerated from discovery document revision 20220403
@@ -35,8 +35,8 @@ module Google
35
35
  # "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
36
36
  # , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
37
37
  # this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
38
- # exempts jose@example.com from DATA_READ logging, and aliya@example.com from
39
- # DATA_WRITE logging.
38
+ # exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
39
+ # from DATA_WRITE logging.
40
40
  class AuditConfig
41
41
  include Google::Apis::Core::Hashable
42
42
 
@@ -424,6 +424,59 @@ module Google
424
424
  end
425
425
  end
426
426
 
427
+ # An EffectiveTag represents a tag that applies to a resource during policy
428
+ # evaluation. Tags can be either directly bound to a resource or inherited from
429
+ # its ancestor. EffectiveTag contains the name and namespaced_name of the tag
430
+ # value and tag key, with additional fields of `inherited` to indicate the
431
+ # inheritance status of the effective tag.
432
+ class EffectiveTag
433
+ include Google::Apis::Core::Hashable
434
+
435
+ # Indicates the inheritance status of a tag value attached to the given resource.
436
+ # If the tag value is inherited from one of the resource's ancestors, inherited
437
+ # will be true. If false, then the tag value is directly attached to the
438
+ # resource, inherited will be false.
439
+ # Corresponds to the JSON property `inherited`
440
+ # @return [Boolean]
441
+ attr_accessor :inherited
442
+ alias_method :inherited?, :inherited
443
+
444
+ # The namespaced_name of the TagKey, in the format of ``organization_id`/`
445
+ # tag_key_short_name``
446
+ # Corresponds to the JSON property `namespacedTagKey`
447
+ # @return [String]
448
+ attr_accessor :namespaced_tag_key
449
+
450
+ # Namespaced name of the TagValue. Must be in the format ``organization_id`/`
451
+ # tag_key_short_name`/`tag_value_short_name``.
452
+ # Corresponds to the JSON property `namespacedTagValue`
453
+ # @return [String]
454
+ attr_accessor :namespaced_tag_value
455
+
456
+ # The name of the TagKey, in the format `tagKeys/`id``, such as `tagKeys/123`.
457
+ # Corresponds to the JSON property `tagKey`
458
+ # @return [String]
459
+ attr_accessor :tag_key
460
+
461
+ # Resource name for TagValue in the format `tagValues/456`.
462
+ # Corresponds to the JSON property `tagValue`
463
+ # @return [String]
464
+ attr_accessor :tag_value
465
+
466
+ def initialize(**args)
467
+ update!(**args)
468
+ end
469
+
470
+ # Update properties of this object
471
+ def update!(**args)
472
+ @inherited = args[:inherited] if args.key?(:inherited)
473
+ @namespaced_tag_key = args[:namespaced_tag_key] if args.key?(:namespaced_tag_key)
474
+ @namespaced_tag_value = args[:namespaced_tag_value] if args.key?(:namespaced_tag_value)
475
+ @tag_key = args[:tag_key] if args.key?(:tag_key)
476
+ @tag_value = args[:tag_value] if args.key?(:tag_value)
477
+ end
478
+ end
479
+
427
480
  # A generic empty message that you can re-use to avoid defining duplicated empty
428
481
  # messages in your APIs. A typical example is to use it as the request or the
429
482
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -729,6 +782,36 @@ module Google
729
782
  end
730
783
  end
731
784
 
785
+ # The response of ListEffectiveTags.
786
+ class ListEffectiveTagsResponse
787
+ include Google::Apis::Core::Hashable
788
+
789
+ # A possibly paginated list of effective tags for the specified resource.
790
+ # Corresponds to the JSON property `effectiveTags`
791
+ # @return [Array<Google::Apis::CloudresourcemanagerV3::EffectiveTag>]
792
+ attr_accessor :effective_tags
793
+
794
+ # Pagination token. If the result set is too large to fit in a single response,
795
+ # this token is returned. It encodes the position of the current result cursor.
796
+ # Feeding this value into a new list request with the `page_token` parameter
797
+ # gives the next page of the results. When `next_page_token` is not filled in,
798
+ # there is no next page and the list returned is the last page in the result set.
799
+ # Pagination tokens have a limited lifetime.
800
+ # Corresponds to the JSON property `nextPageToken`
801
+ # @return [String]
802
+ attr_accessor :next_page_token
803
+
804
+ def initialize(**args)
805
+ update!(**args)
806
+ end
807
+
808
+ # Update properties of this object
809
+ def update!(**args)
810
+ @effective_tags = args[:effective_tags] if args.key?(:effective_tags)
811
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
812
+ end
813
+ end
814
+
732
815
  # The ListFolders response message.
733
816
  class ListFoldersResponse
734
817
  include Google::Apis::Core::Hashable
@@ -1674,6 +1757,22 @@ module Google
1674
1757
  # @return [String]
1675
1758
  attr_accessor :parent
1676
1759
 
1760
+ # Optional. A purpose denotes that this Tag is intended for use in policies of a
1761
+ # specific policy engine, and will involve that policy engine in management
1762
+ # operations involving this Tag. A purpose does not grant a policy engine
1763
+ # exclusive rights to the Tag, and it may be referenced by other policy engines.
1764
+ # A purpose cannot be changed once set.
1765
+ # Corresponds to the JSON property `purpose`
1766
+ # @return [String]
1767
+ attr_accessor :purpose
1768
+
1769
+ # Optional. Purpose data corresponds to the policy system that the tag is
1770
+ # intended for. See documentation for `Purpose` for formatting of this field.
1771
+ # Purpose data cannot be changed once set.
1772
+ # Corresponds to the JSON property `purposeData`
1773
+ # @return [Hash<String,String>]
1774
+ attr_accessor :purpose_data
1775
+
1677
1776
  # Required. Immutable. The user friendly name for a TagKey. The short name
1678
1777
  # should be unique for TagKeys within the same tag namespace. The short name
1679
1778
  # must be 1-63 characters, beginning and ending with an alphanumeric character ([
@@ -1700,6 +1799,8 @@ module Google
1700
1799
  @name = args[:name] if args.key?(:name)
1701
1800
  @namespaced_name = args[:namespaced_name] if args.key?(:namespaced_name)
1702
1801
  @parent = args[:parent] if args.key?(:parent)
1802
+ @purpose = args[:purpose] if args.key?(:purpose)
1803
+ @purpose_data = args[:purpose_data] if args.key?(:purpose_data)
1703
1804
  @short_name = args[:short_name] if args.key?(:short_name)
1704
1805
  @update_time = args[:update_time] if args.key?(:update_time)
1705
1806
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudresourcemanagerV3
18
18
  # Version of the google-apis-cloudresourcemanager_v3 gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.27.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.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220403"
25
+ REVISION = "20220523"
26
26
  end
27
27
  end
28
28
  end
@@ -118,6 +118,12 @@ module Google
118
118
  include Google::Apis::Core::JsonObjectSupport
119
119
  end
120
120
 
121
+ class EffectiveTag
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
121
127
  class Empty
122
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
129
 
@@ -166,6 +172,12 @@ module Google
166
172
  include Google::Apis::Core::JsonObjectSupport
167
173
  end
168
174
 
175
+ class ListEffectiveTagsResponse
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
169
181
  class ListFoldersResponse
170
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
183
 
@@ -500,6 +512,17 @@ module Google
500
512
  end
501
513
  end
502
514
 
515
+ class EffectiveTag
516
+ # @private
517
+ class Representation < Google::Apis::Core::JsonRepresentation
518
+ property :inherited, as: 'inherited'
519
+ property :namespaced_tag_key, as: 'namespacedTagKey'
520
+ property :namespaced_tag_value, as: 'namespacedTagValue'
521
+ property :tag_key, as: 'tagKey'
522
+ property :tag_value, as: 'tagValue'
523
+ end
524
+ end
525
+
503
526
  class Empty
504
527
  # @private
505
528
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -574,6 +597,15 @@ module Google
574
597
  end
575
598
  end
576
599
 
600
+ class ListEffectiveTagsResponse
601
+ # @private
602
+ class Representation < Google::Apis::Core::JsonRepresentation
603
+ collection :effective_tags, as: 'effectiveTags', class: Google::Apis::CloudresourcemanagerV3::EffectiveTag, decorator: Google::Apis::CloudresourcemanagerV3::EffectiveTag::Representation
604
+
605
+ property :next_page_token, as: 'nextPageToken'
606
+ end
607
+ end
608
+
577
609
  class ListFoldersResponse
578
610
  # @private
579
611
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -803,6 +835,8 @@ module Google
803
835
  property :name, as: 'name'
804
836
  property :namespaced_name, as: 'namespacedName'
805
837
  property :parent, as: 'parent'
838
+ property :purpose, as: 'purpose'
839
+ hash :purpose_data, as: 'purposeData'
806
840
  property :short_name, as: 'shortName'
807
841
  property :update_time, as: 'updateTime'
808
842
  end
@@ -50,6 +50,47 @@ module Google
50
50
  @batch_path = 'batch'
51
51
  end
52
52
 
53
+ # Return a list of effective tags for the given cloud resource, as specified in `
54
+ # parent`.
55
+ # @param [Fixnum] page_size
56
+ # Optional. The maximum number of effective tags to return in the response. The
57
+ # server allows a maximum of 300 effective tags to return in a single page. If
58
+ # unspecified, the server will use 100 as the default.
59
+ # @param [String] page_token
60
+ # Optional. A pagination token returned from a previous call to `
61
+ # ListEffectiveTags` that indicates from where this listing should continue.
62
+ # @param [String] parent
63
+ # Required. The full resource name of a resource for which you want to list the
64
+ # effective tags. E.g. "//cloudresourcemanager.googleapis.com/projects/123"
65
+ # @param [String] fields
66
+ # Selector specifying which fields to include in a partial response.
67
+ # @param [String] quota_user
68
+ # Available to use for quota purposes for server-side applications. Can be any
69
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
70
+ # @param [Google::Apis::RequestOptions] options
71
+ # Request-specific options
72
+ #
73
+ # @yield [result, err] Result & error if block supplied
74
+ # @yieldparam result [Google::Apis::CloudresourcemanagerV3::ListEffectiveTagsResponse] parsed result object
75
+ # @yieldparam err [StandardError] error object if request failed
76
+ #
77
+ # @return [Google::Apis::CloudresourcemanagerV3::ListEffectiveTagsResponse]
78
+ #
79
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
80
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
81
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
82
+ def list_effective_tags(page_size: nil, page_token: nil, parent: nil, fields: nil, quota_user: nil, options: nil, &block)
83
+ command = make_simple_command(:get, 'v3/effectiveTags', options)
84
+ command.response_representation = Google::Apis::CloudresourcemanagerV3::ListEffectiveTagsResponse::Representation
85
+ command.response_class = Google::Apis::CloudresourcemanagerV3::ListEffectiveTagsResponse
86
+ command.query['pageSize'] = page_size unless page_size.nil?
87
+ command.query['pageToken'] = page_token unless page_token.nil?
88
+ command.query['parent'] = parent unless parent.nil?
89
+ command.query['fields'] = fields unless fields.nil?
90
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
91
+ execute_or_queue_command(command, &block)
92
+ end
93
+
53
94
  # Creates a folder in the resource hierarchy. Returns an `Operation` which can
54
95
  # be used to track the progress of the folder creation workflow. Upon success,
55
96
  # the `Operation.response` field will be populated with the created Folder. In
@@ -172,8 +213,9 @@ module Google
172
213
  # folder's resource name, for example: "folders/1234". The caller must have `
173
214
  # resourcemanager.folders.getIamPolicy` permission on the identified folder.
174
215
  # @param [String] resource
175
- # REQUIRED: The resource for which the policy is being requested. See the
176
- # operation documentation for the appropriate value for this field.
216
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
217
+ # names](https://cloud.google.com/apis/design/resource_names) for the
218
+ # appropriate value for this field.
177
219
  # @param [Google::Apis::CloudresourcemanagerV3::GetIamPolicyRequest] get_iam_policy_request_object
178
220
  # @param [String] fields
179
221
  # Selector specifying which fields to include in a partial response.
@@ -409,8 +451,9 @@ module Google
409
451
  # 1234". The caller must have `resourcemanager.folders.setIamPolicy` permission
410
452
  # on the identified folder.
411
453
  # @param [String] resource
412
- # REQUIRED: The resource for which the policy is being specified. See the
413
- # operation documentation for the appropriate value for this field.
454
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
455
+ # names](https://cloud.google.com/apis/design/resource_names) for the
456
+ # appropriate value for this field.
414
457
  # @param [Google::Apis::CloudresourcemanagerV3::SetIamPolicyRequest] set_iam_policy_request_object
415
458
  # @param [String] fields
416
459
  # Selector specifying which fields to include in a partial response.
@@ -445,8 +488,9 @@ module Google
445
488
  # field should be the folder's resource name, for example: "folders/1234". There
446
489
  # are no permissions required for making this API call.
447
490
  # @param [String] resource
448
- # REQUIRED: The resource for which the policy detail is being requested. See the
449
- # operation documentation for the appropriate value for this field.
491
+ # REQUIRED: The resource for which the policy detail is being requested. See [
492
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
493
+ # appropriate value for this field.
450
494
  # @param [Google::Apis::CloudresourcemanagerV3::TestIamPermissionsRequest] test_iam_permissions_request_object
451
495
  # @param [String] fields
452
496
  # Selector specifying which fields to include in a partial response.
@@ -727,8 +771,9 @@ module Google
727
771
  # requires the IAM permission `resourcemanager.organizations.getIamPolicy` on
728
772
  # the specified organization.
729
773
  # @param [String] resource
730
- # REQUIRED: The resource for which the policy is being requested. See the
731
- # operation documentation for the appropriate value for this field.
774
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
775
+ # names](https://cloud.google.com/apis/design/resource_names) for the
776
+ # appropriate value for this field.
732
777
  # @param [Google::Apis::CloudresourcemanagerV3::GetIamPolicyRequest] get_iam_policy_request_object
733
778
  # @param [String] fields
734
779
  # Selector specifying which fields to include in a partial response.
@@ -817,8 +862,9 @@ module Google
817
862
  # permission `resourcemanager.organizations.setIamPolicy` on the specified
818
863
  # organization.
819
864
  # @param [String] resource
820
- # REQUIRED: The resource for which the policy is being specified. See the
821
- # operation documentation for the appropriate value for this field.
865
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
866
+ # names](https://cloud.google.com/apis/design/resource_names) for the
867
+ # appropriate value for this field.
822
868
  # @param [Google::Apis::CloudresourcemanagerV3::SetIamPolicyRequest] set_iam_policy_request_object
823
869
  # @param [String] fields
824
870
  # Selector specifying which fields to include in a partial response.
@@ -853,8 +899,9 @@ module Google
853
899
  # resource` field should be the organization's resource name, for example: "
854
900
  # organizations/123". There are no permissions required for making this API call.
855
901
  # @param [String] resource
856
- # REQUIRED: The resource for which the policy detail is being requested. See the
857
- # operation documentation for the appropriate value for this field.
902
+ # REQUIRED: The resource for which the policy detail is being requested. See [
903
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
904
+ # appropriate value for this field.
858
905
  # @param [Google::Apis::CloudresourcemanagerV3::TestIamPermissionsRequest] test_iam_permissions_request_object
859
906
  # @param [String] fields
860
907
  # Selector specifying which fields to include in a partial response.
@@ -996,8 +1043,9 @@ module Google
996
1043
  # `projects/`ProjectIdOrNumber`` e.g. projects/123. Permission is denied if the
997
1044
  # policy or the resource do not exist.
998
1045
  # @param [String] resource
999
- # REQUIRED: The resource for which the policy is being requested. See the
1000
- # operation documentation for the appropriate value for this field.
1046
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
1047
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1048
+ # appropriate value for this field.
1001
1049
  # @param [Google::Apis::CloudresourcemanagerV3::GetIamPolicyRequest] get_iam_policy_request_object
1002
1050
  # @param [String] fields
1003
1051
  # Selector specifying which fields to include in a partial response.
@@ -1252,8 +1300,9 @@ module Google
1252
1300
  # organization inaccessible. + Calling this method requires enabling the App
1253
1301
  # Engine Admin API.
1254
1302
  # @param [String] resource
1255
- # REQUIRED: The resource for which the policy is being specified. See the
1256
- # operation documentation for the appropriate value for this field.
1303
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
1304
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1305
+ # appropriate value for this field.
1257
1306
  # @param [Google::Apis::CloudresourcemanagerV3::SetIamPolicyRequest] set_iam_policy_request_object
1258
1307
  # @param [String] fields
1259
1308
  # Selector specifying which fields to include in a partial response.
@@ -1287,8 +1336,9 @@ module Google
1287
1336
  # Returns permissions that a caller has on the specified project, in the format `
1288
1337
  # projects/`ProjectIdOrNumber`` e.g. projects/123..
1289
1338
  # @param [String] resource
1290
- # REQUIRED: The resource for which the policy detail is being requested. See the
1291
- # operation documentation for the appropriate value for this field.
1339
+ # REQUIRED: The resource for which the policy detail is being requested. See [
1340
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
1341
+ # appropriate value for this field.
1292
1342
  # @param [Google::Apis::CloudresourcemanagerV3::TestIamPermissionsRequest] test_iam_permissions_request_object
1293
1343
  # @param [String] fields
1294
1344
  # Selector specifying which fields to include in a partial response.
@@ -1581,8 +1631,9 @@ module Google
1581
1631
  # cloudresourcemanager.googleapis.com/tagKeys.getIamPolicy` permission on the
1582
1632
  # specified TagKey.
1583
1633
  # @param [String] resource
1584
- # REQUIRED: The resource for which the policy is being requested. See the
1585
- # operation documentation for the appropriate value for this field.
1634
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
1635
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1636
+ # appropriate value for this field.
1586
1637
  # @param [Google::Apis::CloudresourcemanagerV3::GetIamPolicyRequest] get_iam_policy_request_object
1587
1638
  # @param [String] fields
1588
1639
  # Selector specifying which fields to include in a partial response.
@@ -1700,8 +1751,9 @@ module Google
1700
1751
  # 1234". The caller must have `resourcemanager.tagKeys.setIamPolicy` permission
1701
1752
  # on the identified tagValue.
1702
1753
  # @param [String] resource
1703
- # REQUIRED: The resource for which the policy is being specified. See the
1704
- # operation documentation for the appropriate value for this field.
1754
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
1755
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1756
+ # appropriate value for this field.
1705
1757
  # @param [Google::Apis::CloudresourcemanagerV3::SetIamPolicyRequest] set_iam_policy_request_object
1706
1758
  # @param [String] fields
1707
1759
  # Selector specifying which fields to include in a partial response.
@@ -1736,8 +1788,9 @@ module Google
1736
1788
  # field should be the TagKey's resource name. For example, "tagKeys/1234". There
1737
1789
  # are no permissions required for making this API call.
1738
1790
  # @param [String] resource
1739
- # REQUIRED: The resource for which the policy detail is being requested. See the
1740
- # operation documentation for the appropriate value for this field.
1791
+ # REQUIRED: The resource for which the policy detail is being requested. See [
1792
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
1793
+ # appropriate value for this field.
1741
1794
  # @param [Google::Apis::CloudresourcemanagerV3::TestIamPermissionsRequest] test_iam_permissions_request_object
1742
1795
  # @param [String] fields
1743
1796
  # Selector specifying which fields to include in a partial response.
@@ -1882,8 +1935,9 @@ module Google
1882
1935
  # the `cloudresourcemanager.googleapis.com/tagValues.getIamPolicy` permission on
1883
1936
  # the identified TagValue to get the access control policy.
1884
1937
  # @param [String] resource
1885
- # REQUIRED: The resource for which the policy is being requested. See the
1886
- # operation documentation for the appropriate value for this field.
1938
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
1939
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1940
+ # appropriate value for this field.
1887
1941
  # @param [Google::Apis::CloudresourcemanagerV3::GetIamPolicyRequest] get_iam_policy_request_object
1888
1942
  # @param [String] fields
1889
1943
  # Selector specifying which fields to include in a partial response.
@@ -1999,8 +2053,9 @@ module Google
1999
2053
  # tagValues/1234`. The caller must have `resourcemanager.tagValues.setIamPolicy`
2000
2054
  # permission on the identified tagValue.
2001
2055
  # @param [String] resource
2002
- # REQUIRED: The resource for which the policy is being specified. See the
2003
- # operation documentation for the appropriate value for this field.
2056
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
2057
+ # names](https://cloud.google.com/apis/design/resource_names) for the
2058
+ # appropriate value for this field.
2004
2059
  # @param [Google::Apis::CloudresourcemanagerV3::SetIamPolicyRequest] set_iam_policy_request_object
2005
2060
  # @param [String] fields
2006
2061
  # Selector specifying which fields to include in a partial response.
@@ -2035,8 +2090,9 @@ module Google
2035
2090
  # field should be the TagValue's resource name. For example: `tagValues/1234`.
2036
2091
  # There are no permissions required for making this API call.
2037
2092
  # @param [String] resource
2038
- # REQUIRED: The resource for which the policy detail is being requested. See the
2039
- # operation documentation for the appropriate value for this field.
2093
+ # REQUIRED: The resource for which the policy detail is being requested. See [
2094
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
2095
+ # appropriate value for this field.
2040
2096
  # @param [Google::Apis::CloudresourcemanagerV3::TestIamPermissionsRequest] test_iam_permissions_request_object
2041
2097
  # @param [String] fields
2042
2098
  # 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-cloudresourcemanager_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.27.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-04-11 00:00:00.000000000 Z
11
+ date: 2022-06-13 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.5'
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.5'
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-cloudresourcemanager_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v3/v0.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v3/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudresourcemanager_v3
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 Resource Manager API V3