FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
google-cloud-php/Dms/src/V1/EntityMappingLogEntry.php at main · googleapis/google-cloud-php · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
googleapis
/
google-cloud-php
Public
Notifications
You must be signed in to change notification settings
Fork
464
Star
1.2k
Code
Issues
45
Pull requests
33
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
google-cloud-php
/
Dms
/
src
/
V1
/
EntityMappingLogEntry.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
135 lines (120 loc) · 3.18 KB
Breadcrumbs
google-cloud-php
/
Dms
/
src
/
V1
/
EntityMappingLogEntry.php
Copy path
File metadata and controls
135 lines (120 loc) · 3.18 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/clouddms/v1/conversionworkspace_resources.proto
namespace
Google
\
Cloud
\
CloudDms
\
V1
;
use
Google
\
Protobuf
\
Internal
\
GPBType
;
use
Google
\
Protobuf
\
Internal
\
GPBUtil
;
use
Google
\
Protobuf
\
RepeatedField
;
/**
* A single record of a rule which was used for a mapping.
*
* Generated from protobuf message <code>google.cloud.clouddms.v1.EntityMappingLogEntry</code>
*/
class
EntityMappingLogEntry
extends
\
Google
\
Protobuf
\
Internal
\Message
{
/**
* Which rule caused this log entry.
*
* Generated from protobuf field <code>string rule_id = 1;</code>
*/
protected
$
rule_id
=
''
;
/**
* Rule revision ID.
*
* Generated from protobuf field <code>string rule_revision_id = 2;</code>
*/
protected
$
rule_revision_id
=
''
;
/**
* Comment.
*
* Generated from protobuf field <code>string mapping_comment = 3;</code>
*/
protected
$
mapping_comment
=
''
;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $rule_id
* Which rule caused this log entry.
* @type string $rule_revision_id
* Rule revision ID.
* @type string $mapping_comment
* Comment.
* }
*/
public
function
__construct
(
$
data
=
NULL
) {
\
GPBMetadata
\
Google
\
Cloud
\
Clouddms
\
V1
\ConversionworkspaceResources::
initOnce
();
parent
::
__construct
(
$
data
);
}
/**
* Which rule caused this log entry.
*
* Generated from protobuf field <code>string rule_id = 1;</code>
* @return string
*/
public
function
getRuleId
()
{
return
$
this
->
rule_id
;
}
/**
* Which rule caused this log entry.
*
* Generated from protobuf field <code>string rule_id = 1;</code>
* @param string $var
* @return $this
*/
public
function
setRuleId
(
$
var
)
{
GPBUtil::
checkString
(
$
var
,
True
);
$
this
->
rule_id
=
$
var
;
return
$
this
;
}
/**
* Rule revision ID.
*
* Generated from protobuf field <code>string rule_revision_id = 2;</code>
* @return string
*/
public
function
getRuleRevisionId
()
{
return
$
this
->
rule_revision_id
;
}
/**
* Rule revision ID.
*
* Generated from protobuf field <code>string rule_revision_id = 2;</code>
* @param string $var
* @return $this
*/
public
function
setRuleRevisionId
(
$
var
)
{
GPBUtil::
checkString
(
$
var
,
True
);
$
this
->
rule_revision_id
=
$
var
;
return
$
this
;
}
/**
* Comment.
*
* Generated from protobuf field <code>string mapping_comment = 3;</code>
* @return string
*/
public
function
getMappingComment
()
{
return
$
this
->
mapping_comment
;
}
/**
* Comment.
*
* Generated from protobuf field <code>string mapping_comment = 3;</code>
* @param string $var
* @return $this
*/
public
function
setMappingComment
(
$
var
)
{
GPBUtil::
checkString
(
$
var
,
True
);
$
this
->
mapping_comment
=
$
var
;
return
$
this
;
}
}
Back
|
FazBrowse Home
|
New Git URL