google-apis-cloudidentity_v1beta1 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: 12d0badbdefbbbca744b38b5027e36e62e33fd1b5927aae86743b6faf49b6d86
4
- data.tar.gz: cc48f7f72ec8b314c8884e30748fcf42540927e28fff3fb268ceed58a8dcbc3c
3
+ metadata.gz: 527c4dcf9c50bc9c617928a03b6c27a9195daf0ceef4eb043fb2d191b389890f
4
+ data.tar.gz: e25a81d1a2effbf478a405e37a8b194bae64f58de5c8b6838b3015bbbafae842
5
5
  SHA512:
6
- metadata.gz: 5d570ba72670bc9915465d3c7d2d85a36d3f02ff9f865059f0ad1fda9a524011c4ef744e5eb6edec41e9161ad88829f442b63dfc5e53a02aa10fcb97ec9dd9fb
7
- data.tar.gz: 935e1a7f1ab1b4dd29b4cd3df0fef754bf564cce2e4b26178fd1c8c9c33dfb66ed092688905246e0228934a8f0cd64dc943f3cdf3fe6d72d2105756f042bd73e
6
+ metadata.gz: b8af4687fbaab19a786a915205b03ca70f331169a264a6d740a321dad96563faca479de382eaf0d9e23bb57bee10a648e82183177f3f1d0efeb0e1b4238ef6fe
7
+ data.tar.gz: 218abe586b1b3d60b10bac73030bf01784dd10b61f74b81bc5fbc7fc6e019d455d470c4ed160e8e833445f7d514f220f17a10c048c4f08e413c0ca151e8c3acd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.28.0 (2022-06-24)
4
+
5
+ * Regenerated from discovery document revision 20220620
6
+ * Regenerated using generator version 0.7.0
7
+
8
+ ### v0.27.0 (2022-06-02)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.26.0 (2022-05-25)
13
+
14
+ * Regenerated from discovery document revision 20220518
15
+
3
16
  ### v0.25.0 (2022-05-18)
4
17
 
5
18
  * Regenerated from discovery document revision 20220513
@@ -922,32 +922,6 @@ module Google
922
922
  end
923
923
  end
924
924
 
925
- # Message containing first admin invitation info for customers
926
- class FirstAdminInvitationInfo
927
- include Google::Apis::Core::Hashable
928
-
929
- # Optional. To enable First Admin Invitation for Domained Customer
930
- # Corresponds to the JSON property `isFirstAdmin`
931
- # @return [Boolean]
932
- attr_accessor :is_first_admin
933
- alias_method :is_first_admin?, :is_first_admin
934
-
935
- # Optional. Domain information of first admin invited
936
- # Corresponds to the JSON property `primaryDomain`
937
- # @return [String]
938
- attr_accessor :primary_domain
939
-
940
- def initialize(**args)
941
- update!(**args)
942
- end
943
-
944
- # Update properties of this object
945
- def update!(**args)
946
- @is_first_admin = args[:is_first_admin] if args.key?(:is_first_admin)
947
- @primary_domain = args[:primary_domain] if args.key?(:primary_domain)
948
- end
949
- end
950
-
951
925
  # The response message for MembershipsService.GetMembershipGraph.
952
926
  class GetMembershipGraphResponse
953
927
  include Google::Apis::Core::Hashable
@@ -2756,18 +2730,12 @@ module Google
2756
2730
  class SendUserInvitationRequest
2757
2731
  include Google::Apis::Core::Hashable
2758
2732
 
2759
- # Message containing first admin invitation info for customers
2760
- # Corresponds to the JSON property `firstAdminInvitationInfo`
2761
- # @return [Google::Apis::CloudidentityV1beta1::FirstAdminInvitationInfo]
2762
- attr_accessor :first_admin_invitation_info
2763
-
2764
2733
  def initialize(**args)
2765
2734
  update!(**args)
2766
2735
  end
2767
2736
 
2768
2737
  # Update properties of this object
2769
2738
  def update!(**args)
2770
- @first_admin_invitation_info = args[:first_admin_invitation_info] if args.key?(:first_admin_invitation_info)
2771
2739
  end
2772
2740
  end
2773
2741
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudidentityV1beta1
18
18
  # Version of the google-apis-cloudidentity_v1beta1 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 = "20220513"
25
+ REVISION = "20220620"
26
26
  end
27
27
  end
28
28
  end
@@ -166,12 +166,6 @@ module Google
166
166
  include Google::Apis::Core::JsonObjectSupport
167
167
  end
168
168
 
169
- class FirstAdminInvitationInfo
170
- class Representation < Google::Apis::Core::JsonRepresentation; end
171
-
172
- include Google::Apis::Core::JsonObjectSupport
173
- end
174
-
175
169
  class GetMembershipGraphResponse
176
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
171
 
@@ -805,14 +799,6 @@ module Google
805
799
  end
806
800
  end
807
801
 
808
- class FirstAdminInvitationInfo
809
- # @private
810
- class Representation < Google::Apis::Core::JsonRepresentation
811
- property :is_first_admin, as: 'isFirstAdmin'
812
- property :primary_domain, as: 'primaryDomain'
813
- end
814
- end
815
-
816
802
  class GetMembershipGraphResponse
817
803
  # @private
818
804
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1343,8 +1329,6 @@ module Google
1343
1329
  class SendUserInvitationRequest
1344
1330
  # @private
1345
1331
  class Representation < Google::Apis::Core::JsonRepresentation
1346
- property :first_admin_invitation_info, as: 'firstAdminInvitationInfo', class: Google::Apis::CloudidentityV1beta1::FirstAdminInvitationInfo, decorator: Google::Apis::CloudidentityV1beta1::FirstAdminInvitationInfo::Representation
1347
-
1348
1332
  end
1349
1333
  end
1350
1334
 
@@ -29,6 +29,9 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1beta1'
31
31
 
32
+ # Private Service: https://www.googleapis.com/auth/cloud-identity
33
+ AUTH_CLOUD_IDENTITY = 'https://www.googleapis.com/auth/cloud-identity'
34
+
32
35
  # Private Service: https://www.googleapis.com/auth/cloud-identity.devices
33
36
  AUTH_CLOUD_IDENTITY_DEVICES = 'https://www.googleapis.com/auth/cloud-identity.devices'
34
37
 
@@ -44,6 +47,12 @@ module Google
44
47
  # See any Cloud Identity Groups that you can access, including group members and their emails
45
48
  AUTH_CLOUD_IDENTITY_GROUPS_READONLY = 'https://www.googleapis.com/auth/cloud-identity.groups.readonly'
46
49
 
50
+ # See, send, or cancel any Cloud Identity UserInvitations to join your organization to users
51
+ AUTH_CLOUD_IDENTITY_USERINVITATIONS = 'https://www.googleapis.com/auth/cloud-identity.userinvitations'
52
+
53
+ # See, send, or cancel any Cloud Identity UserInvitations to join your organization to users
54
+ AUTH_CLOUD_IDENTITY_USERINVITATIONS_READONLY = 'https://www.googleapis.com/auth/cloud-identity.userinvitations.readonly'
55
+
47
56
  # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
48
57
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
49
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudidentity_v1beta1
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-23 00:00:00.000000000 Z
11
+ date: 2022-06-27 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-cloudidentity_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.28.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1
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 Identity API V1beta1