google-apis-cloudresourcemanager_v3 0.25.0 → 0.28.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f79c7aca64e154de1b3304548e3a24f33d33cdcf2c18165026b40543e8d68e5
4
- data.tar.gz: 2a11f8843e622e2c914b0f432f48be3369da71100b71b6fde2ed9aa2fa2b4e2f
3
+ metadata.gz: a82089d26c55aa2c7e468f86c086bf6e098f783bb8baf5257461ceefc2cab5b4
4
+ data.tar.gz: 9342875f6307a8d1f9ebf95e14bc4292e1dc7cbf0bcd995bf603e68d03eaeda8
5
5
  SHA512:
6
- metadata.gz: bf778f1157a6eee87b8e82609a74d2fb30335da00012562745de3d3029188681c553c64642d7518d736c57571a2e938c61de204cfd58edb6207928cb05c2ff12
7
- data.tar.gz: 359bad5839e75f0f576d62c2d7ceae7b01082db94ced0686b75d95004a0fd7d94bb8128c515a9e913bef23b7fb4b5fee2fddbac1ad915b75dedf0c94bceb038a
6
+ metadata.gz: 3e4279ffdf41d20dce175ad134c60ddfa87cf3a9fdde17234bc02816365064f3d46d3e60e22ee029628409e3fa0a7eff76ccf928d0b0e1ff89ffd3f18c12acc8
7
+ data.tar.gz: daf0d0c272cfd6ec3c961f9cf7172c61f753ebf474a331a340a070aab7542e6c2a528722a3a86d64c48e9e366adf4e7db180be1c5d2d393c3cb9260160df768c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v3
2
2
 
3
+ ### v0.28.0 (2022-06-19)
4
+
5
+ * Regenerated using generator version 0.7.0
6
+
7
+ ### v0.27.0 (2022-06-06)
8
+
9
+ * Regenerated using generator version 0.5.0
10
+ * Regenerated from discovery document revision 20220523
11
+
12
+ ### v0.26.0 (2022-05-05)
13
+
14
+ * Regenerated from discovery document revision 20220501
15
+
3
16
  ### v0.25.0 (2022-04-28)
4
17
 
5
18
  * Regenerated from discovery document revision 20220424
@@ -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
 
@@ -1757,6 +1757,22 @@ module Google
1757
1757
  # @return [String]
1758
1758
  attr_accessor :parent
1759
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
+
1760
1776
  # Required. Immutable. The user friendly name for a TagKey. The short name
1761
1777
  # should be unique for TagKeys within the same tag namespace. The short name
1762
1778
  # must be 1-63 characters, beginning and ending with an alphanumeric character ([
@@ -1783,6 +1799,8 @@ module Google
1783
1799
  @name = args[:name] if args.key?(:name)
1784
1800
  @namespaced_name = args[:namespaced_name] if args.key?(:namespaced_name)
1785
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)
1786
1804
  @short_name = args[:short_name] if args.key?(:short_name)
1787
1805
  @update_time = args[:update_time] if args.key?(:update_time)
1788
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.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.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220424"
25
+ REVISION = "20220523"
26
26
  end
27
27
  end
28
28
  end
@@ -835,6 +835,8 @@ module Google
835
835
  property :name, as: 'name'
836
836
  property :namespaced_name, as: 'namespacedName'
837
837
  property :parent, as: 'parent'
838
+ property :purpose, as: 'purpose'
839
+ hash :purpose_data, as: 'purposeData'
838
840
  property :short_name, as: 'shortName'
839
841
  property :update_time, as: 'updateTime'
840
842
  end
@@ -213,8 +213,9 @@ module Google
213
213
  # folder's resource name, for example: "folders/1234". The caller must have `
214
214
  # resourcemanager.folders.getIamPolicy` permission on the identified folder.
215
215
  # @param [String] resource
216
- # REQUIRED: The resource for which the policy is being requested. See the
217
- # 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.
218
219
  # @param [Google::Apis::CloudresourcemanagerV3::GetIamPolicyRequest] get_iam_policy_request_object
219
220
  # @param [String] fields
220
221
  # Selector specifying which fields to include in a partial response.
@@ -450,8 +451,9 @@ module Google
450
451
  # 1234". The caller must have `resourcemanager.folders.setIamPolicy` permission
451
452
  # on the identified folder.
452
453
  # @param [String] resource
453
- # REQUIRED: The resource for which the policy is being specified. See the
454
- # 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.
455
457
  # @param [Google::Apis::CloudresourcemanagerV3::SetIamPolicyRequest] set_iam_policy_request_object
456
458
  # @param [String] fields
457
459
  # Selector specifying which fields to include in a partial response.
@@ -486,8 +488,9 @@ module Google
486
488
  # field should be the folder's resource name, for example: "folders/1234". There
487
489
  # are no permissions required for making this API call.
488
490
  # @param [String] resource
489
- # REQUIRED: The resource for which the policy detail is being requested. See the
490
- # 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.
491
494
  # @param [Google::Apis::CloudresourcemanagerV3::TestIamPermissionsRequest] test_iam_permissions_request_object
492
495
  # @param [String] fields
493
496
  # Selector specifying which fields to include in a partial response.
@@ -768,8 +771,9 @@ module Google
768
771
  # requires the IAM permission `resourcemanager.organizations.getIamPolicy` on
769
772
  # the specified organization.
770
773
  # @param [String] resource
771
- # REQUIRED: The resource for which the policy is being requested. See the
772
- # 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.
773
777
  # @param [Google::Apis::CloudresourcemanagerV3::GetIamPolicyRequest] get_iam_policy_request_object
774
778
  # @param [String] fields
775
779
  # Selector specifying which fields to include in a partial response.
@@ -858,8 +862,9 @@ module Google
858
862
  # permission `resourcemanager.organizations.setIamPolicy` on the specified
859
863
  # organization.
860
864
  # @param [String] resource
861
- # REQUIRED: The resource for which the policy is being specified. See the
862
- # 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.
863
868
  # @param [Google::Apis::CloudresourcemanagerV3::SetIamPolicyRequest] set_iam_policy_request_object
864
869
  # @param [String] fields
865
870
  # Selector specifying which fields to include in a partial response.
@@ -894,8 +899,9 @@ module Google
894
899
  # resource` field should be the organization's resource name, for example: "
895
900
  # organizations/123". There are no permissions required for making this API call.
896
901
  # @param [String] resource
897
- # REQUIRED: The resource for which the policy detail is being requested. See the
898
- # 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.
899
905
  # @param [Google::Apis::CloudresourcemanagerV3::TestIamPermissionsRequest] test_iam_permissions_request_object
900
906
  # @param [String] fields
901
907
  # Selector specifying which fields to include in a partial response.
@@ -1037,8 +1043,9 @@ module Google
1037
1043
  # `projects/`ProjectIdOrNumber`` e.g. projects/123. Permission is denied if the
1038
1044
  # policy or the resource do not exist.
1039
1045
  # @param [String] resource
1040
- # REQUIRED: The resource for which the policy is being requested. See the
1041
- # 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.
1042
1049
  # @param [Google::Apis::CloudresourcemanagerV3::GetIamPolicyRequest] get_iam_policy_request_object
1043
1050
  # @param [String] fields
1044
1051
  # Selector specifying which fields to include in a partial response.
@@ -1293,8 +1300,9 @@ module Google
1293
1300
  # organization inaccessible. + Calling this method requires enabling the App
1294
1301
  # Engine Admin API.
1295
1302
  # @param [String] resource
1296
- # REQUIRED: The resource for which the policy is being specified. See the
1297
- # 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.
1298
1306
  # @param [Google::Apis::CloudresourcemanagerV3::SetIamPolicyRequest] set_iam_policy_request_object
1299
1307
  # @param [String] fields
1300
1308
  # Selector specifying which fields to include in a partial response.
@@ -1328,8 +1336,9 @@ module Google
1328
1336
  # Returns permissions that a caller has on the specified project, in the format `
1329
1337
  # projects/`ProjectIdOrNumber`` e.g. projects/123..
1330
1338
  # @param [String] resource
1331
- # REQUIRED: The resource for which the policy detail is being requested. See the
1332
- # 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.
1333
1342
  # @param [Google::Apis::CloudresourcemanagerV3::TestIamPermissionsRequest] test_iam_permissions_request_object
1334
1343
  # @param [String] fields
1335
1344
  # Selector specifying which fields to include in a partial response.
@@ -1622,8 +1631,9 @@ module Google
1622
1631
  # cloudresourcemanager.googleapis.com/tagKeys.getIamPolicy` permission on the
1623
1632
  # specified TagKey.
1624
1633
  # @param [String] resource
1625
- # REQUIRED: The resource for which the policy is being requested. See the
1626
- # 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.
1627
1637
  # @param [Google::Apis::CloudresourcemanagerV3::GetIamPolicyRequest] get_iam_policy_request_object
1628
1638
  # @param [String] fields
1629
1639
  # Selector specifying which fields to include in a partial response.
@@ -1741,8 +1751,9 @@ module Google
1741
1751
  # 1234". The caller must have `resourcemanager.tagKeys.setIamPolicy` permission
1742
1752
  # on the identified tagValue.
1743
1753
  # @param [String] resource
1744
- # REQUIRED: The resource for which the policy is being specified. See the
1745
- # 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.
1746
1757
  # @param [Google::Apis::CloudresourcemanagerV3::SetIamPolicyRequest] set_iam_policy_request_object
1747
1758
  # @param [String] fields
1748
1759
  # Selector specifying which fields to include in a partial response.
@@ -1777,8 +1788,9 @@ module Google
1777
1788
  # field should be the TagKey's resource name. For example, "tagKeys/1234". There
1778
1789
  # are no permissions required for making this API call.
1779
1790
  # @param [String] resource
1780
- # REQUIRED: The resource for which the policy detail is being requested. See the
1781
- # 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.
1782
1794
  # @param [Google::Apis::CloudresourcemanagerV3::TestIamPermissionsRequest] test_iam_permissions_request_object
1783
1795
  # @param [String] fields
1784
1796
  # Selector specifying which fields to include in a partial response.
@@ -1923,8 +1935,9 @@ module Google
1923
1935
  # the `cloudresourcemanager.googleapis.com/tagValues.getIamPolicy` permission on
1924
1936
  # the identified TagValue to get the access control policy.
1925
1937
  # @param [String] resource
1926
- # REQUIRED: The resource for which the policy is being requested. See the
1927
- # 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.
1928
1941
  # @param [Google::Apis::CloudresourcemanagerV3::GetIamPolicyRequest] get_iam_policy_request_object
1929
1942
  # @param [String] fields
1930
1943
  # Selector specifying which fields to include in a partial response.
@@ -2040,8 +2053,9 @@ module Google
2040
2053
  # tagValues/1234`. The caller must have `resourcemanager.tagValues.setIamPolicy`
2041
2054
  # permission on the identified tagValue.
2042
2055
  # @param [String] resource
2043
- # REQUIRED: The resource for which the policy is being specified. See the
2044
- # 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.
2045
2059
  # @param [Google::Apis::CloudresourcemanagerV3::SetIamPolicyRequest] set_iam_policy_request_object
2046
2060
  # @param [String] fields
2047
2061
  # Selector specifying which fields to include in a partial response.
@@ -2076,8 +2090,9 @@ module Google
2076
2090
  # field should be the TagValue's resource name. For example: `tagValues/1234`.
2077
2091
  # There are no permissions required for making this API call.
2078
2092
  # @param [String] resource
2079
- # REQUIRED: The resource for which the policy detail is being requested. See the
2080
- # 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.
2081
2096
  # @param [Google::Apis::CloudresourcemanagerV3::TestIamPermissionsRequest] test_iam_permissions_request_object
2082
2097
  # @param [String] fields
2083
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.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-02 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-cloudresourcemanager_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v3/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v3/v0.28.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